Project

General

Profile

General approach » History » Version 7

Greg Burri, 04/05/2011 11:33 PM

1 1 Greg Burri
h1. General approach
2
3 5 Greg Burri
h2. Generalities 
4
5 1 Greg Burri
Each file the user want to share is cut sequentially in pieces called _chunk_. Each chunk has the same size except the last one which can be smaller.
6
7 6 Greg Burri
For each chunk there is a footprint called _hash_ which identify the chunk. We admit that two chunks with the same hash contains the same data. The hash is computed with a cryptographic hash function like "SHA-1":http://en.wikipedia.org/wiki/Sha-1 .
8 2 Greg Burri
9 1 Greg Burri
10
h2. To know who are the other peers
11 5 Greg Burri
12 6 Greg Burri
Each peer sends periodically a message to tell to the other peers that it exists. This message can contain different information like the peer name, the amount of sharing data and also the wanted chunk hashes, see _Download_ section below. Multicast UDP is used to broadcasting the message to all other peers simultaneously.
13 5 Greg Burri
14
15
h2. Browsing 
16
17
Remote entries can be browsed by asking the content of a given remote directory. A listed file can contain one or more of its hashes.
18
19
There is a special case which the peer doesn't know about remote entries and wants to retrieve the root directories.
20
21
22
h2. Search for entries (by terms)
23
24
A multicast UDP datagram is sent to all other peer with the searched terms. The remote peers which have one or more matched entry will send them back with a unicast UDP datagram.
25
26
A file result can contain on or more of its hashes.
27
28
29
h2. Download
30
31
A chunk can only be downloaded if we know its hash. The hashes associated to a specific file can be explicitly asked. If the remote peer doesn't know the hashes of one of its file when they are asked it will compute these hashes on the fly and send them one by one as soon as possible.
32
33 3 Greg Burri
The list of the files to download is ordered by the user, thus the top files must be downloaded first. We will try to know first the hashes of the top files. As soon as we know a hash we can try to download the associated chunk. There can be many parallel downloads but only from different remote peers. The number of parallel downloads is limited.
34 1 Greg Burri
35 3 Greg Burri
To choose a chunk to download we will take the first file having at least one un-downloaded chunk which has at least one free peer, then among theses chunks we will choose the one which have the minimum number of peer (rarest part first), if there is some eligible chunk we choose randomly.
36 4 Greg Burri
37 6 Greg Burri
To known which remote peer has which wanted chunk we asked periodically to all remote peers if they have the next chunks we want to download by sending them the corresponding hashes. The number of hash sent is limited. This can be achieved by putting theses hashes in the message described in section _To know who are the other peers_.
38 1 Greg Burri
39 5 Greg Burri
To initiate a download we ask a remote peer by sending a hash and an offset relative to the beginning of the chunk.
40 1 Greg Burri
41 5 Greg Burri
42
h2. Communicate by chatting
43
44 7 Greg Burri
A multicast UDP datagram containing a arbitrary message can be sent to all other peers.
45
46
47 5 Greg Burri
h2. Glossary
48 3 Greg Burri
49 7 Greg Burri
Remote _<thing>_: <thing> is associated to another peer.
50
An entry: Can be a file or a directory.
51
A peer: A computer on the network running D-LAN.
52
A free peer: A peer from which we don't have any active downloads.
53
A chunk: A part of a file.
54
A hash: A identifier for a chunk.