Copyright (C) 2009-2012 Raul Jimenez and contributors
Released under GNU LGPL 2.1 (see LICENSE.txt)
- Raul Jimenez (maintainer)
- Flutra Osmani
- Ismael Saad Garcia (lookup experiments)
- Sara Dar (MDHT visualization)
- Shariq Mobeen (GUI + lookup visualization)
- S.M. Sarwarul Islam Rizvi (lookup experiments)
- Zinat Sultana (routing table extraction experiments)
The code is organized as follows:
Directories:
- coreCore modules of the Pymdht package. The 'pymdht.py' file contains the package's API.
- docDocumentation.
- geoModules related to geo-location services (not used by default).
- pluginsModules providing lookup implementation (lookup_*.py files) and routing table management (routing_*.py files).
- profilerToolkit capable to launch several MDHT nodes (conductor.py), parse network captures (parser.py), and plot graphs from parsing results (plotter.py). More information in profiler/README.txt
- release_toolsUseful tools to prepare a release (e.g. clean up bootstrap nodes)
- uiUser interface (text and graphical)
- ut2mdhtShould be moved into profiler.
Files:
- run_pymdht_node.pySimple example of how the Pymdht can be used. Use '--help' to get a list of available command line options.
- README.rst, CHANGES.txt, LGPL-2.1.txt, LICENSE.txtStandard files.
- MANIFEST.in, setup.py, __init__.pyStandard Python distribution files
- .gitignoreList of files to be ignored by git
- table_extractor.py (experimental)Extract routing table from a given node.
This package uses Python 2.5 standard library. No extra modules need to be installed.
A Makefile is provided to run the tests. The tests require the nose test framework to work.
The API is located in core/pymdht.py. This is the only module necessary to use the package.
Users should only use the methods provided in core/pymdht.py. Users can additionally use the Id and Node classes as needed. These classes are located in core/identifier.py and core/node.py
ipython is useful to try out functionality and/or debug.
Just run 'make'. see core/Makefile for details.
In order to run the tests you need the following packages (ubuntu):
- python-nose
- python-coverage (optional but very recommended)
In order to do profiling you need the following packages (ubuntu):
- python-profiler
- kcachegrind (profile viewer)
- and from easy_install (comes with the python-setuptools package in Ubuntu):
- profilestats (produces input for both RunSnakeRun and KCachegrind)
- runsnakerun (simple and nice profile viewer)
This daemon serves as a simple interface between swift transport protocol and pymdht. It takes takes inhohashes from swift as input, uses pymdht to find peers for the corresponding infohashes, and finally returns the list of peers (in bursts, as they are discovered) to the swift core.
To run pymdht daemon: - pymdht_daemon.py - refer to pymdht_daemon_api.txt for technical details
Module geo.py contains a set of functions that can be used to retrieve peer's location-related information, such as: city, country, latitude, longitude etc (based on the geoip library). In addition, this module contains functions to calculate coordinate distances between two peers, find if peers are in the same country, and score peers according to a defined (in geo.py) metric.
Geo scoring is not enabled by default, when running pymdht daemon. It can be switched on this way:
- python pymdht_daemon.py --geoip
For geo module to work (only if running geo scoring), you need to install the following libraries (Ubuntu):
- python-geoip
- geoip-database
- libgeoip1
- Run geolitecityupdate.sh script to get the latest version of the city database. The data, otherwise, is located here: "/usr/share/GeoIP/GeoIPCity.dat"
In order to check "code quality" you need the following packages: pylint (e.g. pylint --errors-only *.py >errors)
In case it's useful to you. I use this Emacs configuration: https://github.com/rauljim/emacs
We use the following version format:
- first number: release year (two digits)
- second number: release month number
- third number: sub-release number, even numbers indicate stable release, odd numbers indicate development (unstable)
Examples:
- 11.8.0 Code released in Aug 2011 (stable release)
- 11.8.1 Development code right after 11.8.0 release (unstable)
- 11.8.2 Bugfix release (stable release)