]> git.meshlink.io Git - meshlink/commitdiff
json export of node and edge structure
authorNiklas Hofmann <niklas.hofmann@everbase.net>
Wed, 13 Aug 2014 17:50:29 +0000 (19:50 +0200)
committerNiklas Hofmann <niklas.hofmann@everbase.net>
Wed, 13 Aug 2014 17:50:29 +0000 (19:50 +0200)
examples/manynodes.c
src/Makefile.am
src/meshlink.h
src/node.h

index 2e26739c5e03dd3c18a2bcca773fb54a9dbff298..3b617e4e5b517d7af0a0c33eeccf5cf249afa130 100644 (file)
@@ -7,6 +7,11 @@
 #include <linux/limits.h>
 
 #include "../src/meshlink.h"
+#include "../src/devtools.h"
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <errno.h>
 
 static int n = 10;
 static meshlink_handle_t **mesh;
@@ -62,6 +67,40 @@ static void linkmesh() {
        }
 }
 
+static bool exportmeshgraph(const char* path)
+{
+       struct stat ps;
+       int psr = stat(path, &ps);
+
+       if(psr == 0 || errno != ENOENT)
+       {
+               if(psr == -1)
+                       { perror("stat"); }
+               else
+                       { fprintf(stderr, "%s exists already\n", path); }
+
+               return false;
+       }
+
+       FILE* stream = fopen(path, "w");
+
+       if(!stream)
+       {
+               perror("stream");
+               return false;
+       }
+
+       if(!devtool_export_json_all_edges_state(mesh[0], stream))
+       {
+               fclose(stream);
+               fprintf(stderr, "could not export graph\n");
+               return false;
+       }
+
+       fclose(stream);
+       return true;
+}
+
 static void parse_command(char *buf) {
        char *arg = strchr(buf, ' ');
        if(arg)
@@ -131,6 +170,8 @@ static void parse_command(char *buf) {
                }
        } else if(!strcasecmp(buf, "link")) {
                linkmesh();
+       } else if(!strcasecmp(buf, "eg")) {
+               exportmeshgraph(arg);
        } else if(!strcasecmp(buf, "test")) {
                testmesh();
        } else if(!strcasecmp(buf, "quit")) {
@@ -145,6 +186,7 @@ static void parse_command(char *buf) {
                        "/kick <name>          Blacklist the given node.\n"
                        "/who [<name>]         List all nodes or show information about the given node.\n"
                        "/link                 Link all nodes together.\n"
+                       "/eg <path>            Export graph as json file.\n"
                        "/test                 Test functionality sending some data to all nodes\n"
                        "/quit                 Exit this program.\n"
                        );
index 0c681acbc533cc7c836972a1367533c700000ab9..cae2ab95458666bd89d738bae7eab34890788914 100644 (file)
@@ -56,7 +56,7 @@ sptps_speed_SOURCES = \
 
 lib_LTLIBRARIES = libmeshlink.la
 
-libmeshlink_la_LDFLAGS = -export-symbols-regex '^meshlink_'
+libmeshlink_la_LDFLAGS = -export-symbols-regex '^(meshlink_|devtool_)'
 
 libmeshlink_la_SOURCES = \
        meshlink.c meshlink.h \
@@ -99,6 +99,7 @@ libmeshlink_la_SOURCES = \
        system.h \
        utils.c utils.h \
        xalloc.h \
+       devtools.c devtools.h \
        $(ed25519_SOURCES) \
        $(chacha_poly1305_SOURCES)
 
index 16603f47abb8f5facf3de8fc236f0817f052f393..3d9290738791fb2a507ec0843b842965bceca455 100644 (file)
@@ -96,6 +96,8 @@ struct meshlink_handle {
 
 struct meshlink_node {
        char *name;       ///< Textual name of this node. It is stored in a nul-terminated C string, which is allocated by MeshLink.
+       uint32_t options;
+       dev_class_t devclass;
        void *priv;       ///< Private pointer which may be set freely by the application, and is never used or modified by MeshLink.
 };
 
index b669b5daf9f02ee622f168f2098bfd310c6870cb..c86c3cee9a650225137f9c1f17f73cc96effd306 100644 (file)
@@ -40,10 +40,9 @@ typedef struct node_status_t {
 
 typedef struct node_t {
        char *name;                             /* name of this node */
-       void *priv;
-       
        uint32_t options;                       /* options turned on for this node */
        dev_class_t devclass;
+       void *priv;
 
        struct meshlink_handle *mesh;           /* The mesh this node belongs to */