aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/cal-factory.c
blob: 2f72ec59112a0942abf60c6c19f82496a274929d (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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
/* Evolution calendar factory
 *
 * Copyright (C) 2000-2003 Ximian, Inc.
 *
 * Authors: 
 *   Federico Mena-Quintero <federico@ximian.com>
 *   JP Rosevear <jpr@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.
 */

#include <bonobo-activation/bonobo-activation.h>
#include <bonobo/bonobo-exception.h>
#include <bonobo/bonobo-main.h>
#include "e-util/e-url.h"
#include "evolution-calendar.h"
#include "cal-backend.h"
#include "cal.h"
#include "cal-factory.h"

#define PARENT_TYPE                BONOBO_TYPE_OBJECT
#define DEFAULT_CAL_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_CalendarFactory"

static BonoboObjectClass *parent_class;

/* Private part of the CalFactory structure */
struct _CalFactoryPrivate {
    /* Hash table from URI method strings to GType * for backend class types */
    GHashTable *methods;

    /* Hash table from GnomeVFSURI structures to CalBackend objects */
    GHashTable *backends;

    /* OAFIID of the factory */
    char *iid;

    /* Whether we have been registered with OAF yet */
    guint registered : 1;
};

/* Signal IDs */
enum SIGNALS {
    LAST_CALENDAR_GONE,
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL];

/* Opening calendars */
static icalcomponent_kind
calobjtype_to_icalkind (const GNOME_Evolution_Calendar_CalObjType type)
{
    switch (type){
    case GNOME_Evolution_Calendar_TYPE_EVENT:
        return ICAL_VEVENT_COMPONENT;
    case GNOME_Evolution_Calendar_TYPE_TODO:
        return ICAL_VTODO_COMPONENT;
    case GNOME_Evolution_Calendar_TYPE_JOURNAL:
        return ICAL_VJOURNAL_COMPONENT;
    }
    
    return ICAL_NO_COMPONENT;
}

static GType
get_backend_type (GHashTable *methods, const char *method, icalcomponent_kind kind)
{
    GHashTable *kinds;
    GType type;
    
    kinds = g_hash_table_lookup (methods, method);
    if (!kinds)
        return 0;

    type = GPOINTER_TO_INT (g_hash_table_lookup (kinds, GINT_TO_POINTER (kind)));

    return type;
}

/* Looks up a calendar backend in a factory's hash table of uri->cal.  If
 * *non-NULL, orig_uri_return will be set to point to the original key in the
 * *hash table.
 */
static CalBackend *
lookup_backend (CalFactory *factory, const char *uristr)
{
    CalFactoryPrivate *priv;
    EUri *uri;
    CalBackend *backend;
    char *tmp;

    priv = factory->priv;

    uri = e_uri_new (uristr);
    if (!uri)
        return NULL;

    tmp = e_uri_to_string (uri, FALSE);
    backend = g_hash_table_lookup (priv->backends, tmp);
    g_free (tmp);
    e_uri_free (uri);

    return backend;
}

/* Callback used when a backend loses its last connected client */
static void
backend_last_client_gone_cb (CalBackend *backend, gpointer data)
{
    CalFactory *factory;
    CalFactoryPrivate *priv;
    CalBackend *ret_backend;
    const char *uristr;

    fprintf (stderr, "backend_last_client_gone_cb() called!\n");

    factory = CAL_FACTORY (data);
    priv = factory->priv;

    /* Remove the backend from the hash table */

    uristr = cal_backend_get_uri (backend);
    g_assert (uristr != NULL);

    ret_backend = lookup_backend (factory, uristr);
    g_assert (ret_backend != NULL);
    g_assert (ret_backend == backend);

    g_hash_table_remove (priv->backends, uristr);

    /* Notify upstream if there are no more backends */

    if (g_hash_table_size (priv->backends) == 0)
        g_signal_emit (G_OBJECT (factory), signals[LAST_CALENDAR_GONE], 0);
}



static GNOME_Evolution_Calendar_Cal
impl_CalFactory_getCal (PortableServer_Servant servant,
            const CORBA_char *str_uri,
            const GNOME_Evolution_Calendar_CalObjType type,
            const GNOME_Evolution_Calendar_Listener listener,
            CORBA_Environment *ev)
{
    CalFactory *factory;
    CalFactoryPrivate *priv;
    Cal *cal = CORBA_OBJECT_NIL;
    CalBackend *backend;
    CORBA_Environment ev2;
    GNOME_Evolution_Calendar_Listener listener_copy;
    GType backend_type;
    EUri *uri;
    char *uri_string;
    
    factory = CAL_FACTORY (bonobo_object_from_servant (servant));
    priv = factory->priv;

    /* Parse the uri */
    uri = e_uri_new (str_uri);
    if (!uri) {
        bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_CalFactory_InvalidURI);

        return CORBA_OBJECT_NIL;
    }
    uri_string = e_uri_to_string (uri, FALSE);  

    /* Find the associated backend type (if any) */
    backend_type = get_backend_type (priv->methods, uri->protocol, calobjtype_to_icalkind (type));
    if (!backend_type) {
        /* FIXME Distinguish between method and kind failures? */
        bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_CalFactory_UnsupportedMethod);
        goto cleanup;
    }
        
    /* Duplicate the listener object */
    CORBA_exception_init (&ev2);
    listener_copy = CORBA_Object_duplicate (listener, &ev2);

    if (BONOBO_EX (&ev2)) {
        g_warning (G_STRLOC ": could not duplicate the listener");
        bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_CalFactory_NilListener);
        CORBA_exception_free (&ev2);
        goto cleanup;
    }
    CORBA_exception_free (&ev2);

    /* Look for an existing backend */
    backend = lookup_backend (factory, uri_string);
    if (!backend) {
        /* There was no existing backend, create a new one */
        backend = g_object_new (backend_type, "uri", uri_string, "kind", calobjtype_to_icalkind (type), NULL);
        if (!backend) {
            g_warning (G_STRLOC ": could not instantiate backend");
            bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_CalFactory_UnsupportedMethod);
            goto cleanup;
        }

        /* Track the backend */
        g_hash_table_insert (priv->backends, g_strdup (uri_string), backend);

        g_signal_connect (G_OBJECT (backend), "last_client_gone",
                  G_CALLBACK (backend_last_client_gone_cb),
                  factory);
    }
    
    /* Create the corba calendar */
    cal = cal_new (backend, uri_string, listener);
    if (!cal) {
        g_warning (G_STRLOC ": could not create the corba calendar");
        bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_CalFactory_UnsupportedMethod);
        goto cleanup;
    }

    /* Let the backend know about its clients corba clients */
    cal_backend_add_client (backend, cal);
    
 cleanup:
    e_uri_free (uri);
    g_free (uri_string);

    return CORBA_Object_duplicate (BONOBO_OBJREF (cal), ev);
}



