Combinatorrent: A concurrent bittorrent client

[ bsd3, network, program ] [ Propose Tags ]

Combinatorrent provides a BitTorrent client, based on STM for concurrency. This is an early preview release which is capable of downloading files from various torrent trackers, but have not yet demonstrated to be correct in all aspects. It is expected that the package currently contains numerous and even grave bugs. Patches to fix any problem are welcome!


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
debug

Enable debug support

Disabled
threadscope

Enable the eventlog necessary for ThreadScope

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.0, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2
Dependencies array (>=0.3), base (>=3.0 && <=5.0), bytestring, cereal, containers, deepseq, directory, filepath, hopenssl, hslogger, HTTP, HUnit, mtl, network, parsec, pretty, PSQueue, QuickCheck (>=2), random, random-shuffle, stm, test-framework, test-framework-hunit, test-framework-quickcheck2, time [details]
License BSD-3-Clause
Copyright (c) 2009,2010 Jesper Louis Andersen
Author Jesper Louis Andersen
Maintainer jesper.louis.andersen@gmail.com
Category Network
Source repo head: git clone git://github.com/jlouis/combinatorrent.git -b master
Uploaded by JesperLouisAndersen at 2010-04-12T21:12:38Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables Combinatorrent
Downloads 5753 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-30 [all 8 reports]

Readme for Combinatorrent-0.2.1

[back to package description]

Combinatorrent - a bittorrent client.

Introduction

This is a bittorrent client. I am the introduction document and I need to be written by some generous soul!

Installation

Here is what I do to install haskell torrrent locally on my machine:

cabal install --prefix=$HOME --user

Since we are using the magnificient cabal, this is enough to install haskell torrent in our $HOME/bin directory.

Usage

Combinatorrent can currently only do one very simple thing. If you call it with

Combinatorrent foo.torrent

then it will begin downloading the file in foo.torrent to the current directory via the Bittorrent protocol.

Protocol support

Currently haskell-torrent supports the following BEPs (See the BEP Process document for an explanation of these)

  • 003, 004, 020,

Combinatorrent is not supporting these BEPs, but strives to do so one day:

  • 005, 006, 007, 009, 010, 012, 015, 016, 017, 018, 019, 023, 021, 022, 024, 026, 027, 028, 029, 030, 031, 032

Debugging

For debugging, jlouis tends to use the following:

make conf build test

This builds Combinatorrent with the Debug flag set and also builds the software with profiling by default so it is easy to hunt down performance regressions. It also runs the internal test-suite for various values. There are a couple of interesting targets in the top-level Makefile

Reading material for hacking Combinatorrent:

  • Protocol specification - BEP0003: This is the original protocol specification, tracked into the BEP process. It is worth reading because it explains the general overview and the precision with which the original protocol was written down.

  • Bittorrent Enhancement Process - BEP0000 The BEP process is an official process for adding extensions on top of the BitTorrent protocol. It allows implementors to mix and match the extensions making sense for their client and it allows people to discuss extensions publicly in a forum. It also provisions for the deprecation of certain features in the long run as they prove to be of less value.

  • wiki.theory.org An alternative description of the protocol. This description is in general much more detailed than the BEP structure. It is worth a read because it acts somewhat as a historic remark and a side channel. Note that there are some commentary on these pages which can be disputed quite a lot.

  • "Supervisor Behaviour" From the Erlang documentation. How the Erlang Supervisor behaviour works. The Supervisor and process structure of Combinatorrent is somewhat inspired by the Erlang ditto.

Source code Hierarchy

  • Data: Data structures.

    • Queue: Functional queues. Standard variant with two lists.
    • PendingSet: A wrapper around Data.PSQueue for tracking how common a piece is.
    • PieceSet: BitArrays of pieces and their operations.
  • Process: Process definitions for the different processes comprising Combinatorrent

    • ChokeMgr: Manages choking and unchoking of peers, based upon the current speed of the peer and its current state. Global for multiple torrents.
    • Console: Simple console process. Only responds to 'quit' at the moment.
    • DirWatcher: Watches a directory and adds any torrent present in it.
    • FS: Process managing the file system.
    • Listen: Not used at the moment. Step towards listening sockets.
    • Peer: Several process definitions for handling peers. Two for sending, one for receiving and one for controlling the peer and handle the state.
    • PeerMgr: Management of a set of peers for a single torrent.
    • PieceMgr: Keeps track of what pieces have been downloaded and what are missing. Also hands out blocks for downloading to the peers.
    • Status: Keeps track of uploaded/downloaded/left bytes for a single torrent. Could be globalized.
    • Timer: Timer events.
    • TorrentManager: Manages torrents at the top-level.
    • Tracker: Communication with the tracker.
  • Protocol: Modules for interacting with the various bittorrent protocols.

    • BCode: The bittorrent BCode coding. Used by several protocols.
    • Wire: The protocol used for communication between peers.
  • Top Level:

    • Channels: Various Channel definitions.
    • Combinatorrent: Main entry point to the code. Sets up processes.
    • Digest: SHA1 digests as used in the bittorrent protocol.
    • FS: Low level Filesystem code. Interacts with files.
    • Process: Code for Erlang-inspired processes.
    • RateCalc: Rate calculations for a network socket. We use this to keep track of the current speed of a peer in one direction.
    • Supervisor: Erlang-inspired Supervisor processes.
    • Test.hs: Code for test-framework
    • TestInstance.hs: Various helper instances not present in the test framework by default
    • Torrent: Various helpers and types for Torrents.
    • Tracer: Code for simple "ring"-like tracing.
    • Version.hs.in: Generates Version.hs via the configure script.

vim: filetype=none tw=76 expandtab