Add initial steps for builtin plugins
[connman] / src / plugin.c
index c128505..36e816b 100644 (file)
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
 
 #include <glib.h>
 
+#ifdef CONNMAN_PLUGIN_BUILTIN
+#undef CONNMAN_PLUGIN_BUILTIN
+#endif
+
 #include "connman.h"
 
 static GSList *plugins = NULL;
 
 struct connman_plugin {
        void *handle;
+       gboolean active;
        struct connman_plugin_desc *desc;
 };
 
+static gint compare_priority(gconstpointer a, gconstpointer b)
+{
+       const struct connman_plugin *plugin1 = a;
+       const struct connman_plugin *plugin2 = b;
+
+       return plugin2->desc->priority - plugin1->desc->priority;
+}
+
 static gboolean add_plugin(void *handle, struct connman_plugin_desc *desc)
 {
        struct connman_plugin *plugin;
@@ -43,25 +56,27 @@ static gboolean add_plugin(void *handle, struct connman_plugin_desc *desc)
        if (desc->init == NULL)
                return FALSE;
 
+       if (g_str_equal(desc->version, CONNMAN_VERSION) == FALSE) {
+               DBG("version mismatch for %s", desc->description);
+               return FALSE;
+       }
+
        plugin = g_try_new0(struct connman_plugin, 1);
        if (plugin == NULL)
                return FALSE;
 
        plugin->handle = handle;
+       plugin->active = FALSE;
        plugin->desc = desc;
 
-       if (desc->init() < 0) {
-               g_free(plugin);
-               return FALSE;
-       }
-
-       plugins = g_slist_append(plugins, plugin);
+       plugins = g_slist_insert_sorted(plugins, plugin, compare_priority);
 
        return TRUE;
 }
 
-int __connman_plugin_init(void)
+int __connman_plugin_init(const char *pattern, const char *exclude)
 {
+       GSList *list;
        GDir *dir;
        const gchar *file;
        gchar *filename;
@@ -97,6 +112,20 @@ int __connman_plugin_init(void)
                                continue;
                        }
 
+                       if (exclude != NULL && g_pattern_match_simple(exclude,
+                                                       desc->name) == TRUE) {
+                               DBG("excluding %s", desc->description);
+                               dlclose(handle);
+                               continue;
+                       }
+
+                       if (pattern != NULL && g_pattern_match_simple(pattern,
+                                                       desc->name) == FALSE) {
+                               DBG("ignoring %s", desc->description);
+                               dlclose(handle);
+                               continue;
+                       }
+
                        if (add_plugin(handle, desc) == FALSE)
                                dlclose(handle);
                }
@@ -104,6 +133,15 @@ int __connman_plugin_init(void)
                g_dir_close(dir);
        }
 
+       for (list = plugins; list; list = list->next) {
+               struct connman_plugin *plugin = list->data;
+
+               if (plugin->desc->init() < 0)
+                       continue;
+
+               plugin->active = TRUE;
+       }
+
        return 0;
 }
 
@@ -116,7 +154,7 @@ void __connman_plugin_cleanup(void)
        for (list = plugins; list; list = list->next) {
                struct connman_plugin *plugin = list->data;
 
-               if (plugin->desc->exit)
+               if (plugin->active == TRUE && plugin->desc->exit)
                        plugin->desc->exit();
 
                dlclose(plugin->handle);