diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-02 04:56:04 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-02 04:56:04 +0800 |
commit | b2cda1d0c6d44f53f71bad9e256f41188677dfba (patch) | |
tree | 65bd7560e802baf1740482ae48b952dc5c5957fc /mail/mail-ops.c | |
parent | e52986f4225cbe8496043da74ca250521d244705 (diff) | |
download | gsoc2013-evolution-b2cda1d0c6d44f53f71bad9e256f41188677dfba.tar.gz gsoc2013-evolution-b2cda1d0c6d44f53f71bad9e256f41188677dfba.tar.zst gsoc2013-evolution-b2cda1d0c6d44f53f71bad9e256f41188677dfba.zip |
Merge revisions 36016:36533 from trunk.
svn path=/branches/kill-bonobo/; revision=36534
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 130 |
1 files changed, 80 insertions, 50 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 6a8c998343..d12ac23a13 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1,27 +1,28 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* mail-ops.c: callbacks for the mail toolbar/menus */ - /* - * Authors: Dan Winship <danw@ximian.com> - * Jeffrey Stedfast <fejj@ximian.com> - * Peter Williams <peterw@ximian.com> - * Michael Zucchi <notzed@ximian.com> - * - * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) + * mail-ops.c: callbacks for the mail toolbar/menus * * 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. + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. * * 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with the program; if not, see <http://www.gnu.org/licenses/> + * + * + * Authors: + * Dan Winship <danw@ximian.com> + * Jeffrey Stedfast <fejj@ximian.com> + * Peter Williams <peterw@ximian.com> + * Michael Zucchi <notzed@ximian.com> + * + * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA */ #include <config.h> @@ -1400,68 +1401,94 @@ mail_get_store (const char *uri, CamelOperation *op, void (*done) (char *uri, Ca struct _remove_folder_msg { MailMsg base; - char *uri; + CamelFolder *folder; gboolean removed; - void (*done) (char *uri, gboolean removed, void *data); + void (*done) (CamelFolder *folder, gboolean removed, CamelException *ex, void *data); void *data; }; static gchar * remove_folder_desc (struct _remove_folder_msg *m) { - return g_strdup_printf (_("Removing folder %s"), m->uri); + return g_strdup_printf (_("Removing folder %s"), m->folder->full_name); +} + +static void +remove_folder_rec (CamelStore *store, CamelFolderInfo *fi, CamelException *ex) +{ + while (fi) { + CamelFolder *folder; + + if (fi->child) { + remove_folder_rec (store, fi->child, ex); + if (camel_exception_is_set (ex)) + return; + } + + d(printf ("deleting folder '%s'\n", fi->full_name)); + + if (!(folder = camel_store_get_folder (store, fi->full_name, 0, ex))) + return; + + if (!CAMEL_IS_VEE_FOLDER (folder)) { + GPtrArray *uids = camel_folder_get_uids (folder); + int i; + + /* Delete every message in this folder, then expunge it */ + camel_folder_freeze (folder); + for (i = 0; i < uids->len; i++) + camel_folder_delete_message (folder, uids->pdata[i]); + + camel_folder_free_uids (folder, uids); + + camel_folder_sync (folder, TRUE, NULL); + camel_folder_thaw (folder); + } + + /* if the store supports subscriptions, unsubscribe from this folder... */ + if (camel_store_supports_subscriptions (store)) + camel_store_unsubscribe_folder (store, fi->full_name, NULL); + + /* Then delete the folder from the store */ + camel_store_delete_folder (store, fi->full_name, ex); + if (camel_exception_is_set (ex)) + return; + + fi = fi->next; + } } static void remove_folder_exec (struct _remove_folder_msg *m) { CamelStore *store; - CamelFolder *folder; - GPtrArray *uids; - int i; + CamelFolderInfo *fi; m->removed = FALSE; - folder = mail_tool_uri_to_folder (m->uri, 0, &m->base.ex); - if (!folder) - return; + store = m->folder->parent_store; - store = folder->parent_store; - - /* Delete every message in this folder, then expunge it */ - uids = camel_folder_get_uids (folder); - camel_folder_freeze(folder); - for (i = 0; i < uids->len; i++) - camel_folder_delete_message (folder, uids->pdata[i]); - camel_folder_sync (folder, TRUE, NULL); - camel_folder_thaw(folder); - camel_folder_free_uids (folder, uids); + fi = camel_store_get_folder_info (store, m->folder->full_name, CAMEL_STORE_FOLDER_INFO_RECURSIVE | CAMEL_STORE_FOLDER_INFO_FAST | CAMEL_STORE_FOLDER_INFO_SUBSCRIBED, &m->base.ex); + if (camel_exception_is_set (&m->base.ex)) + return; - /* if the store supports subscriptions, unsubscribe from this folder... */ - if (camel_store_supports_subscriptions (store)) - camel_store_unsubscribe_folder (store, folder->full_name, NULL); + remove_folder_rec (store, fi, &m->base.ex); + camel_store_free_folder_info (store, fi); - /* Then delete the folder from the store */ - camel_store_delete_folder (store, folder->full_name, &m->base.ex); m->removed = !camel_exception_is_set (&m->base.ex); - camel_object_unref (folder); } static void remove_folder_done (struct _remove_folder_msg *m) { - if (m->removed) { - /* FIXME: Remove this folder from the folder cache ??? */ - } - if (m->done) - m->done (m->uri, m->removed, m->data); + m->done (m->folder, m->removed, &m->base.ex, m->data); } static void remove_folder_free (struct _remove_folder_msg *m) { - g_free (m->uri); + camel_object_unref (m->folder); } static MailMsgInfo remove_folder_info = { @@ -1473,12 +1500,15 @@ static MailMsgInfo remove_folder_info = { }; void -mail_remove_folder (const char *uri, void (*done) (char *uri, gboolean removed, void *data), void *data) +mail_remove_folder (CamelFolder *folder, void (*done) (CamelFolder *folder, gboolean removed, CamelException *ex, void *data), void *data) { struct _remove_folder_msg *m; + g_return_if_fail (folder != NULL); + m = mail_msg_new (&remove_folder_info); - m->uri = g_strdup (uri); + m->folder = folder; + camel_object_ref (folder); m->data = data; m->done = done; |