/**
 * cal_factory_new:
 * @void:
 *
 * Creates a new #CalFactory object.
 *
 * Return value: A newly-created #CalFactory, or NULL if its corresponding CORBA
 * object could not be created.
 **/
CalFactory *
cal_factory_new (void)
{
    CalFactory *factory;

    factory = g_object_new (CAL_FACTORY_TYPE, 
                "poa", bonobo_poa_get_threaded (ORBIT_THREAD_HINT_PER_REQUEST, NULL), 
                NULL);

    return factory;
}

/* Destroy handler for the calendar */
static void
cal_factory_finalize (GObject *object)
{
    CalFactory *factory;
    CalFactoryPrivate *priv;

    g_return_if_fail (object != NULL);
    g_return_if_fail (IS_CAL_FACTORY (object));

    factory = CAL_FACTORY (object);
    priv = factory->priv;

    g_hash_table_destroy (priv->methods);
    priv->methods = NULL;

    /* Should we assert that there are no more backends? */
    g_hash_table_destroy (priv->backends);
    priv->backends = NULL;

    if (priv->registered) {
        bonobo_activation_active_server_unregister (priv->iid, BONOBO_OBJREF (factory));
        priv->registered = FALSE;
    }
    g_free (priv->iid);

    g_free (priv);
    factory->priv = NULL;

    if (G_OBJECT_CLASS (parent_class)->finalize)
        (* G_OBJECT_CLASS (parent_class)->finalize) (object);
}

/* Class initialization function for the calendar factory */
static void
cal_factory_class_init (CalFactoryClass *klass)
{
    GObjectClass *object_class = (GObjectClass *) klass;
    POA_GNOME_Evolution_Calendar_CalFactory__epv *epv = &klass->epv;

    parent_class = g_type_class_peek_parent (klass);

    signals[LAST_CALENDAR_GONE] =
        g_signal_new ("last_calendar_gone",
                  G_TYPE_FROM_CLASS (klass),
                  G_SIGNAL_RUN_FIRST,
                  G_STRUCT_OFFSET (CalFactoryClass, last_calendar_gone),
                  NULL, NULL,
                  g_cclosure_marshal_VOID__VOID,
                  G_TYPE_NONE, 0);

    /* Class method overrides */
    object_class->finalize = cal_factory_finalize;

    /* Epv methods */
    epv->getCal = impl_CalFactory_getCal;
}

/* Object initialization function for the calendar factory */
static void
cal_factory_init (CalFactory *factory, CalFactoryClass *klass)
{
    CalFactoryPrivate *priv;

    priv = g_new0 (CalFactoryPrivate, 1);
    factory->priv = priv;

    priv->methods = g_hash_table_new_full (g_str_hash, g_str_equal, 
                           (GDestroyNotify) g_free, (GDestroyNotify) g_hash_table_destroy);
    priv->backends = g_hash_table_new_full (g_str_hash, g_str_equal, 
                        (GDestroyNotify) g_free, (GDestroyNotify) g_object_unref);
    priv->registered = FALSE;
}

