aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2001-10-20 05:26:18 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-10-20 05:26:18 +0800
commit6ff3bed14f5fddb083f2b6302f056bf9ab3bd873 (patch)
treeab497c1d6928efecb4222fd86bd4fb15db8e5922
parentc8b407def5e787684b77c2637c2e9d2250cd9b55 (diff)
downloadgsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar.gz
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar.bz2
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar.lz
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar.xz
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.tar.zst
gsoc2013-evolution-6ff3bed14f5fddb083f2b6302f056bf9ab3bd873.zip
camel-vee-folder.c (folder_changed_change): Change logic, we always add
camel-vee-folder.c (folder_changed_change): Change logic, we always add changed stuff if it now matches, but dont remove it unless its auto-remove, only propagate changes for it. (vee_set_message_flags): Call parent method after doing our work. (vee_set_message_user_flag): Same here. svn path=/trunk/; revision=13803
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-vee-folder.c33
2 files changed, 23 insertions, 15 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 43166e7fe0..c9a0946fab 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -24,6 +24,11 @@
(folder_changed_change): Ok, so dont hold the subfolder lock for
the whole duration of the changed event, although we probably
should, requires a recursive mutex.
+ (folder_changed_change): Change logic, we always add changed stuff
+ if it now matches, but dont remove it unless its auto-remove, only
+ propagate changes for it.
+ (vee_set_message_flags): Call parent method after doing our work.
+ (vee_set_message_user_flag): Same here.
2001-10-18 Jeffrey Stedfast <fejj@ximian.com>
diff --git a/camel/camel-vee-folder.c b/camel/camel-vee-folder.c
index 283635da72..cf05a30144 100644
--- a/camel/camel-vee-folder.c
+++ b/camel/camel-vee-folder.c
@@ -704,9 +704,9 @@ vee_set_message_flags(CamelFolder *folder, const char *uid, guint32 flags, guint
mi = (CamelVeeMessageInfo *)camel_folder_summary_uid(folder->summary, uid);
if (mi) {
- ((CamelFolderClass *)camel_vee_folder_parent)->set_message_flags(folder, uid, flags, set);
camel_folder_set_message_flags(mi->folder, camel_message_info_uid(mi) + 8, flags, set);
camel_folder_summary_info_free(folder->summary, (CamelMessageInfo *)mi);
+ ((CamelFolderClass *)camel_vee_folder_parent)->set_message_flags(folder, uid, flags, set);
}
}
@@ -717,9 +717,9 @@ vee_set_message_user_flag(CamelFolder *folder, const char *uid, const char *name
mi = (CamelVeeMessageInfo *)camel_folder_summary_uid(folder->summary, uid);
if (mi) {
- ((CamelFolderClass *)camel_vee_folder_parent)->set_message_user_flag(folder, uid, name, value);
camel_folder_set_message_user_flag(mi->folder, camel_message_info_uid(mi) + 8, name, value);
camel_folder_summary_info_free(folder->summary, (CamelMessageInfo *)mi);
+ ((CamelFolderClass *)camel_vee_folder_parent)->set_message_user_flag(folder, uid, name, value);
}
}
@@ -1287,7 +1287,9 @@ folder_changed_change(CamelSession *session, CamelSessionThreadMsg *msg)
}
/* Always add any new uid's, if they match */
- dd(printf(" Searching for added matches '%s'\n", vf->expression));
+ if (changes->uid_added->len > 0)
+ dd(printf(" Searching for added matches '%s'\n", vf->expression));
+
if (changes->uid_added->len > 0
&& (matches = camel_folder_search_by_uids(sub, vf->expression, changes->uid_added, NULL))) {
for (i=0;i<matches->len;i++) {
@@ -1297,19 +1299,19 @@ folder_changed_change(CamelSession *session, CamelSessionThreadMsg *msg)
camel_folder_search_free(sub, matches);
}
- if ((vf->flags & CAMEL_STORE_VEE_FOLDER_AUTO) == 0) {
- /* If we are not auto-updating, just change changed uids */
- dd(printf(" Not auto-update\n"));
- for (i=0;i<changes->uid_changed->len;i++) {
- dd(printf(" changed uid '%s'\n", (char *)changes->uid_changed->pdata[i]));
- folder_changed_change_uid(sub, changes->uid_changed->pdata[i], hash, vf);
- }
- } else if ((matches = camel_folder_search_by_uids(sub, vf->expression, changes->uid_changed, NULL))) {
+ if (changes->uid_changed->len > 0)
+ dd(printf(" Searching for changed matches '%s'\n", vf->expression));
+
+ if (changes->uid_changed->len > 0
+ && (matches = camel_folder_search_by_uids(sub, vf->expression, changes->uid_changed, NULL))) {
/* If we are auto-updating, then re-check changed uids still match */
- dd(printf(" Vfolder auto-update\n"));
+ dd(printf(" Vfolder %supdate\nuids match:", (vf->flags & CAMEL_STORE_VEE_FOLDER_AUTO)?"auto-":""));
matches_hash = g_hash_table_new(g_str_hash, g_str_equal);
- for (i=0;i<matches->len;i++)
+ for (i=0;i<matches->len;i++) {
+ dd(printf(" %s", matches->pdata[i]));
g_hash_table_insert(matches_hash, matches->pdata[i], matches->pdata[i]);
+ }
+ dd(printf("\n"));
for (i=0;i<changes->uid_changed->len;i++) {
uid = changes->uid_changed->pdata[i];
if (strlen(uid)+9 > vuidlen) {
@@ -1326,8 +1328,9 @@ folder_changed_change(CamelSession *session, CamelSessionThreadMsg *msg)
folder_changed_add_uid(sub, changes->uid_changed->pdata[i], hash, vf);
}
} else {
- if (g_hash_table_lookup(matches_hash, changes->uid_changed->pdata[i])) {
- /* still match, change event, (if it changed) */
+ if ((vf->flags & CAMEL_STORE_VEE_FOLDER_AUTO) == 0
+ || g_hash_table_lookup(matches_hash, changes->uid_changed->pdata[i])) {
+ /* still match, or we're not auto-updating, change event, (if it changed) */
dd(printf(" changing uid '%s' [still matches]\n", (char *)changes->uid_changed->pdata[i]));
folder_changed_change_uid(sub, changes->uid_changed->pdata[i], hash, vf);
} else {