claws-mail/src/mh.c

980 lines
23 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2003-08-08 11:04:41 +02:00
* Copyright (C) 1999-2003 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 <dirent.h>
#include <sys/stat.h>
2001-05-17 15:25:31 +02:00
#include <unistd.h>
#include <string.h>
2001-04-19 14:21:46 +02:00
#include <errno.h>
#undef MEASURE_TIME
#ifdef MEASURE_TIME
# include <sys/time.h>
#endif
#include "intl.h"
#include "folder.h"
#include "mh.h"
#include "procmsg.h"
#include "procheader.h"
#include "utils.h"
2003-10-05 12:10:30 +02:00
#include "codeconv.h"
2001-04-19 14:21:46 +02:00
2004-01-12 22:28:31 +01:00
static void mh_folder_init (Folder *folder,
const gchar *name,
const gchar *path);
static Folder *mh_folder_new (const gchar *name,
const gchar *path);
static void mh_folder_destroy (Folder *folder);
static gchar *mh_fetch_msg (Folder *folder,
FolderItem *item,
gint num);
static MsgInfo *mh_get_msginfo (Folder *folder,
FolderItem *item,
gint num);
static gint mh_add_msg (Folder *folder,
FolderItem *dest,
const gchar *file,
MsgFlags *flags);
static gint mh_add_msgs (Folder *folder,
FolderItem *dest,
GSList *file_list,
GRelation *relation);
static gint mh_copy_msg (Folder *folder,
FolderItem *dest,
MsgInfo *msginfo);
static gint mh_remove_msg (Folder *folder,
FolderItem *item,
gint num);
static gint mh_remove_all_msg (Folder *folder,
FolderItem *item);
static gboolean mh_is_msg_changed (Folder *folder,
FolderItem *item,
MsgInfo *msginfo);
static gint mh_get_num_list (Folder *folder,
FolderItem *item,
GSList **list,
gboolean *old_uids_valid);
static gint mh_scan_tree (Folder *folder);
static gint mh_create_tree (Folder *folder);
static FolderItem *mh_create_folder (Folder *folder,
FolderItem *parent,
const gchar *name);
static gint mh_rename_folder (Folder *folder,
FolderItem *item,
const gchar *name);
static gint mh_remove_folder (Folder *folder,
FolderItem *item);
static gchar *mh_get_new_msg_filename (FolderItem *dest);
static MsgInfo *mh_parse_msg (const gchar *file,
FolderItem *item);
2003-08-25 16:14:47 +02:00
static void mh_remove_missing_folder_items (Folder *folder);
2003-10-05 12:10:30 +02:00
static gchar *mh_filename_from_utf8 (const gchar *path);
static gchar *mh_filename_to_utf8 (const gchar *path);
2004-01-12 22:28:31 +01:00
static void mh_scan_tree_recursive (FolderItem *item);
2004-01-12 22:28:31 +01:00
static gboolean mh_rename_folder_func (GNode *node,
gpointer data);
static gchar *mh_item_get_path (Folder *folder,
FolderItem *item);
2001-04-19 14:21:46 +02:00
2004-05-10 12:22:28 +02:00
static FolderClass mh_class;
FolderClass *mh_get_class(void)
{
2004-05-10 12:22:28 +02:00
if (mh_class.idstr == NULL) {
mh_class.type = F_MH;
mh_class.idstr = "mh";
mh_class.uistr = "MH";
/* Folder functions */
mh_class.new_folder = mh_folder_new;
mh_class.destroy_folder = mh_folder_destroy;
mh_class.set_xml = folder_local_set_xml;
mh_class.get_xml = folder_local_get_xml;
mh_class.scan_tree = mh_scan_tree;
mh_class.create_tree = mh_create_tree;
/* FolderItem functions */
mh_class.item_get_path = mh_item_get_path;
mh_class.create_folder = mh_create_folder;
mh_class.rename_folder = mh_rename_folder;
mh_class.remove_folder = mh_remove_folder;
mh_class.get_num_list = mh_get_num_list;
/* Message functions */
mh_class.get_msginfo = mh_get_msginfo;
mh_class.fetch_msg = mh_fetch_msg;
mh_class.add_msg = mh_add_msg;
mh_class.add_msgs = mh_add_msgs;
mh_class.copy_msg = mh_copy_msg;
mh_class.remove_msg = mh_remove_msg;
mh_class.remove_all_msg = mh_remove_all_msg;
mh_class.is_msg_changed = mh_is_msg_changed;
}
return &mh_class;
}
2004-01-12 22:28:31 +01:00
static Folder *mh_folder_new(const gchar *name, const gchar *path)
2002-01-16 12:48:36 +01:00
{
Folder *folder;
folder = (Folder *)g_new0(MHFolder, 1);
folder->klass = &mh_class;
2002-01-16 12:48:36 +01:00
mh_folder_init(folder, name, path);
return folder;
}
static void mh_folder_destroy(Folder *folder)
2002-01-16 12:48:36 +01:00
{
folder_local_folder_destroy(LOCAL_FOLDER(folder));
}
static void mh_folder_init(Folder *folder, const gchar *name, const gchar *path)
{
folder_local_folder_init(folder, name, path);
2002-01-16 12:48:36 +01:00
}
2002-06-30 01:33:42 +02:00
void mh_get_last_num(Folder *folder, FolderItem *item)
{
gchar *path;
DIR *dp;
struct dirent *d;
gint max = 0;
gint num;
g_return_if_fail(item != NULL);
debug_print("mh_get_last_num(): Scanning %s ...\n", item->path);
path = folder_item_get_path(item);
g_return_if_fail(path != NULL);
if (change_dir(path) < 0) {
g_free(path);
return;
}
g_free(path);
if ((dp = opendir(".")) == NULL) {
FILE_OP_ERROR(item->path, "opendir");
return;
}
while ((d = readdir(dp)) != NULL) {
if ((num = to_number(d->d_name)) >= 0 &&
2004-01-12 22:28:31 +01:00
dirent_is_regular_file(d)) {
2002-06-30 01:33:42 +02:00
if (max < num)
max = num;
}
}
closedir(dp);
2002-08-15 09:38:17 +02:00
debug_print("Last number in dir %s = %d\n", item->path, max);
2002-06-30 01:33:42 +02:00
item->last_num = max;
}
gint mh_get_num_list(Folder *folder, FolderItem *item, GSList **list, gboolean *old_uids_valid)
2002-06-30 01:33:42 +02:00
{
gchar *path;
DIR *dp;
struct dirent *d;
gint num, nummsgs = 0;
2002-06-30 01:33:42 +02:00
g_return_val_if_fail(item != NULL, -1);
2002-06-30 01:33:42 +02:00
debug_print("mh_get_last_num(): Scanning %s ...\n", item->path);
*old_uids_valid = TRUE;
2002-06-30 01:33:42 +02:00
path = folder_item_get_path(item);
g_return_val_if_fail(path != NULL, -1);
2002-06-30 01:33:42 +02:00
if (change_dir(path) < 0) {
g_free(path);
return -1;
2002-06-30 01:33:42 +02:00
}
g_free(path);
if ((dp = opendir(".")) == NULL) {
FILE_OP_ERROR(item->path, "opendir");
return -1;
2002-06-30 01:33:42 +02:00
}
while ((d = readdir(dp)) != NULL) {
2004-01-12 22:28:31 +01:00
if ((num = to_number(d->d_name)) >= 0) {
*list = g_slist_prepend(*list, GINT_TO_POINTER(num));
2004-01-12 22:28:31 +01:00
nummsgs++;
2002-06-30 01:33:42 +02:00
}
}
closedir(dp);
return nummsgs;
2002-06-30 01:33:42 +02:00
}
2004-01-12 22:28:31 +01:00
static gchar *mh_fetch_msg(Folder *folder, FolderItem *item, gint num)
2001-04-19 14:21:46 +02:00
{
gchar *path;
gchar *file;
g_return_val_if_fail(item != NULL, NULL);
2002-06-30 01:33:42 +02:00
g_return_val_if_fail(num > 0, NULL);
2001-04-19 14:21:46 +02:00
path = folder_item_get_path(item);
file = g_strconcat(path, G_DIR_SEPARATOR_S, itos(num), NULL);
2003-10-05 12:10:30 +02:00
2001-04-19 14:21:46 +02:00
if (!is_file_exist(file)) {
g_free(file);
return NULL;
}
return file;
}
2004-01-12 22:28:31 +01:00
static MsgInfo *mh_get_msginfo(Folder *folder, FolderItem *item, gint num)
2002-06-30 01:33:42 +02:00
{
MsgInfo *msginfo;
gchar *file;
2002-06-30 01:33:42 +02:00
g_return_val_if_fail(item != NULL, NULL);
g_return_val_if_fail(num > 0, NULL);
file = mh_fetch_msg(folder, item, num);
if (!file) return NULL;
msginfo = mh_parse_msg(file, item);
if (msginfo)
msginfo->msgnum = num;
2002-06-30 01:33:42 +02:00
g_free(file);
2002-06-30 01:33:42 +02:00
return msginfo;
}
2004-01-12 22:28:31 +01:00
static gchar *mh_get_new_msg_filename(FolderItem *dest)
{
gchar *destfile;
gchar *destpath;
destpath = folder_item_get_path(dest);
g_return_val_if_fail(destpath != NULL, NULL);
2002-04-21 11:24:27 +02:00
if (!is_dir_exist(destpath))
make_dir_hier(destpath);
2002-04-21 11:24:27 +02:00
for (;;) {
destfile = g_strdup_printf("%s%c%d", destpath, G_DIR_SEPARATOR,
dest->last_num + 1);
2002-04-21 11:24:27 +02:00
if (is_file_entry_exist(destfile)) {
dest->last_num++;
g_free(destfile);
2002-04-21 11:24:27 +02:00
} else
break;
}
g_free(destpath);
return destfile;
}
2004-01-12 22:28:31 +01:00
static gint mh_add_msg(Folder *folder, FolderItem *dest, const gchar *file, MsgFlags *flags)
2001-04-19 14:21:46 +02:00
{
gint ret;
GSList file_list;
MsgFileInfo fileinfo;
g_return_val_if_fail(file != NULL, -1);
fileinfo.msginfo = NULL;
fileinfo.file = (gchar *)file;
fileinfo.flags = flags;
file_list.data = &fileinfo;
file_list.next = NULL;
ret = mh_add_msgs(folder, dest, &file_list, NULL);
return ret;
}
2004-01-12 22:28:31 +01:00
static gint mh_add_msgs(Folder *folder, FolderItem *dest, GSList *file_list,
GRelation *relation)
{
2001-04-19 14:21:46 +02:00
gchar *destfile;
GSList *cur;
MsgFileInfo *fileinfo;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(dest != NULL, -1);
g_return_val_if_fail(file_list != NULL, -1);
2001-04-19 14:21:46 +02:00
if (dest->last_num < 0) {
2002-06-30 01:33:42 +02:00
mh_get_last_num(folder, dest);
2001-04-19 14:21:46 +02:00
if (dest->last_num < 0) return -1;
}
for (cur = file_list; cur != NULL; cur = cur->next) {
fileinfo = (MsgFileInfo *)cur->data;
destfile = mh_get_new_msg_filename(dest);
if (destfile == NULL) return -1;
if (link(fileinfo->file, destfile) < 0) {
if (copy_file(fileinfo->file, destfile, TRUE) < 0) {
g_warning(_("can't copy message %s to %s\n"),
fileinfo->file, destfile);
g_free(destfile);
return -1;
}
2001-05-17 15:25:31 +02:00
}
if (relation != NULL)
g_relation_insert(relation, fileinfo, GINT_TO_POINTER(dest->last_num + 1));
g_free(destfile);
dest->last_num++;
2001-05-17 15:25:31 +02:00
}
return dest->last_num;
2001-04-19 14:21:46 +02:00
}
2004-01-12 22:28:31 +01:00
static gint mh_copy_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
2001-04-19 14:21:46 +02:00
{
gchar *srcfile;
gchar *destfile;
2001-07-30 07:49:36 +02:00
gint filemode = 0;
FolderItemPrefs *prefs;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(dest != NULL, -1);
g_return_val_if_fail(msginfo != NULL, -1);
if (msginfo->folder == dest) {
g_warning("the src folder is identical to the dest.\n");
2001-04-19 14:21:46 +02:00
return -1;
}
if (dest->last_num < 0) {
2002-06-30 01:33:42 +02:00
mh_get_last_num(folder, dest);
2001-04-19 14:21:46 +02:00
if (dest->last_num < 0) return -1;
}
2001-07-30 07:49:36 +02:00
prefs = dest->prefs;
2002-02-05 14:27:32 +01:00
srcfile = procmsg_get_message_file(msginfo);
2002-06-30 01:33:42 +02:00
destfile = mh_get_new_msg_filename(dest);
if (!destfile) {
2002-06-30 01:33:42 +02:00
g_free(srcfile);
return -1;
}
debug_print("Copying message %s%c%d to %s ...\n",
msginfo->folder->path, G_DIR_SEPARATOR,
msginfo->msgnum, dest->path);
2002-08-08 07:56:32 +02:00
if ((MSG_IS_QUEUED(msginfo->flags) || MSG_IS_DRAFT(msginfo->flags))
&& dest->stype != F_QUEUE && dest->stype != F_DRAFT) {
if (procmsg_remove_special_headers(srcfile, destfile) !=0) {
g_free(srcfile);
g_free(destfile);
return -1;
}
} else if (copy_file(srcfile, destfile, TRUE) < 0) {
2001-04-19 14:21:46 +02:00
FILE_OP_ERROR(srcfile, "copy");
g_free(srcfile);
g_free(destfile);
return -1;
}
2001-07-30 07:49:36 +02:00
if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
if (chmod(destfile, prefs->folder_chmod) < 0)
FILE_OP_ERROR(destfile, "chmod");
/* for mark file */
filemode = prefs->folder_chmod;
if (filemode & S_IRGRP) filemode |= S_IWGRP;
if (filemode & S_IROTH) filemode |= S_IWOTH;
}
2001-04-19 14:21:46 +02:00
g_free(srcfile);
g_free(destfile);
dest->last_num++;
return dest->last_num;
}
2001-05-28 00:40:29 +02:00
2004-01-12 22:28:31 +01:00
static gint mh_remove_msg(Folder *folder, FolderItem *item, gint num)
2001-04-19 14:21:46 +02:00
{
gchar *file;
g_return_val_if_fail(item != NULL, -1);
file = mh_fetch_msg(folder, item, num);
g_return_val_if_fail(file != NULL, -1);
if (unlink(file) < 0) {
FILE_OP_ERROR(file, "unlink");
g_free(file);
return -1;
}
g_free(file);
return 0;
}
2004-01-12 22:28:31 +01:00
static gint mh_remove_all_msg(Folder *folder, FolderItem *item)
2001-04-19 14:21:46 +02:00
{
gchar *path;
2001-06-06 15:05:23 +02:00
gint val;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(item != NULL, -1);
path = folder_item_get_path(item);
g_return_val_if_fail(path != NULL, -1);
2001-06-06 15:05:23 +02:00
val = remove_all_numbered_files(path);
2001-04-19 14:21:46 +02:00
g_free(path);
2001-06-06 15:05:23 +02:00
return val;
2001-04-19 14:21:46 +02:00
}
2004-01-12 22:28:31 +01:00
static gboolean mh_is_msg_changed(Folder *folder, FolderItem *item,
MsgInfo *msginfo)
2001-04-19 14:21:46 +02:00
{
struct stat s;
if (stat(itos(msginfo->msgnum), &s) < 0 ||
msginfo->size != s.st_size ||
msginfo->mtime != s.st_mtime)
return TRUE;
return FALSE;
}
2004-01-12 22:28:31 +01:00
static gint mh_scan_tree(Folder *folder)
2001-04-19 14:21:46 +02:00
{
FolderItem *item;
gchar *rootpath;
2004-01-12 22:28:31 +01:00
g_return_val_if_fail(folder != NULL, -1);
2001-04-19 14:21:46 +02:00
2003-08-25 16:14:47 +02:00
if (!folder->node) {
item = folder_item_new(folder, folder->name, NULL);
item->folder = folder;
folder->node = item->node = g_node_new(item);
} else
item = FOLDER_ITEM(folder->node->data);
2001-04-19 14:21:46 +02:00
rootpath = folder_item_get_path(item);
if (change_dir(rootpath) < 0) {
g_free(rootpath);
2004-01-12 22:28:31 +01:00
return -1;
2001-04-19 14:21:46 +02:00
}
g_free(rootpath);
2002-03-19 09:37:53 +01:00
mh_create_tree(folder);
2003-08-25 16:14:47 +02:00
mh_remove_missing_folder_items(folder);
mh_scan_tree_recursive(item);
2004-01-12 22:28:31 +01:00
return 0;
2001-04-19 14:21:46 +02:00
}
#define MAKE_DIR_IF_NOT_EXIST(dir) \
{ \
if (!is_dir_exist(dir)) { \
if (is_file_exist(dir)) { \
g_warning("File `%s' already exists.\n" \
"Can't create folder.", dir); \
2001-04-19 14:21:46 +02:00
return -1; \
} \
2002-05-28 08:42:48 +02:00
if (make_dir(dir) < 0) \
2001-04-19 14:21:46 +02:00
return -1; \
} \
}
2004-01-12 22:28:31 +01:00
static gint mh_create_tree(Folder *folder)
2001-04-19 14:21:46 +02:00
{
gchar *rootpath;
g_return_val_if_fail(folder != NULL, -1);
2001-04-27 22:27:24 +02:00
CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), -1);
2001-04-19 14:21:46 +02:00
rootpath = LOCAL_FOLDER(folder)->rootpath;
MAKE_DIR_IF_NOT_EXIST(rootpath);
CHDIR_RETURN_VAL_IF_FAIL(rootpath, -1);
MAKE_DIR_IF_NOT_EXIST(INBOX_DIR);
MAKE_DIR_IF_NOT_EXIST(OUTBOX_DIR);
MAKE_DIR_IF_NOT_EXIST(QUEUE_DIR);
MAKE_DIR_IF_NOT_EXIST(DRAFT_DIR);
MAKE_DIR_IF_NOT_EXIST(TRASH_DIR);
return 0;
}
#undef MAKE_DIR_IF_NOT_EXIST
2004-01-12 22:28:31 +01:00
static gchar *mh_item_get_path(Folder *folder, FolderItem *item)
{
gchar *folder_path, *path;
g_return_val_if_fail(folder != NULL, NULL);
g_return_val_if_fail(item != NULL, NULL);
folder_path = g_strdup(LOCAL_FOLDER(folder)->rootpath);
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);
}
g_free(folder_path);
return path;
}
2004-01-12 22:28:31 +01:00
static FolderItem *mh_create_folder(Folder *folder, FolderItem *parent,
const gchar *name)
2001-04-19 14:21:46 +02:00
{
2003-10-05 12:10:30 +02:00
gchar *path, *real_name;
2001-04-19 14:21:46 +02:00
gchar *fullpath;
FolderItem *new_item;
gchar *mh_sequences_filename;
FILE *mh_sequences_file;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(folder != NULL, NULL);
g_return_val_if_fail(parent != NULL, NULL);
g_return_val_if_fail(name != NULL, NULL);
path = folder_item_get_path(parent);
2002-11-06 23:32:44 +01:00
if (!is_dir_exist(path))
if (make_dir_hier(path) != 0)
return NULL;
2003-10-05 12:10:30 +02:00
real_name = mh_filename_from_utf8(name);
fullpath = g_strconcat(path, G_DIR_SEPARATOR_S, real_name, NULL);
g_free(real_name);
2001-04-19 14:21:46 +02:00
g_free(path);
2002-05-28 08:42:48 +02:00
if (make_dir(fullpath) < 0) {
2001-04-19 14:21:46 +02:00
g_free(fullpath);
return NULL;
}
g_free(fullpath);
if (parent->path)
path = g_strconcat(parent->path, G_DIR_SEPARATOR_S, name,
NULL);
else
path = g_strdup(name);
new_item = folder_item_new(folder, name, path);
2001-04-19 14:21:46 +02:00
folder_item_append(parent, new_item);
2001-04-19 14:21:46 +02:00
g_free(path);
path = folder_item_get_path(new_item);
mh_sequences_filename = g_strconcat(path, G_DIR_SEPARATOR_S,
".mh_sequences", NULL);
if ((mh_sequences_file = fopen(mh_sequences_filename, "a+b")) != NULL) {
fclose(mh_sequences_file);
}
g_free(mh_sequences_filename);
g_free(path);
2001-04-19 14:21:46 +02:00
return new_item;
}
2004-01-12 22:28:31 +01:00
static gint mh_rename_folder(Folder *folder, FolderItem *item,
const gchar *name)
2001-04-19 14:21:46 +02:00
{
2003-10-05 12:10:30 +02:00
gchar *real_name;
2001-04-19 14:21:46 +02:00
gchar *oldpath;
gchar *dirname;
2003-10-05 12:10:30 +02:00
gchar *newpath, *utf8newpath;
2001-04-19 14:21:46 +02:00
gchar *paths[2];
g_return_val_if_fail(folder != NULL, -1);
g_return_val_if_fail(item != NULL, -1);
g_return_val_if_fail(item->path != NULL, -1);
g_return_val_if_fail(name != NULL, -1);
oldpath = folder_item_get_path(item);
if (!is_dir_exist(oldpath))
make_dir_hier(oldpath);
2001-04-19 14:21:46 +02:00
dirname = g_dirname(oldpath);
2003-10-05 12:10:30 +02:00
real_name = mh_filename_from_utf8(name);
newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S, real_name, NULL);
g_free(real_name);
2001-04-19 14:21:46 +02:00
if (rename(oldpath, newpath) < 0) {
FILE_OP_ERROR(oldpath, "rename");
g_free(oldpath);
g_free(newpath);
return -1;
}
g_free(oldpath);
g_free(newpath);
if (strchr(item->path, G_DIR_SEPARATOR) != NULL) {
dirname = g_dirname(item->path);
2003-10-05 12:10:30 +02:00
utf8newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S,
name, NULL);
2001-04-19 14:21:46 +02:00
g_free(dirname);
} else
2003-10-05 12:10:30 +02:00
utf8newpath = g_strdup(name);
2001-04-19 14:21:46 +02:00
g_free(item->name);
item->name = g_strdup(name);
paths[0] = g_strdup(item->path);
2003-10-05 12:10:30 +02:00
paths[1] = utf8newpath;
2003-08-25 16:14:47 +02:00
g_node_traverse(item->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
2001-04-19 14:21:46 +02:00
mh_rename_folder_func, paths);
g_free(paths[0]);
g_free(paths[1]);
return 0;
}
2004-01-12 22:28:31 +01:00
static gint mh_remove_folder(Folder *folder, FolderItem *item)
2001-04-19 14:21:46 +02:00
{
gchar *path;
g_return_val_if_fail(folder != NULL, -1);
g_return_val_if_fail(item != NULL, -1);
g_return_val_if_fail(item->path != NULL, -1);
path = folder_item_get_path(item);
if (remove_dir_recursive(path) < 0) {
g_warning("can't remove directory `%s'\n", path);
g_free(path);
return -1;
}
g_free(path);
folder_item_remove(item);
return 0;
}
static MsgInfo *mh_parse_msg(const gchar *file, FolderItem *item)
{
struct stat s;
MsgInfo *msginfo;
MsgFlags flags;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(item != NULL, NULL);
g_return_val_if_fail(file != NULL, NULL);
2004-01-12 22:28:31 +01:00
flags.perm_flags = MSG_NEW|MSG_UNREAD;
flags.tmp_flags = 0;
2001-04-19 14:21:46 +02:00
if (item->stype == F_QUEUE) {
MSG_SET_TMP_FLAGS(flags, MSG_QUEUED);
2001-04-19 14:21:46 +02:00
} else if (item->stype == F_DRAFT) {
MSG_SET_TMP_FLAGS(flags, MSG_DRAFT);
2001-04-19 14:21:46 +02:00
}
2004-01-12 22:28:31 +01:00
if (stat(file, &s) < 0) {
FILE_OP_ERROR(file, "stat");
return NULL;
}
if (!S_ISREG(s.st_mode))
return NULL;
2002-06-19 09:31:13 +02:00
msginfo = procheader_parse_file(file, flags, FALSE, FALSE);
2001-04-19 14:21:46 +02:00
if (!msginfo) return NULL;
msginfo->msgnum = atoi(file);
msginfo->folder = item;
2004-01-12 22:28:31 +01:00
msginfo->size = s.st_size;
msginfo->mtime = s.st_mtime;
2001-04-19 14:21:46 +02:00
return msginfo;
}
2002-08-16 11:34:01 +02:00
#if 0
2001-04-27 22:27:24 +02:00
static gboolean mh_is_maildir_one(const gchar *path, const gchar *dir)
{
2001-04-28 00:47:56 +02:00
gchar *entry;
2001-04-27 22:27:24 +02:00
gboolean result;
entry = g_strconcat(path, G_DIR_SEPARATOR_S, dir, NULL);
result = is_dir_exist(entry);
g_free(entry);
return result;
}
/*
* check whether PATH is a Maildir style mailbox.
* This is the case if the 3 subdir: new, cur, tmp are existing.
* This functon assumes that entry is an directory
*/
static gboolean mh_is_maildir(const gchar *path)
{
return mh_is_maildir_one(path, "new") &&
mh_is_maildir_one(path, "cur") &&
mh_is_maildir_one(path, "tmp");
}
2002-08-16 11:34:01 +02:00
#endif
2001-04-27 22:27:24 +02:00
2003-08-25 16:14:47 +02:00
static gboolean mh_remove_missing_folder_items_func(GNode *node, gpointer data)
{
FolderItem *item;
gchar *path;
g_return_val_if_fail(node->data != NULL, FALSE);
if (G_NODE_IS_ROOT(node))
return FALSE;
item = FOLDER_ITEM(node->data);
path = folder_item_get_path(item);
if (!is_dir_exist(path)) {
debug_print("folder '%s' not found. removing...\n", path);
folder_item_remove(item);
}
g_free(path);
return FALSE;
}
static void mh_remove_missing_folder_items(Folder *folder)
{
g_return_if_fail(folder != NULL);
debug_print("searching missing folders...\n");
g_node_traverse(folder->node, G_POST_ORDER, G_TRAVERSE_ALL, -1,
mh_remove_missing_folder_items_func, folder);
}
static void mh_scan_tree_recursive(FolderItem *item)
2001-04-19 14:21:46 +02:00
{
2003-08-25 16:14:47 +02:00
Folder *folder;
2001-04-19 14:21:46 +02:00
DIR *dp;
struct dirent *d;
struct stat s;
2003-10-05 12:10:30 +02:00
gchar *real_path, *entry, *utf8entry, *utf8name;
2001-04-19 14:21:46 +02:00
gint n_msg = 0;
g_return_if_fail(item != NULL);
g_return_if_fail(item->folder != NULL);
2003-08-25 16:14:47 +02:00
folder = item->folder;
2003-10-05 12:10:30 +02:00
real_path = item->path ? mh_filename_from_utf8(item->path) : g_strdup(".");
dp = opendir(real_path);
2001-04-19 14:21:46 +02:00
if (!dp) {
2003-10-05 12:10:30 +02:00
FILE_OP_ERROR(real_path, "opendir");
2001-04-19 14:21:46 +02:00
return;
}
2003-10-05 12:10:30 +02:00
g_free(real_path);
2001-04-19 14:21:46 +02:00
debug_print("scanning %s ...\n",
item->path ? item->path
: LOCAL_FOLDER(item->folder)->rootpath);
2003-08-25 16:14:47 +02:00
if (folder->ui_func)
folder->ui_func(folder, item, folder->ui_func_data);
2001-04-19 14:21:46 +02:00
while ((d = readdir(dp)) != NULL) {
if (d->d_name[0] == '.') continue;
2003-10-05 12:10:30 +02:00
utf8name = mh_filename_to_utf8(d->d_name);
2001-04-19 14:21:46 +02:00
if (item->path)
2003-10-05 12:10:30 +02:00
utf8entry = g_strconcat(item->path, G_DIR_SEPARATOR_S,
utf8name, NULL);
2001-04-19 14:21:46 +02:00
else
2003-10-05 12:10:30 +02:00
utf8entry = g_strdup(utf8name);
entry = mh_filename_from_utf8(utf8entry);
2001-04-19 14:21:46 +02:00
2004-01-12 22:28:31 +01:00
if (
#ifdef HAVE_DIRENT_D_TYPE
d->d_type == DT_DIR ||
(d->d_type == DT_UNKNOWN &&
#endif
stat(entry, &s) == 0 && S_ISDIR(s.st_mode)
#ifdef HAVE_DIRENT_D_TYPE
)
#endif
) {
2003-08-25 16:14:47 +02:00
FolderItem *new_item = NULL;
GNode *node;
2001-04-19 14:21:46 +02:00
2002-08-16 11:34:01 +02:00
#if 0
2001-04-27 22:27:24 +02:00
if (mh_is_maildir(entry)) {
g_free(entry);
2003-10-05 12:10:30 +02:00
g_free(utf8entry);
g_free(utf8name);
2001-04-27 22:27:24 +02:00
continue;
}
2002-08-16 11:34:01 +02:00
#endif
2001-04-27 22:27:24 +02:00
2003-08-25 16:14:47 +02:00
node = item->node;
for (node = node->children; node != NULL; node = node->next) {
FolderItem *cur_item = FOLDER_ITEM(node->data);
if (!strcmp2(cur_item->path, entry)) {
new_item = cur_item;
break;
}
}
if (!new_item) {
debug_print("new folder '%s' found.\n", entry);
2003-10-05 12:10:30 +02:00
new_item = folder_item_new(folder, utf8name, utf8entry);
2003-08-25 16:14:47 +02:00
folder_item_append(item, new_item);
}
2001-04-19 14:21:46 +02:00
if (!item->path) {
2003-08-25 16:14:47 +02:00
if (!folder->inbox &&
!strcmp(d->d_name, INBOX_DIR)) {
2001-04-19 14:21:46 +02:00
new_item->stype = F_INBOX;
2003-08-25 16:14:47 +02:00
folder->inbox = new_item;
} else if (!folder->outbox &&
!strcmp(d->d_name, OUTBOX_DIR)) {
2001-04-19 14:21:46 +02:00
new_item->stype = F_OUTBOX;
2003-08-25 16:14:47 +02:00
folder->outbox = new_item;
} else if (!folder->draft &&
!strcmp(d->d_name, DRAFT_DIR)) {
2001-04-19 14:21:46 +02:00
new_item->stype = F_DRAFT;
2003-08-25 16:14:47 +02:00
folder->draft = new_item;
} else if (!folder->queue &&
!strcmp(d->d_name, QUEUE_DIR)) {
2001-04-19 14:21:46 +02:00
new_item->stype = F_QUEUE;
2003-08-25 16:14:47 +02:00
folder->queue = new_item;
} else if (!folder->trash &&
!strcmp(d->d_name, TRASH_DIR)) {
2001-04-19 14:21:46 +02:00
new_item->stype = F_TRASH;
2003-08-25 16:14:47 +02:00
folder->trash = new_item;
2001-04-19 14:21:46 +02:00
}
}
2003-08-25 16:14:47 +02:00
mh_scan_tree_recursive(new_item);
2001-04-19 14:21:46 +02:00
} else if (to_number(d->d_name) != -1) n_msg++;
g_free(entry);
2003-10-05 12:10:30 +02:00
g_free(utf8entry);
g_free(utf8name);
2001-04-19 14:21:46 +02:00
}
closedir(dp);
/*
2001-04-19 14:21:46 +02:00
if (item->path) {
2002-02-21 15:56:09 +01:00
gint new, unread, total, min, max;
2001-04-19 14:21:46 +02:00
2002-02-21 15:56:09 +01:00
procmsg_get_mark_sum(item->path, &new, &unread, &total,
&min, &max, 0);
2001-04-19 14:21:46 +02:00
if (n_msg > total) {
new += n_msg - total;
unread += n_msg - total;
}
item->new = new;
item->unread = unread;
item->total = n_msg;
}
*/
2001-04-19 14:21:46 +02:00
}
static gboolean mh_rename_folder_func(GNode *node, gpointer data)
{
FolderItem *item = node->data;
gchar **paths = data;
const gchar *oldpath = paths[0];
const gchar *newpath = paths[1];
gchar *base;
gchar *new_itempath;
gint oldpathlen;
oldpathlen = strlen(oldpath);
if (strncmp(oldpath, item->path, oldpathlen) != 0) {
g_warning("path doesn't match: %s, %s\n", oldpath, item->path);
return TRUE;
}
base = item->path + oldpathlen;
while (*base == G_DIR_SEPARATOR) base++;
if (*base == '\0')
new_itempath = g_strdup(newpath);
else
new_itempath = g_strconcat(newpath, G_DIR_SEPARATOR_S, base,
NULL);
g_free(item->path);
item->path = new_itempath;
return FALSE;
}
2003-10-05 12:10:30 +02:00
#warning FIXME_GTK2 /* should we use g_filename_from_utf8()? */
static gchar *mh_filename_from_utf8(const gchar *path)
{
const gchar *src_codeset = CS_UTF_8;
const gchar *dest_codeset = conv_get_current_charset_str();
gchar *real_path;
real_path = conv_codeset_strdup(path, src_codeset, dest_codeset);
if (!real_path) {
g_warning("mh_filename_from_utf8: faild to convert character set\n");
/* FIXME: show dialog? */
real_path = g_strdup(path);
}
return real_path;
}
#warning FIXME_GTK2 /* should we use g_filename_to_utf8()? */
static gchar *mh_filename_to_utf8(const gchar *path)
{
const gchar *src_codeset = conv_get_current_charset_str();
const gchar *dest_codeset = CS_UTF_8;
gchar *utf8path;
utf8path = conv_codeset_strdup(path, src_codeset, dest_codeset);
if (!utf8path) {
g_warning("mh_filename_to_utf8: faild to convert character set\n");
/* FIXME: show dialog? */
utf8path = g_strdup(path);
}
return utf8path;
}