<<<<<<< HEAD
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.
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.
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
perl util/hupsim.pl -m example/ex_topo.map -n example/ex_nodes_map -p 52305 -v 2
You need to start each peer in their own shells.
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
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
Enter this message in the receiver's stdin
DOWNLOAD example/download.chunkhash example/test.fragment
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!
=======
This is SUSTECH cs305 fall project
6b4aaad2775a50755b966964e228204489f92885