Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.177.516 Times

Hydranode Project 0.3.0

  Date Added: June 02, 2010  |  Visits: 1.126

Hydranode Project

Report Broken Link
Printer Friendly Version


Product Homepage
Download (93 downloads)



Hydranode Core is a modular, plugin-driven peer-to-peer client framework which is designed with true multi-network downloads in mind. Hydranode Project can be used directly via the built-in shell functionality, or via external user interfaces. To achieve the large number of features described in the previous section, HydraNode core needs to be extendible without causing feature bloat and increase in system requirements resulting from that. The only way to accomplish that is make the application completely modular - only a minimum set of features are provided by the core application; the rest of the features are implemented by optional loadable modules. Each file-sharing network should be in a separate module, as should be other additional features like e-mail notifications. With this design, the features are de-coupled from each other, thus greatly simplifying the debugging process, and allowing end user to select only the features he or she needs instead of what a programmer thought was best for him or her. Second most important pre-requisite for a modern peer-to-peer application is platform-independence. The biggest differences in platforms are the graphical user interfaces, while the underlying structure of operating systems is rather similar. To achieve maximum portability, the core application should be decoupled from graphical user interfaces, which then could be written platform-dependently for each target platform; native user interfaces always perform better than interfaces designed for running on large number of platforms. To achieve this, the core application should not have any interactive graphical user interface of its own at all - it should only provide a protocol through which native graphical user interfaces and other application could communicate with it and control it. The protocol itself should be in human-readable format, but also be easily parse-able for client software; the reason for this would be to allow the possibility of interacting with the protocol directly through simple software like telnet, which would greatly simplify debugging process, but could also be useful even for end users as a crude remote control mechanism. Related to the above comes the question of programming language to use for writing the core application. At this, C++ would be the most sensible choice, because it is widely used across all platforms and provides fastest code (which is required to achieve low system requirements); it allows (and even enforces) object-oriented design, and is easier to understand than C code. Additionally, since HydraNode strongly relies on module-writers, C++ coders are far easier to find than, say, Java coders. As mentioned in previous section, quickest way to rapid development process is to give the users free access to the source code of the application; it increases possible developer/debugger-base significantly. Out of the myriad of open source licenses out there, GNU General Public License is most respected among users and developers, so HydraNode source code should follow the trend and be licensed under GNU GPL. Having the source code licensed under GNU GPL also allows us to use the almost infinite amount of existing code freely available through the internet, which could prove as a very useful option. With the fore-seeable future of large number of co-developer base, it is necessary to clearly define the coding standards for the core application. Coding style is very personal; having large number of developers modifying the code will quickly lead to a mix of different styles and personalities, which in turn makes the code less readable, and thus less maintainable. There are several widely accepted coding standards floating around, and for this project we have chosen to use Linux Kernel coding standard; while originally written for C, the concepts still mostly hold for C++. Source code, however, is worth nothing without correct documentation which would give the future co-developers hints on what the original developers had in mind while writing/designing the application. Again, there several widely accepted documentation standards, out of which perhaps the most common is Doxygen-style. The reason behind this is that Doxygen is capable of extracting documentation from source files and generating web pages out of it, which can give a very quick and extensive overview of the entire application at a glance - something future developers will greatly appreciate. The privacy of the user should be a serious concern for any modern peer-to-peer application developer; there are several institutions which tend to have a habit of spying upon the users and invading their privacy. The simplest solution would be to block the IP addresses of those groups; even better solution would be to simply stay off their radar. The first part can be implemented within the core application since it controls the low-level networking functionality; second part can be implemented by networking plugins depending on the specific networks. Since the core application will eventually have a large number of very different networking plugins, we have the problem of bandwidth management. The end user shouldnt be bothered with each specific plugins bandwidth limiting settings, so the bandwidth limits should be managed by the main application, which in turn could either allow or deny requests for bandwidth to modules. This setting should be fully configurable, allowing end user to either have the bandwidth shared equally among the plugins, or in favor of one or several specific plugins. Various file-sharing networks use very different files identifying methods - most often this is a checksum of the file, sometimes accompanied by file size; additionally, there is files meta-data, which can help the end-user identify the file. Since this feature is common to all file-sharing networks, while only differing in the actual checksum used, it should also be handled by the core application. Several points must be considered here - the core application should be able to generate a large number of checksums and store them. It should also be capable of extracting meta-data of files, as well as do cross-references with checksums - given a checksum from one network, it should be able to find the same file on second network (provided the file is known). However, no single client can know the checksums of all files of all networks, which means that the cross-referencing functionality will be of little use locally - this needs a central database which could store the checksums of all files from all networks, and provide cross-referencing functionality. Heres where Myradin comes in - it does exactly that. While support for Myradin shouldnt be completely integrated since it isnt really a part of the application, it could be an optional plugin that retrieves and submits checksums to the central database. The last feature is far more important than is obvious on first impression; this is the feature that will eventually allow real multi-network simultaneous downloads of same file. The problem is - since each network uses different checksums for files, it is impossible to identify the same file on two separate networks - you dont know the file is the same until you have downloaded the entire file and generated a checksum out of it. However, with a central database which stores checksums of different files from multiple networks, it would be possible to retrieve the checksums of a file on all other networks provided you have the checksum of a file from one network, thus allowing downloading the same file from two or more networks simultaneously. Upon completition, files actual checksum could again be tested against all known checksums to provide even higher corruption protection than single-network downloads. The central database would also contain files meta-data, which would allow end-users to more clearly identify fake files, thus improving the overall quality of files on all file-sharing networks. Whats New in This Release: Graphical User Interface (NEW) (madcat) - Supports search, download and shared files lists - Lists loaded modules - Shows networking statistics - Lists eDonkey2000 server list Core/GUI communication (NEW) (madcat) - Supports networking, files, modules and custom data syncronization with user interface(s). Hydranode Base (madcat) - No longer writes ANSI color codes to logfile - Portability to platforms without stdint.h header - Portability to unix variants without execinfo.h header - Full support windows XP Service Pack 2 (half-open connections limiting) - Using hand-crafted event multiplexing system in sockets to bypass the slow Boost.Signals - Fixed issues with >2GB files on Windows - Fixed issues with UDP packets handling when multiple packets arrive with short interval (previously this caused the socket to become dead) - Support for more than 64 concurrent open connections on Windows - Handles some race conditions in networking, where events come from backend when frontend has been destroyed more gracefully - Now remembering total downloaded/uploaded/uptime across sessions (global) Hydranode Core (madcat) - No longer allocates disk space when shutting down - Cleans up filename of invalid characters when starting downloads - Fixed uploading issues while moving completed download to incoming - Uploaded amount (for shared files) is now properly stored across sessions - Avoids duplicate scanning of already-scanned directories - Fixed crash when download is canceled while chunk hash job is in progress - Added dynamic module-based upload-speed scaling based on modules overall upload/download data ratio, thus upload-capable modules that have downloaded 70% of data get 70% of upload slots. Note that these are not hard limits, so actual results may vary depending on various conditions. - Faster and non-blocking disk space allocation for downloads - Fixes crashes when search result handlers get destroyed - Properly updates file modification date after movework finishes - --disable-colors and --transform-colors command-line options - --module-dir command-line option - Now correctly handles temp/shared dirs with .. in path names - No longer shares desktop.ini, thumbs.db and similar files - No longer loses custom metadata after file rehash Bittorrent Module (madcat) - Fixed links command for single-file torrents after restart - Reduced outgoing client connection timeout from 30s to 5s - Fixed an issue with URI delimineters not being encoded in tracker GET request (ticket #225). - Handles tracker responses sent with newline instead of - Properly seeds downloaded torrents after completition - Cleans up cache folder on download completition or canceling - Properly urlencodes HEAD / GET request arguments (ticket #235) - Listening ports are now restarted instantly after runtime configuration changes - Fixed some crashes during torrent completition - Multi-tracker support - Fixed uploaded/downloaded ratio calculation eDonkey2000 Module (madcat) - Reduced outgoing client connection timeout from 30s to 5s - Fixed parsing QueueRanking packets from MLDonkey clients - Fixed a bug where client would be dropped after download session end, when the remote client contacted us and sent AcceptUploadReq, and we didnt send ReqFile. - Now properly destroys remote LowID clients if we are also LowID. - More default (hardcoded) servers - Support for global searching - Miscellaneous protocol performance improvements and fine-tuning - Properly switches sources to other files on download completition now - GlobGetSources v2 packet is sent with different opcode. This raises UDP source queries effectiveness by ~5 times (from 4% to 20+%) - Better A4AF handling - Listening ports are now restarted instantly after runtime configuration changes - Setting ed2k/FindServers can be set to 0 now to disable receiving servers from clients and servers Email notifications (madcat) - Fixes unhandled exceptions from connect() call (ticket #217) HLink application (madcat) - Its now possible to pass full paths (to .torrent files etc).

Requirements: No special requirements
Platforms: Linux
Keyword: Application Core File Files Fixed Gnu Graphical User Interfaces Hydranode Core Hydranode Project Large Number No Longer Out Of Source Code User User Interfaces
Users rating: 0/10

License: Freeware Size: 6.8 MB
USER REVIEWS
More Reviews or Write Review


HYDRANODE PROJECT RELATED
E-Mail Tools  -  Simple Multi User Out-Of-Office-Responder 20070720
Simple Multi User Out-Of-Office-Responder project is a vacation email responder that can be easily plugged into simple SMTP servers with procmail. We have a small e-mail server running on Debian GNU/Linux. All users are local (in /etc/passwd),...
5.12 KB  
Utilities  -  Portable CheckDiskGUI 1.1.0
Portable CheckDiskGUI application was developed to be a Graphical User Interface for the commandline utility CHKDSK. It can display the file system integrity status of hard disks and floppy disk and can fix logical file system errors. It is...
 
Misc. Web Browser Tools  -  SysInternals Updater 1.0.1
The SysInternals Updater application was developed to be a Graphical User Interface which will allow users to simple update utilities from SysInternals. This simple, easy to use tool will download the selected files to a folder of your choice....
 
Utilities  -  CheckDiskGUI 1.1.0
The CheckDiskGUI application was developed to be a Graphical User Interface for the commandline utility CHKDSK. It can display the file system integrity status of hard disks and floppy disk and can fix logical file system errors. It is similar to...
 
Business  -  SSuite Office - Invoice Master 2.0
Our invoice application is based on the latest graphical-user-interface technology. There is no typing necessary, just point and click to create and/or print product or service invoices for your clients... quick and easy. It also includes a custom...
9.26 MB  
Networking Tools  -  WiFiAdmin 0.0.4
Wifiadmin is a free php graphical interface to mainly hostap, and wireless tools in general, although most of this code has been debugged only under a hostap environment. Please submit errors found when running with other linux wireless drivers,...
43.01 KB  
Business  -  SSuite Office - EZInvoice Creator 1.0
Our invoice application is based on the latest graphical-user-interface technology. There is no typing necessary, just point and click to create and/or print product or service invoices for your clients, quick and easy. Features Available: #...
7.74 MB  
Programming  -  Source2PDF 1.0
The Source2PDF tool is a small application which converts a directory full of source code into a single PDF file. It includes a table of contents, a title page, and is chaptered by subdirectories. This allows for easy, portable source code...
1.65 MB  
Graphics Editors  -  Img4Web 1.0.0 Beta
Img4Web is a batch image processor that allows the user to make thumbnail images out of source pictures while at the same generating code for displaying them with HTML tables. It is meant to assist users reduce the trouble they have when posting...
 
Code Management Tools  -  Kyrathaba's Source Code Line Counter 1.0
This program counts the lines of source code across all source-code files in a given directory, with option to ignore blank lines and/or comments.
315 KB  
NEW DOWNLOADS IN NETWORK & INTERNET, FILE SHARING
Network & Internet  -  Free WiFi Hotspot 3.3.1
Free WiFi Hotspot is a super easy solution to turn your laptop or notebook into a portable Wi-Fi hotspot, wirelessly sharing your internet connections like DSL, Cable, Bluetooth, Mobile Broadband Card, Dial-Up, etc. through the built-in wireless...
1.04 MB  
Network & Internet  -  Easy Uploads 1.8
Easy uploads is a file storage media streaming application designed by Filestreamers that allows you to upload, store, and stream your files from their virtually unlimited file storage server. Easy Uploads can backup,share, and stream your files...
615.97 KB  
Network & Internet  -  PacketFence ZEN 3.1.0
PacketFence is a fully supported, trusted, Free and Open Source network access control (NAC) system. Boosting an impressive feature set including a captive-portal for registration and remediation, centralized wired and wireless management, 802.1X...
1024 MB  
Network & Internet  -  django-dbstorage 1.3
A Django file storage backend for files in the database.
10.24 KB  
Network & Internet  -  SQL Inject Me 0.4.5
SQL Inject Me is a Firefox extension used to test for SQL Injection vulnerabilities. The tool works by submitting your HTML forms and substituting the form value with strings that are representative of an SQL Injection attack.
133.12 KB  
File Sharing  -  Top-N 8.9.9
Convert any video/audio format Top Any Video Converter is designed with no limitations and zero costs. It lets you effortlessly convert any video files to any format. It can convert all videos formats including 4K, general and HD videos to 2D/HD...
1024 B  
File Sharing  -  FeelHome for linux 0.3.0.504
FeelHome is a software that allows you to can get, save, or share your files from any web browser. FeelHome is software that connects your personnal or professionnal computer to the internet, and lets you access your files and folders...
2.4 MB  
File Sharing  -  Downpour for Linux 0.2
Downpour is a web-based BitTorrent client that supports auto-downloading from RSS feeds and automatic importing and renaming of downloads into a media library, making it ideal for use on a home media server. Here are some key features...
102.4 KB  
File Sharing  -  YAJNGI for Linux 1.0.4
YAJNGI is a program that allows you to keeping tabs a set of newsgroups without having to read constantly, simply you will be alerted only when the configuration will find your match or you can use YAJNGI for download your preferred binary files.
1.05 MB  
File Sharing  -  RivetTracker for Linux 1.03
RivetTracker is a modified version of PHPBTTracker. This program provides the same functionality as most other bittorrent trackers and uses MySQL as the database backend. The project improves on PHPBTTracker by adding a more robust...
522.24 KB