2005-08-07 [colin] 1.9.13cvs23
[claws.git] / src / mh.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2005 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <dirent.h>
29 #include <sys/stat.h>
30 #include <unistd.h>
31 #include <string.h>
32 #include <errno.h>
33
34 #undef MEASURE_TIME
35
36 #ifdef MEASURE_TIME
37 #  include <sys/time.h>
38 #endif
39
40 #include "folder.h"
41 #include "mh.h"
42 #include "procmsg.h"
43 #include "procheader.h"
44 #include "utils.h"
45 #include "codeconv.h"
46
47 static void     mh_folder_init          (Folder         *folder,
48                                          const gchar    *name,
49                                          const gchar    *path);
50
51 static Folder   *mh_folder_new          (const gchar    *name,
52                                          const gchar    *path);
53 static void     mh_folder_destroy       (Folder         *folder);
54 static gchar   *mh_fetch_msg            (Folder         *folder,
55                                          FolderItem     *item,
56                                          gint            num);
57 static MsgInfo *mh_get_msginfo          (Folder         *folder,
58                                          FolderItem     *item,
59                                          gint            num);
60 static gint     mh_add_msg              (Folder         *folder,
61                                          FolderItem     *dest,
62                                          const gchar    *file,
63                                          MsgFlags       *flags);
64 static gint     mh_add_msgs             (Folder         *folder,
65                                          FolderItem     *dest,
66                                          GSList         *file_list,
67                                          GRelation      *relation);
68 static gint     mh_copy_msg             (Folder         *folder,
69                                          FolderItem     *dest,
70                                          MsgInfo        *msginfo);
71 static gint     mh_remove_msg           (Folder         *folder,
72                                          FolderItem     *item,
73                                          gint            num);
74 static gint     mh_remove_all_msg       (Folder         *folder,
75                                          FolderItem     *item);
76 static gboolean mh_is_msg_changed       (Folder         *folder,
77                                          FolderItem     *item,
78                                          MsgInfo        *msginfo);
79
80 static gint     mh_get_num_list         (Folder         *folder,
81                                          FolderItem     *item, 
82                                          GSList         **list, 
83                                          gboolean       *old_uids_valid);
84 static gint     mh_scan_tree            (Folder         *folder);
85
86 static gint    mh_create_tree           (Folder         *folder);
87 static FolderItem *mh_create_folder     (Folder         *folder,
88                                          FolderItem     *parent,
89                                          const gchar    *name);
90 static gint    mh_rename_folder         (Folder         *folder,
91                                          FolderItem     *item,
92                                          const gchar    *name);
93 static gint    mh_remove_folder         (Folder         *folder,
94                                          FolderItem     *item);
95
96 static gchar   *mh_get_new_msg_filename         (FolderItem     *dest);
97
98 static MsgInfo *mh_parse_msg                    (const gchar    *file,
99                                                  FolderItem     *item);
100 static void     mh_remove_missing_folder_items  (Folder         *folder);
101 static gchar    *mh_filename_from_utf8          (const gchar    *path);
102 static gchar    *mh_filename_to_utf8            (const gchar    *path);
103 static void     mh_scan_tree_recursive          (FolderItem     *item);
104
105 static gboolean mh_rename_folder_func           (GNode          *node,
106                                                  gpointer        data);
107 static gchar   *mh_item_get_path                (Folder *folder, 
108                                                  FolderItem *item);
109
110 static gboolean mh_scan_required        (Folder         *folder,
111                                          FolderItem     *item);
112
113 static FolderClass mh_class;
114
115 FolderClass *mh_get_class(void)
116 {
117         if (mh_class.idstr == NULL) {
118                 mh_class.type = F_MH;
119                 mh_class.idstr = "mh";
120                 mh_class.uistr = "MH";
121                 
122                 /* Folder functions */
123                 mh_class.new_folder = mh_folder_new;
124                 mh_class.destroy_folder = mh_folder_destroy;
125                 mh_class.set_xml = folder_local_set_xml;
126                 mh_class.get_xml = folder_local_get_xml;
127                 mh_class.scan_tree = mh_scan_tree;
128                 mh_class.create_tree = mh_create_tree;
129
130                 /* FolderItem functions */
131                 mh_class.item_get_path = mh_item_get_path;
132                 mh_class.create_folder = mh_create_folder;
133                 mh_class.rename_folder = mh_rename_folder;
134                 mh_class.remove_folder = mh_remove_folder;
135                 mh_class.get_num_list = mh_get_num_list;
136                 mh_class.scan_required = mh_scan_required;
137                 
138                 /* Message functions */
139                 mh_class.get_msginfo = mh_get_msginfo;
140                 mh_class.fetch_msg = mh_fetch_msg;
141                 mh_class.add_msg = mh_add_msg;
142                 mh_class.add_msgs = mh_add_msgs;
143                 mh_class.copy_msg = mh_copy_msg;
144                 mh_class.remove_msg = mh_remove_msg;
145                 mh_class.remove_all_msg = mh_remove_all_msg;
146                 mh_class.is_msg_changed = mh_is_msg_changed;
147         }
148
149         return &mh_class;
150 }
151
152 static Folder *mh_folder_new(const gchar *name, const gchar *path)
153 {
154         Folder *folder;
155
156         folder = (Folder *)g_new0(MHFolder, 1);
157         folder->klass = &mh_class;
158         mh_folder_init(folder, name, path);
159
160         return folder;
161 }
162
163 static void mh_folder_destroy(Folder *folder)
164 {
165         folder_local_folder_destroy(LOCAL_FOLDER(folder));
166 }
167
168 static void mh_folder_init(Folder *folder, const gchar *name, const gchar *path)
169 {
170         folder_local_folder_init(folder, name, path);
171
172 }
173
174 gboolean mh_scan_required(Folder *folder, FolderItem *item)
175 {
176         gchar *path;
177         struct stat s;
178
179         path = folder_item_get_path(item);
180         g_return_val_if_fail(path != NULL, FALSE);
181
182         if (stat(path, &s) < 0) {
183                 FILE_OP_ERROR(path, "stat");
184                 g_free(path);
185                 return FALSE;
186         }
187
188         if ((s.st_mtime > item->mtime) &&
189                 (s.st_mtime - 3600 != item->mtime)) {
190                 debug_print("MH scan required, folder updated: %s (%ld > %ld)\n",
191                             path,
192                             s.st_mtime,
193                             item->mtime);
194                 g_free(path);
195                 return TRUE;
196         }
197
198         debug_print("MH scan not required: %s (%ld <= %ld)\n",
199                     path,
200                     s.st_mtime,
201                     item->mtime);
202         g_free(path);
203         return FALSE;
204 }
205
206 void mh_get_last_num(Folder *folder, FolderItem *item)
207 {
208         gchar *path;
209         DIR *dp;
210         struct dirent *d;
211         gint max = 0;
212         gint num;
213
214         g_return_if_fail(item != NULL);
215
216         debug_print("mh_get_last_num(): Scanning %s ...\n", item->path);
217
218         path = folder_item_get_path(item);
219         g_return_if_fail(path != NULL);
220         if (change_dir(path) < 0) {
221                 g_free(path);
222                 return;
223         }
224         g_free(path);
225
226         if ((dp = opendir(".")) == NULL) {
227                 FILE_OP_ERROR(item->path, "opendir");
228                 return;
229         }
230
231         while ((d = readdir(dp)) != NULL) {
232                 if ((num = to_number(d->d_name)) > 0 &&
233                     dirent_is_regular_file(d)) {
234                         if (max < num)
235                                 max = num;
236                 }
237         }
238         closedir(dp);
239
240         debug_print("Last number in dir %s = %d\n", item->path, max);
241         item->last_num = max;
242 }
243
244 gint mh_get_num_list(Folder *folder, FolderItem *item, GSList **list, gboolean *old_uids_valid)
245 {
246
247         gchar *path;
248         DIR *dp;
249         struct dirent *d;
250         gint num, nummsgs = 0;
251
252         g_return_val_if_fail(item != NULL, -1);
253
254         debug_print("mh_get_num_list(): Scanning %s ...\n", item->path);
255
256         *old_uids_valid = TRUE;
257
258         path = folder_item_get_path(item);
259         g_return_val_if_fail(path != NULL, -1);
260         if (change_dir(path) < 0) {
261                 g_free(path);
262                 return -1;
263         }
264         g_free(path);
265
266         if ((dp = opendir(".")) == NULL) {
267                 FILE_OP_ERROR(item->path, "opendir");
268                 return -1;
269         }
270
271         while ((d = readdir(dp)) != NULL) {
272                 if ((num = to_number(d->d_name)) > 0) {
273                         *list = g_slist_prepend(*list, GINT_TO_POINTER(num));
274                         nummsgs++;
275                 }
276         }
277         closedir(dp);
278
279         item->mtime = time(NULL);
280         return nummsgs;
281 }
282
283 static gchar *mh_fetch_msg(Folder *folder, FolderItem *item, gint num)
284 {
285         gchar *path;
286         gchar *file;
287
288         g_return_val_if_fail(item != NULL, NULL);
289         g_return_val_if_fail(num > 0, NULL);
290
291         path = folder_item_get_path(item);
292         file = g_strconcat(path, G_DIR_SEPARATOR_S, itos(num), NULL);
293
294         if (!is_file_exist(file)) {
295                 g_free(file);
296                 g_free(path);
297                 return NULL;
298         }
299         g_free(path);
300         return file;
301 }
302
303 static MsgInfo *mh_get_msginfo(Folder *folder, FolderItem *item, gint num)
304 {
305         MsgInfo *msginfo;
306         gchar *file;
307
308         g_return_val_if_fail(item != NULL, NULL);
309         g_return_val_if_fail(num > 0, NULL);
310
311         file = mh_fetch_msg(folder, item, num);
312         if (!file) return NULL;
313
314         msginfo = mh_parse_msg(file, item);
315         if (msginfo)
316                 msginfo->msgnum = num;
317
318         g_free(file);
319
320         return msginfo;
321 }
322
323 static gchar *mh_get_new_msg_filename(FolderItem *dest)
324 {
325         gchar *destfile;
326         gchar *destpath;
327
328         destpath = folder_item_get_path(dest);
329         g_return_val_if_fail(destpath != NULL, NULL);
330
331         if (!is_dir_exist(destpath))
332                 make_dir_hier(destpath);
333
334         for (;;) {
335                 destfile = g_strdup_printf("%s%c%d", destpath, G_DIR_SEPARATOR,
336                                            dest->last_num + 1);
337                 if (is_file_entry_exist(destfile)) {
338                         dest->last_num++;
339                         g_free(destfile);
340                 } else
341                         break;
342         }
343
344         g_free(destpath);
345
346         return destfile;
347 }
348
349 static gint mh_add_msg(Folder *folder, FolderItem *dest, const gchar *file, MsgFlags *flags)
350 {
351         gint ret;
352         GSList file_list;
353         MsgFileInfo fileinfo;
354
355         g_return_val_if_fail(file != NULL, -1);
356
357         fileinfo.msginfo = NULL;
358         fileinfo.file = (gchar *)file;
359         fileinfo.flags = flags;
360         file_list.data = &fileinfo;
361         file_list.next = NULL;
362
363         ret = mh_add_msgs(folder, dest, &file_list, NULL);
364         return ret;
365
366  
367 static gint mh_add_msgs(Folder *folder, FolderItem *dest, GSList *file_list, 
368                  GRelation *relation)
369
370         gchar *destfile;
371         GSList *cur;
372         MsgFileInfo *fileinfo;
373
374         g_return_val_if_fail(dest != NULL, -1);
375         g_return_val_if_fail(file_list != NULL, -1);
376
377         if (dest->last_num < 0) {
378                 mh_get_last_num(folder, dest);
379                 if (dest->last_num < 0) return -1;
380         }
381
382         for (cur = file_list; cur != NULL; cur = cur->next) {
383                 fileinfo = (MsgFileInfo *)cur->data;
384
385                 destfile = mh_get_new_msg_filename(dest);
386                 if (destfile == NULL) return -1;
387
388                 if (link(fileinfo->file, destfile) < 0) {
389                         if (copy_file(fileinfo->file, destfile, TRUE) < 0) {
390                                 g_warning(_("can't copy message %s to %s\n"),
391                                           fileinfo->file, destfile);
392                                 g_free(destfile);
393                                 return -1;
394                         }
395                 }
396                 if (relation != NULL)
397                         g_relation_insert(relation, fileinfo, GINT_TO_POINTER(dest->last_num + 1));
398                 g_free(destfile);
399                 dest->last_num++;
400         }
401
402         return dest->last_num;
403 }
404
405 static gint mh_copy_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
406 {
407         gboolean dest_need_scan = FALSE;
408         gchar *srcfile;
409         gchar *destfile;
410         gint filemode = 0;
411         FolderItemPrefs *prefs;
412
413         g_return_val_if_fail(dest != NULL, -1);
414         g_return_val_if_fail(msginfo != NULL, -1);
415
416         if (msginfo->folder == dest) {
417                 g_warning("the src folder is identical to the dest.\n");
418                 return -1;
419         }
420
421         if (dest->last_num < 0) {
422                 mh_get_last_num(folder, dest);
423                 if (dest->last_num < 0) return -1;
424         }
425
426         prefs = dest->prefs;
427
428         srcfile = procmsg_get_message_file(msginfo);
429         destfile = mh_get_new_msg_filename(dest);
430         if (!destfile) {
431                 g_free(srcfile);
432                 return -1;
433         }
434         
435         debug_print("Copying message %s%c%d to %s ...\n",
436                     msginfo->folder->path, G_DIR_SEPARATOR,
437                     msginfo->msgnum, dest->path);
438         
439
440         if ((MSG_IS_QUEUED(msginfo->flags) || MSG_IS_DRAFT(msginfo->flags))
441         && !folder_has_parent_of_type(dest, F_QUEUE)
442         && !folder_has_parent_of_type(dest, F_DRAFT)) {
443                 if (procmsg_remove_special_headers(srcfile, destfile) !=0) {
444                         g_free(srcfile);
445                         g_free(destfile);
446                         return -1;
447                 }
448         } else if (!(MSG_IS_QUEUED(msginfo->flags) || MSG_IS_DRAFT(msginfo->flags))
449         && (folder_has_parent_of_type(dest, F_QUEUE)
450          || folder_has_parent_of_type(dest, F_DRAFT))) {
451                 g_free(srcfile);
452                 g_free(destfile);
453                 return -1;
454         } else if (copy_file(srcfile, destfile, TRUE) < 0) {
455                 FILE_OP_ERROR(srcfile, "copy");
456                 g_free(srcfile);
457                 g_free(destfile);
458                 return -1;
459         }
460
461         dest_need_scan = mh_scan_required(dest->folder, dest);
462         if (!dest_need_scan)
463                 dest->mtime = time(NULL);
464
465
466         if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
467                 if (chmod(destfile, prefs->folder_chmod) < 0)
468                         FILE_OP_ERROR(destfile, "chmod");
469
470                 /* for mark file */
471                 filemode = prefs->folder_chmod;
472                 if (filemode & S_IRGRP) filemode |= S_IWGRP;
473                 if (filemode & S_IROTH) filemode |= S_IWOTH;
474         }
475
476         g_free(srcfile);
477         g_free(destfile);
478         dest->last_num++;
479
480         return dest->last_num;
481 }
482
483 static gint mh_remove_msg(Folder *folder, FolderItem *item, gint num)
484 {
485         gboolean need_scan = FALSE;
486         gchar *file;
487
488         g_return_val_if_fail(item != NULL, -1);
489
490         file = mh_fetch_msg(folder, item, num);
491         g_return_val_if_fail(file != NULL, -1);
492
493         need_scan = mh_scan_required(folder, item);
494
495         if (unlink(file) < 0) {
496                 FILE_OP_ERROR(file, "unlink");
497                 g_free(file);
498                 return -1;
499         }
500
501         if (!need_scan)
502                 item->mtime = time(NULL);
503
504         g_free(file);
505         return 0;
506 }
507
508 static gint mh_remove_all_msg(Folder *folder, FolderItem *item)
509 {
510         gchar *path;
511         gint val;
512
513         g_return_val_if_fail(item != NULL, -1);
514
515         path = folder_item_get_path(item);
516         g_return_val_if_fail(path != NULL, -1);
517         val = remove_all_numbered_files(path);
518         g_free(path);
519
520         return val;
521 }
522
523 static gboolean mh_is_msg_changed(Folder *folder, FolderItem *item,
524                                   MsgInfo *msginfo)
525 {
526         struct stat s;
527
528         if (stat(itos(msginfo->msgnum), &s) < 0 ||
529             msginfo->size  != s.st_size || (
530                 (msginfo->mtime - s.st_mtime != 0) &&
531                 (msginfo->mtime - s.st_mtime != 3600) &&
532                 (msginfo->mtime - s.st_mtime != -3600)))
533                 return TRUE;
534
535         return FALSE;
536 }
537
538 static gint mh_scan_tree(Folder *folder)
539 {
540         FolderItem *item;
541         gchar *rootpath;
542
543         g_return_val_if_fail(folder != NULL, -1);
544
545         if (!folder->node) {
546                 item = folder_item_new(folder, folder->name, NULL);
547                 item->folder = folder;
548                 folder->node = item->node = g_node_new(item);
549         } else
550                 item = FOLDER_ITEM(folder->node->data);
551
552         rootpath = folder_item_get_path(item);
553         if (change_dir(rootpath) < 0) {
554                 g_free(rootpath);
555                 return -1;
556         }
557         g_free(rootpath);
558
559         mh_create_tree(folder);
560         mh_remove_missing_folder_items(folder);
561         mh_scan_tree_recursive(item);
562
563         return 0;
564 }
565
566 #define MAKE_DIR_IF_NOT_EXIST(dir) \
567 { \
568         if (!is_dir_exist(dir)) { \
569                 if (is_file_exist(dir)) { \
570                         g_warning("File `%s' already exists.\n" \
571                                     "Can't create folder.", dir); \
572                         return -1; \
573                 } \
574                 if (make_dir(dir) < 0) \
575                         return -1; \
576         } \
577 }
578
579 static gint mh_create_tree(Folder *folder)
580 {
581         gchar *rootpath;
582
583         g_return_val_if_fail(folder != NULL, -1);
584
585         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), -1);
586         rootpath = LOCAL_FOLDER(folder)->rootpath;
587         MAKE_DIR_IF_NOT_EXIST(rootpath);
588         CHDIR_RETURN_VAL_IF_FAIL(rootpath, -1);
589         MAKE_DIR_IF_NOT_EXIST(INBOX_DIR);
590         MAKE_DIR_IF_NOT_EXIST(OUTBOX_DIR);
591         MAKE_DIR_IF_NOT_EXIST(QUEUE_DIR);
592         MAKE_DIR_IF_NOT_EXIST(DRAFT_DIR);
593         MAKE_DIR_IF_NOT_EXIST(TRASH_DIR);
594
595         return 0;
596 }
597
598 #undef MAKE_DIR_IF_NOT_EXIST
599
600 static gchar *mh_item_get_path(Folder *folder, FolderItem *item)
601 {
602         gchar *folder_path, *path;
603         gchar *real_path;
604         g_return_val_if_fail(folder != NULL, NULL);
605         g_return_val_if_fail(item != NULL, NULL);
606
607         folder_path = g_strdup(LOCAL_FOLDER(folder)->rootpath);
608         g_return_val_if_fail(folder_path != NULL, NULL);
609
610         if (folder_path[0] == G_DIR_SEPARATOR) {
611                 if (item->path)
612                         path = g_strconcat(folder_path, G_DIR_SEPARATOR_S,
613                                            item->path, NULL);
614                 else
615                         path = g_strdup(folder_path);
616         } else {
617                 if (item->path)
618                         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
619                                            folder_path, G_DIR_SEPARATOR_S,
620                                            item->path, NULL);
621                 else
622                         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
623                                            folder_path, NULL);
624         }
625         g_free(folder_path);
626         real_path = mh_filename_from_utf8(path);
627         if (!is_dir_exist(real_path) && is_dir_exist(path)) {
628                 /* mmh, older version did put utf8 filenames instead of
629                  * the correct encoding */
630                 rename(path, real_path);
631                 folder_item_scan(item);
632         }
633
634         g_free(path);
635         return real_path;
636 }
637
638 static FolderItem *mh_create_folder(Folder *folder, FolderItem *parent,
639                                     const gchar *name)
640 {
641         gchar *path, *real_name;
642         gchar *fullpath;
643         FolderItem *new_item;
644         gchar *mh_sequences_filename;
645         FILE *mh_sequences_file;
646
647         g_return_val_if_fail(folder != NULL, NULL);
648         g_return_val_if_fail(parent != NULL, NULL);
649         g_return_val_if_fail(name != NULL, NULL);
650
651         path = folder_item_get_path(parent);
652         if (!is_dir_exist(path)) 
653                 if (make_dir_hier(path) != 0)
654                         return NULL;
655                 
656         real_name = mh_filename_from_utf8(name);
657         fullpath = g_strconcat(path, G_DIR_SEPARATOR_S, real_name, NULL);
658         g_free(real_name);
659         g_free(path);
660
661         if (make_dir(fullpath) < 0) {
662                 g_free(fullpath);
663                 return NULL;
664         }
665
666         g_free(fullpath);
667
668         if (parent->path)
669                 path = g_strconcat(parent->path, G_DIR_SEPARATOR_S, name,
670                                    NULL);
671         else
672                 path = g_strdup(name);
673         new_item = folder_item_new(folder, name, path);
674         folder_item_append(parent, new_item);
675
676         g_free(path);
677
678         path = folder_item_get_path(new_item);
679         mh_sequences_filename = g_strconcat(path, G_DIR_SEPARATOR_S,
680                                             ".mh_sequences", NULL);
681         if ((mh_sequences_file = fopen(mh_sequences_filename, "a+b")) != NULL) {
682                 fclose(mh_sequences_file);
683         }
684         g_free(mh_sequences_filename);
685         g_free(path);
686
687         return new_item;
688 }
689
690 static gint mh_rename_folder(Folder *folder, FolderItem *item,
691                              const gchar *name)
692 {
693         gchar *real_name;
694         gchar *oldpath;
695         gchar *dirname;
696         gchar *newpath, *utf8newpath;
697         gchar *paths[2];
698
699         g_return_val_if_fail(folder != NULL, -1);
700         g_return_val_if_fail(item != NULL, -1);
701         g_return_val_if_fail(item->path != NULL, -1);
702         g_return_val_if_fail(name != NULL, -1);
703
704         oldpath = folder_item_get_path(item);
705         if (!is_dir_exist(oldpath))
706                 make_dir_hier(oldpath);
707
708         dirname = g_path_get_dirname(oldpath);
709         real_name = mh_filename_from_utf8(name);
710         newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S, real_name, NULL);
711         g_free(real_name);
712
713         if (rename(oldpath, newpath) < 0) {
714                 FILE_OP_ERROR(oldpath, "rename");
715                 g_free(oldpath);
716                 g_free(newpath);
717                 return -1;
718         }
719
720         g_free(oldpath);
721         g_free(newpath);
722
723         if (strchr(item->path, G_DIR_SEPARATOR) != NULL) {
724                 dirname = g_path_get_dirname(item->path);
725                 utf8newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S,
726                                           name, NULL);
727                 g_free(dirname);
728         } else
729                 utf8newpath = g_strdup(name);
730
731         g_free(item->name);
732         item->name = g_strdup(name);
733
734         paths[0] = g_strdup(item->path);
735         paths[1] = utf8newpath;
736         g_node_traverse(item->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
737                         mh_rename_folder_func, paths);
738
739         g_free(paths[0]);
740         g_free(paths[1]);
741         return 0;
742 }
743
744 static gint mh_remove_folder(Folder *folder, FolderItem *item)
745 {
746         gchar *path;
747
748         g_return_val_if_fail(folder != NULL, -1);
749         g_return_val_if_fail(item != NULL, -1);
750         g_return_val_if_fail(item->path != NULL, -1);
751
752         path = folder_item_get_path(item);
753         if (remove_dir_recursive(path) < 0) {
754                 g_warning("can't remove directory `%s'\n", path);
755                 g_free(path);
756                 return -1;
757         }
758
759         g_free(path);
760         folder_item_remove(item);
761         return 0;
762 }
763
764 static MsgInfo *mh_parse_msg(const gchar *file, FolderItem *item)
765 {
766         MsgInfo *msginfo;
767         MsgFlags flags;
768
769         g_return_val_if_fail(item != NULL, NULL);
770         g_return_val_if_fail(file != NULL, NULL);
771
772         flags.perm_flags = MSG_NEW|MSG_UNREAD;
773         flags.tmp_flags = 0;
774
775         if (folder_has_parent_of_type(item, F_QUEUE)) {
776                 MSG_SET_TMP_FLAGS(flags, MSG_QUEUED);
777         } else if (folder_has_parent_of_type(item, F_DRAFT)) {
778                 MSG_SET_TMP_FLAGS(flags, MSG_DRAFT);
779         }
780
781         msginfo = procheader_parse_file(file, flags, FALSE, FALSE);
782         if (!msginfo) return NULL;
783
784         msginfo->msgnum = atoi(file);
785         msginfo->folder = item;
786
787         return msginfo;
788 }
789
790 #if 0
791 static gboolean mh_is_maildir_one(const gchar *path, const gchar *dir)
792 {
793         gchar *entry;
794         gboolean result;
795
796         entry = g_strconcat(path, G_DIR_SEPARATOR_S, dir, NULL);
797         result = is_dir_exist(entry);
798         g_free(entry);
799
800         return result;
801 }
802
803 /*
804  * check whether PATH is a Maildir style mailbox.
805  * This is the case if the 3 subdir: new, cur, tmp are existing.
806  * This functon assumes that entry is an directory
807  */
808 static gboolean mh_is_maildir(const gchar *path)
809 {
810         return mh_is_maildir_one(path, "new") &&
811                mh_is_maildir_one(path, "cur") &&
812                mh_is_maildir_one(path, "tmp");
813 }
814 #endif
815
816 static gboolean mh_remove_missing_folder_items_func(GNode *node, gpointer data)
817 {
818         FolderItem *item;
819         gchar *path;
820
821         g_return_val_if_fail(node->data != NULL, FALSE);
822
823         if (G_NODE_IS_ROOT(node))
824                 return FALSE;
825
826         item = FOLDER_ITEM(node->data);
827
828         path = folder_item_get_path(item);
829         if (!is_dir_exist(path)) {
830                 debug_print("folder '%s' not found. removing...\n", path);
831                 folder_item_remove(item);
832         }
833         g_free(path);
834
835         return FALSE;
836 }
837
838 static void mh_remove_missing_folder_items(Folder *folder)
839 {
840         g_return_if_fail(folder != NULL);
841
842         debug_print("searching missing folders...\n");
843
844         g_node_traverse(folder->node, G_POST_ORDER, G_TRAVERSE_ALL, -1,
845                         mh_remove_missing_folder_items_func, folder);
846 }
847
848 static void mh_scan_tree_recursive(FolderItem *item)
849 {
850         Folder *folder;
851         DIR *dp;
852         struct dirent *d;
853         struct stat s;
854         gchar *real_path, *entry, *utf8entry, *utf8name;
855         gint n_msg = 0;
856
857         g_return_if_fail(item != NULL);
858         g_return_if_fail(item->folder != NULL);
859
860         folder = item->folder;
861
862         real_path = item->path ? mh_filename_from_utf8(item->path) : g_strdup(".");
863         dp = opendir(real_path);
864         if (!dp) {
865                 FILE_OP_ERROR(real_path, "opendir");
866                 return;
867         }
868         g_free(real_path);
869
870         debug_print("scanning %s ...\n",
871                     item->path ? item->path
872                     : LOCAL_FOLDER(item->folder)->rootpath);
873         if (folder->ui_func)
874                 folder->ui_func(folder, item, folder->ui_func_data);
875
876         while ((d = readdir(dp)) != NULL) {
877                 if (d->d_name[0] == '.') continue;
878
879                 utf8name = mh_filename_to_utf8(d->d_name);
880                 if (item->path)
881                         utf8entry = g_strconcat(item->path, G_DIR_SEPARATOR_S,
882                                                 utf8name, NULL);
883                 else
884                         utf8entry = g_strdup(utf8name);
885                 entry = mh_filename_from_utf8(utf8entry);
886
887                 if (
888 #ifdef HAVE_DIRENT_D_TYPE
889                         d->d_type == DT_DIR ||
890                         (d->d_type == DT_UNKNOWN &&
891 #endif
892                         stat(entry, &s) == 0 && S_ISDIR(s.st_mode)
893 #ifdef HAVE_DIRENT_D_TYPE
894                         )
895 #endif
896                    ) {
897                         FolderItem *new_item = NULL;
898                         GNode *node;
899
900 #if 0
901                         if (mh_is_maildir(entry)) {
902                                 g_free(entry);
903                                 g_free(utf8entry);
904                                 g_free(utf8name);
905                                 continue;
906                         }
907 #endif
908
909                         node = item->node;
910                         for (node = node->children; node != NULL; node = node->next) {
911                                 FolderItem *cur_item = FOLDER_ITEM(node->data);
912                                 if (!strcmp2(cur_item->path, entry)) {
913                                         new_item = cur_item;
914                                         break;
915                                 }
916                         }
917                         if (!new_item) {
918                                 debug_print("new folder '%s' found.\n", entry);
919                                 new_item = folder_item_new(folder, utf8name, utf8entry);
920                                 folder_item_append(item, new_item);
921                         }
922
923                         if (!item->path) {
924                                 if (!folder->inbox &&
925                                     !strcmp(d->d_name, INBOX_DIR)) {
926                                         new_item->stype = F_INBOX;
927                                         folder->inbox = new_item;
928                                 } else if (!folder->outbox &&
929                                            !strcmp(d->d_name, OUTBOX_DIR)) {
930                                         new_item->stype = F_OUTBOX;
931                                         folder->outbox = new_item;
932                                 } else if (!folder->draft &&
933                                            !strcmp(d->d_name, DRAFT_DIR)) {
934                                         new_item->stype = F_DRAFT;
935                                         folder->draft = new_item;
936                                 } else if (!folder->queue &&
937                                            !strcmp(d->d_name, QUEUE_DIR)) {
938                                         new_item->stype = F_QUEUE;
939                                         folder->queue = new_item;
940                                 } else if (!folder->trash &&
941                                            !strcmp(d->d_name, TRASH_DIR)) {
942                                         new_item->stype = F_TRASH;
943                                         folder->trash = new_item;
944                                 }
945                         }
946
947                         mh_scan_tree_recursive(new_item);
948                 } else if (to_number(d->d_name) != -1) n_msg++;
949
950                 g_free(entry);
951                 g_free(utf8entry);
952                 g_free(utf8name);
953         }
954
955         closedir(dp);
956
957         item->mtime = time(NULL);
958
959 /*
960         if (item->path) {
961                 gint new, unread, total, min, max;
962
963                 procmsg_get_mark_sum(item->path, &new, &unread, &total,
964                                      &min, &max, 0);
965                 if (n_msg > total) {
966                         new += n_msg - total;
967                         unread += n_msg - total;
968                 }
969                 item->new = new;
970                 item->unread = unread;
971                 item->total = n_msg;
972         }
973 */
974 }
975
976 static gboolean mh_rename_folder_func(GNode *node, gpointer data)
977 {
978         FolderItem *item = node->data;
979         gchar **paths = data;
980         const gchar *oldpath = paths[0];
981         const gchar *newpath = paths[1];
982         gchar *base;
983         gchar *new_itempath;
984         gint oldpathlen;
985
986         oldpathlen = strlen(oldpath);
987         if (strncmp(oldpath, item->path, oldpathlen) != 0) {
988                 g_warning("path doesn't match: %s, %s\n", oldpath, item->path);
989                 return TRUE;
990         }
991
992         base = item->path + oldpathlen;
993         while (*base == G_DIR_SEPARATOR) base++;
994         if (*base == '\0')
995                 new_itempath = g_strdup(newpath);
996         else
997                 new_itempath = g_strconcat(newpath, G_DIR_SEPARATOR_S, base,
998                                            NULL);
999         g_free(item->path);
1000         item->path = new_itempath;
1001
1002         return FALSE;
1003 }
1004
1005 static gchar *mh_filename_from_utf8(const gchar *path)
1006 {
1007         gchar *real_path = g_filename_from_utf8(path, -1, NULL, NULL, NULL);
1008
1009         if (!real_path) {
1010                 g_warning("mh_filename_from_utf8: faild to convert character set\n");
1011                 real_path = g_strdup(path);
1012         }
1013
1014         return real_path;
1015 }
1016
1017 static gchar *mh_filename_to_utf8(const gchar *path)
1018 {
1019         gchar *utf8path = g_filename_to_utf8(path, -1, NULL, NULL, NULL);
1020         if (!utf8path) {
1021                 g_warning("mh_filename_to_utf8: faild to convert character set\n");
1022                 utf8path = g_strdup(path);
1023         }
1024
1025         return utf8path;
1026 }