diff options
author | Not Zed <NotZed@Ximian.com> | 2001-02-23 06:21:28 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-02-23 06:21:28 +0800 |
commit | 7698a3941bb5ad9faf3b5b4831e0400f81cc9b64 (patch) | |
tree | b62415f7977421c484e38de2f1621cf2425ee7f5 | |
parent | e939da9df48b7e4992de4df915e7832803f8fa12 (diff) | |
download | gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar.gz gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar.bz2 gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar.lz gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar.xz gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.tar.zst gsoc2013-evolution-7698a3941bb5ad9faf3b5b4831e0400f81cc9b64.zip |
Add some internal progress reporting. (imap_rescan): Do some progress
2001-02-23 Not Zed <NotZed@Ximian.com>
* providers/imap/camel-imap-folder.c (imap_sync): Add some
internal progress reporting.
(imap_rescan): Do some progress reporting.
* camel-mime-part.c (init_header_name_table): Add the message-id
to the formatted table, so we dont try and wrap it, and break it.
svn path=/trunk/; revision=8350
-rw-r--r-- | camel/ChangeLog | 9 | ||||
-rw-r--r-- | camel/camel-mime-part.c | 1 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 19 |
3 files changed, 28 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 97c4f23808..4d70eb4ab1 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,12 @@ +2001-02-23 Not Zed <NotZed@Ximian.com> + + * providers/imap/camel-imap-folder.c (imap_sync): Add some + internal progress reporting. + (imap_rescan): Do some progress reporting. + + * camel-mime-part.c (init_header_name_table): Add the message-id + to the formatted table, so we dont try and wrap it, and break it. + 2001-02-22 Jeffrey Stedfast <fejj@ximian.com> * camel-folder.h: Remove the 'FIXME: remove because this isn't diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index 8145bc1675..4409ee5f72 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -103,6 +103,7 @@ init_header_name_table() g_hash_table_insert(header_formatted_table, "From", (void *)1); g_hash_table_insert(header_formatted_table, "Cc", (void *)1); g_hash_table_insert(header_formatted_table, "Bcc", (void *)1); + g_hash_table_insert(header_formatted_table, "Message-ID", (void *)1); } static void diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index f72201ca63..0e840476f0 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -58,6 +58,7 @@ #include "camel-mime-utils.h" #include "camel-imap-private.h" #include "camel-multipart.h" +#include "camel-operation.h" #define d(x) x @@ -325,6 +326,8 @@ imap_rescan (CamelFolder *folder, int exists, CamelException *ex) CamelImapMessageInfo *iinfo; GArray *removed; + camel_operation_start(NULL, _("Scanning IMAP folder")); + /* Get UIDs and flags of all messages. */ if (exists > 0) { response = camel_imap_command (store, folder, ex, @@ -364,6 +367,10 @@ imap_rescan (CamelFolder *folder, int exists, CamelException *ex) removed = g_array_new (FALSE, FALSE, sizeof (int)); summary_len = camel_folder_summary_count (folder->summary); for (i = 0; i < summary_len && i < exists; i++) { + int pc = (i*100)/MIN(summary_len, exists); + + camel_operation_progress(NULL, pc); + /* Shouldn't happen, but... */ if (!new[i].uid) continue; @@ -413,6 +420,8 @@ imap_rescan (CamelFolder *folder, int exists, CamelException *ex) /* And finally update the summary. */ camel_imap_folder_changed (folder, exists, removed, ex); g_array_free (removed, TRUE); + + camel_operation_end(NULL); } static void @@ -445,6 +454,8 @@ imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex) CamelImapResponse *response; int i, max; + camel_operation_start(NULL, _("Synchronising IMAP folder")); + /* Set the flags on any messages that have changed this session */ max = camel_folder_summary_count (folder->summary); for (i = 0; i < max; i++) { @@ -455,8 +466,12 @@ imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex) sync_message (store, folder, info, ex); camel_folder_summary_info_free(folder->summary, info); - if (camel_exception_is_set (ex)) + camel_operation_progress(NULL, (i+1)*100/max); + + if (camel_exception_is_set (ex)) { + camel_operation_end(NULL); return; + } } if (expunge) { @@ -467,6 +482,8 @@ imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex) } camel_folder_summary_save (folder->summary); + + camel_operation_end(NULL); } static void |