Project

General

Profile

Algorithms » History » Version 13

Greg Burri, 08/03/2009 09:25 AM

1 1 Greg Burri
h1. Algorithms
2
3
h2. Searching
4 2 Greg Burri
5 3 Greg Burri
For a functional description see here : [[Functional definition#The-search-window]]
6 9 Greg Burri
# 
7 2 Greg Burri
!aybabtu_search.png!
8 4 Greg Burri
9 5 Greg Burri
h2. Peer ID
10
11 7 Greg Burri
Each peer owns a peer id which is unique and generated during the first start. This ID is used to identify a peer, it's better than the previous usage of peer IP, considering this situation :
12 5 Greg Burri
13
* _A_ put in queue a file entry _f_ from _B_, _B_ doesn't know the hashes of this file entry.
14
* _B_ change his IP address.
15
* _A_ want to download _f_, it can ask _B_ for the hashes even _B_'s IP changed.
16
17 8 Greg Burri
h2. Core threads
18
19 9 Greg Burri
There are three kind of threads in the core in addition to the main thread :
20
* [[Protocol_core-core#Downloading-thread|Downloading thread]] : @DownloadManager::ChunkDownloader@
21 8 Greg Burri
* Uploading thread : @UploadManager::Uploader@
22 11 Greg Burri
* [[Algorithms#Updating-the-file-cache|Updating file cache thread]] : @FileManager::FileUpdater@
23 5 Greg Burri
24 10 Greg Burri
h2. Updating the file cache
25
26
Here is the algorithm for the thread (@FileManager::FileUpdater@) which will periodically update the file cache and persist it.
27
28
<pre>
29
D : The set of shared directories
30
T : Time during the hashes are computed (for example 30s)
31
F : A set of file initialy empty
32
33 13 Greg Burri
- Add a watcher to the shared directories
34
35
// First synchronize (at start)
36
For each d in D (recursively) :
37
   - Synchronize physical folders and files whit d content
38
   - Add in F the files which doesn't have computed hashes
39
40
Loop :   
41 10 Greg Burri
   t : Time.now
42 1 Greg Burri
   For each f in F :
43 13 Greg Burri
      - Compute the unknown hash of files f
44 1 Greg Burri
      - Remove f from F
45 10 Greg Burri
      If (Time.now - t) > T : break
46
   - Wait T - (Time.now - t)
47 13 Greg Burri
   - Wait for changes for a period of P
48
      - When a modification occurs synchronise the file/folder
49
      - Add each new file in F
50 12 Greg Burri
   - Persist the entire cache in a file (only every ~30min)
51 10 Greg Burri
</pre>
52
53 5 Greg Burri
54 4 Greg Burri
h2. Downloading
55
56
See here : [[Protocol_core-core#Downloading-threads]]