From f3f2afef4c3c60fa1ba472ef93e8e8516e7027bb Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 6 Apr 2000 20:10:05 +0000 Subject: Reorganize the folder-fetching methods and implement a folder cache so 2000-04-06 Dan Winship * camel-store.[ch]: Reorganize the folder-fetching methods and implement a folder cache so that multiple requests for the same folder will yield the same CamelFolder object (as long as it remains active). Includes some code to remove no-longer-active folders from the cache, but it doesn't get used since nothing is ever unref'ed in Camel right now... * providers/mbox/camel-mbox-store.c: * providers/pop3/camel-pop3-store.c: update for CamelStore changes. * camel-folder.[ch]: Remove the (unused) CamelException argument from camel_folder_get_name and camel_folder_get_full_name. (camel_folder_set_name): make this go away since changing a folder's name after it has been created could result in it conflicting with a separately-issued folder. svn path=/trunk/; revision=2314 --- camel/providers/mbox/camel-mbox-store.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'camel/providers/mbox') diff --git a/camel/providers/mbox/camel-mbox-store.c b/camel/providers/mbox/camel-mbox-store.c index 32d25becf1..0081aedb0e 100644 --- a/camel/providers/mbox/camel-mbox-store.c +++ b/camel/providers/mbox/camel-mbox-store.c @@ -35,8 +35,10 @@ #define CF_CLASS(so) CAMEL_FOLDER_CLASS (GTK_OBJECT(so)->klass) #define CMBOXF_CLASS(so) CAMEL_MBOX_FOLDER_CLASS (GTK_OBJECT(so)->klass) -static CamelFolder *_get_folder (CamelStore *store, const gchar *folder_name, CamelException *ex); - +static CamelFolder *get_folder (CamelStore *store, const char *folder_name, + CamelException *ex); +static char *get_folder_name (CamelStore *store, const char *folder_name, + CamelException *ex); static void camel_mbox_store_class_init (CamelMboxStoreClass *camel_mbox_store_class) @@ -44,7 +46,8 @@ camel_mbox_store_class_init (CamelMboxStoreClass *camel_mbox_store_class) CamelStoreClass *camel_store_class = CAMEL_STORE_CLASS (camel_mbox_store_class); /* virtual method overload */ - camel_store_class->get_folder = _get_folder; + camel_store_class->get_folder = get_folder; + camel_store_class->get_folder_name = get_folder_name; } @@ -53,8 +56,12 @@ static void camel_mbox_store_init (gpointer object, gpointer klass) { CamelService *service = CAMEL_SERVICE (object); + CamelStore *store = CAMEL_STORE (object); service->url_flags = CAMEL_SERVICE_URL_NEED_PATH; + + /* mbox names are filenames, so they are case-sensitive. */ + store->folders = g_hash_table_new (g_str_hash, g_str_equal); } @@ -97,15 +104,11 @@ camel_mbox_store_get_toplevel_dir (CamelMboxStore *store) static CamelFolder * -_get_folder (CamelStore *store, const gchar *folder_name, CamelException *ex) +get_folder (CamelStore *store, const char *folder_name, CamelException *ex) { CamelMboxFolder *new_mbox_folder; CamelFolder *new_folder; - /* check if folder has already been created */ - /* call the standard routine for that when */ - /* it is done ... */ - CAMEL_LOG_FULL_DEBUG ("Entering CamelMboxStore::get_folder\n"); new_mbox_folder = gtk_type_new (CAMEL_MBOX_FOLDER_TYPE); new_folder = CAMEL_FOLDER (new_mbox_folder); @@ -121,3 +124,10 @@ _get_folder (CamelStore *store, const gchar *folder_name, CamelException *ex) return new_folder; } + +static char * +get_folder_name (CamelStore *store, const char *folder_name, + CamelException *ex) +{ + return g_strdup (folder_name); +} -- cgit v1.2.3