aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-provider.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-03-23 01:21:31 +0800
committerDan Winship <danw@src.gnome.org>2000-03-23 01:21:31 +0800
commit0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c (patch)
treec0705435b394e1de37983bd78a88c51d9ea035c8 /camel/camel-provider.c
parent1fa17b36192eab987255accbe14b3fe184fa0948 (diff)
downloadgsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar.gz
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar.bz2
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar.lz
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar.xz
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.tar.zst
gsoc2013-evolution-0f5f6d79199b16b0db1b7530c8835ad6a3bbe73c.zip
New function to scan the provider dir and return a list of all providers.
* camel-provider.c (camel_provider_scan): New function to scan the provider dir and return a list of all providers. svn path=/trunk/; revision=2145
Diffstat (limited to 'camel/camel-provider.c')
-rw-r--r--camel/camel-provider.c45
1 files changed, 32 insertions, 13 deletions
diff --git a/camel/camel-provider.c b/camel/camel-provider.c
index 8f5b66ddc6..b0e4017da5 100644
--- a/camel/camel-provider.c
+++ b/camel/camel-provider.c
@@ -48,9 +48,10 @@
#include "camel-provider.h"
#include "camel-log.h"
+#include <dirent.h>
+#include <string.h>
static GList *_provider_list = NULL;
-static gchar *_last_error;
static gint
_provider_name_cmp (gconstpointer a, gconstpointer b)
@@ -129,21 +130,39 @@ camel_provider_register_as_module (const gchar *module_path)
}
-
-
-
-/*
- be careful to this function, @a is expected to be
- a provider, @b a protocol name (const gchar *)
-*/
-static gint
-_provider_protocol_find (gconstpointer a, gconstpointer b)
+/**
+ * camel_provider_scan: Scan for available providers and return a list.
+ *
+ * Note that this function will cause all providers in the providerdir
+ * to be loaded into memory.
+ *
+ * Return value: the list of CamelProviders. The caller must free this
+ * list when it is done with it.
+ **/
+GList *
+camel_provider_scan (void)
{
- CamelProvider *provider_a = CAMEL_PROVIDER (a);
- const gchar *name_b = (const gchar *)b;
+ DIR *dir;
+ struct dirent *dent;
+ char *p, *name;
- return g_strcasecmp ( provider_a->name, name_b);
+ dir = opendir (CAMEL_PROVIDERDIR);
+ if (!dir)
+ return NULL;
+ while ((dent = readdir (dir))) {
+ p = strstr (dent->d_name, ".so");
+ if (!p || strcmp (p, ".so") != 0)
+ continue;
+
+ name = g_module_build_path (CAMEL_PROVIDERDIR, dent->d_name);
+ camel_provider_register_as_module (name);
+ g_free (name);
+ }
+ closedir (dir);
+
+ return g_list_copy (_provider_list);
}
+
/**
* camel_provider_get_for_protocol: get a registered provider for a protocol