Difference between revisions of "Peerd.c"
(oops, crashes if no args supplied) |
(oops - pasted wrong script in last edit!) |
||
Line 1: | Line 1: | ||
// [[[[http://www.organicdesign.co.nz/peerd|peerd]]]] - nodal p2p wiki daemon | // [[[[http://www.organicdesign.co.nz/peerd|peerd]]]] - nodal p2p wiki daemon | ||
− | // This article and all its includes are licenced under | + | // [[[[http://www.organicdesign.co.nz/peerd/files/C|C language version]]]] for *ix,OSX,NT platforms |
− | + | // This article and all its includes are licenced under [[[[http://www.gnu.org/copyleft/lesser.html|LGPL]]]] | |
− | // SRC: [[[[http://www.organicdesign.co.nz/ | + | // SRC: [[[[http://www.organicdesign.co.nz/peerd.c]]]] |
− | // | + | // NOTE: for automatic source syncronisation with peers in the field, |
+ | // keep [[[[Bender/fileSync]]]] up to date! | ||
+ | // Compiled in Win32 by [[[[peerd.c/win32-makefile]]]] | ||
+ | // Compiled in Linux and OSX by [[[[rp]]]] | ||
+ | // [[[[peerd.c/current|Current development]]]] | ||
+ | int this,loop,port = 32459; | ||
+ | char *peer = "default"; | ||
− | + | #include <unistd.h> | |
− | + | #include <stdlib.h> | |
− | // | + | #include <stdio.h> |
− | + | #include <string.h> | |
− | + | #include <errno.h> | |
− | + | #include <math.h> | |
− | + | #include <stdarg.h> | |
− | + | #include <time.h> | |
− | + | #include <regex.h> | |
− | + | #include "util.c" // [[[[util.c]]]]: General utils, file,log,string etc | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | // List & Node Space | ||
+ | #include "listSpace.c" // [[[[listSpace.c]]]]: listSpace and some C-specific extras: hash, trie, linked-list | ||
+ | #include "nodeSpace.c" // [[[[nodeSpace.c]]]]: NodeSpace function declarations and initialisation | ||
+ | #include "serialise.c" // [[[[serialise.c]]]]: Nodal-to-text and visa-versa | ||
− | // | + | // Interface related |
− | // | + | #include "SDL.h" |
− | + | #include "SDL_image.h" | |
− | + | #include "SDL_opengl.h" // OpenGL example [[[[http://www.libsdl.org/cgi/docwiki.cgi/OpenGL_20Full_20Example|here]]]] | |
− | + | #include "interface.c" // [[[[interface.c]]]]: Layer model, video, audio, input, OpenGL | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | // | + | // Peer daemon setup |
− | + | #if __WIN32__ | |
− | + | #include "servicate.c" // [[[[servicate.c]]]] | |
− | + | #elif __APPLE__ | |
− | + | #include "launchd.c" // [[[[launchd.c]]]] | |
− | + | #elif __unix__ | |
− | + | #include "daemonise.c" // [[[[daemonise.c]]]] | |
− | + | #endif | |
− | // | + | // Storage & distribution related |
− | // | + | #if __WIN32__ |
− | // | + | #include <winsock.h> |
− | // | + | #else |
− | + | #include <sys/socket.h> | |
− | + | #include <sys/select.h> | |
− | + | #include <netinet/in.h> | |
− | + | #include <sys/time.h> // for select() | |
− | + | #include <fcntl.h> // O_RDWR, O_NONBLOCK, F_GETFL, F_SETFL | |
− | + | #endif | |
− | + | #include "io.c" // [[[[io.c]]]]: Main server and stream setup and functions | |
− | + | int main(int argc, char **argv) { | |
− | int | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | regex_t *preg = malloc(1000); | |
− | + | regcomp(preg, "[cmprs]at", 0); | |
− | |||
− | |||
− | |||
− | |||
− | |||
+ | logAdd(""); // Blank line in log to separate peerd sessions | ||
+ | peerdInit(); // Set up as a daemon or service | ||
+ | listInit(); // Initialise list-space and hash/trie functions | ||
+ | nodeInit(); // Set up initial nodal structure for reduction loop | ||
+ | args(argc,argv); // Handle command-line args and globals like peer and port | ||
+ | ifInit(); // Initialise interface aspects (video, audio, input, OpenGL) | ||
+ | ioInit(); // Set up listening socket on specified port | ||
− | // | + | // Main nodal reduction loop |
− | + | logAdd("Handing program execution over to nodal reduction..."); | |
− | + | for (this=0;1;this=0) nodeReduce(); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } |
Revision as of 07:28, 21 August 2006
// [[[[1]]]] - nodal p2p wiki daemon // [[[language version]]] for *ix,OSX,NT platforms // This article and all its includes are licenced under [[[[2]]]] // SRC: [[[[3]]]] // NOTE: for automatic source syncronisation with peers in the field, // keep [[Bender/fileSync]] up to date! // Compiled in Win32 by [[peerd.c/win32-makefile]] // Compiled in Linux and OSX by [[rp]] // [[Current development]]
int this,loop,port = 32459; char *peer = "default";
- include <unistd.h>
- include <stdlib.h>
- include <stdio.h>
- include <string.h>
- include <errno.h>
- include <math.h>
- include <stdarg.h>
- include <time.h>
- include <regex.h>
- include "util.c" // [[util.c]]: General utils, file,log,string etc
// List & Node Space
- include "listSpace.c" // [[listSpace.c]]: listSpace and some C-specific extras: hash, trie, linked-list
- include "nodeSpace.c" // [[nodeSpace.c]]: NodeSpace function declarations and initialisation
- include "serialise.c" // [[serialise.c]]: Nodal-to-text and visa-versa
// Interface related
- include "SDL.h"
- include "SDL_image.h"
- include "SDL_opengl.h" // OpenGL example [[[[4]]]]
- include "interface.c" // [[interface.c]]: Layer model, video, audio, input, OpenGL
// Peer daemon setup
- if __WIN32__
- include "servicate.c" // [[servicate.c]]
- elif __APPLE__
- include "launchd.c" // [[launchd.c]]
- elif __unix__
- include "daemonise.c" // [[daemonise.c]]
- endif
// Storage & distribution related
- if __WIN32__
- include <winsock.h>
- else
- include <sys/socket.h>
- include <sys/select.h>
- include <netinet/in.h>
- include <sys/time.h> // for select()
- include <fcntl.h> // O_RDWR, O_NONBLOCK, F_GETFL, F_SETFL
- endif
- include "io.c" // [[io.c]]: Main server and stream setup and functions
int main(int argc, char **argv) {
regex_t *preg = malloc(1000); regcomp(preg, "[cmprs]at", 0);
logAdd(""); // Blank line in log to separate peerd sessions peerdInit(); // Set up as a daemon or service listInit(); // Initialise list-space and hash/trie functions nodeInit(); // Set up initial nodal structure for reduction loop args(argc,argv); // Handle command-line args and globals like peer and port ifInit(); // Initialise interface aspects (video, audio, input, OpenGL) ioInit(); // Set up listening socket on specified port
// Main nodal reduction loop logAdd("Handing program execution over to nodal reduction..."); for (this=0;1;this=0) nodeReduce();
}