aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-provider.c
blob: e2cc71523c7249229ebf1c587f56fbfd0706155a (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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/* -*- 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@ximian.com>
 *  Jeffrey Stedfast <fejj@ximian.com>
 *
 * Copyright 1999, 2000 Ximian, Inc. (www.ximian.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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 ? */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>

#include <gmodule.h>

#include "camel-provider.h"
#include "camel-exception.h"
#include "camel-string-utils.h"
#include "camel-vee-store.h"

#include "e-util/e-msgport.h"

/* table of CamelProviderModule's */
static GHashTable *module_table;
/* table of CamelProvider's */
static GHashTable *provider_table;
static EMutex *provider_lock;

#define LOCK() e_mutex_lock(provider_lock);
#define UNLOCK() e_mutex_unlock(provider_lock);

/* The vfolder provider is always available */
static CamelProvider vee_provider = {
    "vfolder",
    N_("Virtual folder email provider"),
    
    N_("For reading mail as a query of another set of folders"),
    
    "vfolder",
    
    CAMEL_PROVIDER_IS_STORAGE,
    CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH,
    
    /* ... */
};

/**
 * 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.
 **/
void
camel_provider_init (void)
{
    DIR *dir;
    struct dirent *d;
    char *p, *name, buf[80];
    CamelProviderModule *m;
    static int init = 0;

    if (init)
        return;

    init = 1;

    provider_lock = e_mutex_new(E_MUTEX_REC);
    module_table = g_hash_table_new(camel_strcase_hash, camel_strcase_equal);
    provider_table = g_hash_table_new(camel_strcase_hash, camel_strcase_equal);

    vee_provider.object_types[CAMEL_PROVIDER_STORE] = camel_vee_store_get_type ();
    vee_provider.url_hash = camel_url_hash;
    vee_provider.url_equal = camel_url_equal;
    camel_provider_register(&vee_provider);

    dir = opendir (CAMEL_PROVIDERDIR);
    if (!dir) {
        g_error ("Could not open camel provider directory (%s): %s",
             CAMEL_PROVIDERDIR, g_strerror (errno));
        return;
    }
    
    while ((d = readdir (dir))) {
        FILE *fp;
        
        p = strrchr (d->d_name, '.');
        if (!p || strcmp (p, ".urls") != 0)
            continue;
        
        name = g_strdup_printf ("%s/%s", CAMEL_PROVIDERDIR, d->d_name);
        fp = fopen (name, "r");
        if (!fp) {
            g_warning ("Could not read provider info file %s: %s",
                   name, g_strerror (errno));
            g_free (name);
            continue;
        }
        
        p = strrchr (name, '.');
        strcpy (p, ".so");

        m = g_malloc0(sizeof(*m));
        m->path = name;

        while ((fgets (buf, sizeof (buf), fp))) {
            buf[sizeof (buf) - 1] = '\0';
            p = strchr (buf, '\n');
            if (p)
                *p = '\0';
            
            if (*buf) {
                char *protocol = g_strdup(buf);

                m->types = g_slist_prepend(m->types, protocol);
                g_hash_table_insert(module_table, protocol, m);
            }
        }

        fclose (fp);
    }

    closedir (dir);
}

/**
 * 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(const char *path, CamelException *ex)
{
    GModule *module;
    CamelProvider *(*camel_provider_module_init) (void);

    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 ();
}

/**
 * camel_provider_register:
 * @provider: provider object
 *
 * Registers a provider.
 **/
void
camel_provider_register(CamelProvider *provider)
{
    int i;
    CamelProviderConfEntry *conf;
    GList *l;

    g_return_if_fail (provider != NULL);

    LOCK();

    if (g_hash_table_lookup(provider_table, provider->protocol) != NULL) {
        g_warning("Trying to re-register camel provider for protocol '%s'", provider->protocol);
        UNLOCK();
        return;
    }
    
    for (i = 0; i < CAMEL_NUM_PROVIDER_TYPES; i++) {
        if (provider->object_types[i])
            provider->service_cache[i] = camel_object_bag_new (provider->url_hash, provider->url_equal,
                                       (CamelCopyFunc)camel_url_copy, (GFreeFunc)camel_url_free);
    }

    /* Translate all strings here */
#define P_(string) dgettext (provider->translation_domain, string)

    provider->name = P_(provider->name);
    provider->description = P_(provider->description);
    conf = provider->extra_conf;
    if (conf) {
        for (i=0;conf[i].type != CAMEL_PROVIDER_CONF_END;i++) {
            if (conf[i].text)
                conf[i].text = P_(conf[i].text);
        }
    }

    l = provider->authtypes;
    while (l) {
        CamelServiceAuthType *auth = l->data;

        auth->name = P_(auth->name);
        auth->description = P_(auth->description);
        l = l->next;
    }

    g_hash_table_insert(provider_table, provider->protocol, provider);

    UNLOCK();
}

static gint
provider_compare (gconstpointer a, gconstpointer b)
{
    const CamelProvider *cpa = (const CamelProvider *)a;
    const CamelProvider *cpb = (const CamelProvider *)b;

    return strcmp (cpa->name, cpb->name);
}

static void
add_to_list (gpointer key, gpointer value, gpointer user_data)
{
    GList **list = user_data;

    *list = g_list_prepend(*list, value);
}

/**
 * camel_session_list_providers:
 * @session: the session
 * @load: whether or not to load in providers that are not already loaded
 *
 * This returns a list of available providers in this session. If @load
 * is %TRUE, it will first load in all available providers that haven't
 * yet been loaded.
 *
 * Return value: a GList of providers, which the caller must free.
 **/
GList *
camel_provider_list(gboolean load)
{
    GList *list = NULL;

    LOCK();

    if (load) {
        GList *w;

        g_hash_table_foreach(module_table, add_to_list, &list);
        for (w = list;w;w = w->next) {
            CamelProviderModule *m = w->data;

            if (!m->loaded) {
                camel_provider_load(m->path, NULL);
                m->loaded = 1;
            }
        }
        g_list_free(list);
        list = NULL;
    }

    g_hash_table_foreach(provider_table, add_to_list, &list);

    UNLOCK();

    list = g_list_sort(list, provider_compare);

    return list;
}

/**
 * camel_provider_get:
 * @url_string: the URL for the service whose provider you want
 * @ex: a CamelException
 *
 * This returns the CamelProvider that would be used to handle
 * @url_string, loading it in from disk if necessary.
 *
 * Return value: the provider, or %NULL, in which case @ex will be set.
 **/
CamelProvider *
camel_provider_get(const char *url_string, CamelException *ex)
{
    CamelProvider *provider = NULL;
    char *protocol;
    size_t len;

    g_return_val_if_fail(url_string != NULL, NULL);

    len = strcspn(url_string, ":");
    protocol = g_alloca(len+1);
    memcpy(protocol, url_string, len);
    protocol[len] = 0;

    LOCK();

    provider = g_hash_table_lookup(provider_table, protocol);
    if (!provider) {
        CamelProviderModule *m;

        m = g_hash_table_lookup(module_table, protocol);
        if (m && !m->loaded) {
            m->loaded = 1;
            camel_provider_load(m->path, ex);
            if (camel_exception_is_set (ex))
                goto fail;
        }
        provider = g_hash_table_lookup(provider_table, protocol);
    }

    if (provider == NULL)
        camel_exception_setv(ex, CAMEL_EXCEPTION_SERVICE_URL_INVALID,
                     _("No provider available for protocol `%s'"),
                     protocol);
fail:
    UNLOCK();

    return provider;
}


/**
 * camel_provider_auto_detect:
 * @provider: camel provider
 * @settings: currently set settings
 * @auto_detected: output hash table of auto-detected values
 * @ex: exception
 *
 * After filling in the standard Username/Hostname/Port/Path settings
 * (which must be set in @settings), if the provider supports it, you
 * may wish to have the provider auto-detect further settings based on
 * the aformentioned settings.
 *
 * If the provider does not support auto-detection, @auto_detected
 * will be set to %NULL. Otherwise the provider will attempt to
 * auto-detect whatever it can and file them into @auto_detected. If
 * for some reason it cannot auto-detect anything (not enough
 * information provided in @settings?) then @auto_deetected will be
 * set to %NULL and an exception may be set to explain why it failed.
 *
 * Returns 0 on success or -1 on fail.
 **/
int
camel_provider_auto_detect (CamelProvider *provider, CamelURL *url,
                GHashTable **auto_detected, CamelException *ex)
{
    g_return_val_if_fail (provider != NULL, -1);
    
    if (provider->auto_detect) {
        return provider->auto_detect (url, auto_detected, ex);
    } else {
        *auto_detected = NULL;
        return 0;
    }
}