BONOBO_TYPE_FUNC_FULL (CalFactory,
               GNOME_Evolution_Calendar_CalFactory,
               PARENT_TYPE,
               cal_factory);

/**
 * cal_factory_register_storage:
 * @factory: A calendar factory.
 * @iid: OAFIID for the factory to be registered.
 * 
 * Registers a calendar factory with the OAF object activation daemon.  This
 * function must be called before any clients can activate the factory.
 * 
 * Return value: TRUE on success, FALSE otherwise.
 **/
gboolean
cal_factory_register_storage (CalFactory *factory, const char *iid)
{
    CalFactoryPrivate *priv;
    Bonobo_RegistrationResult result;
    char *tmp_iid;

    g_return_val_if_fail (factory != NULL, FALSE);
    g_return_val_if_fail (IS_CAL_FACTORY (factory), FALSE);

    priv = factory->priv;

    g_return_val_if_fail (!priv->registered, FALSE);

    /* if iid is NULL, use the default factory OAFIID */
    if (iid)
        tmp_iid = g_strdup (iid);
    else
        tmp_iid = g_strdup (DEFAULT_CAL_FACTORY_OAF_ID);

    result = bonobo_activation_active_server_register (tmp_iid, BONOBO_OBJREF (factory));

    switch (result) {
    case Bonobo_ACTIVATION_REG_SUCCESS:
        priv->registered = TRUE;
        priv->iid = tmp_iid;
        return TRUE;

    case Bonobo_ACTIVATION_REG_NOT_LISTED:
        g_warning (G_STRLOC ": cannot register the calendar factory (not listed)");
        break;

    case Bonobo_ACTIVATION_REG_ALREADY_ACTIVE:
        g_warning (G_STRLOC ": cannot register the calendar factory (already active)");
        break;

    case Bonobo_ACTIVATION_REG_ERROR:
    default:
        g_warning (G_STRLOC ": cannot register the calendar factory (generic error)");
        break;
    }

    g_free (tmp_iid);

    return FALSE;
}

/**
 * cal_factory_register_method:
 * @factory: A calendar factory.
 * @method: Method for the URI, i.e. "http", "file", etc.
 * @backend_type: Class type of the backend to create for this @method.
 * 
 * Registers the type of a #CalBackend subclass that will be used to handle URIs
 * with a particular method.  When the factory is asked to open a particular
 * URI, it will look in its list of registered methods and create a backend of
 * the appropriate type.
 **/
void
cal_factory_register_method (CalFactory *factory, const char *method, icalcomponent_kind kind, GType backend_type)
{
    CalFactoryPrivate *priv;
    char *method_str;
    GHashTable *kinds;
    GType type;
    
    g_return_if_fail (factory != NULL);
    g_return_if_fail (IS_CAL_FACTORY (factory));
    g_return_if_fail (method != NULL);
    g_return_if_fail (backend_type != 0);
    g_return_if_fail (g_type_is_a (backend_type, CAL_BACKEND_TYPE));

    priv = factory->priv;

    method_str = g_ascii_strdown (method, -1);

    kinds = g_hash_table_lookup (priv->methods, method_str);
    if (kinds) {
        type = GPOINTER_TO_INT (g_hash_table_lookup (kinds, GINT_TO_POINTER (kind)));
        if (type) {
            g_warning (G_STRLOC ": method `%s' already registered", method_str);
            g_free (method_str);

            return;
        }       
    } else {
        kinds = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL, NULL);
        g_hash_table_insert (priv->methods, method_str, kinds);
    }   
    
    g_hash_table_insert (kinds, GINT_TO_POINTER (kind), GINT_TO_POINTER (backend_type));
}

/**
 * cal_factory_get_n_backends
 * @factory: A calendar factory.
 *
 * Get the number of backends currently active in the given factory.
 *
 * Returns: the number of backends.
 */
int
cal_factory_get_n_backends (CalFactory *factory)
{
    CalFactoryPrivate *priv;

    g_return_val_if_fail (IS_CAL_FACTORY (factory), 0);

    priv = factory->priv;
    return g_hash_table_size (priv->backends);
}

/* Frees a uri/backend pair from the backends hash table */
static void
dump_backend (gpointer key, gpointer value, gpointer data)
{
    char *uri;
    CalBackend *backend;

    uri = key;
    backend = value;

    g_message ("  %s: %p", uri, backend);
}

void
cal_factory_dump_active_backends   (CalFactory *factory)
{
    CalFactoryPrivate *priv;

    g_message ("Active PCS backends");

    priv = factory->priv;
    g_hash_table_foreach (priv->backends, dump_backend, NULL);
}