2001-04-19 14:21:46 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2002-01-16 12:48:36 +01:00
|
|
|
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
|
2001-04-19 14:21:46 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2002-06-30 01:33:42 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2002-06-19 09:31:13 +02:00
|
|
|
#include <stdlib.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
#include "intl.h"
|
|
|
|
#include "folder.h"
|
|
|
|
#include "session.h"
|
|
|
|
#include "imap.h"
|
|
|
|
#include "news.h"
|
|
|
|
#include "mh.h"
|
2001-05-23 14:08:40 +02:00
|
|
|
#include "mbox_folder.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "xml.h"
|
|
|
|
#include "codeconv.h"
|
2002-12-25 14:46:41 +01:00
|
|
|
#include "prefs_gtk.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#include "account.h"
|
2002-07-02 21:49:11 +02:00
|
|
|
#include "filtering.h"
|
|
|
|
#include "scoring.h"
|
2001-12-23 15:30:06 +01:00
|
|
|
#include "prefs_folder_item.h"
|
2002-06-30 01:33:42 +02:00
|
|
|
#include "procheader.h"
|
2002-12-02 22:50:19 +01:00
|
|
|
#include "hooks.h"
|
2002-12-11 01:56:36 +01:00
|
|
|
#include "log.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-11-09 17:35:13 +01:00
|
|
|
/* Dependecies to be removed ?! */
|
|
|
|
#include "prefs_common.h"
|
|
|
|
#include "prefs_account.h"
|
|
|
|
#include "prefs_folder_item.h"
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
static GList *folder_list = NULL;
|
|
|
|
|
|
|
|
static void folder_init (Folder *folder,
|
|
|
|
const gchar *name);
|
|
|
|
|
|
|
|
static gboolean folder_read_folder_func (GNode *node,
|
|
|
|
gpointer data);
|
|
|
|
static gchar *folder_get_list_path (void);
|
|
|
|
static void folder_write_list_recursive (GNode *node,
|
|
|
|
gpointer data);
|
2001-07-31 08:17:48 +02:00
|
|
|
static void folder_update_op_count_rec (GNode *node);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
|
2001-12-30 02:27:14 +01:00
|
|
|
static void folder_get_persist_prefs_recursive
|
|
|
|
(GNode *node, GHashTable *pptable);
|
|
|
|
static gboolean persist_prefs_free (gpointer key, gpointer val, gpointer data);
|
2002-06-30 01:33:42 +02:00
|
|
|
void folder_item_read_cache (FolderItem *item);
|
2002-07-02 21:49:11 +02:00
|
|
|
void folder_item_free_cache (FolderItem *item);
|
2001-12-30 02:27:14 +01:00
|
|
|
|
2003-03-12 23:23:54 +01:00
|
|
|
static GSList *classlist;
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void folder_system_init(void)
|
2003-03-12 23:23:54 +01:00
|
|
|
{
|
|
|
|
folder_register_class(mh_get_class());
|
|
|
|
folder_register_class(imap_get_class());
|
|
|
|
folder_register_class(news_get_class());
|
|
|
|
folder_register_class(mbox_get_class());
|
|
|
|
}
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
GSList *folder_get_class_list(void)
|
2003-03-12 23:23:54 +01:00
|
|
|
{
|
|
|
|
return classlist;
|
|
|
|
}
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
void folder_register_class(FolderClass *klass)
|
2003-03-12 23:23:54 +01:00
|
|
|
{
|
2003-04-05 22:38:53 +02:00
|
|
|
debug_print("registering folder class %s\n", klass->idstr);
|
|
|
|
classlist = g_slist_append(classlist, klass);
|
2003-03-12 23:23:54 +01:00
|
|
|
}
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
Folder *folder_new(FolderClass *klass, const gchar *name, const gchar *path)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
Folder *folder = NULL;
|
2002-10-14 23:23:12 +02:00
|
|
|
FolderItem *item;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(klass != NULL, NULL);
|
2003-03-13 16:31:22 +01:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
name = name ? name : path;
|
2003-04-05 22:38:53 +02:00
|
|
|
folder = klass->new_folder(name, path);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-10-14 23:23:12 +02:00
|
|
|
/* Create root folder item */
|
|
|
|
item = folder_item_new(folder, name, NULL);
|
|
|
|
item->folder = folder;
|
|
|
|
folder->node = g_node_new(item);
|
|
|
|
folder->data = NULL;
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
static void folder_init(Folder *folder, const gchar *name)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-01-16 12:48:36 +01:00
|
|
|
g_return_if_fail(folder != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
folder_set_name(folder, name);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
/* Init folder data */
|
2002-01-16 12:48:36 +01:00
|
|
|
folder->account = NULL;
|
|
|
|
folder->inbox = NULL;
|
|
|
|
folder->outbox = NULL;
|
|
|
|
folder->draft = NULL;
|
|
|
|
folder->queue = NULL;
|
|
|
|
folder->trash = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
void folder_local_folder_init(Folder *folder, const gchar *name,
|
|
|
|
const gchar *path)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-01-16 12:48:36 +01:00
|
|
|
folder_init(folder, name);
|
2001-05-23 14:08:40 +02:00
|
|
|
LOCAL_FOLDER(folder)->rootpath = g_strdup(path);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
void folder_remote_folder_init(Folder *folder, const gchar *name,
|
|
|
|
const gchar *path)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-01-16 12:48:36 +01:00
|
|
|
folder_init(folder, name);
|
|
|
|
REMOTE_FOLDER(folder)->session = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
void folder_destroy(Folder *folder)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-01-16 12:48:36 +01:00
|
|
|
g_return_if_fail(folder != NULL);
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_if_fail(folder->klass->destroy_folder != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
folder_list = g_list_remove(folder_list, folder);
|
|
|
|
|
|
|
|
folder_tree_destroy(folder);
|
2003-03-12 16:40:51 +01:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
folder->klass->destroy_folder(folder);
|
2003-04-09 20:24:52 +02:00
|
|
|
|
|
|
|
g_free(folder->name);
|
|
|
|
g_free(folder);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
void folder_local_folder_destroy(LocalFolder *lfolder)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-01-16 12:48:36 +01:00
|
|
|
g_return_if_fail(lfolder != NULL);
|
|
|
|
|
|
|
|
g_free(lfolder->rootpath);
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
void folder_remote_folder_destroy(RemoteFolder *rfolder)
|
|
|
|
{
|
|
|
|
g_return_if_fail(rfolder != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-01-16 12:48:36 +01:00
|
|
|
if (rfolder->session)
|
|
|
|
session_destroy(rfolder->session);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-07-25 23:09:10 +02:00
|
|
|
FolderItem *folder_item_new(Folder *folder, const gchar *name, const gchar *path)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2002-07-25 23:09:10 +02:00
|
|
|
FolderItem *item = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->item_new) {
|
|
|
|
item = folder->klass->item_new(folder);
|
2002-10-14 23:23:12 +02:00
|
|
|
} else {
|
2002-07-25 23:09:10 +02:00
|
|
|
item = g_new0(FolderItem, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
item->stype = F_NORMAL;
|
|
|
|
item->name = g_strdup(name);
|
|
|
|
item->path = g_strdup(path);
|
|
|
|
item->mtime = 0;
|
2003-04-05 22:38:53 +02:00
|
|
|
item->new_msgs = 0;
|
|
|
|
item->unread_msgs = 0;
|
|
|
|
item->unreadmarked_msgs = 0;
|
|
|
|
item->total_msgs = 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
item->last_num = -1;
|
2002-06-30 01:33:42 +02:00
|
|
|
item->cache = NULL;
|
2001-06-28 10:44:31 +02:00
|
|
|
item->no_sub = FALSE;
|
|
|
|
item->no_select = FALSE;
|
2001-07-14 19:21:51 +02:00
|
|
|
item->collapsed = FALSE;
|
2003-01-25 02:30:03 +01:00
|
|
|
item->thread_collapsed = FALSE;
|
2001-09-25 11:12:39 +02:00
|
|
|
item->threaded = TRUE;
|
2001-09-23 03:19:22 +02:00
|
|
|
item->ret_rcpt = FALSE;
|
2002-04-03 10:58:44 +02:00
|
|
|
item->opened = FALSE;
|
2001-04-19 14:21:46 +02:00
|
|
|
item->parent = NULL;
|
|
|
|
item->folder = NULL;
|
2002-10-13 16:12:29 +02:00
|
|
|
item->account = NULL;
|
|
|
|
item->apply_sub = FALSE;
|
2002-04-03 10:58:44 +02:00
|
|
|
item->mark_queue = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
item->data = NULL;
|
|
|
|
|
2001-05-06 06:27:28 +02:00
|
|
|
item->prefs = prefs_folder_item_new();
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_append(FolderItem *parent, FolderItem *item)
|
|
|
|
{
|
|
|
|
GNode *node;
|
|
|
|
|
|
|
|
g_return_if_fail(parent != NULL);
|
|
|
|
g_return_if_fail(parent->folder != NULL);
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
|
|
|
node = parent->folder->node;
|
|
|
|
node = g_node_find(node, G_PRE_ORDER, G_TRAVERSE_ALL, parent);
|
|
|
|
g_return_if_fail(node != NULL);
|
|
|
|
|
|
|
|
item->parent = parent;
|
|
|
|
item->folder = parent->folder;
|
|
|
|
g_node_append_data(node, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_remove(FolderItem *item)
|
|
|
|
{
|
|
|
|
GNode *node;
|
|
|
|
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
g_return_if_fail(item->folder != NULL);
|
|
|
|
|
|
|
|
node = item->folder->node;
|
|
|
|
node = g_node_find(node, G_PRE_ORDER, G_TRAVERSE_ALL, item);
|
|
|
|
g_return_if_fail(node != NULL);
|
|
|
|
|
|
|
|
/* TODO: free all FolderItem's first */
|
|
|
|
if (item->folder->node == node)
|
|
|
|
item->folder->node = NULL;
|
|
|
|
g_node_destroy(node);
|
|
|
|
}
|
|
|
|
|
2001-07-01 10:37:50 +02:00
|
|
|
void folder_item_destroy(FolderItem *item)
|
|
|
|
{
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Destroying folder item %s\n", item->path);
|
2002-07-25 23:09:10 +02:00
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache)
|
2002-06-30 18:35:20 +02:00
|
|
|
folder_item_free_cache(item);
|
2001-07-01 10:37:50 +02:00
|
|
|
g_free(item->name);
|
|
|
|
g_free(item->path);
|
2002-10-14 23:23:12 +02:00
|
|
|
|
|
|
|
if (item->folder != NULL) {
|
2003-04-05 22:38:53 +02:00
|
|
|
if(item->folder->klass->item_destroy) {
|
|
|
|
item->folder->klass->item_destroy(item->folder, item);
|
2002-10-14 23:23:12 +02:00
|
|
|
} else {
|
|
|
|
g_free(item);
|
|
|
|
}
|
|
|
|
}
|
2001-07-01 10:37:50 +02:00
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void folder_set_ui_func(Folder *folder, FolderUIFunc func, gpointer data)
|
|
|
|
{
|
|
|
|
g_return_if_fail(folder != NULL);
|
|
|
|
|
|
|
|
folder->ui_func = func;
|
|
|
|
folder->ui_func_data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_set_name(Folder *folder, const gchar *name)
|
|
|
|
{
|
|
|
|
g_return_if_fail(folder != NULL);
|
|
|
|
|
|
|
|
g_free(folder->name);
|
|
|
|
folder->name = name ? g_strdup(name) : NULL;
|
|
|
|
if (folder->node && folder->node->data) {
|
|
|
|
FolderItem *item = (FolderItem *)folder->node->data;
|
|
|
|
|
|
|
|
g_free(item->name);
|
|
|
|
item->name = name ? g_strdup(name) : NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-30 18:35:20 +02:00
|
|
|
gboolean folder_tree_destroy_func(GNode *node, gpointer data) {
|
|
|
|
FolderItem *item = (FolderItem *) node->data;
|
|
|
|
|
|
|
|
folder_item_destroy(item);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void folder_tree_destroy(Folder *folder)
|
|
|
|
{
|
2002-07-26 01:00:59 +02:00
|
|
|
g_return_if_fail(folder != NULL);
|
|
|
|
g_return_if_fail(folder->node != NULL);
|
|
|
|
|
2002-07-02 21:49:11 +02:00
|
|
|
prefs_scoring_clear();
|
|
|
|
prefs_filtering_clear();
|
|
|
|
|
2002-06-30 18:35:20 +02:00
|
|
|
g_node_traverse(folder->node, G_POST_ORDER, G_TRAVERSE_ALL, -1, folder_tree_destroy_func, NULL);
|
2002-09-04 10:12:49 +02:00
|
|
|
if (folder->node)
|
|
|
|
g_node_destroy(folder->node);
|
2001-06-28 10:44:31 +02:00
|
|
|
|
|
|
|
folder->inbox = NULL;
|
|
|
|
folder->outbox = NULL;
|
|
|
|
folder->draft = NULL;
|
|
|
|
folder->queue = NULL;
|
|
|
|
folder->trash = NULL;
|
|
|
|
folder->node = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void folder_add(Folder *folder)
|
|
|
|
{
|
|
|
|
Folder *cur_folder;
|
|
|
|
GList *cur;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_if_fail(folder != NULL);
|
|
|
|
|
|
|
|
for (i = 0, cur = folder_list; cur != NULL; cur = cur->next, i++) {
|
|
|
|
cur_folder = FOLDER(cur->data);
|
2003-03-12 16:40:51 +01:00
|
|
|
if (FOLDER_TYPE(folder) == F_MH) {
|
|
|
|
if (FOLDER_TYPE(cur_folder) != F_MH) break;
|
|
|
|
} else if (FOLDER_TYPE(folder) == F_MBOX) {
|
|
|
|
if (FOLDER_TYPE(cur_folder) != F_MH &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_MBOX) break;
|
|
|
|
} else if (FOLDER_TYPE(folder) == F_IMAP) {
|
|
|
|
if (FOLDER_TYPE(cur_folder) != F_MH &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_MBOX &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_IMAP) break;
|
|
|
|
} else if (FOLDER_TYPE(folder) == F_NEWS) {
|
|
|
|
if (FOLDER_TYPE(cur_folder) != F_MH &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_MBOX &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_IMAP &&
|
|
|
|
FOLDER_TYPE(cur_folder) != F_NEWS) break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
folder_list = g_list_insert(folder_list, folder, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
GList *folder_get_list(void)
|
|
|
|
{
|
|
|
|
return folder_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint folder_read_list(void)
|
|
|
|
{
|
|
|
|
GNode *node;
|
|
|
|
XMLNode *xmlnode;
|
2001-08-01 09:22:54 +02:00
|
|
|
gchar *path;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-08-01 09:22:54 +02:00
|
|
|
path = folder_get_list_path();
|
|
|
|
if (!is_file_exist(path)) return -1;
|
|
|
|
node = xml_parse_file(path);
|
2001-04-19 14:21:46 +02:00
|
|
|
if (!node) return -1;
|
|
|
|
|
|
|
|
xmlnode = node->data;
|
|
|
|
if (strcmp2(xmlnode->tag->tag, "folderlist") != 0) {
|
|
|
|
g_warning("wrong folder list\n");
|
|
|
|
xml_free_tree(node);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_node_traverse(node, G_PRE_ORDER, G_TRAVERSE_ALL, 2,
|
|
|
|
folder_read_folder_func, NULL);
|
|
|
|
|
|
|
|
xml_free_tree(node);
|
|
|
|
if (folder_list)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_write_list(void)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
Folder *folder;
|
|
|
|
gchar *path;
|
|
|
|
PrefFile *pfile;
|
|
|
|
|
|
|
|
path = folder_get_list_path();
|
|
|
|
if ((pfile = prefs_write_open(path)) == NULL) return;
|
|
|
|
|
|
|
|
fprintf(pfile->fp, "<?xml version=\"1.0\" encoding=\"%s\"?>\n",
|
|
|
|
conv_get_current_charset_str());
|
|
|
|
fputs("\n<folderlist>\n", pfile->fp);
|
|
|
|
|
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = list->data;
|
|
|
|
folder_write_list_recursive(folder->node, pfile->fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
fputs("</folderlist>\n", pfile->fp);
|
|
|
|
|
2002-12-31 01:11:12 +01:00
|
|
|
if (prefs_file_close(pfile) < 0)
|
2001-04-19 14:21:46 +02:00
|
|
|
g_warning("failed to write folder list.\n");
|
|
|
|
}
|
|
|
|
|
2002-07-02 21:49:11 +02:00
|
|
|
gboolean folder_scan_tree_func(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
GHashTable *pptable = (GHashTable *)data;
|
|
|
|
FolderItem *item = (FolderItem *)node->data;
|
|
|
|
|
|
|
|
folder_item_restore_persist_prefs(item, pptable);
|
2003-05-17 15:15:38 +02:00
|
|
|
folder_item_scan(item);
|
2002-09-29 15:43:33 +02:00
|
|
|
|
|
|
|
return FALSE;
|
2002-07-02 21:49:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void folder_scan_tree(Folder *folder)
|
|
|
|
{
|
|
|
|
GHashTable *pptable;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (!folder->klass->scan_tree)
|
2002-07-02 21:49:11 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
pptable = folder_persist_prefs_new(folder);
|
|
|
|
|
2003-05-17 15:15:38 +02:00
|
|
|
/*
|
|
|
|
* should be changed and tree update should be done without
|
|
|
|
* destroying the tree first
|
|
|
|
*/
|
|
|
|
folder_tree_destroy(folder);
|
2003-04-05 22:38:53 +02:00
|
|
|
folder->klass->scan_tree(folder);
|
2002-07-26 01:00:59 +02:00
|
|
|
|
2002-07-02 21:49:11 +02:00
|
|
|
g_node_traverse(folder->node, G_POST_ORDER, G_TRAVERSE_ALL, -1, folder_scan_tree_func, pptable);
|
|
|
|
folder_persist_prefs_free(pptable);
|
|
|
|
|
|
|
|
prefs_matcher_read_config();
|
2002-11-09 17:35:13 +01:00
|
|
|
|
|
|
|
folder_write_list();
|
2002-07-02 21:49:11 +02:00
|
|
|
}
|
|
|
|
|
2002-10-07 23:47:32 +02:00
|
|
|
FolderItem *folder_create_folder(FolderItem *parent, const gchar *name)
|
|
|
|
{
|
|
|
|
FolderItem *new_item;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
new_item = parent->folder->klass->create_folder(parent->folder, parent, name);
|
2002-11-07 00:56:26 +01:00
|
|
|
if (new_item)
|
|
|
|
new_item->cache = msgcache_new();
|
2002-10-07 23:47:32 +02:00
|
|
|
|
|
|
|
return new_item;
|
|
|
|
}
|
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
struct TotalMsgCount
|
2001-11-26 08:53:20 +01:00
|
|
|
{
|
2003-04-05 22:38:53 +02:00
|
|
|
guint new_msgs;
|
|
|
|
guint unread_msgs;
|
|
|
|
guint unreadmarked_msgs;
|
|
|
|
guint total_msgs;
|
2001-12-03 17:04:12 +01:00
|
|
|
};
|
2001-11-26 08:53:20 +01:00
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
struct FuncToAllFoldersData
|
|
|
|
{
|
|
|
|
FolderItemFunc function;
|
|
|
|
gpointer data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean folder_func_to_all_folders_func(GNode *node, gpointer data)
|
2001-12-03 17:04:12 +01:00
|
|
|
{
|
|
|
|
FolderItem *item;
|
2002-06-30 01:33:42 +02:00
|
|
|
struct FuncToAllFoldersData *function_data = (struct FuncToAllFoldersData *) data;
|
2001-12-03 17:04:12 +01:00
|
|
|
|
|
|
|
g_return_val_if_fail(node->data != NULL, FALSE);
|
2001-11-26 08:53:20 +01:00
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
item = FOLDER_ITEM(node->data);
|
2002-06-30 01:33:42 +02:00
|
|
|
g_return_val_if_fail(item != NULL, FALSE);
|
|
|
|
|
|
|
|
function_data->function(item, function_data->data);
|
2001-12-04 10:10:36 +01:00
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
return FALSE;
|
2001-11-26 08:53:20 +01:00
|
|
|
}
|
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
void folder_func_to_all_folders(FolderItemFunc function, gpointer data)
|
2001-11-26 08:53:20 +01:00
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
Folder *folder;
|
2002-06-30 01:33:42 +02:00
|
|
|
struct FuncToAllFoldersData function_data;
|
|
|
|
|
|
|
|
function_data.function = function;
|
|
|
|
function_data.data = data;
|
2001-12-03 17:04:12 +01:00
|
|
|
|
2001-11-26 08:53:20 +01:00
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = FOLDER(list->data);
|
2001-12-04 10:10:36 +01:00
|
|
|
if (folder->node)
|
2001-12-03 17:04:12 +01:00
|
|
|
g_node_traverse(folder->node, G_PRE_ORDER,
|
2001-12-04 10:10:36 +01:00
|
|
|
G_TRAVERSE_ALL, -1,
|
2002-06-30 01:33:42 +02:00
|
|
|
folder_func_to_all_folders_func,
|
|
|
|
&function_data);
|
2001-11-26 08:53:20 +01:00
|
|
|
}
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void folder_count_total_msgs_func(FolderItem *item, gpointer data)
|
|
|
|
{
|
|
|
|
struct TotalMsgCount *count = (struct TotalMsgCount *)data;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
count->new_msgs += item->new_msgs;
|
|
|
|
count->unread_msgs += item->unread_msgs;
|
|
|
|
count->unreadmarked_msgs += item->unreadmarked_msgs;
|
|
|
|
count->total_msgs += item->total_msgs;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
void folder_count_total_msgs(guint *new_msgs, guint *unread_msgs, guint *unreadmarked_msgs, guint *total_msgs)
|
2002-06-30 01:33:42 +02:00
|
|
|
{
|
|
|
|
struct TotalMsgCount count;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
count.new_msgs = count.unread_msgs = count.unreadmarked_msgs = count.total_msgs = 0;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Counting total number of messages...\n");
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
folder_func_to_all_folders(folder_count_total_msgs_func, &count);
|
2001-11-26 08:53:20 +01:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
*new_msgs = count.new_msgs;
|
|
|
|
*unread_msgs = count.unread_msgs;
|
|
|
|
*unreadmarked_msgs = count.unreadmarked_msgs;
|
|
|
|
*total_msgs = count.total_msgs;
|
2001-11-26 08:53:20 +01:00
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
Folder *folder_find_from_path(const gchar *path)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
Folder *folder;
|
|
|
|
|
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = list->data;
|
2003-03-12 16:40:51 +01:00
|
|
|
if ((FOLDER_TYPE(folder) == F_MH || FOLDER_TYPE(folder) == F_MBOX) &&
|
2001-04-19 14:21:46 +02:00
|
|
|
!path_cmp(LOCAL_FOLDER(folder)->rootpath, path))
|
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
Folder *folder_find_from_name(const gchar *name, FolderClass *klass)
|
2002-04-05 10:20:10 +02:00
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
Folder *folder;
|
|
|
|
|
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = list->data;
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass == klass && strcmp2(name, folder->name) == 0)
|
2002-04-05 10:20:10 +02:00
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
static gboolean folder_item_find_func(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
FolderItem *item = node->data;
|
|
|
|
gpointer *d = data;
|
|
|
|
const gchar *path = d[0];
|
|
|
|
|
|
|
|
if (path_cmp(path, item->path) != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
d[1] = item;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_find_item_from_path(const gchar *path)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gpointer d[2];
|
|
|
|
|
|
|
|
folder = folder_get_default_folder();
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
|
|
|
|
d[0] = (gpointer)path;
|
|
|
|
d[1] = NULL;
|
|
|
|
g_node_traverse(folder->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
|
|
|
|
folder_item_find_func, d);
|
|
|
|
return d[1];
|
|
|
|
}
|
|
|
|
|
2003-03-13 16:31:22 +01:00
|
|
|
FolderClass *folder_get_class_from_string(const gchar *str)
|
2002-04-05 10:20:10 +02:00
|
|
|
{
|
2003-03-12 23:23:54 +01:00
|
|
|
GSList *classlist;
|
2002-04-05 10:20:10 +02:00
|
|
|
|
2003-03-12 23:23:54 +01:00
|
|
|
classlist = folder_get_class_list();
|
|
|
|
for (; classlist != NULL; classlist = g_slist_next(classlist)) {
|
|
|
|
FolderClass *class = (FolderClass *) classlist->data;
|
2003-03-13 16:31:22 +01:00
|
|
|
if (g_strcasecmp(class->idstr, str) == 0)
|
2003-03-12 23:23:54 +01:00
|
|
|
return class;
|
2002-04-05 10:20:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *folder_get_identifier(Folder *folder)
|
|
|
|
{
|
|
|
|
gchar *type_str;
|
|
|
|
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
type_str = folder->klass->idstr;
|
2003-03-12 23:23:54 +01:00
|
|
|
return g_strconcat("#", type_str, "/", folder->name, NULL);
|
2002-04-05 10:20:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gchar *folder_item_get_identifier(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *id;
|
|
|
|
gchar *folder_id;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
g_return_val_if_fail(item->path != NULL, NULL);
|
|
|
|
|
|
|
|
folder_id = folder_get_identifier(item->folder);
|
|
|
|
id = g_strconcat(folder_id, "/", item->path, NULL);
|
|
|
|
g_free(folder_id);
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_find_item_from_identifier(const gchar *identifier)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gpointer d[2];
|
|
|
|
gchar *str;
|
|
|
|
gchar *p;
|
|
|
|
gchar *name;
|
|
|
|
gchar *path;
|
2003-03-12 23:23:54 +01:00
|
|
|
FolderClass *class;
|
2002-04-05 10:20:10 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(identifier != NULL, NULL);
|
|
|
|
|
|
|
|
if (*identifier != '#')
|
|
|
|
return folder_find_item_from_path(identifier);
|
|
|
|
|
|
|
|
Xstrdup_a(str, identifier, return NULL);
|
|
|
|
|
|
|
|
p = strchr(str, '/');
|
|
|
|
if (!p)
|
|
|
|
return folder_find_item_from_path(identifier);
|
|
|
|
*p = '\0';
|
|
|
|
p++;
|
2003-03-13 16:31:22 +01:00
|
|
|
class = folder_get_class_from_string(&str[1]);
|
2003-03-12 23:23:54 +01:00
|
|
|
if (class == NULL)
|
2002-04-05 10:20:10 +02:00
|
|
|
return folder_find_item_from_path(identifier);
|
|
|
|
|
|
|
|
name = p;
|
|
|
|
p = strchr(p, '/');
|
|
|
|
if (!p)
|
|
|
|
return folder_find_item_from_path(identifier);
|
|
|
|
*p = '\0';
|
|
|
|
p++;
|
|
|
|
|
2003-03-12 23:23:54 +01:00
|
|
|
folder = folder_find_from_name(name, class);
|
2002-04-05 10:20:10 +02:00
|
|
|
if (!folder)
|
|
|
|
return folder_find_item_from_path(identifier);
|
|
|
|
|
|
|
|
path = p;
|
|
|
|
|
|
|
|
d[0] = (gpointer)path;
|
|
|
|
d[1] = NULL;
|
|
|
|
g_node_traverse(folder->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
|
|
|
|
folder_item_find_func, d);
|
|
|
|
return d[1];
|
|
|
|
}
|
|
|
|
|
2003-03-13 22:21:39 +01:00
|
|
|
/**
|
|
|
|
* Get a displayable name for a FolderItem
|
|
|
|
*
|
|
|
|
* \param item FolderItem for that a name should be created
|
|
|
|
* \return Displayable name for item, returned string has to
|
|
|
|
* be freed
|
|
|
|
*/
|
|
|
|
gchar *folder_item_get_name(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *name = NULL;
|
|
|
|
|
|
|
|
switch (item->stype) {
|
|
|
|
case F_INBOX:
|
2003-03-27 22:52:32 +01:00
|
|
|
name = g_strdup(!strcmp2(item->name, INBOX_DIR) ? _("Inbox") :
|
2003-03-13 22:21:39 +01:00
|
|
|
item->name);
|
|
|
|
break;
|
|
|
|
case F_OUTBOX:
|
2003-03-27 22:52:32 +01:00
|
|
|
name = g_strdup(!strcmp2(item->name, OUTBOX_DIR) ? _("Sent") :
|
2003-03-13 22:21:39 +01:00
|
|
|
item->name);
|
|
|
|
break;
|
|
|
|
case F_QUEUE:
|
2003-03-27 22:52:32 +01:00
|
|
|
name = g_strdup(!strcmp2(item->name, QUEUE_DIR) ? _("Queue") :
|
2003-03-13 22:21:39 +01:00
|
|
|
item->name);
|
|
|
|
break;
|
|
|
|
case F_TRASH:
|
2003-03-27 22:52:32 +01:00
|
|
|
name = g_strdup(!strcmp2(item->name, TRASH_DIR) ? _("Trash") :
|
2003-03-13 22:21:39 +01:00
|
|
|
item->name);
|
|
|
|
break;
|
|
|
|
case F_DRAFT:
|
2003-03-27 22:52:32 +01:00
|
|
|
name = g_strdup(!strcmp2(item->name, DRAFT_DIR) ? _("Drafts") :
|
2003-03-13 22:21:39 +01:00
|
|
|
item->name);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name == NULL) {
|
|
|
|
/*
|
|
|
|
* should probably be done by a virtual function,
|
|
|
|
* the folder knows the ui string and how to abbrev
|
|
|
|
*/
|
|
|
|
if (!item->parent) {
|
2003-04-05 22:38:53 +02:00
|
|
|
name = g_strconcat(item->name, " (", item->folder->klass->uistr, ")", NULL);
|
2003-03-13 22:21:39 +01:00
|
|
|
} else {
|
|
|
|
if (FOLDER_CLASS(item->folder) == news_get_class() &&
|
|
|
|
item->path && !strcmp2(item->name, item->path))
|
|
|
|
name = get_abbrev_newsgroup_name
|
|
|
|
(item->path,
|
|
|
|
prefs_common.ng_abbrev_len);
|
|
|
|
else
|
|
|
|
name = g_strdup(item->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
name = g_strdup("");
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
Folder *folder_get_default_folder(void)
|
|
|
|
{
|
2001-07-16 20:18:53 +02:00
|
|
|
return folder_list ? FOLDER(folder_list->data) : NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_inbox(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
2001-07-16 20:18:53 +02:00
|
|
|
if (!folder_list) return NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
folder = FOLDER(folder_list->data);
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
return folder->inbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_outbox(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
2001-07-16 20:18:53 +02:00
|
|
|
if (!folder_list) return NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
folder = FOLDER(folder_list->data);
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
return folder->outbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_draft(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
2001-07-16 20:18:53 +02:00
|
|
|
if (!folder_list) return NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
folder = FOLDER(folder_list->data);
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
return folder->draft;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_queue(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
2001-07-16 20:18:53 +02:00
|
|
|
if (!folder_list) return NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
folder = FOLDER(folder_list->data);
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
return folder->queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_trash(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
2001-07-16 20:18:53 +02:00
|
|
|
if (!folder_list) return NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
folder = FOLDER(folder_list->data);
|
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
|
|
|
return folder->trash;
|
|
|
|
}
|
|
|
|
|
2002-07-25 23:09:10 +02:00
|
|
|
#define CREATE_FOLDER_IF_NOT_EXIST(member, dir, type) \
|
|
|
|
{ \
|
|
|
|
if (!folder->member) { \
|
|
|
|
item = folder_item_new(folder, dir, dir); \
|
|
|
|
item->stype = type; \
|
|
|
|
folder_item_append(rootitem, item); \
|
|
|
|
folder->member = item; \
|
|
|
|
} \
|
2002-03-19 09:37:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void folder_set_missing_folders(void)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
FolderItem *rootitem;
|
|
|
|
FolderItem *item;
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = list->data;
|
2003-03-12 16:40:51 +01:00
|
|
|
if (FOLDER_TYPE(folder) != F_MH) continue;
|
2002-03-19 09:37:53 +01:00
|
|
|
rootitem = FOLDER_ITEM(folder->node->data);
|
|
|
|
g_return_if_fail(rootitem != NULL);
|
|
|
|
|
|
|
|
if (folder->inbox && folder->outbox && folder->draft &&
|
|
|
|
folder->queue && folder->trash)
|
|
|
|
continue;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->create_tree(folder) < 0) {
|
2002-03-19 09:37:53 +01:00
|
|
|
g_warning("%s: can't create the folder tree.\n",
|
|
|
|
LOCAL_FOLDER(folder)->rootpath);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
CREATE_FOLDER_IF_NOT_EXIST(inbox, INBOX_DIR, F_INBOX);
|
2002-06-08 17:52:42 +02:00
|
|
|
CREATE_FOLDER_IF_NOT_EXIST(outbox, OUTBOX_DIR, F_OUTBOX);
|
|
|
|
CREATE_FOLDER_IF_NOT_EXIST(draft, DRAFT_DIR, F_DRAFT);
|
|
|
|
CREATE_FOLDER_IF_NOT_EXIST(queue, QUEUE_DIR, F_QUEUE);
|
|
|
|
CREATE_FOLDER_IF_NOT_EXIST(trash, TRASH_DIR, F_TRASH);
|
2002-03-19 09:37:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-13 17:43:22 +02:00
|
|
|
static gboolean folder_unref_account_func(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
FolderItem *item = node->data;
|
|
|
|
PrefsAccount *account = data;
|
|
|
|
|
|
|
|
if (item->account == account)
|
|
|
|
item->account = NULL;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_unref_account_all(PrefsAccount *account)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
if (!account) return;
|
|
|
|
|
|
|
|
for (list = folder_list; list != NULL; list = list->next) {
|
|
|
|
folder = list->data;
|
|
|
|
if (folder->account == account)
|
|
|
|
folder->account = NULL;
|
|
|
|
g_node_traverse(folder->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
|
|
|
|
folder_unref_account_func, account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-19 09:37:53 +01:00
|
|
|
#undef CREATE_FOLDER_IF_NOT_EXIST
|
|
|
|
|
2002-08-28 13:54:45 +02:00
|
|
|
gchar *folder_get_path(Folder *folder)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
gchar *path;
|
|
|
|
|
2002-08-28 13:54:45 +02:00
|
|
|
g_return_val_if_fail(folder != NULL, NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-29 15:43:33 +02:00
|
|
|
switch(FOLDER_TYPE(folder)) {
|
2002-08-28 13:54:45 +02:00
|
|
|
|
2002-09-29 15:43:33 +02:00
|
|
|
case F_MH:
|
|
|
|
path = g_strdup(LOCAL_FOLDER(folder)->rootpath);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case F_IMAP:
|
|
|
|
g_return_val_if_fail(folder->account != NULL, NULL);
|
|
|
|
path = g_strconcat(get_imap_cache_dir(),
|
|
|
|
G_DIR_SEPARATOR_S,
|
|
|
|
folder->account->recv_server,
|
|
|
|
G_DIR_SEPARATOR_S,
|
|
|
|
folder->account->userid,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case F_NEWS:
|
|
|
|
g_return_val_if_fail(folder->account != NULL, NULL);
|
|
|
|
path = g_strconcat(get_news_cache_dir(),
|
|
|
|
G_DIR_SEPARATOR_S,
|
|
|
|
folder->account->nntp_server,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
path = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-08-28 13:54:45 +02:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *folder_item_get_path(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *folder_path;
|
|
|
|
gchar *path;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-29 15:43:33 +02:00
|
|
|
if(FOLDER_TYPE(item->folder) != F_MBOX) {
|
|
|
|
folder_path = folder_get_path(item->folder);
|
|
|
|
g_return_val_if_fail(folder_path != NULL, NULL);
|
|
|
|
|
|
|
|
if (folder_path[0] == G_DIR_SEPARATOR) {
|
|
|
|
if (item->path)
|
|
|
|
path = g_strconcat(folder_path, G_DIR_SEPARATOR_S,
|
|
|
|
item->path, NULL);
|
|
|
|
else
|
|
|
|
path = g_strdup(folder_path);
|
|
|
|
} else {
|
|
|
|
if (item->path)
|
|
|
|
path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
|
|
|
|
folder_path, G_DIR_SEPARATOR_S,
|
|
|
|
item->path, NULL);
|
|
|
|
else
|
|
|
|
path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
|
|
|
|
folder_path, NULL);
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-29 15:43:33 +02:00
|
|
|
g_free(folder_path);
|
2001-04-19 14:21:46 +02:00
|
|
|
} else {
|
2002-09-29 15:43:33 +02:00
|
|
|
gchar *itempath;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-29 15:43:33 +02:00
|
|
|
itempath = mbox_get_virtual_path(item);
|
|
|
|
if (itempath == NULL)
|
|
|
|
return NULL;
|
|
|
|
path = g_strconcat(get_mbox_cache_dir(),
|
|
|
|
G_DIR_SEPARATOR_S, itempath, NULL);
|
|
|
|
g_free(itempath);
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
void folder_item_set_default_flags(FolderItem *dest, MsgFlags *flags)
|
|
|
|
{
|
|
|
|
if (!(dest->stype == F_OUTBOX ||
|
|
|
|
dest->stype == F_QUEUE ||
|
|
|
|
dest->stype == F_DRAFT ||
|
|
|
|
dest->stype == F_TRASH)) {
|
|
|
|
flags->perm_flags = MSG_NEW|MSG_UNREAD;
|
|
|
|
} else {
|
|
|
|
flags->perm_flags = 0;
|
|
|
|
}
|
|
|
|
flags->tmp_flags = MSG_CACHED;
|
2003-03-12 16:40:51 +01:00
|
|
|
if (FOLDER_TYPE(dest->folder) == F_MH) {
|
2002-06-30 01:33:42 +02:00
|
|
|
if (dest->stype == F_QUEUE) {
|
|
|
|
MSG_SET_TMP_FLAGS(*flags, MSG_QUEUED);
|
|
|
|
} else if (dest->stype == F_DRAFT) {
|
|
|
|
MSG_SET_TMP_FLAGS(*flags, MSG_DRAFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
static gint folder_sort_cache_list_by_msgnum(gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
MsgInfo *msginfo_a = (MsgInfo *) a;
|
|
|
|
MsgInfo *msginfo_b = (MsgInfo *) b;
|
|
|
|
|
|
|
|
return (msginfo_a->msgnum - msginfo_b->msgnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint folder_sort_folder_list(gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
guint gint_a = GPOINTER_TO_INT(a);
|
2002-09-11 00:23:56 +02:00
|
|
|
guint gint_b = GPOINTER_TO_INT(b);
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
return (gint_a - gint_b);
|
|
|
|
}
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-11-09 23:06:23 +01:00
|
|
|
gint folder_item_open(FolderItem *item)
|
|
|
|
{
|
2003-03-12 16:40:51 +01:00
|
|
|
if(((FOLDER_TYPE(item->folder) == F_IMAP) && !item->no_select) || (FOLDER_TYPE(item->folder) == F_NEWS)) {
|
2002-11-09 23:06:23 +01:00
|
|
|
folder_item_scan(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Processing */
|
|
|
|
if(item->prefs->processing != NULL) {
|
|
|
|
gchar *buf;
|
|
|
|
|
|
|
|
buf = g_strdup_printf(_("Processing (%s)...\n"), item->path);
|
|
|
|
debug_print("%s\n", buf);
|
|
|
|
g_free(buf);
|
|
|
|
|
|
|
|
folder_item_apply_processing(item);
|
|
|
|
|
|
|
|
debug_print("done.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_close(FolderItem *item)
|
|
|
|
{
|
|
|
|
GSList *mlist, *cur;
|
|
|
|
|
|
|
|
g_return_if_fail(item != NULL);
|
2002-11-13 22:14:05 +01:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (item->new_msgs) {
|
2003-04-24 20:49:29 +02:00
|
|
|
folder_item_update_freeze();
|
2002-11-13 22:14:05 +01:00
|
|
|
mlist = folder_item_get_msg_list(item);
|
|
|
|
for (cur = mlist ; cur != NULL ; cur = cur->next) {
|
|
|
|
MsgInfo * msginfo;
|
|
|
|
|
|
|
|
msginfo = (MsgInfo *) cur->data;
|
|
|
|
if (MSG_IS_NEW(msginfo->flags))
|
|
|
|
procmsg_msginfo_unset_flags(msginfo, MSG_NEW, 0);
|
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
}
|
|
|
|
g_slist_free(mlist);
|
2003-04-24 20:49:29 +02:00
|
|
|
folder_item_update_thaw();
|
2002-11-13 22:14:05 +01:00
|
|
|
}
|
2002-11-13 14:27:56 +01:00
|
|
|
|
2002-11-13 14:30:55 +01:00
|
|
|
folder_item_write_cache(item);
|
2002-11-09 23:06:23 +01:00
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(item, F_ITEM_UPDATE_MSGCNT);
|
2002-11-09 23:06:23 +01:00
|
|
|
}
|
|
|
|
|
2002-04-21 00:57:52 +02:00
|
|
|
gint folder_item_scan(FolderItem *item)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
Folder *folder;
|
2003-02-25 17:28:14 +01:00
|
|
|
GSList *folder_list = NULL, *cache_list = NULL;
|
|
|
|
GSList *folder_list_cur, *cache_list_cur, *new_list = NULL;
|
|
|
|
GSList *exists_list = NULL, *elem;
|
|
|
|
GSList *newmsg_list = NULL;
|
2002-11-25 16:38:06 +01:00
|
|
|
guint newcnt = 0, unreadcnt = 0, totalcnt = 0, unreadmarkedcnt = 0;
|
2002-09-10 15:25:04 +02:00
|
|
|
guint cache_max_num, folder_max_num, cache_cur_num, folder_cur_num;
|
2003-01-07 22:49:44 +01:00
|
|
|
gboolean update_flags = 0;
|
2002-11-09 17:35:13 +01:00
|
|
|
|
2002-04-21 11:24:27 +02:00
|
|
|
g_return_val_if_fail(item != NULL, -1);
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->path == NULL) return -1;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
folder = item->folder;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(folder != NULL, -1);
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->get_num_list != NULL, -1);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Scanning folder %s for cache changes.\n", item->path);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
/* Get list of messages for folder and cache */
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->get_num_list(item->folder, item, &folder_list) < 0) {
|
2002-10-18 12:02:51 +02:00
|
|
|
debug_print("Error fetching list of message numbers\n");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (!folder->klass->check_msgnum_validity ||
|
|
|
|
folder->klass->check_msgnum_validity(folder, item)) {
|
2002-08-31 10:26:28 +02:00
|
|
|
if (!item->cache)
|
2002-06-30 01:33:42 +02:00
|
|
|
folder_item_read_cache(item);
|
|
|
|
cache_list = msgcache_get_msg_list(item->cache);
|
|
|
|
} else {
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache)
|
2002-06-30 01:33:42 +02:00
|
|
|
msgcache_destroy(item->cache);
|
|
|
|
item->cache = msgcache_new();
|
|
|
|
cache_list = NULL;
|
|
|
|
}
|
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
/* Sort both lists */
|
|
|
|
cache_list = g_slist_sort(cache_list, folder_sort_cache_list_by_msgnum);
|
|
|
|
folder_list = g_slist_sort(folder_list, folder_sort_folder_list);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
cache_list_cur = cache_list;
|
|
|
|
folder_list_cur = folder_list;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
if (cache_list_cur != NULL) {
|
|
|
|
GSList *cache_list_last;
|
|
|
|
|
|
|
|
cache_cur_num = ((MsgInfo *)cache_list_cur->data)->msgnum;
|
|
|
|
cache_list_last = g_slist_last(cache_list);
|
|
|
|
cache_max_num = ((MsgInfo *)cache_list_last->data)->msgnum;
|
2002-09-17 14:19:16 +02:00
|
|
|
} else {
|
2002-09-10 15:06:50 +02:00
|
|
|
cache_cur_num = G_MAXINT;
|
2002-09-17 14:19:16 +02:00
|
|
|
cache_max_num = 0;
|
|
|
|
}
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-09-10 15:25:04 +02:00
|
|
|
if (folder_list_cur != NULL) {
|
|
|
|
GSList *folder_list_last;
|
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
folder_cur_num = GPOINTER_TO_INT(folder_list_cur->data);
|
2002-09-10 15:25:04 +02:00
|
|
|
folder_list_last = g_slist_last(folder_list);
|
|
|
|
folder_max_num = GPOINTER_TO_INT(folder_list_last->data);
|
2002-09-17 14:19:16 +02:00
|
|
|
} else {
|
2002-09-10 15:06:50 +02:00
|
|
|
folder_cur_num = G_MAXINT;
|
2002-09-17 14:19:16 +02:00
|
|
|
folder_max_num = 0;
|
|
|
|
}
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
while ((cache_cur_num != G_MAXINT) || (folder_cur_num != G_MAXINT)) {
|
|
|
|
/*
|
|
|
|
* Message only exists in the folder
|
|
|
|
* Remember message for fetching
|
|
|
|
*/
|
|
|
|
if (folder_cur_num < cache_cur_num) {
|
2002-08-22 15:32:16 +02:00
|
|
|
gboolean add = FALSE;
|
|
|
|
|
2003-03-12 16:40:51 +01:00
|
|
|
switch(FOLDER_TYPE(folder)) {
|
2002-08-22 15:32:16 +02:00
|
|
|
case F_NEWS:
|
2002-09-10 15:25:04 +02:00
|
|
|
if (folder_cur_num < cache_max_num)
|
|
|
|
break;
|
|
|
|
|
2003-02-19 16:58:09 +01:00
|
|
|
if (folder->account->max_articles == 0) {
|
2002-09-10 15:25:04 +02:00
|
|
|
add = TRUE;
|
|
|
|
}
|
|
|
|
|
2003-02-19 16:58:09 +01:00
|
|
|
if (folder_max_num <= folder->account->max_articles) {
|
2002-09-10 15:25:04 +02:00
|
|
|
add = TRUE;
|
2003-02-19 16:58:09 +01:00
|
|
|
} else if (folder_cur_num > (folder_max_num - folder->account->max_articles)) {
|
2002-08-22 15:32:16 +02:00
|
|
|
add = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
add = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (add) {
|
2002-09-10 15:06:50 +02:00
|
|
|
new_list = g_slist_prepend(new_list, GINT_TO_POINTER(folder_cur_num));
|
|
|
|
debug_print("Remembered message %d for fetching\n", folder_cur_num);
|
2002-08-22 15:32:16 +02:00
|
|
|
}
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
/* Move to next folder number */
|
|
|
|
folder_list_cur = folder_list_cur->next;
|
|
|
|
|
|
|
|
if (folder_list_cur != NULL)
|
|
|
|
folder_cur_num = GPOINTER_TO_INT(folder_list_cur->data);
|
|
|
|
else
|
|
|
|
folder_cur_num = G_MAXINT;
|
|
|
|
|
|
|
|
continue;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Message only exists in the cache
|
|
|
|
* Remove the message from the cache
|
|
|
|
*/
|
|
|
|
if (cache_cur_num < folder_cur_num) {
|
|
|
|
msgcache_remove_msg(item->cache, cache_cur_num);
|
|
|
|
debug_print("Removed message %d from cache.\n", cache_cur_num);
|
|
|
|
|
|
|
|
/* Move to next cache number */
|
|
|
|
cache_list_cur = cache_list_cur->next;
|
|
|
|
|
|
|
|
if (cache_list_cur != NULL)
|
|
|
|
cache_cur_num = ((MsgInfo *)cache_list_cur->data)->msgnum;
|
|
|
|
else
|
|
|
|
cache_cur_num = G_MAXINT;
|
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
update_flags |= F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT;
|
2002-11-09 17:35:13 +01:00
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
continue;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Message number exists in folder and cache!
|
|
|
|
* Check if the message has been modified
|
|
|
|
*/
|
|
|
|
if (cache_cur_num == folder_cur_num) {
|
2002-06-30 01:33:42 +02:00
|
|
|
MsgInfo *msginfo;
|
|
|
|
|
2002-09-10 15:06:50 +02:00
|
|
|
msginfo = msgcache_get_msg(item->cache, folder_cur_num);
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->is_msg_changed && folder->klass->is_msg_changed(folder, item, msginfo)) {
|
2002-06-30 01:33:42 +02:00
|
|
|
msgcache_remove_msg(item->cache, msginfo->msgnum);
|
2003-02-25 17:28:14 +01:00
|
|
|
new_list = g_slist_prepend(new_list, GINT_TO_POINTER(msginfo->msgnum));
|
|
|
|
procmsg_msginfo_free(msginfo);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2003-02-25 17:28:14 +01:00
|
|
|
debug_print("Remembering message %d to update...\n", folder_cur_num);
|
|
|
|
} else
|
|
|
|
exists_list = g_slist_prepend(exists_list, msginfo);
|
2002-09-10 15:06:50 +02:00
|
|
|
|
|
|
|
/* Move to next folder and cache number */
|
|
|
|
cache_list_cur = cache_list_cur->next;
|
|
|
|
folder_list_cur = folder_list_cur->next;
|
|
|
|
|
|
|
|
if (cache_list_cur != NULL)
|
|
|
|
cache_cur_num = ((MsgInfo *)cache_list_cur->data)->msgnum;
|
|
|
|
else
|
|
|
|
cache_cur_num = G_MAXINT;
|
|
|
|
|
|
|
|
if (folder_list_cur != NULL)
|
|
|
|
folder_cur_num = GPOINTER_TO_INT(folder_list_cur->data);
|
|
|
|
else
|
|
|
|
folder_cur_num = G_MAXINT;
|
|
|
|
|
|
|
|
continue;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
}
|
2003-02-25 17:28:14 +01:00
|
|
|
|
|
|
|
for(cache_list_cur = cache_list; cache_list_cur != NULL; cache_list_cur = g_slist_next(cache_list_cur))
|
2002-09-10 15:06:50 +02:00
|
|
|
procmsg_msginfo_free((MsgInfo *) cache_list_cur->data);
|
|
|
|
|
|
|
|
g_slist_free(cache_list);
|
|
|
|
g_slist_free(folder_list);
|
|
|
|
|
2003-02-25 17:28:14 +01:00
|
|
|
if (new_list != NULL) {
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->get_msginfos) {
|
|
|
|
newmsg_list = folder->klass->get_msginfos(folder, item, new_list);
|
|
|
|
} else if (folder->klass->get_msginfo) {
|
2003-02-25 17:28:14 +01:00
|
|
|
GSList *elem;
|
|
|
|
|
|
|
|
for (elem = new_list; elem != NULL; elem = g_slist_next(elem)) {
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
guint num;
|
|
|
|
|
|
|
|
num = GPOINTER_TO_INT(elem->data);
|
2003-04-05 22:38:53 +02:00
|
|
|
msginfo = folder->klass->get_msginfo(folder, item, num);
|
2003-02-25 17:28:14 +01:00
|
|
|
if (msginfo != NULL) {
|
|
|
|
newmsg_list = g_slist_prepend(newmsg_list, msginfo);
|
|
|
|
debug_print("Added newly found message %d to cache.\n", num);
|
|
|
|
}
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
}
|
2003-02-25 17:28:14 +01:00
|
|
|
g_slist_free(new_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newmsg_list != NULL) {
|
2002-09-10 15:06:50 +02:00
|
|
|
GSList *elem;
|
2003-01-07 22:49:44 +01:00
|
|
|
|
2003-04-08 22:47:42 +02:00
|
|
|
for (elem = newmsg_list; elem != NULL; elem = g_slist_next(elem)) {
|
|
|
|
MsgInfo *msginfo = (MsgInfo *) elem->data;
|
|
|
|
|
|
|
|
msgcache_add_msg(item->cache, msginfo);
|
|
|
|
if ((item->stype == F_INBOX) &&
|
|
|
|
(item->folder->account != NULL) &&
|
|
|
|
(item->folder->account->filter_on_recv) &&
|
|
|
|
procmsg_msginfo_filter(msginfo))
|
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
else
|
|
|
|
exists_list = g_slist_prepend(exists_list, msginfo);
|
|
|
|
}
|
|
|
|
g_slist_free(newmsg_list);
|
2003-02-25 17:28:14 +01:00
|
|
|
|
|
|
|
update_flags |= F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
2003-02-25 17:28:14 +01:00
|
|
|
for (elem = exists_list; elem != NULL; elem = g_slist_next(elem)) {
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
|
|
|
|
msginfo = elem->data;
|
2003-03-19 19:39:42 +01:00
|
|
|
if (MSG_IS_IGNORE_THREAD(msginfo->flags) && (MSG_IS_NEW(msginfo->flags) || MSG_IS_UNREAD(msginfo->flags)))
|
|
|
|
procmsg_msginfo_unset_flags(msginfo, MSG_NEW | MSG_UNREAD, 0);
|
|
|
|
if (!MSG_IS_IGNORE_THREAD(msginfo->flags) && procmsg_msg_has_flagged_parent(msginfo, MSG_IGNORE_THREAD)) {
|
|
|
|
procmsg_msginfo_unset_flags(msginfo, MSG_NEW | MSG_UNREAD, 0);
|
|
|
|
procmsg_msginfo_set_flags(msginfo, MSG_IGNORE_THREAD, 0);
|
|
|
|
}
|
2003-03-20 15:44:47 +01:00
|
|
|
if ((item->stype == F_OUTBOX ||
|
|
|
|
item->stype == F_QUEUE ||
|
|
|
|
item->stype == F_DRAFT ||
|
|
|
|
item->stype == F_TRASH) &&
|
|
|
|
(MSG_IS_NEW(msginfo->flags) || MSG_IS_UNREAD(msginfo->flags)))
|
|
|
|
procmsg_msginfo_unset_flags(msginfo, MSG_NEW | MSG_UNREAD, 0);
|
2003-03-18 19:24:34 +01:00
|
|
|
if (MSG_IS_NEW(msginfo->flags))
|
2003-02-25 17:28:14 +01:00
|
|
|
newcnt++;
|
2003-03-18 19:24:34 +01:00
|
|
|
if (MSG_IS_UNREAD(msginfo->flags))
|
2003-02-25 17:28:14 +01:00
|
|
|
unreadcnt++;
|
|
|
|
if (MSG_IS_UNREAD(msginfo->flags) && procmsg_msg_has_marked_parent(msginfo))
|
|
|
|
unreadmarkedcnt++;
|
|
|
|
totalcnt++;
|
|
|
|
|
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
}
|
|
|
|
g_slist_free(exists_list);
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
item->new_msgs = newcnt;
|
|
|
|
item->unread_msgs = unreadcnt;
|
|
|
|
item->total_msgs = totalcnt;
|
|
|
|
item->unreadmarked_msgs = unreadmarkedcnt;
|
2003-02-25 17:28:14 +01:00
|
|
|
|
|
|
|
update_flags |= F_ITEM_UPDATE_MSGCNT;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(item, update_flags);
|
2002-08-22 15:32:16 +02:00
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
return 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2003-06-07 22:18:22 +02:00
|
|
|
static gboolean folder_scan_all_items_func(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
FolderItem *item = node->data;
|
|
|
|
|
|
|
|
folder_item_scan(item);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_scan_all_items(Folder * folder)
|
|
|
|
{
|
|
|
|
g_node_traverse(folder->node, G_PRE_ORDER,
|
|
|
|
G_TRAVERSE_ALL, -1, folder_scan_all_items_func, NULL);
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
static void folder_item_scan_foreach_func(gpointer key, gpointer val,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
folder_item_scan(FOLDER_ITEM(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_scan_foreach(GHashTable *table)
|
|
|
|
{
|
|
|
|
g_hash_table_foreach(table, folder_item_scan_foreach_func, NULL);
|
|
|
|
}
|
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
void folder_count_total_cache_memusage(FolderItem *item, gpointer data)
|
|
|
|
{
|
|
|
|
gint *memusage = (gint *)data;
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache == NULL)
|
2002-06-30 01:33:42 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
*memusage += msgcache_get_memory_usage(item->cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
gint folder_cache_time_compare_func(gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
FolderItem *fa = (FolderItem *)a;
|
|
|
|
FolderItem *fb = (FolderItem *)b;
|
|
|
|
|
|
|
|
return (gint) (msgcache_get_last_access_time(fa->cache) - msgcache_get_last_access_time(fb->cache));
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_find_expired_caches(FolderItem *item, gpointer data)
|
|
|
|
{
|
|
|
|
GSList **folder_item_list = (GSList **)data;
|
|
|
|
gint difftime, expiretime;
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache == NULL)
|
2002-06-30 01:33:42 +02:00
|
|
|
return;
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->opened > 0)
|
2002-08-01 22:50:31 +02:00
|
|
|
return;
|
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
difftime = (gint) (time(NULL) - msgcache_get_last_access_time(item->cache));
|
|
|
|
expiretime = prefs_common.cache_min_keep_time * 60;
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Cache unused time: %d (Expire time: %d)\n", difftime, expiretime);
|
2002-08-31 10:26:28 +02:00
|
|
|
if (difftime > expiretime) {
|
2002-06-30 01:33:42 +02:00
|
|
|
*folder_item_list = g_slist_insert_sorted(*folder_item_list, item, folder_cache_time_compare_func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_free_cache(FolderItem *item)
|
|
|
|
{
|
|
|
|
g_return_if_fail(item != NULL);
|
2002-07-02 21:49:11 +02:00
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache == NULL)
|
2002-07-02 21:49:11 +02:00
|
|
|
return;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->opened > 0)
|
2002-08-01 22:50:31 +02:00
|
|
|
return;
|
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
folder_item_write_cache(item);
|
|
|
|
msgcache_destroy(item->cache);
|
|
|
|
item->cache = NULL;
|
|
|
|
}
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void folder_clean_cache_memory(void)
|
2002-06-30 01:33:42 +02:00
|
|
|
{
|
|
|
|
gint memusage = 0;
|
|
|
|
|
|
|
|
folder_func_to_all_folders(folder_count_total_cache_memusage, &memusage);
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Total cache memory usage: %d\n", memusage);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (memusage > (prefs_common.cache_max_mem_usage * 1024)) {
|
2002-06-30 01:33:42 +02:00
|
|
|
GSList *folder_item_list = NULL, *listitem;
|
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Trying to free cache memory\n");
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
folder_func_to_all_folders(folder_find_expired_caches, &folder_item_list);
|
|
|
|
listitem = folder_item_list;
|
|
|
|
while((listitem != NULL) && (memusage > (prefs_common.cache_max_mem_usage * 1024))) {
|
|
|
|
FolderItem *item = (FolderItem *)(listitem->data);
|
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Freeing cache memory for %s\n", item->path);
|
2002-06-30 01:33:42 +02:00
|
|
|
memusage -= msgcache_get_memory_usage(item->cache);
|
2002-08-01 22:50:31 +02:00
|
|
|
folder_item_free_cache(item);
|
2002-06-30 01:33:42 +02:00
|
|
|
listitem = listitem->next;
|
|
|
|
}
|
|
|
|
g_slist_free(folder_item_list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_read_cache(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *cache_file, *mark_file;
|
|
|
|
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
|
|
|
cache_file = folder_item_get_cache_file(item);
|
|
|
|
mark_file = folder_item_get_mark_file(item);
|
|
|
|
item->cache = msgcache_read_cache(item, cache_file);
|
2002-08-31 10:26:28 +02:00
|
|
|
if (!item->cache) {
|
2002-06-30 01:33:42 +02:00
|
|
|
item->cache = msgcache_new();
|
|
|
|
folder_item_scan(item);
|
|
|
|
}
|
|
|
|
msgcache_read_mark(item->cache, mark_file);
|
|
|
|
g_free(cache_file);
|
|
|
|
g_free(mark_file);
|
|
|
|
|
|
|
|
folder_clean_cache_memory();
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_write_cache(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *cache_file, *mark_file;
|
|
|
|
PrefsFolderItem *prefs;
|
|
|
|
gint filemode = 0;
|
|
|
|
gchar *id;
|
|
|
|
|
|
|
|
if (!item || !item->path || !item->cache)
|
|
|
|
return;
|
|
|
|
|
|
|
|
id = folder_item_get_identifier(item);
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Save cache for folder %s\n", id);
|
2002-06-30 01:33:42 +02:00
|
|
|
g_free(id);
|
|
|
|
|
|
|
|
cache_file = folder_item_get_cache_file(item);
|
|
|
|
mark_file = folder_item_get_mark_file(item);
|
2002-08-31 10:26:28 +02:00
|
|
|
if (msgcache_write(cache_file, mark_file, item->cache) < 0) {
|
2002-06-30 01:33:42 +02:00
|
|
|
prefs = item->prefs;
|
|
|
|
if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
|
|
|
|
/* for cache file */
|
|
|
|
filemode = prefs->folder_chmod;
|
|
|
|
if (filemode & S_IRGRP) filemode |= S_IWGRP;
|
|
|
|
if (filemode & S_IROTH) filemode |= S_IWOTH;
|
|
|
|
chmod(cache_file, filemode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(cache_file);
|
|
|
|
g_free(mark_file);
|
|
|
|
}
|
|
|
|
|
2002-11-16 20:53:47 +01:00
|
|
|
MsgInfo *folder_item_get_msginfo(FolderItem *item, gint num)
|
2002-06-30 01:33:42 +02:00
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
|
|
|
|
folder = item->folder;
|
2002-08-31 10:26:28 +02:00
|
|
|
if (!item->cache)
|
2002-06-30 01:33:42 +02:00
|
|
|
folder_item_read_cache(item);
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if ((msginfo = msgcache_get_msg(item->cache, num)) != NULL)
|
2002-06-30 01:33:42 +02:00
|
|
|
return msginfo;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->get_msginfo, NULL);
|
|
|
|
if ((msginfo = folder->klass->get_msginfo(folder, item, num)) != NULL) {
|
2002-07-10 15:11:25 +02:00
|
|
|
msgcache_add_msg(item->cache, msginfo);
|
|
|
|
return msginfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-11-16 20:53:47 +01:00
|
|
|
MsgInfo *folder_item_get_msginfo_by_msgid(FolderItem *item, const gchar *msgid)
|
2002-07-10 15:11:25 +02:00
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
|
|
|
|
folder = item->folder;
|
2002-08-31 10:26:28 +02:00
|
|
|
if (!item->cache)
|
2002-07-10 15:11:25 +02:00
|
|
|
folder_item_read_cache(item);
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if ((msginfo = msgcache_get_msg_by_id(item->cache, msgid)) != NULL)
|
2002-07-10 15:11:25 +02:00
|
|
|
return msginfo;
|
|
|
|
|
|
|
|
return NULL;
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GSList *folder_item_get_msg_list(FolderItem *item)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (item->cache == 0)
|
2002-06-30 01:33:42 +02:00
|
|
|
folder_item_read_cache(item);
|
|
|
|
|
|
|
|
g_return_val_if_fail(item->cache != NULL, NULL);
|
|
|
|
|
|
|
|
return msgcache_get_msg_list(item->cache);
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *folder_item_fetch_msg(FolderItem *item, gint num)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
|
|
|
|
folder = item->folder;
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->fetch_msg != NULL, NULL);
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
return folder->klass->fetch_msg(folder, item, num);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2003-01-25 02:09:14 +01:00
|
|
|
static gint folder_item_get_msg_num_by_file(FolderItem *dest, const gchar *file)
|
|
|
|
{
|
|
|
|
static HeaderEntry hentry[] = {{"Message-ID:", NULL, TRUE},
|
|
|
|
{NULL, NULL, FALSE}};
|
|
|
|
FILE *fp;
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
gint msgnum = 0;
|
|
|
|
gchar buf[BUFFSIZE];
|
|
|
|
|
|
|
|
if ((fp = fopen(file, "rb")) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((dest->stype == F_QUEUE) || (dest->stype == F_DRAFT))
|
|
|
|
while (fgets(buf, sizeof(buf), fp) != NULL)
|
|
|
|
if (buf[0] == '\r' || buf[0] == '\n') break;
|
|
|
|
|
|
|
|
procheader_get_header_fields(fp, hentry);
|
|
|
|
if (hentry[0].body) {
|
|
|
|
extract_parenthesis(hentry[0].body, '<', '>');
|
|
|
|
remove_space(hentry[0].body);
|
|
|
|
if ((msginfo = msgcache_get_msg_by_id(dest->cache, hentry[0].body)) != NULL) {
|
|
|
|
msgnum = msginfo->msgnum;
|
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
|
|
|
|
debug_print("found message as uid %d\n", msgnum);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(hentry[0].body);
|
2003-01-27 20:43:29 +01:00
|
|
|
hentry[0].body = NULL;
|
2003-01-25 02:09:14 +01:00
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return msgnum;
|
|
|
|
}
|
|
|
|
|
2003-03-24 22:48:10 +01:00
|
|
|
static void copy_msginfo_flags(MsgInfo *source, MsgInfo *dest)
|
|
|
|
{
|
2003-03-27 13:19:56 +01:00
|
|
|
MsgPermFlags perm_flags = 0;
|
|
|
|
MsgTmpFlags tmp_flags = 0;
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
/* create new flags */
|
|
|
|
if (source != NULL) {
|
|
|
|
/* copy original flags */
|
2003-03-27 13:19:56 +01:00
|
|
|
perm_flags = source->flags.perm_flags;
|
|
|
|
tmp_flags = source->flags.tmp_flags;
|
2003-03-24 22:48:10 +01:00
|
|
|
} else {
|
2003-03-27 13:19:56 +01:00
|
|
|
perm_flags = dest->flags.perm_flags;
|
|
|
|
tmp_flags = dest->flags.tmp_flags;
|
2003-03-24 22:48:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* remove new, unread and deleted in special folders */
|
|
|
|
if (dest->folder->stype == F_OUTBOX ||
|
|
|
|
dest->folder->stype == F_QUEUE ||
|
|
|
|
dest->folder->stype == F_DRAFT ||
|
|
|
|
dest->folder->stype == F_TRASH)
|
2003-03-27 13:19:56 +01:00
|
|
|
perm_flags &= ~(MSG_NEW | MSG_UNREAD | MSG_DELETED);
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
/* set ignore flag of ignored parent exists */
|
|
|
|
if (procmsg_msg_has_flagged_parent(dest, MSG_IGNORE_THREAD))
|
2003-03-27 13:19:56 +01:00
|
|
|
perm_flags |= MSG_IGNORE_THREAD;
|
|
|
|
|
|
|
|
/* Unset tmp flags that should not be copied */
|
|
|
|
tmp_flags &= ~(MSG_MOVE | MSG_COPY);
|
|
|
|
|
2003-03-24 22:48:10 +01:00
|
|
|
/* unset flags that are set but should not */
|
2003-03-27 13:19:56 +01:00
|
|
|
procmsg_msginfo_unset_flags(dest,
|
|
|
|
dest->flags.perm_flags & ~perm_flags,
|
|
|
|
dest->flags.tmp_flags & ~tmp_flags);
|
2003-03-24 22:48:10 +01:00
|
|
|
/* set new flags */
|
2003-03-27 13:19:56 +01:00
|
|
|
procmsg_msginfo_set_flags(dest,
|
|
|
|
~dest->flags.perm_flags & perm_flags,
|
|
|
|
~dest->flags.tmp_flags & tmp_flags);
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
folder_item_update(dest->folder, F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_msginfo_to_cache(FolderItem *item, MsgInfo *newmsginfo, MsgInfo *flagsource)
|
|
|
|
{
|
|
|
|
/* update folder stats */
|
|
|
|
if (MSG_IS_NEW(newmsginfo->flags))
|
2003-04-05 22:38:53 +02:00
|
|
|
item->new_msgs++;
|
2003-03-24 22:48:10 +01:00
|
|
|
if (MSG_IS_UNREAD(newmsginfo->flags))
|
2003-04-05 22:38:53 +02:00
|
|
|
item->unread_msgs++;
|
2003-03-24 22:48:10 +01:00
|
|
|
if (MSG_IS_UNREAD(newmsginfo->flags) && procmsg_msg_has_marked_parent(newmsginfo))
|
2003-04-05 22:38:53 +02:00
|
|
|
item->unreadmarked_msgs++;
|
|
|
|
item->total_msgs++;
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
copy_msginfo_flags(flagsource, newmsginfo);
|
|
|
|
|
|
|
|
msgcache_add_msg(item->cache, newmsginfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_msginfo_from_cache(FolderItem *item, MsgInfo *msginfo)
|
|
|
|
{
|
|
|
|
if (!item->cache)
|
|
|
|
folder_item_read_cache(item);
|
|
|
|
|
|
|
|
if (MSG_IS_NEW(msginfo->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags))
|
2003-04-05 22:38:53 +02:00
|
|
|
msginfo->folder->new_msgs--;
|
2003-03-24 22:48:10 +01:00
|
|
|
if (MSG_IS_UNREAD(msginfo->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags))
|
2003-04-05 22:38:53 +02:00
|
|
|
msginfo->folder->unread_msgs--;
|
2003-03-24 22:48:10 +01:00
|
|
|
if (MSG_IS_UNREAD(msginfo->flags) && procmsg_msg_has_marked_parent(msginfo))
|
2003-04-05 22:38:53 +02:00
|
|
|
msginfo->folder->unreadmarked_msgs--;
|
|
|
|
msginfo->folder->total_msgs--;
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
msgcache_remove_msg(item->cache, msginfo->msgnum);
|
|
|
|
folder_item_update(msginfo->folder, F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT);
|
|
|
|
}
|
|
|
|
|
2001-05-17 15:25:31 +02:00
|
|
|
gint folder_item_add_msg(FolderItem *dest, const gchar *file,
|
|
|
|
gboolean remove_source)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gint num;
|
2002-06-30 01:33:42 +02:00
|
|
|
MsgInfo *msginfo;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(file != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->add_msg != NULL, -1);
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
if (!dest->cache)
|
|
|
|
folder_item_read_cache(dest);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
num = folder->klass->add_msg(folder, dest, file, FALSE);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
if (num > 0) {
|
2003-04-05 22:38:53 +02:00
|
|
|
msginfo = folder->klass->get_msginfo(folder, dest, num);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2002-08-31 10:26:28 +02:00
|
|
|
if (msginfo != NULL) {
|
2003-03-24 22:48:10 +01:00
|
|
|
add_msginfo_to_cache(dest, msginfo, NULL);
|
2002-07-28 01:57:07 +02:00
|
|
|
procmsg_msginfo_free(msginfo);
|
2003-05-14 15:23:40 +02:00
|
|
|
folder_item_update(dest, F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT);
|
2002-07-28 01:57:07 +02:00
|
|
|
}
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
dest->last_num = num;
|
2003-01-25 02:09:14 +01:00
|
|
|
} else if (num == 0) {
|
|
|
|
folder_item_scan(dest);
|
|
|
|
num = folder_item_get_msg_num_by_file(dest, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num >= 0 && remove_source) {
|
|
|
|
if (unlink(file) < 0)
|
|
|
|
FILE_OP_ERROR(file, "unlink");
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2001-05-28 00:40:29 +02:00
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
gint folder_item_move_msg(FolderItem *dest, MsgInfo *msginfo)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gint num;
|
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msginfo != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
if (dest->last_num < 0) folder->scan(folder, dest);
|
|
|
|
|
|
|
|
num = folder->move_msg(folder, dest, msginfo);
|
|
|
|
if (num > 0) dest->last_num = num;
|
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
*/
|
2002-11-07 00:56:26 +01:00
|
|
|
|
2002-11-08 16:42:57 +01:00
|
|
|
FolderItem *folder_item_move_recursive (FolderItem *src, FolderItem *dest)
|
2002-11-07 00:56:26 +01:00
|
|
|
{
|
|
|
|
GSList *mlist;
|
|
|
|
FolderItem *new_item;
|
|
|
|
FolderItem *next_item;
|
|
|
|
GNode *srcnode;
|
2002-11-27 16:06:54 +01:00
|
|
|
gchar *old_id, *new_id;
|
|
|
|
|
2002-11-07 00:56:26 +01:00
|
|
|
mlist = folder_item_get_msg_list(src);
|
|
|
|
|
|
|
|
/* move messages */
|
|
|
|
debug_print("Moving %s to %s\n", src->path, dest->path);
|
|
|
|
new_item = folder_create_folder(dest, g_basename(src->path));
|
|
|
|
if (new_item == NULL) {
|
|
|
|
printf("Can't create folder\n");
|
2002-11-08 16:42:57 +01:00
|
|
|
return NULL;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
|
2002-11-08 16:42:57 +01:00
|
|
|
if (new_item->folder == NULL)
|
|
|
|
new_item->folder = dest->folder;
|
|
|
|
|
|
|
|
/* move messages */
|
2003-03-21 18:28:52 +01:00
|
|
|
log_message(_("Moving %s to %s...\n"),
|
|
|
|
src->name, new_item->path);
|
|
|
|
folder_item_move_msgs_with_dest(new_item, mlist);
|
2002-11-08 16:42:57 +01:00
|
|
|
|
|
|
|
/*copy prefs*/
|
|
|
|
prefs_folder_item_copy_prefs(src, new_item);
|
2002-11-08 16:57:21 +01:00
|
|
|
new_item->collapsed = src->collapsed;
|
2003-01-25 02:30:03 +01:00
|
|
|
new_item->thread_collapsed = src->thread_collapsed;
|
2002-11-08 16:57:21 +01:00
|
|
|
new_item->threaded = src->threaded;
|
|
|
|
new_item->ret_rcpt = src->ret_rcpt;
|
|
|
|
new_item->hide_read_msgs = src->hide_read_msgs;
|
|
|
|
new_item->sort_key = src->sort_key;
|
|
|
|
new_item->sort_type = src->sort_type;
|
2002-11-08 16:42:57 +01:00
|
|
|
|
2002-11-09 22:43:51 +01:00
|
|
|
prefs_matcher_write_config();
|
|
|
|
|
2002-11-08 16:42:57 +01:00
|
|
|
/* recurse */
|
2002-11-07 00:56:26 +01:00
|
|
|
srcnode = src->folder->node;
|
|
|
|
srcnode = g_node_find(srcnode, G_PRE_ORDER, G_TRAVERSE_ALL, src);
|
|
|
|
srcnode = srcnode->children;
|
|
|
|
while (srcnode != NULL) {
|
|
|
|
if (srcnode && srcnode->data) {
|
|
|
|
next_item = (FolderItem*) srcnode->data;
|
2002-11-27 14:21:07 +01:00
|
|
|
srcnode = srcnode->next;
|
2002-11-08 16:42:57 +01:00
|
|
|
if (folder_item_move_recursive(next_item, new_item) == NULL)
|
|
|
|
return NULL;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
}
|
2002-11-27 16:06:54 +01:00
|
|
|
old_id = folder_item_get_identifier(src);
|
|
|
|
new_id = folder_item_get_identifier(new_item);
|
|
|
|
debug_print("updating rules : %s => %s\n", old_id, new_id);
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
src->folder->klass->remove_folder(src->folder, src);
|
2002-11-27 16:06:54 +01:00
|
|
|
folder_write_list();
|
|
|
|
|
|
|
|
if (old_id != NULL && new_id != NULL)
|
|
|
|
prefs_filtering_rename_path(old_id, new_id);
|
|
|
|
g_free(old_id);
|
|
|
|
g_free(new_id);
|
2002-11-27 14:21:07 +01:00
|
|
|
|
2002-11-08 16:42:57 +01:00
|
|
|
return new_item;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
|
2002-11-15 20:51:25 +01:00
|
|
|
gint folder_item_move_to(FolderItem *src, FolderItem *dest, FolderItem **new_item)
|
2002-11-07 00:56:26 +01:00
|
|
|
{
|
|
|
|
FolderItem *tmp = dest->parent;
|
2002-12-02 18:41:39 +01:00
|
|
|
gchar * src_identifier, * dst_identifier;
|
|
|
|
gchar * phys_srcpath, * phys_dstpath;
|
2002-11-08 18:36:53 +01:00
|
|
|
GNode *src_node;
|
|
|
|
|
2002-11-07 00:56:26 +01:00
|
|
|
while (tmp) {
|
|
|
|
if (tmp == src) {
|
2002-11-15 20:51:25 +01:00
|
|
|
return F_MOVE_FAILED_DEST_IS_CHILD;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
tmp = tmp->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = src->parent;
|
|
|
|
|
2002-11-09 14:02:30 +01:00
|
|
|
src_identifier = folder_item_get_identifier(src);
|
|
|
|
dst_identifier = folder_item_get_identifier(dest);
|
2002-11-07 00:56:26 +01:00
|
|
|
|
2002-11-09 14:02:30 +01:00
|
|
|
if(dst_identifier == NULL && dest->folder && dest->parent == NULL) {
|
2002-11-07 15:22:31 +01:00
|
|
|
/* dest can be a root folder */
|
2002-11-09 14:02:30 +01:00
|
|
|
dst_identifier = folder_get_identifier(dest->folder);
|
2002-11-07 15:22:31 +01:00
|
|
|
}
|
2002-11-09 14:02:30 +01:00
|
|
|
if (src_identifier == NULL || dst_identifier == NULL) {
|
2003-03-14 02:38:17 +01:00
|
|
|
debug_print("Can't get identifiers\n");
|
2002-11-15 20:51:25 +01:00
|
|
|
return F_MOVE_FAILED;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
|
2002-12-02 12:35:24 +01:00
|
|
|
if (src->folder != dest->folder) {
|
|
|
|
return F_MOVE_FAILED_DEST_OUTSIDE_MAILBOX;
|
|
|
|
}
|
|
|
|
|
2002-11-07 00:56:26 +01:00
|
|
|
phys_srcpath = folder_item_get_path(src);
|
2002-11-09 14:02:30 +01:00
|
|
|
phys_dstpath = g_strconcat(folder_item_get_path(dest),G_DIR_SEPARATOR_S,g_basename(phys_srcpath),NULL);
|
2002-11-07 15:22:31 +01:00
|
|
|
|
2002-12-02 12:11:22 +01:00
|
|
|
if (src->parent == dest || src == dest) {
|
2002-11-09 14:02:30 +01:00
|
|
|
g_free(src_identifier);
|
|
|
|
g_free(dst_identifier);
|
2002-11-07 00:56:26 +01:00
|
|
|
g_free(phys_srcpath);
|
|
|
|
g_free(phys_dstpath);
|
2002-11-15 20:51:25 +01:00
|
|
|
return F_MOVE_FAILED_DEST_IS_PARENT;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
debug_print("moving \"%s\" to \"%s\"\n", phys_srcpath, phys_dstpath);
|
2002-11-08 16:42:57 +01:00
|
|
|
if ((tmp = folder_item_move_recursive(src, dest)) == NULL) {
|
2002-11-15 20:51:25 +01:00
|
|
|
return F_MOVE_FAILED;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* update rules */
|
2002-11-08 18:36:53 +01:00
|
|
|
src_node = g_node_find(src->folder->node, G_PRE_ORDER, G_TRAVERSE_ALL, src);
|
|
|
|
if (src_node)
|
|
|
|
g_node_destroy(src_node);
|
|
|
|
else
|
2002-11-10 22:30:46 +01:00
|
|
|
debug_print("can't remove node: it's null!\n");
|
2002-11-07 00:56:26 +01:00
|
|
|
/* not to much worry if remove fails, move has been done */
|
|
|
|
|
2002-11-09 14:02:30 +01:00
|
|
|
g_free(src_identifier);
|
|
|
|
g_free(dst_identifier);
|
2002-11-07 00:56:26 +01:00
|
|
|
g_free(phys_srcpath);
|
|
|
|
g_free(phys_dstpath);
|
2002-11-08 16:42:57 +01:00
|
|
|
|
2002-11-15 20:51:25 +01:00
|
|
|
*new_item = tmp;
|
|
|
|
|
|
|
|
return F_MOVE_OK;
|
2002-11-07 00:56:26 +01:00
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
|
|
|
|
gint folder_item_move_msg(FolderItem *dest, MsgInfo *msginfo)
|
|
|
|
{
|
2003-03-04 23:48:28 +01:00
|
|
|
GSList *list = NULL;
|
|
|
|
gint ret;
|
2002-10-10 20:21:11 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
list = g_slist_append(list, msginfo);
|
|
|
|
ret = folder_item_move_msgs_with_dest(dest, list);
|
|
|
|
g_slist_free(list);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
return ret;
|
2001-05-28 00:40:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
gint folder_item_move_msgs_with_dest(FolderItem *dest, GSList *msglist)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gint num;
|
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msglist != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
if (dest->last_num < 0) folder->scan(folder, dest);
|
|
|
|
|
|
|
|
num = folder->move_msgs_with_dest(folder, dest, msglist);
|
|
|
|
if (num > 0) dest->last_num = num;
|
2001-07-31 08:17:48 +02:00
|
|
|
else dest->op_count = 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
*/
|
|
|
|
|
2003-03-24 22:48:10 +01:00
|
|
|
|
|
|
|
|
2001-05-28 00:40:29 +02:00
|
|
|
gint folder_item_move_msgs_with_dest(FolderItem *dest, GSList *msglist)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
2002-07-25 15:24:39 +02:00
|
|
|
FolderItem *item;
|
|
|
|
GSList *newmsgnums = NULL;
|
|
|
|
GSList *l, *l2;
|
2003-03-04 23:48:28 +01:00
|
|
|
gint num, lastnum = -1;
|
|
|
|
gboolean folderscan = FALSE;
|
2001-05-28 00:40:29 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msglist != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->copy_msg != NULL, -1);
|
|
|
|
g_return_val_if_fail(folder->klass->remove_msg != NULL, -1);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
/*
|
|
|
|
* Copy messages to destination folder and
|
|
|
|
* store new message numbers in newmsgnums
|
|
|
|
*/
|
2001-05-28 00:40:29 +02:00
|
|
|
item = NULL;
|
2002-08-31 10:26:28 +02:00
|
|
|
for (l = msglist ; l != NULL ; l = g_slist_next(l)) {
|
2001-05-28 00:40:29 +02:00
|
|
|
MsgInfo * msginfo = (MsgInfo *) l->data;
|
|
|
|
|
|
|
|
if (!item && msginfo->folder != NULL)
|
|
|
|
item = msginfo->folder;
|
2002-06-30 01:33:42 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
num = folder->klass->copy_msg(folder, dest, msginfo);
|
2002-07-25 15:24:39 +02:00
|
|
|
newmsgnums = g_slist_append(newmsgnums, GINT_TO_POINTER(num));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read cache for dest folder */
|
|
|
|
if (!dest->cache) folder_item_read_cache(dest);
|
2003-03-04 23:48:28 +01:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
/*
|
|
|
|
* Fetch new MsgInfos for new messages in dest folder,
|
|
|
|
* add them to the msgcache and update folder message counts
|
|
|
|
*/
|
|
|
|
l2 = newmsgnums;
|
2002-08-31 10:26:28 +02:00
|
|
|
for (l = msglist; l != NULL; l = g_slist_next(l)) {
|
2002-07-25 15:24:39 +02:00
|
|
|
MsgInfo *msginfo = (MsgInfo *) l->data;
|
|
|
|
|
|
|
|
num = GPOINTER_TO_INT(l2->data);
|
2003-03-04 23:48:28 +01:00
|
|
|
l2 = g_slist_next(l2);
|
2002-07-25 15:24:39 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
if (num >= 0) {
|
2002-06-30 01:33:42 +02:00
|
|
|
MsgInfo *newmsginfo;
|
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
if (num == 0) {
|
|
|
|
gchar *file;
|
|
|
|
|
|
|
|
if (!folderscan) {
|
|
|
|
folder_item_scan(dest);
|
|
|
|
folderscan = TRUE;
|
|
|
|
}
|
|
|
|
file = folder_item_fetch_msg(msginfo->folder, msginfo->msgnum);
|
|
|
|
num = folder_item_get_msg_num_by_file(dest, file);
|
|
|
|
g_free(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num > lastnum)
|
|
|
|
lastnum = num;
|
|
|
|
|
|
|
|
if (num == 0)
|
|
|
|
continue;
|
|
|
|
|
2003-03-24 22:48:10 +01:00
|
|
|
if (!folderscan &&
|
2003-04-05 22:38:53 +02:00
|
|
|
((newmsginfo = folder->klass->get_msginfo(folder, dest, num)) != NULL)) {
|
2003-03-24 22:48:10 +01:00
|
|
|
add_msginfo_to_cache(dest, newmsginfo, msginfo);
|
|
|
|
procmsg_msginfo_free(newmsginfo);
|
|
|
|
} else if ((newmsginfo = msgcache_get_msg(dest->cache, num)) != NULL) {
|
|
|
|
copy_msginfo_flags(msginfo, newmsginfo);
|
|
|
|
procmsg_msginfo_free(newmsginfo);
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
2002-07-25 15:24:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove source messages from their folders if
|
|
|
|
* copying was successfull and update folder
|
|
|
|
* message counts
|
|
|
|
*/
|
|
|
|
l2 = newmsgnums;
|
2002-08-31 10:26:28 +02:00
|
|
|
for (l = msglist; l != NULL; l = g_slist_next(l)) {
|
2002-07-25 15:24:39 +02:00
|
|
|
MsgInfo *msginfo = (MsgInfo *) l->data;
|
|
|
|
|
|
|
|
num = GPOINTER_TO_INT(l2->data);
|
2003-03-04 23:48:28 +01:00
|
|
|
l2 = g_slist_next(l2);
|
2002-07-25 15:24:39 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
if (num >= 0) {
|
2003-04-05 22:38:53 +02:00
|
|
|
item->folder->klass->remove_msg(item->folder,
|
2003-03-12 16:40:51 +01:00
|
|
|
msginfo->folder,
|
|
|
|
msginfo->msgnum);
|
2003-03-24 22:48:10 +01:00
|
|
|
remove_msginfo_from_cache(item, msginfo);
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
2002-07-25 15:24:39 +02:00
|
|
|
}
|
|
|
|
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->finished_copy)
|
|
|
|
folder->klass->finished_copy(folder, dest);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
g_slist_free(newmsgnums);
|
2003-03-04 23:48:28 +01:00
|
|
|
return lastnum;
|
2001-05-28 00:40:29 +02:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-05-28 00:40:29 +02:00
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
gint folder_item_copy_msg(FolderItem *dest, MsgInfo *msginfo)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gint num;
|
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msginfo != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
if (dest->last_num < 0) folder->scan(folder, dest);
|
|
|
|
|
|
|
|
num = folder->copy_msg(folder, dest, msginfo);
|
|
|
|
if (num > 0) dest->last_num = num;
|
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
*/
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-05-28 00:40:29 +02:00
|
|
|
gint folder_item_copy_msg(FolderItem *dest, MsgInfo *msginfo)
|
|
|
|
{
|
2003-03-04 23:48:28 +01:00
|
|
|
GSList *list = NULL;
|
|
|
|
gint ret;
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
list = g_slist_append(list, msginfo);
|
|
|
|
ret = folder_item_copy_msgs_with_dest(dest, list);
|
|
|
|
g_slist_free(list);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
return ret;
|
2001-05-28 00:40:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
gint folder_item_copy_msgs_with_dest(FolderItem *dest, GSList *msglist)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
gint num;
|
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msglist != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
if (dest->last_num < 0) folder->scan(folder, dest);
|
|
|
|
|
|
|
|
num = folder->copy_msgs_with_dest(folder, dest, msglist);
|
|
|
|
if (num > 0) dest->last_num = num;
|
2001-07-31 08:17:48 +02:00
|
|
|
else dest->op_count = 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
gint folder_item_copy_msgs_with_dest(FolderItem *dest, GSList *msglist)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
2003-03-04 23:48:28 +01:00
|
|
|
gint num, lastnum = -1;
|
2002-07-25 15:24:39 +02:00
|
|
|
GSList *newmsgnums = NULL;
|
|
|
|
GSList *l, *l2;
|
2003-03-04 23:48:28 +01:00
|
|
|
gboolean folderscan = FALSE;
|
2001-05-28 00:40:29 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(dest != NULL, -1);
|
|
|
|
g_return_val_if_fail(msglist != NULL, -1);
|
|
|
|
|
|
|
|
folder = dest->folder;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->copy_msg != NULL, -1);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
/*
|
|
|
|
* Copy messages to destination folder and
|
|
|
|
* store new message numbers in newmsgnums
|
|
|
|
*/
|
2002-08-31 10:26:28 +02:00
|
|
|
for (l = msglist ; l != NULL ; l = g_slist_next(l)) {
|
2001-05-28 00:40:29 +02:00
|
|
|
MsgInfo * msginfo = (MsgInfo *) l->data;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
num = folder->klass->copy_msg(folder, dest, msginfo);
|
2002-07-25 15:24:39 +02:00
|
|
|
newmsgnums = g_slist_append(newmsgnums, GINT_TO_POINTER(num));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read cache for dest folder */
|
|
|
|
if (!dest->cache) folder_item_read_cache(dest);
|
2002-10-07 23:47:32 +02:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
/*
|
|
|
|
* Fetch new MsgInfos for new messages in dest folder,
|
|
|
|
* add them to the msgcache and update folder message counts
|
|
|
|
*/
|
|
|
|
l2 = newmsgnums;
|
2002-08-31 10:26:28 +02:00
|
|
|
for (l = msglist; l != NULL; l = g_slist_next(l)) {
|
2002-07-25 15:24:39 +02:00
|
|
|
MsgInfo *msginfo = (MsgInfo *) l->data;
|
|
|
|
|
|
|
|
num = GPOINTER_TO_INT(l2->data);
|
2003-03-04 23:48:28 +01:00
|
|
|
l2 = g_slist_next(l2);
|
2002-07-25 15:24:39 +02:00
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
if (num >= 0) {
|
2002-06-30 01:33:42 +02:00
|
|
|
MsgInfo *newmsginfo;
|
|
|
|
|
2003-03-04 23:48:28 +01:00
|
|
|
if (num == 0) {
|
|
|
|
gchar *file;
|
|
|
|
|
|
|
|
if (!folderscan) {
|
|
|
|
folder_item_scan(dest);
|
|
|
|
folderscan = TRUE;
|
|
|
|
}
|
|
|
|
file = folder_item_fetch_msg(msginfo->folder, msginfo->msgnum);
|
|
|
|
num = folder_item_get_msg_num_by_file(dest, file);
|
|
|
|
g_free(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num > lastnum)
|
|
|
|
lastnum = num;
|
|
|
|
|
|
|
|
if (num == 0)
|
|
|
|
continue;
|
|
|
|
|
2003-03-24 22:48:10 +01:00
|
|
|
if (!folderscan &&
|
2003-04-05 22:38:53 +02:00
|
|
|
((newmsginfo = folder->klass->get_msginfo(folder, dest, num)) != NULL)) {
|
|
|
|
newmsginfo = folder->klass->get_msginfo(folder, dest, num);
|
2003-03-24 22:48:10 +01:00
|
|
|
add_msginfo_to_cache(dest, newmsginfo, msginfo);
|
|
|
|
procmsg_msginfo_free(newmsginfo);
|
|
|
|
} else if ((newmsginfo = msgcache_get_msg(dest->cache, num)) != NULL) {
|
|
|
|
copy_msginfo_flags(msginfo, newmsginfo);
|
|
|
|
procmsg_msginfo_free(newmsginfo);
|
2002-06-30 01:33:42 +02:00
|
|
|
}
|
|
|
|
}
|
2001-05-28 00:40:29 +02:00
|
|
|
}
|
2002-07-25 15:24:39 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->finished_copy)
|
|
|
|
folder->klass->finished_copy(folder, dest);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
2002-07-25 15:24:39 +02:00
|
|
|
g_slist_free(newmsgnums);
|
2003-03-05 20:46:21 +01:00
|
|
|
return lastnum;
|
2001-05-28 00:40:29 +02:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
gint folder_item_remove_msg(FolderItem *item, gint num)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
2001-08-30 14:59:38 +02:00
|
|
|
gint ret;
|
2002-06-30 01:33:42 +02:00
|
|
|
MsgInfo *msginfo;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, -1);
|
2003-04-26 17:20:03 +02:00
|
|
|
folder = item->folder;
|
2003-04-26 13:43:05 +02:00
|
|
|
g_return_val_if_fail(folder->klass->remove_msg != NULL, -1);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
if (!item->cache) folder_item_read_cache(item);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
ret = folder->klass->remove_msg(folder, item, num);
|
2002-06-30 01:33:42 +02:00
|
|
|
|
|
|
|
msginfo = msgcache_get_msg(item->cache, num);
|
2002-08-31 10:26:28 +02:00
|
|
|
if (msginfo != NULL) {
|
2003-03-24 22:48:10 +01:00
|
|
|
remove_msginfo_from_cache(item, msginfo);
|
2002-07-31 17:35:26 +02:00
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
}
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(item, F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT);
|
2001-05-30 05:05:08 +02:00
|
|
|
|
2001-08-30 14:59:38 +02:00
|
|
|
return ret;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2001-10-07 11:15:06 +02:00
|
|
|
gint folder_item_remove_msgs(FolderItem *item, GSList *msglist)
|
|
|
|
{
|
2002-10-13 18:30:48 +02:00
|
|
|
Folder *folder;
|
2001-10-07 11:15:06 +02:00
|
|
|
gint ret = 0;
|
|
|
|
|
2002-11-14 20:50:22 +01:00
|
|
|
g_return_val_if_fail(item != NULL, -1);
|
2002-11-14 18:19:17 +01:00
|
|
|
folder = item->folder;
|
2002-11-14 20:50:22 +01:00
|
|
|
g_return_val_if_fail(folder != NULL, -1);
|
2002-11-14 18:19:17 +01:00
|
|
|
|
|
|
|
if (!item->cache) folder_item_read_cache(item);
|
|
|
|
|
2001-10-07 11:15:06 +02:00
|
|
|
while (msglist != NULL) {
|
|
|
|
MsgInfo *msginfo = (MsgInfo *)msglist->data;
|
|
|
|
|
|
|
|
ret = folder_item_remove_msg(item, msginfo->msgnum);
|
|
|
|
if (ret != 0) break;
|
2002-06-30 01:33:42 +02:00
|
|
|
msgcache_remove_msg(item->cache, msginfo->msgnum);
|
2001-10-07 11:15:06 +02:00
|
|
|
msglist = msglist->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gint folder_item_remove_all_msg(FolderItem *item)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
2001-05-30 05:05:08 +02:00
|
|
|
gint result;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, -1);
|
2001-05-28 00:40:29 +02:00
|
|
|
|
|
|
|
folder = item->folder;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->remove_all_msg != NULL, -1);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
result = folder->klass->remove_all_msg(folder, item);
|
2001-05-30 05:05:08 +02:00
|
|
|
|
2002-06-30 01:33:42 +02:00
|
|
|
if (result == 0) {
|
2003-04-05 22:38:53 +02:00
|
|
|
if (folder->klass->finished_remove)
|
|
|
|
folder->klass->finished_remove(folder, item);
|
2002-07-06 03:07:26 +02:00
|
|
|
|
|
|
|
folder_item_free_cache(item);
|
|
|
|
item->cache = msgcache_new();
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
item->new_msgs = 0;
|
|
|
|
item->unread_msgs = 0;
|
|
|
|
item->unreadmarked_msgs = 0;
|
|
|
|
item->total_msgs = 0;
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(item, F_ITEM_UPDATE_MSGCNT | F_ITEM_UPDATE_CONTENT);
|
2001-05-30 05:05:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2003-03-18 19:24:34 +01:00
|
|
|
void folder_item_change_msg_flags(FolderItem *item, MsgInfo *msginfo, MsgPermFlags newflags)
|
|
|
|
{
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
g_return_if_fail(msginfo != NULL);
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
if (item->folder->klass->change_flags != NULL) {
|
|
|
|
item->folder->klass->change_flags(item->folder, item, msginfo, newflags);
|
2003-03-18 19:24:34 +01:00
|
|
|
} else {
|
|
|
|
msginfo->flags.perm_flags = newflags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gboolean folder_item_is_msg_changed(FolderItem *item, MsgInfo *msginfo)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, FALSE);
|
|
|
|
|
|
|
|
folder = item->folder;
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
g_return_val_if_fail(folder->klass->is_msg_changed != NULL, -1);
|
2001-05-23 14:08:40 +02:00
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
return folder->klass->is_msg_changed(folder, item, msginfo);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gchar *folder_item_get_cache_file(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *path;
|
|
|
|
gchar *file;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
g_return_val_if_fail(item->path != NULL, NULL);
|
|
|
|
|
|
|
|
path = folder_item_get_path(item);
|
|
|
|
g_return_val_if_fail(path != NULL, NULL);
|
|
|
|
if (!is_dir_exist(path))
|
|
|
|
make_dir_hier(path);
|
|
|
|
file = g_strconcat(path, G_DIR_SEPARATOR_S, CACHE_FILE, NULL);
|
|
|
|
g_free(path);
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *folder_item_get_mark_file(FolderItem *item)
|
|
|
|
{
|
|
|
|
gchar *path;
|
|
|
|
gchar *file;
|
|
|
|
|
|
|
|
g_return_val_if_fail(item != NULL, NULL);
|
|
|
|
g_return_val_if_fail(item->path != NULL, NULL);
|
|
|
|
|
|
|
|
path = folder_item_get_path(item);
|
|
|
|
g_return_val_if_fail(path != NULL, NULL);
|
|
|
|
if (!is_dir_exist(path))
|
|
|
|
make_dir_hier(path);
|
|
|
|
file = g_strconcat(path, G_DIR_SEPARATOR_S, MARK_FILE, NULL);
|
|
|
|
g_free(path);
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean folder_build_tree(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
Folder *folder = FOLDER(data);
|
|
|
|
FolderItem *item;
|
|
|
|
XMLNode *xmlnode;
|
|
|
|
GList *list;
|
|
|
|
SpecialFolderItemType stype = F_NORMAL;
|
|
|
|
const gchar *name = NULL;
|
|
|
|
const gchar *path = NULL;
|
|
|
|
PrefsAccount *account = NULL;
|
2001-09-23 03:19:22 +02:00
|
|
|
gboolean no_sub = FALSE, no_select = FALSE, collapsed = FALSE,
|
2002-10-13 16:12:29 +02:00
|
|
|
threaded = TRUE, apply_sub = FALSE;
|
2003-01-25 02:30:03 +01:00
|
|
|
gboolean ret_rcpt = FALSE, hidereadmsgs = FALSE,
|
|
|
|
thread_collapsed = FALSE; /* CLAWS */
|
2002-06-03 08:03:31 +02:00
|
|
|
FolderSortKey sort_key = SORT_BY_NONE;
|
|
|
|
FolderSortType sort_type = SORT_ASCENDING;
|
2002-11-25 16:38:06 +01:00
|
|
|
gint new = 0, unread = 0, total = 0, unreadmarked = 0;
|
2002-06-19 09:31:13 +02:00
|
|
|
time_t mtime = 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail(node->data != NULL, FALSE);
|
|
|
|
if (!node->parent) return FALSE;
|
|
|
|
|
|
|
|
xmlnode = node->data;
|
|
|
|
if (strcmp2(xmlnode->tag->tag, "folderitem") != 0) {
|
|
|
|
g_warning("tag name != \"folderitem\"\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
list = xmlnode->tag->attr;
|
|
|
|
for (; list != NULL; list = list->next) {
|
|
|
|
XMLAttr *attr = list->data;
|
|
|
|
|
|
|
|
if (!attr || !attr->name || !attr->value) continue;
|
|
|
|
if (!strcmp(attr->name, "type")) {
|
|
|
|
if (!strcasecmp(attr->value, "normal"))
|
|
|
|
stype = F_NORMAL;
|
|
|
|
else if (!strcasecmp(attr->value, "inbox"))
|
|
|
|
stype = F_INBOX;
|
|
|
|
else if (!strcasecmp(attr->value, "outbox"))
|
|
|
|
stype = F_OUTBOX;
|
|
|
|
else if (!strcasecmp(attr->value, "draft"))
|
|
|
|
stype = F_DRAFT;
|
|
|
|
else if (!strcasecmp(attr->value, "queue"))
|
|
|
|
stype = F_QUEUE;
|
|
|
|
else if (!strcasecmp(attr->value, "trash"))
|
|
|
|
stype = F_TRASH;
|
|
|
|
} else if (!strcmp(attr->name, "name"))
|
|
|
|
name = attr->value;
|
|
|
|
else if (!strcmp(attr->name, "path"))
|
|
|
|
path = attr->value;
|
2002-10-13 16:12:29 +02:00
|
|
|
else if (!strcmp(attr->name, "mtime"))
|
2002-06-19 09:31:13 +02:00
|
|
|
mtime = strtoul(attr->value, NULL, 10);
|
2001-04-19 14:21:46 +02:00
|
|
|
else if (!strcmp(attr->name, "new"))
|
|
|
|
new = atoi(attr->value);
|
|
|
|
else if (!strcmp(attr->name, "unread"))
|
|
|
|
unread = atoi(attr->value);
|
2002-11-25 16:38:06 +01:00
|
|
|
else if (!strcmp(attr->name, "unreadmarked"))
|
|
|
|
unreadmarked = atoi(attr->value);
|
2001-04-19 14:21:46 +02:00
|
|
|
else if (!strcmp(attr->name, "total"))
|
|
|
|
total = atoi(attr->value);
|
2001-07-01 10:37:50 +02:00
|
|
|
else if (!strcmp(attr->name, "no_sub"))
|
|
|
|
no_sub = *attr->value == '1' ? TRUE : FALSE;
|
|
|
|
else if (!strcmp(attr->name, "no_select"))
|
|
|
|
no_select = *attr->value == '1' ? TRUE : FALSE;
|
2001-07-10 18:14:23 +02:00
|
|
|
else if (!strcmp(attr->name, "collapsed"))
|
|
|
|
collapsed = *attr->value == '1' ? TRUE : FALSE;
|
2003-01-25 02:30:03 +01:00
|
|
|
else if (!strcmp(attr->name, "thread_collapsed"))
|
|
|
|
thread_collapsed = *attr->value == '1' ? TRUE : FALSE;
|
2001-09-22 15:24:51 +02:00
|
|
|
else if (!strcmp(attr->name, "threaded"))
|
|
|
|
threaded = *attr->value == '1' ? TRUE : FALSE;
|
2001-12-11 16:06:46 +01:00
|
|
|
else if (!strcmp(attr->name, "hidereadmsgs"))
|
|
|
|
hidereadmsgs = *attr->value == '1' ? TRUE : FALSE;
|
2001-09-23 03:19:22 +02:00
|
|
|
else if (!strcmp(attr->name, "reqretrcpt"))
|
|
|
|
ret_rcpt = *attr->value == '1' ? TRUE : FALSE;
|
2002-06-03 08:03:31 +02:00
|
|
|
else if (!strcmp(attr->name, "sort_key")) {
|
|
|
|
if (!strcmp(attr->value, "none"))
|
|
|
|
sort_key = SORT_BY_NONE;
|
|
|
|
else if (!strcmp(attr->value, "number"))
|
|
|
|
sort_key = SORT_BY_NUMBER;
|
|
|
|
else if (!strcmp(attr->value, "size"))
|
|
|
|
sort_key = SORT_BY_SIZE;
|
|
|
|
else if (!strcmp(attr->value, "date"))
|
|
|
|
sort_key = SORT_BY_DATE;
|
|
|
|
else if (!strcmp(attr->value, "from"))
|
|
|
|
sort_key = SORT_BY_FROM;
|
|
|
|
else if (!strcmp(attr->value, "subject"))
|
|
|
|
sort_key = SORT_BY_SUBJECT;
|
|
|
|
else if (!strcmp(attr->value, "score"))
|
|
|
|
sort_key = SORT_BY_SCORE;
|
|
|
|
else if (!strcmp(attr->value, "label"))
|
|
|
|
sort_key = SORT_BY_LABEL;
|
|
|
|
else if (!strcmp(attr->value, "mark"))
|
|
|
|
sort_key = SORT_BY_MARK;
|
|
|
|
else if (!strcmp(attr->value, "unread"))
|
2003-01-26 13:56:56 +01:00
|
|
|
sort_key = SORT_BY_STATUS;
|
2002-06-03 08:03:31 +02:00
|
|
|
else if (!strcmp(attr->value, "mime"))
|
|
|
|
sort_key = SORT_BY_MIME;
|
2002-12-26 01:40:41 +01:00
|
|
|
else if (!strcmp(attr->value, "to"))
|
|
|
|
sort_key = SORT_BY_TO;
|
2002-06-16 22:27:31 +02:00
|
|
|
else if (!strcmp(attr->value, "locked"))
|
|
|
|
sort_key = SORT_BY_LOCKED;
|
2002-06-03 08:03:31 +02:00
|
|
|
} else if (!strcmp(attr->name, "sort_type")) {
|
|
|
|
if (!strcmp(attr->value, "ascending"))
|
|
|
|
sort_type = SORT_ASCENDING;
|
|
|
|
else
|
|
|
|
sort_type = SORT_DESCENDING;
|
2002-10-13 16:12:29 +02:00
|
|
|
} else if (!strcmp(attr->name, "account_id")) {
|
|
|
|
account = account_find_from_id(atoi(attr->value));
|
|
|
|
if (!account) g_warning("account_id: %s not found\n",
|
|
|
|
attr->value);
|
|
|
|
} else if (!strcmp(attr->name, "apply_sub"))
|
|
|
|
apply_sub = *attr->value == '1' ? TRUE : FALSE;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-07-25 23:09:10 +02:00
|
|
|
item = folder_item_new(folder, name, path);
|
2001-04-19 14:21:46 +02:00
|
|
|
item->stype = stype;
|
|
|
|
item->mtime = mtime;
|
2003-04-05 22:38:53 +02:00
|
|
|
item->new_msgs = new;
|
|
|
|
item->unread_msgs = unread;
|
|
|
|
item->unreadmarked_msgs = unreadmarked;
|
|
|
|
item->total_msgs = total;
|
2001-07-01 10:37:50 +02:00
|
|
|
item->no_sub = no_sub;
|
|
|
|
item->no_select = no_select;
|
2001-07-10 18:14:23 +02:00
|
|
|
item->collapsed = collapsed;
|
2003-01-25 02:30:03 +01:00
|
|
|
item->thread_collapsed = thread_collapsed;
|
2001-09-22 15:24:51 +02:00
|
|
|
item->threaded = threaded;
|
2001-12-11 16:06:46 +01:00
|
|
|
item->hide_read_msgs = hidereadmsgs;
|
2001-09-23 03:19:22 +02:00
|
|
|
item->ret_rcpt = ret_rcpt;
|
2002-06-03 08:03:31 +02:00
|
|
|
item->sort_key = sort_key;
|
|
|
|
item->sort_type = sort_type;
|
2001-04-19 14:21:46 +02:00
|
|
|
item->parent = FOLDER_ITEM(node->parent->data);
|
|
|
|
item->folder = folder;
|
|
|
|
switch (stype) {
|
|
|
|
case F_INBOX: folder->inbox = item; break;
|
|
|
|
case F_OUTBOX: folder->outbox = item; break;
|
|
|
|
case F_DRAFT: folder->draft = item; break;
|
|
|
|
case F_QUEUE: folder->queue = item; break;
|
|
|
|
case F_TRASH: folder->trash = item; break;
|
2002-03-07 14:22:39 +01:00
|
|
|
default: break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2002-10-13 16:12:29 +02:00
|
|
|
item->account = account;
|
|
|
|
item->apply_sub = apply_sub;
|
2001-05-06 06:27:28 +02:00
|
|
|
prefs_folder_item_read_config(item);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
node->data = item;
|
|
|
|
xml_free_node(xmlnode);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean folder_read_folder_func(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
Folder *folder;
|
|
|
|
XMLNode *xmlnode;
|
|
|
|
GList *list;
|
2003-03-13 16:31:22 +01:00
|
|
|
FolderClass *class = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
const gchar *name = NULL;
|
|
|
|
const gchar *path = NULL;
|
|
|
|
PrefsAccount *account = NULL;
|
2002-10-13 16:12:29 +02:00
|
|
|
gboolean collapsed = FALSE, threaded = TRUE, apply_sub = FALSE;
|
2003-01-25 02:30:03 +01:00
|
|
|
gboolean ret_rcpt = FALSE, thread_collapsed = FALSE; /* CLAWS */
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
if (g_node_depth(node) != 2) return FALSE;
|
|
|
|
g_return_val_if_fail(node->data != NULL, FALSE);
|
|
|
|
|
|
|
|
xmlnode = node->data;
|
|
|
|
if (strcmp2(xmlnode->tag->tag, "folder") != 0) {
|
|
|
|
g_warning("tag name != \"folder\"\n");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
g_node_unlink(node);
|
|
|
|
list = xmlnode->tag->attr;
|
|
|
|
for (; list != NULL; list = list->next) {
|
|
|
|
XMLAttr *attr = list->data;
|
|
|
|
|
|
|
|
if (!attr || !attr->name || !attr->value) continue;
|
2003-03-13 16:31:22 +01:00
|
|
|
if (!strcmp(attr->name, "type"))
|
|
|
|
class = folder_get_class_from_string(attr->value);
|
|
|
|
else if (!strcmp(attr->name, "name"))
|
2001-04-19 14:21:46 +02:00
|
|
|
name = attr->value;
|
|
|
|
else if (!strcmp(attr->name, "path"))
|
|
|
|
path = attr->value;
|
2002-10-13 16:12:29 +02:00
|
|
|
else if (!strcmp(attr->name, "collapsed"))
|
|
|
|
collapsed = *attr->value == '1' ? TRUE : FALSE;
|
2003-01-25 02:30:03 +01:00
|
|
|
else if (!strcmp(attr->name, "thread_collapsed"))
|
|
|
|
thread_collapsed = *attr->value == '1' ? TRUE : FALSE;
|
2002-10-13 16:12:29 +02:00
|
|
|
else if (!strcmp(attr->name, "threaded"))
|
|
|
|
threaded = *attr->value == '1' ? TRUE : FALSE;
|
2001-04-19 14:21:46 +02:00
|
|
|
else if (!strcmp(attr->name, "account_id")) {
|
|
|
|
account = account_find_from_id(atoi(attr->value));
|
|
|
|
if (!account) g_warning("account_id: %s not found\n",
|
|
|
|
attr->value);
|
2002-10-13 16:12:29 +02:00
|
|
|
} else if (!strcmp(attr->name, "apply_sub"))
|
|
|
|
apply_sub = *attr->value == '1' ? TRUE : FALSE;
|
2001-09-23 03:19:22 +02:00
|
|
|
else if (!strcmp(attr->name, "reqretrcpt"))
|
|
|
|
ret_rcpt = *attr->value == '1' ? TRUE : FALSE;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2003-03-13 16:31:22 +01:00
|
|
|
folder = folder_new(class, name, path);
|
2001-04-19 14:21:46 +02:00
|
|
|
g_return_val_if_fail(folder != NULL, FALSE);
|
|
|
|
folder->account = account;
|
2003-03-13 16:31:22 +01:00
|
|
|
if (account != NULL)
|
2001-04-19 14:21:46 +02:00
|
|
|
account->folder = REMOTE_FOLDER(folder);
|
|
|
|
node->data = folder->node->data;
|
|
|
|
g_node_destroy(folder->node);
|
|
|
|
folder->node = node;
|
|
|
|
folder_add(folder);
|
2001-07-14 19:21:51 +02:00
|
|
|
FOLDER_ITEM(node->data)->collapsed = collapsed;
|
2003-01-25 02:30:03 +01:00
|
|
|
FOLDER_ITEM(node->data)->thread_collapsed = thread_collapsed;
|
2001-09-22 15:24:51 +02:00
|
|
|
FOLDER_ITEM(node->data)->threaded = threaded;
|
2002-10-13 16:12:29 +02:00
|
|
|
FOLDER_ITEM(node->data)->account = account;
|
|
|
|
FOLDER_ITEM(node->data)->apply_sub = apply_sub;
|
2001-09-23 03:19:22 +02:00
|
|
|
FOLDER_ITEM(node->data)->ret_rcpt = ret_rcpt;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
g_node_traverse(node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
|
|
|
|
folder_build_tree, folder);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *folder_get_list_path(void)
|
|
|
|
{
|
|
|
|
static gchar *filename = NULL;
|
|
|
|
|
|
|
|
if (!filename)
|
|
|
|
filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
|
|
|
|
FOLDER_LIST, NULL);
|
|
|
|
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
2002-11-12 10:09:22 +01:00
|
|
|
#define PUT_ESCAPE_STR(fp, attr, str) \
|
|
|
|
{ \
|
|
|
|
fputs(" " attr "=\"", fp); \
|
|
|
|
xml_file_put_escape_str(fp, str); \
|
|
|
|
fputs("\"", fp); \
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
static void folder_write_list_recursive(GNode *node, gpointer data)
|
|
|
|
{
|
|
|
|
FILE *fp = (FILE *)data;
|
2002-09-04 10:12:49 +02:00
|
|
|
FolderItem *item;
|
2001-04-19 14:21:46 +02:00
|
|
|
gint i, depth;
|
|
|
|
static gchar *folder_item_stype_str[] = {"normal", "inbox", "outbox",
|
|
|
|
"draft", "queue", "trash"};
|
2002-06-03 08:03:31 +02:00
|
|
|
static gchar *sort_key_str[] = {"none", "number", "size", "date",
|
|
|
|
"from", "subject", "score", "label",
|
2002-12-26 01:40:41 +01:00
|
|
|
"mark", "unread", "mime", "to",
|
|
|
|
"locked"};
|
2002-09-04 10:12:49 +02:00
|
|
|
g_return_if_fail(node != NULL);
|
|
|
|
g_return_if_fail(fp != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-04 10:12:49 +02:00
|
|
|
item = FOLDER_ITEM(node->data);
|
2001-04-19 14:21:46 +02:00
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
|
|
|
depth = g_node_depth(node);
|
|
|
|
for (i = 0; i < depth; i++)
|
|
|
|
fputs(" ", fp);
|
|
|
|
if (depth == 1) {
|
|
|
|
Folder *folder = item->folder;
|
|
|
|
|
2003-04-05 22:38:53 +02:00
|
|
|
fprintf(fp, "<folder type=\"%s\"", folder->klass->idstr);
|
2002-11-12 10:09:22 +01:00
|
|
|
if (folder->name)
|
|
|
|
PUT_ESCAPE_STR(fp, "name", folder->name);
|
2003-03-12 16:40:51 +01:00
|
|
|
if (FOLDER_TYPE(folder) == F_MH || FOLDER_TYPE(folder) == F_MBOX)
|
2002-11-12 10:09:22 +01:00
|
|
|
PUT_ESCAPE_STR(fp, "path",
|
|
|
|
LOCAL_FOLDER(folder)->rootpath);
|
2002-10-13 16:12:29 +02:00
|
|
|
if (item->collapsed && node->children)
|
|
|
|
fputs(" collapsed=\"1\"", fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
if (folder->account)
|
|
|
|
fprintf(fp, " account_id=\"%d\"",
|
|
|
|
folder->account->account_id);
|
2002-10-13 16:12:29 +02:00
|
|
|
if (item->apply_sub)
|
|
|
|
fputs(" apply_sub=\"1\"", fp);
|
2001-09-23 03:19:22 +02:00
|
|
|
if (item->ret_rcpt)
|
|
|
|
fputs(" reqretrcpt=\"1\"", fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
} else {
|
|
|
|
fprintf(fp, "<folderitem type=\"%s\"",
|
|
|
|
folder_item_stype_str[item->stype]);
|
2002-11-12 10:09:22 +01:00
|
|
|
if (item->name)
|
|
|
|
PUT_ESCAPE_STR(fp, "name", item->name);
|
|
|
|
if (item->path)
|
|
|
|
PUT_ESCAPE_STR(fp, "path", item->path);
|
|
|
|
|
2001-07-01 10:37:50 +02:00
|
|
|
if (item->no_sub)
|
|
|
|
fputs(" no_sub=\"1\"", fp);
|
|
|
|
if (item->no_select)
|
|
|
|
fputs(" no_select=\"1\"", fp);
|
2001-07-15 15:42:30 +02:00
|
|
|
if (item->collapsed && node->children)
|
2001-07-10 18:14:23 +02:00
|
|
|
fputs(" collapsed=\"1\"", fp);
|
2003-01-25 02:30:03 +01:00
|
|
|
else
|
|
|
|
fputs(" collapsed=\"0\"", fp);
|
|
|
|
if (item->thread_collapsed)
|
|
|
|
fputs(" thread_collapsed=\"1\"", fp);
|
|
|
|
else
|
|
|
|
fputs(" thread_collapsed=\"0\"", fp);
|
2001-09-22 15:24:51 +02:00
|
|
|
if (item->threaded)
|
|
|
|
fputs(" threaded=\"1\"", fp);
|
2001-09-27 10:14:23 +02:00
|
|
|
else
|
|
|
|
fputs(" threaded=\"0\"", fp);
|
2001-12-11 16:06:46 +01:00
|
|
|
if (item->hide_read_msgs)
|
|
|
|
fputs(" hidereadmsgs=\"1\"", fp);
|
|
|
|
else
|
|
|
|
fputs(" hidereadmsgs=\"0\"", fp);
|
2001-09-23 03:19:22 +02:00
|
|
|
if (item->ret_rcpt)
|
|
|
|
fputs(" reqretrcpt=\"1\"", fp);
|
2002-06-03 08:03:31 +02:00
|
|
|
|
|
|
|
if (item->sort_key != SORT_BY_NONE) {
|
|
|
|
fprintf(fp, " sort_key=\"%s\"",
|
|
|
|
sort_key_str[item->sort_key]);
|
|
|
|
if (item->sort_type == SORT_ASCENDING)
|
|
|
|
fprintf(fp, " sort_type=\"ascending\"");
|
|
|
|
else
|
|
|
|
fprintf(fp, " sort_type=\"descending\"");
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
fprintf(fp,
|
2002-11-25 16:38:06 +01:00
|
|
|
" mtime=\"%lu\" new=\"%d\" unread=\"%d\" unreadmarked=\"%d\" total=\"%d\"",
|
2003-04-05 22:38:53 +02:00
|
|
|
item->mtime, item->new_msgs, item->unread_msgs, item->unreadmarked_msgs, item->total_msgs);
|
2002-11-12 10:09:22 +01:00
|
|
|
|
2002-10-13 16:12:29 +02:00
|
|
|
if (item->account)
|
|
|
|
fprintf(fp, " account_id=\"%d\"",
|
|
|
|
item->account->account_id);
|
|
|
|
if (item->apply_sub)
|
|
|
|
fputs(" apply_sub=\"1\"", fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (node->children) {
|
|
|
|
GNode *child;
|
|
|
|
fputs(">\n", fp);
|
|
|
|
|
|
|
|
child = node->children;
|
|
|
|
while (child) {
|
|
|
|
GNode *cur;
|
|
|
|
|
|
|
|
cur = child;
|
|
|
|
child = cur->next;
|
|
|
|
folder_write_list_recursive(cur, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < depth; i++)
|
|
|
|
fputs(" ", fp);
|
|
|
|
fprintf(fp, "</%s>\n", depth == 1 ? "folder" : "folderitem");
|
|
|
|
} else
|
|
|
|
fputs(" />\n", fp);
|
|
|
|
}
|
2001-05-29 02:29:13 +02:00
|
|
|
|
2002-11-09 17:35:13 +01:00
|
|
|
static void folder_update_op_count_rec(GNode *node)
|
|
|
|
{
|
2001-07-31 08:17:48 +02:00
|
|
|
FolderItem *fitem = FOLDER_ITEM(node->data);
|
|
|
|
|
|
|
|
if (g_node_depth(node) > 0) {
|
|
|
|
if (fitem->op_count > 0) {
|
|
|
|
fitem->op_count = 0;
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(fitem, F_ITEM_UPDATE_MSGCNT);
|
2001-07-31 08:17:48 +02:00
|
|
|
}
|
|
|
|
if (node->children) {
|
|
|
|
GNode *child;
|
|
|
|
|
|
|
|
child = node->children;
|
|
|
|
while (child) {
|
|
|
|
GNode *cur;
|
|
|
|
|
|
|
|
cur = child;
|
|
|
|
child = cur->next;
|
|
|
|
folder_update_op_count_rec(cur);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void folder_update_op_count(void)
|
|
|
|
{
|
2001-07-31 08:17:48 +02:00
|
|
|
GList *cur;
|
|
|
|
Folder *folder;
|
|
|
|
|
|
|
|
for (cur = folder_list; cur != NULL; cur = cur->next) {
|
|
|
|
folder = cur->data;
|
|
|
|
folder_update_op_count_rec(folder->node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-29 02:29:13 +02:00
|
|
|
typedef struct _type_str {
|
|
|
|
gchar * str;
|
|
|
|
gint type;
|
|
|
|
} type_str;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
static gchar * folder_item_get_tree_identifier(FolderItem * item)
|
|
|
|
{
|
|
|
|
if (item->parent != NULL) {
|
|
|
|
gchar * path;
|
|
|
|
gchar * id;
|
|
|
|
|
|
|
|
path = folder_item_get_tree_identifier(item->parent);
|
|
|
|
if (path == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
id = g_strconcat(path, "/", item->name, NULL);
|
|
|
|
g_free(path);
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return g_strconcat("/", item->name, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2001-12-05 23:09:25 +01:00
|
|
|
/* CLAWS: temporary local folder for filtering */
|
2003-03-30 16:02:37 +02:00
|
|
|
#define TEMP_FOLDER "TEMP_FOLDER"
|
|
|
|
#define PROCESSING_FOLDER_ITEM "processing"
|
|
|
|
|
2001-12-05 23:09:25 +01:00
|
|
|
static FolderItem *processing_folder_item;
|
|
|
|
|
|
|
|
static void folder_create_processing_folder(void)
|
|
|
|
{
|
2003-03-30 16:02:37 +02:00
|
|
|
Folder *processing_folder;
|
2001-12-05 23:09:25 +01:00
|
|
|
gchar *tmpname;
|
|
|
|
|
2003-03-30 16:02:37 +02:00
|
|
|
if ((processing_folder = folder_find_from_name(TEMP_FOLDER, mh_get_class())) == NULL) {
|
|
|
|
gchar *tmppath;
|
|
|
|
|
|
|
|
tmppath =
|
|
|
|
g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
|
|
|
|
"tempfolder", NULL);
|
|
|
|
processing_folder =
|
|
|
|
folder_new(mh_get_class(), TEMP_FOLDER, tmppath);
|
|
|
|
g_free(tmppath);
|
|
|
|
}
|
|
|
|
g_assert(processing_folder != NULL);
|
|
|
|
|
|
|
|
debug_print("tmpparentroot %s\n", LOCAL_FOLDER(processing_folder)->rootpath);
|
|
|
|
if (LOCAL_FOLDER(processing_folder)->rootpath[0] == '/')
|
|
|
|
tmpname = g_strconcat(LOCAL_FOLDER(processing_folder)->rootpath,
|
|
|
|
G_DIR_SEPARATOR_S, PROCESSING_FOLDER_ITEM,
|
2001-12-08 18:41:56 +01:00
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
tmpname = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
|
2003-03-30 16:02:37 +02:00
|
|
|
LOCAL_FOLDER(processing_folder)->rootpath,
|
|
|
|
G_DIR_SEPARATOR_S, PROCESSING_FOLDER_ITEM,
|
2001-12-08 18:41:56 +01:00
|
|
|
NULL);
|
2001-12-05 23:09:25 +01:00
|
|
|
|
|
|
|
if (!is_dir_exist(tmpname)) {
|
|
|
|
debug_print("*TMP* creating %s\n", tmpname);
|
2003-04-05 22:38:53 +02:00
|
|
|
processing_folder_item = processing_folder->klass->create_folder(processing_folder,
|
2003-03-12 16:40:51 +01:00
|
|
|
processing_folder->node->data,
|
2003-03-30 16:02:37 +02:00
|
|
|
PROCESSING_FOLDER_ITEM);
|
|
|
|
} else {
|
2001-12-05 23:09:25 +01:00
|
|
|
debug_print("*TMP* already created\n");
|
2003-03-30 16:48:13 +02:00
|
|
|
processing_folder_item = folder_item_new(processing_folder, PROCESSING_FOLDER_ITEM, PROCESSING_FOLDER_ITEM);
|
2001-12-05 23:09:25 +01:00
|
|
|
g_assert(processing_folder_item);
|
|
|
|
folder_item_append(processing_folder->node->data, processing_folder_item);
|
|
|
|
}
|
2003-03-30 16:02:37 +02:00
|
|
|
g_assert(processing_folder_item != NULL);
|
2001-12-05 23:09:25 +01:00
|
|
|
g_free(tmpname);
|
|
|
|
}
|
|
|
|
|
|
|
|
FolderItem *folder_get_default_processing(void)
|
|
|
|
{
|
|
|
|
if (!processing_folder_item) {
|
|
|
|
folder_create_processing_folder();
|
|
|
|
}
|
|
|
|
return processing_folder_item;
|
|
|
|
}
|
|
|
|
|
2001-12-30 02:27:14 +01:00
|
|
|
/* folder_persist_prefs_new() - return hash table with persistent
|
|
|
|
* settings (and folder name as key).
|
|
|
|
* (note that in claws other options are in the PREFS_FOLDER_ITEM_RC
|
|
|
|
* file, so those don't need to be included in PersistPref yet)
|
|
|
|
*/
|
|
|
|
GHashTable *folder_persist_prefs_new(Folder *folder)
|
|
|
|
{
|
|
|
|
GHashTable *pptable;
|
|
|
|
|
|
|
|
g_return_val_if_fail(folder, NULL);
|
|
|
|
pptable = g_hash_table_new(g_str_hash, g_str_equal);
|
|
|
|
folder_get_persist_prefs_recursive(folder->node, pptable);
|
|
|
|
return pptable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_persist_prefs_free(GHashTable *pptable)
|
|
|
|
{
|
|
|
|
g_return_if_fail(pptable);
|
|
|
|
g_hash_table_foreach_remove(pptable, persist_prefs_free, NULL);
|
|
|
|
g_hash_table_destroy(pptable);
|
|
|
|
}
|
|
|
|
|
|
|
|
const PersistPrefs *folder_get_persist_prefs(GHashTable *pptable, const char *name)
|
|
|
|
{
|
|
|
|
if (pptable == NULL || name == NULL) return NULL;
|
|
|
|
return g_hash_table_lookup(pptable, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void folder_item_restore_persist_prefs(FolderItem *item, GHashTable *pptable)
|
|
|
|
{
|
|
|
|
const PersistPrefs *pp;
|
2002-07-26 23:45:22 +02:00
|
|
|
gchar *id = folder_item_get_identifier(item);
|
|
|
|
|
|
|
|
pp = folder_get_persist_prefs(pptable, id);
|
|
|
|
g_free(id);
|
2001-12-30 02:27:14 +01:00
|
|
|
|
|
|
|
if (!pp) return;
|
|
|
|
|
|
|
|
/* CLAWS: since not all folder properties have been migrated to
|
|
|
|
* folderlist.xml, we need to call the old stuff first before
|
|
|
|
* setting things that apply both to Main and Claws. */
|
|
|
|
prefs_folder_item_read_config(item);
|
|
|
|
|
|
|
|
item->collapsed = pp->collapsed;
|
2003-01-25 02:30:03 +01:00
|
|
|
item->thread_collapsed = pp->thread_collapsed;
|
2001-12-30 02:27:14 +01:00
|
|
|
item->threaded = pp->threaded;
|
|
|
|
item->ret_rcpt = pp->ret_rcpt;
|
|
|
|
item->hide_read_msgs = pp->hide_read_msgs;
|
2002-06-16 20:16:57 +02:00
|
|
|
item->sort_key = pp->sort_key;
|
|
|
|
item->sort_type = pp->sort_type;
|
2001-12-30 02:27:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void folder_get_persist_prefs_recursive(GNode *node, GHashTable *pptable)
|
|
|
|
{
|
|
|
|
FolderItem *item = FOLDER_ITEM(node->data);
|
|
|
|
PersistPrefs *pp;
|
|
|
|
GNode *child, *cur;
|
2002-07-26 22:24:58 +02:00
|
|
|
gchar *id;
|
2001-12-30 02:27:14 +01:00
|
|
|
|
|
|
|
g_return_if_fail(node != NULL);
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
2002-07-26 22:24:58 +02:00
|
|
|
/* NOTE: item->path == NULL means top level folder; not interesting
|
|
|
|
* to store preferences of that one. */
|
2001-12-30 02:27:14 +01:00
|
|
|
if (item->path) {
|
2002-07-26 22:24:58 +02:00
|
|
|
id = folder_item_get_identifier(item);
|
2001-12-30 02:27:14 +01:00
|
|
|
pp = g_new0(PersistPrefs, 1);
|
|
|
|
g_return_if_fail(pp != NULL);
|
|
|
|
pp->collapsed = item->collapsed;
|
2003-01-25 02:30:03 +01:00
|
|
|
pp->thread_collapsed = item->thread_collapsed;
|
2001-12-30 02:27:14 +01:00
|
|
|
pp->threaded = item->threaded;
|
|
|
|
pp->ret_rcpt = item->ret_rcpt;
|
|
|
|
pp->hide_read_msgs = item->hide_read_msgs;
|
2002-06-16 20:16:57 +02:00
|
|
|
pp->sort_key = item->sort_key;
|
|
|
|
pp->sort_type = item->sort_type;
|
2002-07-26 22:24:58 +02:00
|
|
|
g_hash_table_insert(pptable, id, pp);
|
|
|
|
}
|
2001-12-30 02:27:14 +01:00
|
|
|
|
|
|
|
if (node->children) {
|
|
|
|
child = node->children;
|
|
|
|
while (child) {
|
|
|
|
cur = child;
|
|
|
|
child = cur->next;
|
|
|
|
folder_get_persist_prefs_recursive(cur, pptable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean persist_prefs_free(gpointer key, gpointer val, gpointer data)
|
|
|
|
{
|
2002-07-03 21:51:14 +02:00
|
|
|
if (key)
|
|
|
|
g_free(key);
|
2001-12-30 02:27:14 +01:00
|
|
|
if (val)
|
|
|
|
g_free(val);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-07-23 20:18:21 +02:00
|
|
|
void folder_item_apply_processing(FolderItem *item)
|
|
|
|
{
|
|
|
|
GSList *processing_list;
|
|
|
|
GSList *mlist, *cur;
|
|
|
|
|
|
|
|
g_return_if_fail(item != NULL);
|
|
|
|
|
|
|
|
processing_list = item->prefs->processing;
|
|
|
|
if (processing_list == NULL)
|
|
|
|
return;
|
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update_freeze();
|
|
|
|
|
2002-07-23 20:18:21 +02:00
|
|
|
mlist = folder_item_get_msg_list(item);
|
2002-08-31 10:26:28 +02:00
|
|
|
for (cur = mlist ; cur != NULL ; cur = cur->next) {
|
2002-07-23 20:18:21 +02:00
|
|
|
MsgInfo * msginfo;
|
|
|
|
|
|
|
|
msginfo = (MsgInfo *) cur->data;
|
2002-10-10 20:21:11 +02:00
|
|
|
filter_message_by_msginfo(processing_list, msginfo);
|
2002-07-23 20:18:21 +02:00
|
|
|
procmsg_msginfo_free(msginfo);
|
|
|
|
}
|
|
|
|
g_slist_free(mlist);
|
2003-01-07 22:49:44 +01:00
|
|
|
|
|
|
|
folder_item_update_thaw();
|
2002-07-23 20:18:21 +02:00
|
|
|
}
|
2002-11-09 17:35:13 +01:00
|
|
|
|
2002-11-13 14:16:20 +01:00
|
|
|
/*
|
2003-01-07 22:49:44 +01:00
|
|
|
* functions for handling FolderItem content changes
|
2002-11-13 14:16:20 +01:00
|
|
|
*/
|
2003-01-07 22:49:44 +01:00
|
|
|
static gint folder_item_update_freeze_cnt = 0;
|
2002-11-09 17:35:13 +01:00
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
/**
|
|
|
|
* Notify the folder system about changes to a folder. If the
|
|
|
|
* update system is not frozen the FOLDER_ITEM_UPDATE_HOOKLIST will
|
|
|
|
* be invoked, otherwise the changes will be remebered until
|
|
|
|
* the folder system is thawed.
|
|
|
|
*
|
|
|
|
* \param item The FolderItem that was changed
|
|
|
|
* \param update_flags Type of changed that was made
|
|
|
|
*/
|
|
|
|
void folder_item_update(FolderItem *item, FolderItemUpdateFlags update_flags)
|
2002-11-09 17:35:13 +01:00
|
|
|
{
|
2003-01-07 22:49:44 +01:00
|
|
|
if (folder_item_update_freeze_cnt == 0) {
|
|
|
|
FolderItemUpdateData source;
|
|
|
|
|
2002-12-02 22:50:19 +01:00
|
|
|
source.item = item;
|
2003-01-07 22:49:44 +01:00
|
|
|
source.update_flags = update_flags;
|
|
|
|
hooks_invoke(FOLDER_ITEM_UPDATE_HOOKLIST, &source);
|
|
|
|
} else {
|
|
|
|
item->update_flags |= update_flags;
|
2002-11-09 17:35:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
void folder_item_update_recursive(FolderItem *item, FolderItemUpdateFlags update_flags)
|
2002-11-09 17:35:13 +01:00
|
|
|
{
|
|
|
|
GNode *node = item->folder->node;
|
2002-12-02 22:50:19 +01:00
|
|
|
|
2002-11-09 17:35:13 +01:00
|
|
|
node = g_node_find(node, G_PRE_ORDER, G_TRAVERSE_ALL, item);
|
|
|
|
node = node->children;
|
2002-12-02 22:50:19 +01:00
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(item, update_flags);
|
2002-11-09 17:35:13 +01:00
|
|
|
while (node != NULL) {
|
|
|
|
if (node && node->data) {
|
|
|
|
FolderItem *next_item = (FolderItem*) node->data;
|
2002-12-02 22:50:19 +01:00
|
|
|
|
2003-01-07 22:49:44 +01:00
|
|
|
folder_item_update(next_item, update_flags);
|
2002-11-09 17:35:13 +01:00
|
|
|
}
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
2002-11-12 10:09:22 +01:00
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void folder_item_update_freeze(void)
|
2003-01-07 22:49:44 +01:00
|
|
|
{
|
|
|
|
folder_item_update_freeze_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void folder_item_update_func(FolderItem *item, gpointer data)
|
|
|
|
{
|
|
|
|
FolderItemUpdateData source;
|
|
|
|
|
|
|
|
if (item->update_flags) {
|
|
|
|
source.item = item;
|
|
|
|
source.update_flags = item->update_flags;
|
|
|
|
hooks_invoke(FOLDER_ITEM_UPDATE_HOOKLIST, &source);
|
|
|
|
item->update_flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void folder_item_update_thaw(void)
|
2003-01-07 22:49:44 +01:00
|
|
|
{
|
|
|
|
if (folder_item_update_freeze_cnt > 0)
|
|
|
|
folder_item_update_freeze_cnt--;
|
|
|
|
if (folder_item_update_freeze_cnt == 0) {
|
|
|
|
/* Update all folders */
|
|
|
|
folder_func_to_all_folders(folder_item_update_func, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-12 10:09:22 +01:00
|
|
|
#undef PUT_ESCAPE_STR
|