copyright (c) 2015 Oliver Flasch. All rights reserved.
Netislands is a tiny network library to support highly scalable parallel distributed computing tasks with modest bandwidth and latency demands, such as evolutionary and genetic algorithms, through a model of connected islands. An island is an abstract object supporting the following operations:
- Init:
int island_init(Netislands_Island *island, const int port, const unsigned n_neighbors, const char *neighbor_hostnames[n_neighbors], const int neighbor_ports[n_neighbors], const long max_message_queue_length, const unsigned max_failures)
initializes an island listening onport
that has outgoing connections ton_neighbors
with hostnamesneighbor_hostnames
(an array of strings) and portsneighbor_ports
(an array of ints). Received neighbor messages are stored in a queue of maximum lengthmax_message_queue_length
. If this length is exceeded, the oldest message in the queue will be silently dropped when a new message arrives. Set tomax_message_queue_length
to disable this behavior. Neighbors are considered as failed and will be removed ifmax_failures
send attempt failed. Set this to0
to disable neighbor removal. - Send:
int island_send(const Netislands_Island *island, const char *message)
sends the stringmessage
to all neighbors of anisland
. - Dequeue Message:
char *island_dequeue_message(const Netislands_Island *island)
dequeues the oldest message fromisland
s message queue and returns it. If no message is present, 0 (NULL) is returned. The caller is responsible to callfree()
on the message returned after use. - Destroy:
int island_destroy(Netislands_Island *island)
cleanups anisland
.
The network topology is defined implicitly by the neighborhood relation, enabling very good scalability. New islands announce their presence to their defined neighbors when started, while unreachable neighbors are removed automatically, increasing robustness. After a network of islands has been set up, no central control instance is needed. Islands can freely join and leave the network.
Netislands has been tested on Mac OS X 10.10.3. It should also work under Linux and other POSIX-compatible operating systems. Support for Windows is included, but untested.
Just add the following source files to your project:
netislands.h
netislands.c
queue.h
queue.c
tinycthread.h
tinycthread.c
Then include the Netislands API via #include "netislands.h"
.
Netislands contains netislands_test.c
, a simple test driver and demo
application. It is built via the included Makefile
's all
target, i.e.
by just typing make
on the command line.
Netislands is copyright (c) 2015 Oliver Flasch and released under the MIT
licence. See the file LICENSE
for details.
TinyCThread uses the following license:
Copyright (c) 2012 Marcus Geelnard 2013-2014 Evan Nemerson
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
This notice may not be removed or altered from any source distribution.