]> git.meshlink.io Git - meshlink/commitdiff
Add devtool_get_all_submeshes().
authorlakshminarayanagurram <lakshminarayana@elear.solutions>
Mon, 25 Feb 2019 10:01:38 +0000 (11:01 +0100)
committerGuus Sliepen <guus@meshlink.io>
Mon, 25 Feb 2019 10:25:45 +0000 (11:25 +0100)
src/devtools.c
src/devtools.h

index 6d22516d145c16b04e095610977f57bf4c7d55a3..6d78119c49846a3c177ce575742adda961c67b45 100644 (file)
@@ -23,6 +23,7 @@
 #include "logger.h"
 #include "meshlink_internal.h"
 #include "node.h"
+#include "submesh.h"
 #include "splay_tree.h"
 #include "netutl.h"
 #include "xalloc.h"
@@ -280,6 +281,36 @@ void devtool_get_node_status(meshlink_handle_t *mesh, meshlink_node_t *node, dev
        pthread_mutex_unlock(&mesh->mesh_mutex);
 }
 
+meshlink_submesh_t **devtool_get_all_submeshes(meshlink_handle_t *mesh, meshlink_submesh_t **submeshes, size_t *nmemb) {
+       if(!mesh || !nmemb || (*nmemb && !submeshes)) {
+               meshlink_errno = MESHLINK_EINVAL;
+               return NULL;
+       }
+
+       meshlink_submesh_t **result;
+
+       //lock mesh->nodes
+       pthread_mutex_lock(&(mesh->mesh_mutex));
+
+       *nmemb = mesh->submeshes->count;
+       result = realloc(submeshes, *nmemb * sizeof(*submeshes));
+
+       if(result) {
+               meshlink_submesh_t **p = result;
+
+               for list_each(submesh_t, s, mesh->submeshes) {
+                       *p++ = (meshlink_submesh_t *)s;
+               }
+       } else {
+               *nmemb = 0;
+               free(submeshes);
+               meshlink_errno = MESHLINK_ENOMEM;
+       }
+
+       pthread_mutex_unlock(&(mesh->mesh_mutex));
+
+       return result;
+}
 meshlink_handle_t *devtool_open_in_netns(const char *confbase, const char *name, const char *appname, dev_class_t devclass, int netns) {
        meshlink_open_params_t *params = meshlink_open_params_init(confbase, name, appname, devclass);
        params->netns = dup(netns);
index 92862632b9a222cfe8f7e8ccacde325590736857..3c5f9433b20cf4cdd4e1d57d0b07b802941d440c 100644 (file)
@@ -120,6 +120,20 @@ struct devtool_node_status {
  */
 extern void devtool_get_node_status(meshlink_handle_t *mesh, meshlink_node_t *node, devtool_node_status_t *status);
 
+/// Get the list of all submeshes of a meshlink instance.
+/** This function returns an array of submesh handles.
+ *  These pointers are the same pointers that are present in the submeshes list
+ *  in mesh handle.
+ *
+ *  @param mesh         A handle which represents an instance of MeshLink.
+ *  @param submeshes    A pointer to an array of submesh handles if any allocated previously.
+ *  @param nmemb        A pointer to a size_t variable that has
+ *                      to be provided by the caller.
+ *                      The contents of this variable will be changed to indicate
+ *                      the number if array elements.
+ */
+extern meshlink_submesh_t **devtool_get_all_submeshes(meshlink_handle_t *mesh, meshlink_submesh_t **submeshes, size_t *nmemb);
+
 /// Open a MeshLink instance in a given network namespace.
 /** This function opens MeshLink in the given network namespace.
  *