aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.c
blob: 5b482992315e43f012145fce16e00dd8685b6d57 (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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-store.c : Abstract class for an email store */

/* 
 *
 * Authors:
 *  Bertrand Guiheneuf <bertrand@helixcode.com>
 *  Dan Winship <danw@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
 */
#include <config.h>
#include <string.h>

#include "camel-store.h"
#include "camel-folder.h"
#include "camel-exception.h"

#include "camel-private.h"

static CamelServiceClass *parent_class = NULL;

/* Returns the class for a CamelStore */
#define CS_CLASS(so) CAMEL_STORE_CLASS (CAMEL_OBJECT_GET_CLASS(so))

static CamelFolder *get_folder (CamelStore *store, const char *folder_name,
                guint32 flags, CamelException *ex);
static void delete_folder (CamelStore *store, const char *folder_name,
               CamelException *ex);
static void rename_folder (CamelStore *store, const char *old_name,
               const char *new_name, CamelException *ex);

static char *get_folder_name (CamelStore *store, const char *folder_name,
                  CamelException *ex);
static char *get_root_folder_name (CamelStore *store, CamelException *ex);
static char *get_default_folder_name (CamelStore *store, CamelException *ex);

static void store_sync (CamelStore *store, CamelException *ex);
static CamelFolderInfo *get_folder_info (CamelStore *store, const char *top,
                     gboolean fast, gboolean recursive,
                     gboolean subscribed_only,
                     CamelException *ex);
static void free_folder_info (CamelStore *store, CamelFolderInfo *tree);

static CamelFolder *lookup_folder (CamelStore *store, const char *folder_name);
static void cache_folder (CamelStore *store, const char *folder_name,
              CamelFolder *folder);
static void uncache_folder (CamelStore *store, CamelFolder *folder);

static gboolean folder_subscribed (CamelStore *store, const char *folder_name);
static void subscribe_folder (CamelStore *store, const char *folder_name, CamelException *ex);
static void unsubscribe_folder (CamelStore *store, const char *folder_name, CamelException *ex);

static void
camel_store_class_init (CamelStoreClass *camel_store_class)
{
    parent_class = CAMEL_SERVICE_CLASS (camel_type_get_global_classfuncs (camel_service_get_type ()));

    /* virtual method definition */
    camel_store_class->get_folder = get_folder;
    camel_store_class->delete_folder = delete_folder;
    camel_store_class->rename_folder = rename_folder;
    camel_store_class->get_folder_name = get_folder_name;
    camel_store_class->get_root_folder_name = get_root_folder_name;
    camel_store_class->get_default_folder_name = get_default_folder_name;
    camel_store_class->sync = store_sync;
    camel_store_class->get_folder_info = get_folder_info;
    camel_store_class->free_folder_info = free_folder_info;
    camel_store_class->lookup_folder = lookup_folder;
    camel_store_class->cache_folder = cache_folder;
    camel_store_class->uncache_folder = uncache_folder;
    camel_store_class->folder_subscribed = folder_subscribed;
    camel_store_class->subscribe_folder = subscribe_folder;
    camel_store_class->unsubscribe_folder = unsubscribe_folder;
}

static void
camel_store_init (void *o, void *k)
{
    CamelStore *store = o;

    if (store->folders == NULL)
        store->folders = g_hash_table_new (g_str_hash, g_str_equal);
    store->flags = 0;

    store->priv = g_malloc0(sizeof(*store->priv));
#ifdef ENABLE_THREADS
    store->priv->folder_lock = g_mutex_new();
    store->priv->cache_lock = g_mutex_new();
#endif
}

static void
camel_store_finalize (CamelObject *object)
{
    CamelStore *store = CAMEL_STORE (object);

    if (store->folders) {
        if (g_hash_table_size (store->folders) != 0) {
            g_warning ("Folder cache for store %p contains "
                   "%d folders at destruction.", store,
                   g_hash_table_size (store->folders));
        }
        g_hash_table_destroy (store->folders);
    }

#ifdef ENABLE_THREADS
    g_mutex_free(store->priv->folder_lock);
    g_mutex_free(store->priv->cache_lock);
#endif
    g_free(store->priv);
}


CamelType
camel_store_get_type (void)
{
    static CamelType camel_store_type = CAMEL_INVALID_TYPE;

    if (camel_store_type == CAMEL_INVALID_TYPE) {
        camel_store_type = camel_type_register (CAMEL_SERVICE_TYPE, "CamelStore",
                            sizeof (CamelStore),
                            sizeof (CamelStoreClass),
                            (CamelObjectClassInitFunc) camel_store_class_init,
                            NULL,
                            (CamelObjectInitFunc) camel_store_init,
                            (CamelObjectFinalizeFunc) camel_store_finalize );
    }

    return camel_store_type;
}


static CamelFolder *
get_folder(CamelStore *store, const char *folder_name, guint32 flags, CamelException *ex)
{
    g_warning("CamelStore::get_folder not implemented for `%s'",
          camel_type_to_name(CAMEL_OBJECT_GET_TYPE(store)));
    return NULL;
}

static void
delete_folder (CamelStore *store, const char *folder_name, CamelException *ex)
{
    g_warning ("CamelStore::delete_folder not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
}

static void
rename_folder (CamelStore *store, const char *old_name,
           const char *new_name, CamelException *ex)
{
    g_warning ("CamelStore::rename_folder not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
}


/* CamelStore::get_folder_name should:
 * a) make sure that the provided name is valid
 * b) return it in canonical form, in allocated memory.
 *
 * This is used to make sure that duplicate names for the same folder
 * don't result in duplicate cache entries.
 */
static char *
get_folder_name (CamelStore *store, const char *folder_name,
         CamelException *ex)
{
    g_warning ("CamelStore::get_folder_name not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
    return NULL;
}

static char *
get_root_folder_name (CamelStore *store, CamelException *ex)
{
    return g_strdup ("/");
}

static char *
get_default_folder_name (CamelStore *store, CamelException *ex)
{
    return CS_CLASS (store)->get_root_folder_name (store, ex);
}

static CamelFolder *
lookup_folder (CamelStore *store, const char *folder_name)
{
    CamelFolder *folder = NULL;

    CAMEL_STORE_LOCK(store, cache_lock);

    if (store->folders) {
        folder = g_hash_table_lookup (store->folders, folder_name);
        if (folder)
            camel_object_ref(CAMEL_OBJECT(folder));
    }

    CAMEL_STORE_UNLOCK(store, cache_lock);

    return folder;
}

static void folder_finalize (CamelObject *folder, gpointer event_data, gpointer user_data)
{
    CS_CLASS (user_data)->uncache_folder (CAMEL_STORE(user_data), CAMEL_FOLDER(folder));
}

static void
cache_folder (CamelStore *store, const char *folder_name, CamelFolder *folder)
{
    CAMEL_STORE_LOCK(store, cache_lock);

    if (store->folders) {
        if (g_hash_table_lookup (store->folders, folder_name)) {
            g_warning ("Caching folder %s that already exists.", folder_name);
        }
        g_hash_table_insert (store->folders, g_strdup (folder_name), folder);

        camel_object_hook_event (CAMEL_OBJECT (folder), "finalize", folder_finalize, store);
    }

    CAMEL_STORE_UNLOCK(store, cache_lock);

    /*
     * gt_k so as not to get caught by my little gt_k cleanliness detector.
     *
     * gt_k_signal_connect_object (CAMEL_OBJECT (folder), "destroy",
     *             GT_K_SIGNAL_FUNC (CS_CLASS (store)->uncache_folder),
     *             CAMEL_OBJECT (store));
     */
}

static gboolean
folder_matches (gpointer key, gpointer value, gpointer user_data)
{
    if (value == user_data) {
        g_free (key);
        return TRUE;
    } else
        return FALSE;
}

static void
uncache_folder (CamelStore *store, CamelFolder *folder)
{
    CAMEL_STORE_LOCK(store, cache_lock);

    g_hash_table_foreach_remove (store->folders, folder_matches, folder);

    CAMEL_STORE_UNLOCK(store, cache_lock);
}


static CamelFolder *
get_folder_internal(CamelStore *store, const char *folder_name, guint32 flags, CamelException *ex)
{
    CamelFolder *folder = NULL;

    /* NB: we already have folder_lock */

    /* Try cache first. */
    folder = CS_CLASS(store)->lookup_folder(store, folder_name);

    if (!folder) {
        folder = CS_CLASS(store)->get_folder(store, folder_name, flags, ex);
        if (!folder)
            return NULL;

        CS_CLASS(store)->cache_folder(store, folder_name, folder);
    }

    return folder;
}



/** 
 * camel_store_get_folder: Return the folder corresponding to a path.
 * @store: a CamelStore
 * @folder_name: name of the folder to get
 * @flags: folder flags (create, save body index, etc)
 * @ex: a CamelException
 * 
 * Returns the folder corresponding to the path @folder_name. If the
 * path begins with the separator character, it is relative to the
 * root folder. Otherwise, it is relative to the default folder.
 *
 * Return value: the folder
 **/
CamelFolder *
camel_store_get_folder(CamelStore *store, const char *folder_name, guint32 flags, CamelException *ex)
{
    char *name;
    CamelFolder *folder = NULL;

    CAMEL_STORE_LOCK(store, folder_lock);

    name = CS_CLASS(store)->get_folder_name(store, folder_name, ex);
    if (name) {
        folder = get_folder_internal(store, name, flags, ex);
        g_free (name);
    }

    CAMEL_STORE_UNLOCK(store, folder_lock);

    return folder;
}


/** 
 * camel_store_delete_folder: Delete the folder corresponding to a path.
 * @store: a CamelStore
 * @folder_name: name of the folder to delete
 * @ex: a CamelException
 * 
 * Deletes the named folder. The folder must be empty.
 **/
void
camel_store_delete_folder (CamelStore *store, const char *folder_name,
               CamelException *ex)
{
    char *name;

    CAMEL_STORE_LOCK(store, folder_lock);

    name = CS_CLASS (store)->get_folder_name (store, folder_name, ex);
    if (name) {
        CS_CLASS (store)->delete_folder (store, name, ex);
        g_free (name);
    }

    CAMEL_STORE_UNLOCK(store, folder_lock);
}

/**
 * camel_store_rename_folder:
 * @store: 
 * @old_name: 
 * @new_name: 
 * @ex: 
 * 
 * Rename a named folder to a new name.
 **/
void             camel_store_rename_folder      (CamelStore *store,
                         const char *old_name,
                         const char *new_name,
                         CamelException *ex)
{
    char *old, *new;

    CAMEL_STORE_LOCK(store, folder_lock);

    old = CS_CLASS (store)->get_folder_name(store, old_name, ex);
    if (old) {
        new = CS_CLASS (store)->get_folder_name(store, new_name, ex);
        if (new) {
            CS_CLASS (store)->rename_folder(store, old, new, ex);
            g_free(new);
        }
        g_free(old);
    }

    CAMEL_STORE_UNLOCK(store, folder_lock);
}


/**
 * camel_store_get_root_folder: return the top-level folder
 * 
 * Returns the folder which is at the top of the folder hierarchy.
 * This folder may or may not be the same as the default folder.
 * 
 * Return value: the top-level folder.
 **/
CamelFolder *
camel_store_get_root_folder (CamelStore *store, CamelException *ex)
{
    char *name;
    CamelFolder *folder = NULL;

    CAMEL_STORE_LOCK(store, folder_lock);

    name = CS_CLASS (store)->get_root_folder_name (store, ex);
    if (name) {
        folder = get_folder_internal (store, name, CAMEL_STORE_FOLDER_CREATE, ex);
        g_free (name);
    }

    CAMEL_STORE_UNLOCK(store, folder_lock);

    return folder;
}

/** 
 * camel_store_get_default_folder: return the store default folder
 *
 * The default folder is the folder which is presented to the user in
 * the default configuration. This defaults to the root folder if
 * the store doesn't override it.
 *
 * Return value: the default folder.
 **/
CamelFolder *
camel_store_get_default_folder (CamelStore *store, CamelException *ex)
{
    char *name;
    CamelFolder *folder = NULL;

    CAMEL_STORE_LOCK(store, folder_lock);

    name = CS_CLASS (store)->get_default_folder_name (store, ex);
    if (name) {
        folder = get_folder_internal (store, name, CAMEL_STORE_FOLDER_CREATE, ex);
        g_free (name);
    }

    CAMEL_STORE_UNLOCK(store, folder_lock);

    return folder;
}


static void
sync_folder (gpointer key, gpointer folder, gpointer ex)
{
    if (!camel_exception_is_set (ex))
        camel_folder_sync (folder, FALSE, ex);
}

static void
store_sync (CamelStore *store, CamelException *ex)
{
    CAMEL_STORE_LOCK(store, cache_lock);
    g_hash_table_foreach (store->folders, sync_folder, ex);
    CAMEL_STORE_UNLOCK(store, cache_lock);
}

/**
 * camel_store_sync:
 * @store: a CamelStore
 * @ex: a CamelException
 *
 * Syncs any changes that have been made to the store object and its
 * folders with the real store.
 **/
void
camel_store_sync (CamelStore *store, CamelException *ex)
{
    g_return_if_fail (CAMEL_IS_STORE (store));

    CS_CLASS (store)->sync (store, ex);
}


static CamelFolderInfo *
get_folder_info (CamelStore *store, const char *top,
         gboolean fast, gboolean recursive,
         gboolean subscribed_only,
         CamelException *ex)
{
    g_warning ("CamelStore::get_folder_info not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
    return NULL;
}

/**
 * camel_store_get_folder_info:
 * @store: a CamelStore
 * @top: the name of the folder to start from
 * @fast: whether or not to do a "fast" scan.
 * @recursive: whether to include information for subfolders
 * @ex: a CamelException
 *
 * This fetches information about the folder structure of @store,
 * starting with @top, and returns a tree of CamelFolderInfo
 * structures. If @fast is %TRUE, the message_count or
 * unread_message_count fields of some or all of the structures may be
 * set to -1, if the store cannot determine that information quickly.
 * If @recursive is %TRUE, the returned tree will include all levels of
 * hierarchy below @top. If it is %FALSE, it will only include the
 * immediate subfolders of @top.
 *
 * Return value: a CamelFolderInfo tree, which must be freed with
 * camel_store_free_folder_info.
 **/
CamelFolderInfo *
camel_store_get_folder_info (CamelStore *store, const char *top,
                 gboolean fast, gboolean recursive,
                 gboolean subscribed_only,
                 CamelException *ex)
{
    CamelFolderInfo *ret;

    g_return_val_if_fail (CAMEL_IS_STORE (store), NULL);

    CAMEL_STORE_LOCK(store, folder_lock);

    ret = CS_CLASS (store)->get_folder_info (store, top, fast, recursive, subscribed_only, ex);

    CAMEL_STORE_UNLOCK(store, folder_lock);

    return ret;
}


static void
free_folder_info (CamelStore *store, CamelFolderInfo *fi)
{
    g_warning ("CamelStore::free_folder_info not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
}

/**
 * camel_store_free_folder_info:
 * @store: a CamelStore
 * @tree: the tree returned by camel_store_get_folder_info()
 *
 * Frees the data returned by camel_store_get_folder_info().
 **/
void
camel_store_free_folder_info (CamelStore *store, CamelFolderInfo *fi)
{
    g_return_if_fail (CAMEL_IS_STORE (store));

    CS_CLASS (store)->free_folder_info (store, fi);
}

/**
 * camel_store_free_folder_info_full:
 * @store: a CamelStore
 * @tree: the tree returned by camel_store_get_folder_info()
 *
 * An implementation for CamelStore::free_folder_info. Frees all
 * of the data.
 **/
void
camel_store_free_folder_info_full (CamelStore *store, CamelFolderInfo *fi)
{
    camel_folder_info_free (fi);
}

/**
 * camel_store_free_folder_info_nop:
 * @store: a CamelStore
 * @tree: the tree returned by camel_store_get_folder_info()
 *
 * An implementation for CamelStore::free_folder_info. Does nothing.
 **/
void
camel_store_free_folder_info_nop (CamelStore *store, CamelFolderInfo *fi)
{
    ;
}


/**
 * camel_folder_info_free:
 * @fi: the CamelFolderInfo
 *
 * Frees @fi.
 **/
void
camel_folder_info_free (CamelFolderInfo *fi)
{
    if (fi) {
        camel_folder_info_free (fi->sibling);
        camel_folder_info_free (fi->child);
        g_free (fi->name);
        g_free (fi->full_name);
        g_free (fi->url);
        g_free (fi);
    }
}


/**
 * camel_folder_info_build:
 * @folders: an array of CamelFolderInfo
 * @namespace: an ignorable prefix on the folder names
 * @separator: the hieararchy separator character
 * @short_names: %TRUE if the (short) name of a folder is the part after
 * the last @separator in the full name. %FALSE if it is the full name.
 *
 * This takes an array of folders and attaches them together according
 * to the hierarchy described by their full_names and @separator. If
 * @namespace is non-%NULL, then it will be ignored as a full_name
 * prefix, for purposes of comparison. If necessary,
 * camel_folder_info_build will create additional CamelFolderInfo with
 * %NULL urls to fill in gaps in the tree. The value of @short_names
 * is used in constructing the names of these intermediate folders.
 *
 * Return value: the top level of the tree of linked folder info.
 **/
CamelFolderInfo *
camel_folder_info_build (GPtrArray *folders, const char *namespace,
             char separator, gboolean short_names)
{
    CamelFolderInfo *fi, *pfi, *top = NULL;
    GHashTable *hash;
    char *name, *p, *pname;
    int i, nlen;

    if (!namespace)
        namespace = "";
    nlen = strlen (namespace);

    /* Hash the folders. */
    hash = g_hash_table_new (g_str_hash, g_str_equal);
    for (i = 0; i < folders->len; i++) {
        fi = folders->pdata[i];
        if (!strncmp (namespace, fi->full_name, nlen))
            name = fi->full_name + nlen;
        else
            name = fi->full_name;
        if (*name == separator)
            name++;
        g_hash_table_insert (hash, name, fi);
    }

    /* Now find parents. */
    for (i = 0; i < folders->len; i++) {
        fi = folders->pdata[i];
        if (!strncmp (namespace, fi->full_name, nlen))
            name = fi->full_name + nlen;
        else
            name = fi->full_name;
        if (*name == separator)
            name++;
        p = strrchr (name, separator);
        if (p) {
            pname = g_strndup (name, p - name);
            pfi = g_hash_table_lookup (hash, pname);
            if (pfi) {
                g_free (pname);
            } else {
                pfi = g_new0 (CamelFolderInfo, 1);
                pfi->full_name = pname;
                if (short_names) {
                    pfi->name = strrchr (pname, separator);
                    if (pfi->name)
                        pfi->name = g_strdup (pfi->name + 1);
                    else
                        pfi->name = g_strdup (pname);
                } else
                    pfi->name = g_strdup (pname);
                g_hash_table_insert (hash, pname, pfi);
                g_ptr_array_add (folders, pfi);
            }
            fi->sibling = pfi->child;
            fi->parent = pfi;
            pfi->child = fi;
        } else if (!top)
            top = fi;
    }
    g_hash_table_destroy (hash);

    /* Link together the top-level folders */
    for (i = 0; i < folders->len; i++) {
        fi = folders->pdata[i];
        if (fi->parent || fi == top)
            continue;
        if (top)
            fi->sibling = top;
        top = fi;
    }

    return top;         
}

gboolean
camel_store_supports_subscriptions (CamelStore *store)
{
    return (store->flags & CAMEL_STORE_SUBSCRIPTIONS);
}


static gboolean
folder_subscribed (CamelStore *store, const char *folder_name)
{
    g_warning ("CamelStore::folder_subscribed not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
    return FALSE;
}

/**
 * camel_store_folder_subscribed: Tell whether or not a folder has been subscribed to.
 * @store: a CamelStore
 * @folder_name: the folder on which we're querying subscribed status.
 * Return value: TRUE if folder is subscribed, FALSE if not.
 **/
gboolean
camel_store_folder_subscribed (CamelStore *store,
                   const char *folder_name)
{
    gboolean ret;

    g_return_val_if_fail (CAMEL_IS_STORE (store), FALSE);
    g_return_val_if_fail (store->flags & CAMEL_STORE_SUBSCRIPTIONS, FALSE);

    CAMEL_STORE_LOCK(store, folder_lock);

    ret = CS_CLASS (store)->folder_subscribed (store, folder_name);

    CAMEL_STORE_UNLOCK(store, folder_lock);

    return ret;
}

static void
subscribe_folder (CamelStore *store, const char *folder_name, CamelException *ex)
{
    g_warning ("CamelStore::subscribe_folder not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
}

/**
 * camel_store_subscribe_folder: marks a folder as subscribed.
 * @store: a CamelStore
 * @folder_name: the folder to subscribe to.
 **/
void
camel_store_subscribe_folder (CamelStore *store,
                  const char *folder_name,
                  CamelException *ex)
{
    g_return_if_fail (CAMEL_IS_STORE (store));
    g_return_if_fail (store->flags & CAMEL_STORE_SUBSCRIPTIONS);

    CAMEL_STORE_LOCK(store, folder_lock);

    CS_CLASS (store)->subscribe_folder (store, folder_name, ex);

    CAMEL_STORE_UNLOCK(store, folder_lock);
}

static void
unsubscribe_folder (CamelStore *store, const char *folder_name, CamelException *ex)
{
    g_warning ("CamelStore::unsubscribe_folder not implemented for `%s'",
           camel_type_to_name (CAMEL_OBJECT_GET_TYPE (store)));
}


/**
 * camel_store_unsubscribe_folder: marks a folder as unsubscribed.
 * @store: a CamelStore
 * @folder_name: the folder to unsubscribe from.
 **/
void
camel_store_unsubscribe_folder (CamelStore *store,
                const char *folder_name,
                CamelException *ex)
{
    g_return_if_fail (CAMEL_IS_STORE (store));
    g_return_if_fail (store->flags & CAMEL_STORE_SUBSCRIPTIONS);

    CAMEL_STORE_LOCK(store, folder_lock);

    CS_CLASS (store)->unsubscribe_folder (store, folder_name, ex);

    CAMEL_STORE_UNLOCK(store, folder_lock);
}