Skip to content

He-Sui/CS305-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Set up your repo

First, clone the repo from github and change the git remote tag::

git clone https://github.com/SUSTech-CS305-Fall22/CS305-Project-Skeleton.git
cd CS305-Project-Skeleton
git remote rename origin staff

After doing so you can use the following command to get the latest update like newly-released checkpoints or so.

git pull staff

Then create a private repo your own on github, you will have the link <YOUR_URL> of your new repo.

Return to the local repo, run

git remote add group <YOUR_URL>
git push group -u

After this, you will be synchronize changes of your code to your own repo by

git push group

or simply

git push

In short, run

git push
git pull group

when synchronizing to your repo,

Run

git pull staff

when fetching updates from the staff repo.

How to run the example

This will be short version of the example described in the document.

In our example, a file will be divided into 4 chunks, and peer1 will have chunk1 and chunk2, while peer2 will have chunk3 and chunk4. Peer1 will be invoked to download chunk3 from peer2.

Step 1: Generate chunk data for peer and peer2:

First generate fragment that peer1 and peer2 have at the beginning

python3 util/make_data.py example/ex_file.tar ./example/data1.fragment 4 1,2
python3 util/make_data.py example/ex_file.tar ./example/data2.fragment 4 3,4

Then generate chunkhash data for peer1 to be downloaded:

sed -n "3p" master.chunkhash > example/download.chunkhash

Step 2: Run the simulator:

perl util/hupsim.pl -m example/ex_topo.map -n example/ex_nodes_map -p 52305 -v 2

Step 3: Start Peers

You need to start each peer in their own shells.

Start the sender:

export SIMULATOR="127.0.0.1: 52305"
python3 example/dumbsender.py -p example/ex_nodes_map -c example/data2.fragment -m 1 -i 2 -v 3

Start the receiver:

export SIMULATOR="127.0.0.1: 52305"
python3 example/dumbreceiver.py -p example/ex_nodes_map -c example/data1.fragment -m 1 -i 1 -v 3

Step 4: Start downloading

Enter this message in the receiver's stdin

DOWNLOAD example/download.chunkhash example/test.fragment

Finish downloading

After downloading successfully, you will see

GOT example/test.fragment
Expected chunkhash: 3b68110847941b84e8d05417a5b2609122a56314
Received chunkhash: 3b68110847941b84e8d05417a5b2609122a56314
Successful received: True
Congrats! You have completed the example!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published