aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-provider.c
blob: 03be7cdf1e49f8cc14abecb8e163dad02a1d8403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-provider.c: provider framework */

/*
 *
 * Authors:
 *  Bertrand Guiheneuf <bertrand@helixcode.com>
 *  Dan Winship <danw@helixcode.com>
 *  Jeffrey Stedfast <fejj@helixcode.com>
 *
 * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */


/* FIXME: Shouldn't we add a version number to providers ? */

#include "config.h"
#include "camel-provider.h"
#include "camel-exception.h"
#include "hash-table-utils.h"

#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>

#include <gmodule.h>

/**
 * camel_provider_init:
 *
 * Initialize the Camel provider system by reading in the .urls
 * files in the provider directory and creating a hash table mapping
 * URLs to module names.
 *
 * A .urls file has the same initial prefix as the shared library it
 * correspond to, and consists of a series of lines containing the URL
 * protocols that that library handles.
 *
 * Return value: a hash table mapping URLs to module names
 **/
GHashTable *
camel_provider_init (void)
{
    GHashTable *providers;
    DIR *dir;
    struct dirent *d;
    char *p, *name, buf[80];
    FILE *f;

    providers = g_hash_table_new (g_strcase_hash, g_strcase_equal);

    dir = opendir (CAMEL_PROVIDERDIR);
    if (!dir) {
        g_error ("Could not open camel provider directory: %s",
             g_strerror (errno));
        return NULL;
    }

    while ((d = readdir (dir))) {
        p = strchr (d->d_name, '.');
        if (!p || strcmp (p, ".urls") != 0)
            continue;

        name = g_strdup_printf ("%s/%s", CAMEL_PROVIDERDIR, d->d_name);
        f = fopen (name, "r");
        if (!f) {
            g_warning ("Could not read provider info file %s: %s",
                   name, g_strerror (errno));
            g_free (name);
            continue;
        }

        p = strrchr (name, '.');
        strcpy (p, ".so");
        while ((fgets (buf, sizeof (buf), f))) {
            buf[sizeof (buf) - 1] = '\0';
            p = strchr (buf, '\n');
            if (p)
                *p = '\0';

            g_hash_table_insert (providers, g_strdup (buf), name);
        }
        fclose (f);
    }

    closedir (dir);
    return providers;
}

/**
 * camel_provider_load:
 * @session: the current session
 * @path: the path to a shared library
 * @ex: a CamelException
 *
 * Loads the provider at @path, and calls its initialization function,
 * passing @session as an argument. The provider should then register
 * itself with @session.
 **/ 
void
camel_provider_load (CamelSession *session, const char *path, CamelException *ex)
{
    GModule *module;
    CamelProvider *(*camel_provider_module_init) ();

    if (!g_module_supported ()) {
        camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
                      "Could not load %s: Module loading "
                      "not supported on this system.",
                      path);
        return;
    }

    module = g_module_open (path, 0);
    if (!module) {
        camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
                      _("Could not load %s: %s"),
                      path, g_module_error ());
        return;
    }

    if (!g_module_symbol (module, "camel_provider_module_init",
                  (gpointer *)&camel_provider_module_init)) {
        camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
                      _("Could not load %s: No initialization "
                    "code in module."), path);
        g_module_close (module);
        return;
    }

    camel_provider_module_init (session);
}