Project

General

Profile

Home » History » Version 30

Greg Burri, 11/27/2008 09:05 AM

1 1 Greg Burri
h1. Home
2
3 3 Greg Burri
* [[Study of bittorent protocol]]
4 8 Greg Burri
* [[Study of UPNP]]
5 29 Greg Burri
* [[Study of Thrift]]
6 30 Greg Burri
* [[Protocols]]
7 3 Greg Burri
8 1 Greg Burri
h2. Description
9
10 4 Greg Burri
A bit brainstormed for the moment ;)
11
12 21 Greg Burri
* Core and GUI are independent. They communicate over TCP socket.
13
** It is possible to launch the core without the GUI. The core does not depend of any kind of graphic library.
14
** If the GUI crashes then the core remains.
15 22 Greg Burri
* Designed for LAN usage (full trusted peers and very high speed transfers).
16 18 Greg Burri
* Efficient (very low cpu usage).
17
* Distributed download (multi peer downloading and no central server).
18 27 Greg Burri
** Quicker peer first. The speed of a peer is an average over a period of time say 5 min. A speed of a peer can be unknown. If a downloading is too slow (like three time slower than the best known peer) then it can switch to a quicker free peer.
19 16 Greg Burri
** Rarest parts first.
20
** A part can be resumed from any peer.
21
** Fixed part size (2^24 B = 16 MB) hashed with SHA-1. Used to control the integrity of parts and to identify a file. A file is identified by the concatenation of all the SHA1 of all its parts. If the SHA-1 of a part does not match with the given SHA-1 then it will be re-downloaded entirely.
22 18 Greg Burri
** Recursive folder downloading.
23
* There is a general chat.
24 25 Greg Burri
* Multicast UDP for services discovering (maybe UPNP). Each peer announces periodically he is alive with a multicast message.
25 18 Greg Burri
* MDI GUI with GTK2HS.
26
** A panel to view the current peers.
27
** A window to view the current downloads (leechage) and one for the current uploads (seedage).
28
** A window for the chat.
29
** A window for searching.
30
** Some windows for each file browsing.
31
** A modal window for the settings.
32
*** The shared folders.
33
*** The incoming folders (take the first if enough available space disk otherwise the second and so one..).
34
*** Bandwidth limitation.
35 28 Greg Burri
* Using of "Thrift":http://incubator.apache.org/thrift/ for definition of the protocol between two peers and between the Core and the Gui.
36 18 Greg Burri
* File list with name+size.
37
* Non blocking search.
38
* Using of systray (optional).
39
* Free space management.
40 19 Greg Burri
* Graphics of the transfer rate over time.