b45a1433ac6cc38c88ce47f6be70751f5f25aa75
[claws.git] / src / mh.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 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 <dirent.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <errno.h>
32
33 #undef MEASURE_TIME
34
35 #ifdef MEASURE_TIME
36 #  include <sys/time.h>
37 #endif
38
39 #include "intl.h"
40 #include "folder.h"
41 #include "mh.h"
42 #include "procmsg.h"
43 #include "procheader.h"
44 #include "utils.h"
45
46 static void     mh_folder_init                  (Folder         *folder,
47                                                  const gchar    *name,
48                                                  const gchar    *path);
49
50 static GSList  *mh_get_uncached_msgs            (GHashTable     *msg_table,
51                                                  FolderItem     *item);
52 static MsgInfo *mh_parse_msg                    (const gchar    *file,
53                                                  FolderItem     *item);
54 static void     mh_scan_tree_recursive          (FolderItem     *item, 
55                                                  GHashTable *pptable);
56
57 static gboolean mh_rename_folder_func           (GNode          *node,
58                                                  gpointer        data);
59
60
61 Folder *mh_folder_new(const gchar *name, const gchar *path)
62 {
63         Folder *folder;
64
65         folder = (Folder *)g_new0(MHFolder, 1);
66         mh_folder_init(folder, name, path);
67
68         return folder;
69 }
70
71 void mh_folder_destroy(MHFolder *folder)
72 {
73         folder_local_folder_destroy(LOCAL_FOLDER(folder));
74 }
75
76 static void mh_folder_init(Folder *folder, const gchar *name, const gchar *path)
77 {
78         folder_local_folder_init(folder, name, path);
79
80         folder->type = F_MH;
81
82         folder->get_msg_list        = mh_get_msg_list;
83         folder->fetch_msg           = mh_fetch_msg;
84         folder->add_msg             = mh_add_msg;
85         folder->move_msg            = mh_move_msg;
86         folder->move_msgs_with_dest = mh_move_msgs_with_dest;
87         folder->copy_msg            = mh_copy_msg;
88         folder->copy_msgs_with_dest = mh_copy_msgs_with_dest;
89         folder->remove_msg          = mh_remove_msg;
90         folder->remove_all_msg      = mh_remove_all_msg;
91         folder->is_msg_changed      = mh_is_msg_changed;
92         folder->scan                = mh_scan_folder;
93         folder->scan_tree           = mh_scan_tree;
94         folder->create_tree         = mh_create_tree;
95         folder->create_folder       = mh_create_folder;
96         folder->rename_folder       = mh_rename_folder;
97         folder->remove_folder       = mh_remove_folder;
98 }
99
100 GSList *mh_get_msg_list(Folder *folder, FolderItem *item, gboolean use_cache)
101 {
102         GSList *mlist;
103         GHashTable *msg_table;
104         gchar *path;
105         struct stat s;
106         gboolean scan_new = TRUE;
107 #ifdef MEASURE_TIME
108         struct timeval tv_before, tv_after, tv_result;
109
110         gettimeofday(&tv_before, NULL);
111 #endif
112
113         g_return_val_if_fail(item != NULL, NULL);
114
115         path = folder_item_get_path(item);
116         if (stat(path, &s) < 0) {
117                 FILE_OP_ERROR(path, "stat");
118         } else {
119                 time_t mtime;
120
121                 mtime = MAX(s.st_mtime, s.st_ctime);
122                 if (item->mtime == mtime) {
123                         debug_print("Folder is not modified.\n");
124                         scan_new = FALSE;
125                 } else
126                         item->mtime = mtime;
127         }
128         g_free(path);
129
130         if (use_cache && !scan_new) {
131                 mlist = procmsg_read_cache(item, FALSE);
132                 if (!mlist)
133                         mlist = mh_get_uncached_msgs(NULL, item);
134         } else if (use_cache) {
135                 GSList *newlist;
136
137                 mlist = procmsg_read_cache(item, TRUE);
138                 msg_table = procmsg_msg_hash_table_create(mlist);
139
140                 newlist = mh_get_uncached_msgs(msg_table, item);
141                 if (msg_table)
142                         g_hash_table_destroy(msg_table);
143
144                 mlist = g_slist_concat(mlist, newlist);
145         } else
146                 mlist = mh_get_uncached_msgs(NULL, item);
147
148         procmsg_set_flags(mlist, item);
149
150 #ifdef MEASURE_TIME
151         gettimeofday(&tv_after, NULL);
152
153         timersub(&tv_after, &tv_before, &tv_result);
154         g_print("mh_get_msg_list: %s: elapsed time: %ld.%06ld sec\n",
155                 item->path, tv_result.tv_sec, tv_result.tv_usec);
156 #endif
157
158         return mlist;
159 }
160
161 gchar *mh_fetch_msg(Folder *folder, FolderItem *item, gint num)
162 {
163         gchar *path;
164         gchar *file;
165
166         g_return_val_if_fail(item != NULL, NULL);
167         g_return_val_if_fail(num > 0 && num <= item->last_num, NULL);
168
169         path = folder_item_get_path(item);
170         file = g_strconcat(path, G_DIR_SEPARATOR_S, itos(num), NULL);
171         g_free(path);
172         if (!is_file_exist(file)) {
173                 g_free(file);
174                 return NULL;
175         }
176
177         return file;
178 }
179
180 gchar *mh_get_newmsg_filename(FolderItem *dest)
181 {
182         gchar *destfile;
183         gchar *destpath;
184         gboolean found = FALSE;
185
186         destpath = folder_item_get_path(dest);
187         g_return_val_if_fail(destpath != NULL, NULL);
188         if (!is_dir_exist(destpath))
189                 make_dir_hier(destpath);
190
191         do {
192                 destfile = g_strdup_printf("%s%c%d", destpath, G_DIR_SEPARATOR,
193                                            dest->last_num + 1);
194                 if(is_file_exist(destfile)) {
195                         dest->last_num++;
196                         g_free(destfile);
197                 } else {
198                         found = TRUE;
199                 }
200         } while(!found);
201         g_free(destpath);
202
203         return destfile;
204 }
205
206 #define SET_DEST_MSG_FLAGS(fp, dest, msginfo) \
207 { \
208         MsgInfo newmsginfo; \
209  \
210         newmsginfo.msgnum = dest->last_num; \
211         newmsginfo.flags = msginfo->flags; \
212         if (dest->stype == F_OUTBOX || \
213             dest->stype == F_QUEUE  || \
214             dest->stype == F_DRAFT  || \
215             dest->stype == F_TRASH) \
216                 MSG_UNSET_PERM_FLAGS(newmsginfo.flags, \
217                                      MSG_NEW|MSG_UNREAD|MSG_DELETED); \
218  \
219         procmsg_write_flags(&newmsginfo, fp); \
220 }
221
222 gint mh_add_msg(Folder *folder, FolderItem *dest, const gchar *file,
223                 gboolean remove_source)
224 {
225         gchar *destfile;
226
227         g_return_val_if_fail(dest != NULL, -1);
228         g_return_val_if_fail(file != NULL, -1);
229
230         if (dest->last_num < 0) {
231                 mh_scan_folder(folder, dest);
232                 if (dest->last_num < 0) return -1;
233         }
234
235         destfile = mh_get_newmsg_filename(dest);
236         if(!destfile) return -1;
237
238         if (link(file, destfile) < 0) {
239                 if (copy_file(file, destfile) < 0) {
240                         g_warning(_("can't copy message %s to %s\n"),
241                                   file, destfile);
242                         g_free(destfile);
243                         return -1;
244                 }
245         }
246
247         if (remove_source) {
248                 if (unlink(file) < 0)
249                         FILE_OP_ERROR(file, "unlink");
250         }
251
252         g_free(destfile);
253         dest->last_num++;
254         return dest->last_num;
255 }
256
257 static gint mh_do_move(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
258 {
259         gchar *destdir;
260         gchar *srcfile;
261         gchar *destfile;
262         FILE *fp;
263         gint filemode = 0;
264         PrefsFolderItem *prefs;
265
266         g_return_val_if_fail(dest != NULL, -1);
267         g_return_val_if_fail(msginfo != NULL, -1);
268
269         if (msginfo->folder == dest) {
270                 g_warning(_("the src folder is identical to the dest.\n"));
271                 return -1;
272         }
273
274         if (dest->last_num < 0) {
275                 mh_scan_folder(folder, dest);
276                 if (dest->last_num < 0) return -1;
277         }
278
279         prefs = dest->prefs;
280
281         destdir = folder_item_get_path(dest);
282
283         debug_print(_("Moving message %s%c%d to %s ...\n"),
284                     msginfo->folder->path, G_DIR_SEPARATOR,
285                     msginfo->msgnum, dest->path);
286         srcfile = procmsg_get_message_file(msginfo);
287
288         destfile = mh_get_newmsg_filename(dest);
289         if(!destfile) return -1;
290
291
292         if (move_file(srcfile, destfile) < 0) {
293                 g_free(srcfile);
294                 g_free(destfile);
295                 g_free(destdir);
296                 return -1;
297         }
298
299         if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
300                 if (chmod(destfile, prefs->folder_chmod) < 0)
301                         FILE_OP_ERROR(destfile, "chmod");
302
303                 /* for mark file */
304                 filemode = prefs->folder_chmod;
305                 if (filemode & S_IRGRP) filemode |= S_IWGRP;
306                 if (filemode & S_IROTH) filemode |= S_IWOTH;
307         }
308
309         g_free(srcfile);
310         g_free(destfile);
311         dest->last_num++;
312
313         if ((fp = procmsg_open_mark_file(destdir, TRUE)) == NULL)
314                 g_warning(_("Can't open mark file.\n"));
315         else {
316                 SET_DEST_MSG_FLAGS(fp, dest, msginfo);
317                 if (filemode) {
318 #if HAVE_FCHMOD
319                         fchmod(fileno(fp), filemode);
320 #else
321                         gchar *markfile;
322
323                         markfile = folder_item_get_mark_file(dest);
324                         if (markfile) {
325                                 chmod(markfile, filemode);
326                                 g_free(markfile);
327                         }
328 #endif
329                 }
330
331                 fclose(fp);
332         }
333         g_free(destdir);
334
335         return dest->last_num;
336 }
337
338 gint mh_move_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
339 {
340         gchar *srcfile;
341         gint ret = 0;
342  
343         g_return_val_if_fail(folder != NULL, -1);
344         g_return_val_if_fail(dest != NULL, -1);
345         g_return_val_if_fail(msginfo != NULL, -1);
346         g_return_val_if_fail(msginfo->folder != NULL, -1);
347  
348         if (folder == msginfo->folder->folder)
349                 return mh_do_move(folder, dest, msginfo);
350  
351         srcfile = procmsg_get_message_file(msginfo);
352         if (!srcfile) return -1;
353  
354         ret = mh_add_msg(folder, dest, srcfile, FALSE);
355         g_free(srcfile);
356  
357         if (ret != -1) {
358                 gchar *destdir;
359                 FILE *fp;
360  
361                 destdir = folder_item_get_path(dest);
362                 if ((fp = procmsg_open_mark_file(destdir, TRUE)) == NULL)
363                         g_warning(_("Can't open mark file.\n"));
364                 else {
365                         SET_DEST_MSG_FLAGS(fp, dest, msginfo);
366                         fclose(fp);
367                 }
368                 g_free(destdir);
369  
370                 ret = folder_item_remove_msg(msginfo->folder, msginfo->msgnum);
371         }
372  
373         return ret;
374 }
375
376 static gint mh_do_move_msgs_with_dest(Folder *folder, FolderItem *dest,
377                                       GSList *msglist)
378 {
379         gchar *destdir;
380         gchar *srcfile;
381         gchar *destfile;
382         FILE *fp;
383         GSList *cur;
384         MsgInfo *msginfo;
385         PrefsFolderItem *prefs;
386
387         g_return_val_if_fail(dest != NULL, -1);
388         g_return_val_if_fail(msglist != NULL, -1);
389
390         if (dest->last_num < 0) {
391                 mh_scan_folder(folder, dest);
392                 if (dest->last_num < 0) return -1;
393         }
394
395         prefs = dest->prefs;
396
397         destdir = folder_item_get_path(dest);
398         if ((fp = procmsg_open_mark_file(destdir, TRUE)) == NULL)
399                 g_warning(_("Can't open mark file.\n"));
400
401         for (cur = msglist; cur != NULL; cur = cur->next) {
402                 msginfo = (MsgInfo *)cur->data;
403
404                 if (msginfo->folder == dest) {
405                         g_warning(_("the src folder is identical to the dest.\n"));
406                         continue;
407                 }
408                 debug_print(_("Moving message %s%c%d to %s ...\n"),
409                             msginfo->folder->path, G_DIR_SEPARATOR,
410                             msginfo->msgnum, dest->path);
411
412                 srcfile = procmsg_get_message_file(msginfo);
413                 destfile = mh_get_newmsg_filename(dest);
414                 if(!destfile) return -1;
415
416                 if (move_file(srcfile, destfile) < 0) {
417                         g_free(srcfile);
418                         g_free(destfile);
419                         break;
420                 }
421
422                 g_free(srcfile);
423                 g_free(destfile);
424                 dest->last_num++;
425
426                 if (fp) {
427                         SET_DEST_MSG_FLAGS(fp, dest, msginfo);
428                 }
429         }
430
431         g_free(destdir);
432         if (fp) fclose(fp);
433
434         return dest->last_num;
435 }
436
437 gint mh_move_msgs_with_dest(Folder *folder, FolderItem *dest, GSList *msglist)
438 {
439         MsgInfo *msginfo;
440         GSList *cur;
441         gint ret = 0;
442
443         msginfo = (MsgInfo *)msglist->data;
444         if (folder == msginfo->folder->folder)
445                 return mh_do_move_msgs_with_dest(folder, dest, msglist);
446
447         for (cur = msglist; cur != NULL; cur = cur->next) {
448                 msginfo = (MsgInfo *)cur->data;
449                 ret = mh_move_msg(folder, dest, msginfo);
450                 if (ret == -1) break;
451         }
452
453         return ret;
454 }
455
456 gint mh_copy_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
457 {
458         gchar *destdir;
459         gchar *srcfile;
460         gchar *destfile;
461         FILE *fp;
462         gint filemode = 0;
463         PrefsFolderItem *prefs;
464
465         g_return_val_if_fail(dest != NULL, -1);
466         g_return_val_if_fail(msginfo != NULL, -1);
467
468         if (msginfo->folder == dest) {
469                 g_warning(_("the src folder is identical to the dest.\n"));
470                 return -1;
471         }
472
473         if (dest->last_num < 0) {
474                 mh_scan_folder(folder, dest);
475                 if (dest->last_num < 0) return -1;
476         }
477
478         prefs = dest->prefs;
479
480         destdir = folder_item_get_path(dest);
481         if (!is_dir_exist(destdir))
482                 make_dir_hier(destdir);
483
484         debug_print(_("Copying message %s%c%d to %s ...\n"),
485                     msginfo->folder->path, G_DIR_SEPARATOR,
486                     msginfo->msgnum, dest->path);
487         srcfile = procmsg_get_message_file(msginfo);
488         destfile = mh_get_newmsg_filename(dest);
489         if(!destfile) {
490                 g_free(srcfile);
491                 if (fp) fclose(fp);
492                 return -1;
493         }
494         
495         dest->op_count--;
496
497         if (copy_file(srcfile, destfile) < 0) {
498                 FILE_OP_ERROR(srcfile, "copy");
499                 g_free(srcfile);
500                 g_free(destfile);
501                 g_free(destdir);
502                 return -1;
503         }
504
505         if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
506                 if (chmod(destfile, prefs->folder_chmod) < 0)
507                         FILE_OP_ERROR(destfile, "chmod");
508
509                 /* for mark file */
510                 filemode = prefs->folder_chmod;
511                 if (filemode & S_IRGRP) filemode |= S_IWGRP;
512                 if (filemode & S_IROTH) filemode |= S_IWOTH;
513         }
514
515         g_free(srcfile);
516         g_free(destfile);
517         dest->last_num++;
518
519         if ((fp = procmsg_open_mark_file(destdir, TRUE)) == NULL)
520                 g_warning(_("Can't open mark file.\n"));
521         else {
522                 SET_DEST_MSG_FLAGS(fp, dest, msginfo);
523
524                 if (filemode) {
525 #if HAVE_FCHMOD
526                         fchmod(fileno(fp), filemode);
527 #else
528                         gchar *markfile;
529
530                         markfile = folder_item_get_mark_file(dest);
531                         if (markfile) {
532                                 chmod(markfile, filemode);
533                                 g_free(markfile);
534                         }
535 #endif
536                 }
537
538                 fclose(fp);
539         }
540         g_free(destdir);
541
542         return dest->last_num;
543 }
544
545 /*
546 gint mh_copy_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
547 {
548         Folder * src_folder;
549         gchar * filename;
550         gint num;
551         gchar * destdir;
552         FILE * fp;
553
554         src_folder = msginfo->folder->folder;
555         
556         g_return_val_if_fail(src_folder->fetch_msg != NULL, -1);
557         
558         filename = src_folder->fetch_msg(src_folder,
559                                          msginfo->folder,
560                                          msginfo->msgnum);
561         if (filename == NULL)
562                 return -1;
563
564         num = folder->add_msg(folder, dest, filename, FALSE);
565
566         destdir = folder_item_get_path(dest);
567
568         if (fp) {
569                 MsgInfo newmsginfo;
570
571                 newmsginfo.msgnum = dest->last_num;
572                 newmsginfo.flags = msginfo->flags;
573                 if (dest->stype == F_OUTBOX ||
574                     dest->stype == F_QUEUE  ||
575                     dest->stype == F_DRAFT  ||
576                     dest->stype == F_TRASH)
577                         MSG_UNSET_FLAGS(newmsginfo.flags,
578                                         MSG_NEW|MSG_UNREAD|MSG_DELETED);
579
580                 procmsg_write_flags(&newmsginfo, fp);
581                 fclose(fp);
582         }
583         
584         return num;
585 }
586 */
587
588 gint mh_copy_msgs_with_dest(Folder *folder, FolderItem *dest, GSList *msglist)
589 {
590         gchar *destdir;
591         gchar *srcfile;
592         gchar *destfile;
593         FILE *fp;
594         GSList *cur;
595         MsgInfo *msginfo;
596
597         g_return_val_if_fail(dest != NULL, -1);
598         g_return_val_if_fail(msglist != NULL, -1);
599
600         if (dest->last_num < 0) {
601                 mh_scan_folder(folder, dest);
602                 if (dest->last_num < 0) return -1;
603         }
604
605         destdir = folder_item_get_path(dest);
606         if (!is_dir_exist(destdir))
607                 make_dir_hier(destdir);
608
609         if ((fp = procmsg_open_mark_file(destdir, TRUE)) == NULL)
610                 g_warning(_("Can't open mark file.\n"));
611
612         for (cur = msglist; cur != NULL; cur = cur->next) {
613                 msginfo = (MsgInfo *)cur->data;
614
615                 if (msginfo->folder == dest) {
616                         g_warning(_("the src folder is identical to the dest.\n"));
617                         continue;
618                 }
619                 debug_print(_("Copying message %s%c%d to %s ...\n"),
620                             msginfo->folder->path, G_DIR_SEPARATOR,
621                             msginfo->msgnum, dest->path);
622
623                 srcfile = procmsg_get_message_file(msginfo);
624                 destfile = mh_get_newmsg_filename(dest);
625                 if(!destfile) {
626                         g_free(srcfile);
627                         break;
628                 }
629
630                 if (copy_file(srcfile, destfile) < 0) {
631                         FILE_OP_ERROR(srcfile, "copy");
632                         g_free(srcfile);
633                         g_free(destfile);
634                         break;
635                 }
636
637                 g_free(srcfile);
638                 g_free(destfile);
639                 dest->last_num++;
640
641                 if (fp) {
642                         SET_DEST_MSG_FLAGS(fp, dest, msginfo);
643                 }
644         }
645
646         g_free(destdir);
647         if (fp) fclose(fp);
648
649         return dest->last_num;
650 }
651
652 gint mh_remove_msg(Folder *folder, FolderItem *item, gint num)
653 {
654         gchar *file;
655
656         g_return_val_if_fail(item != NULL, -1);
657
658         file = mh_fetch_msg(folder, item, num);
659         g_return_val_if_fail(file != NULL, -1);
660
661         if (unlink(file) < 0) {
662                 FILE_OP_ERROR(file, "unlink");
663                 g_free(file);
664                 return -1;
665         }
666
667         g_free(file);
668         return 0;
669 }
670
671 gint mh_remove_all_msg(Folder *folder, FolderItem *item)
672 {
673         gchar *path;
674         gint val;
675
676         g_return_val_if_fail(item != NULL, -1);
677
678         path = folder_item_get_path(item);
679         g_return_val_if_fail(path != NULL, -1);
680         val = remove_all_numbered_files(path);
681         g_free(path);
682
683         return val;
684 }
685
686 gboolean mh_is_msg_changed(Folder *folder, FolderItem *item, MsgInfo *msginfo)
687 {
688         struct stat s;
689
690         if (stat(itos(msginfo->msgnum), &s) < 0 ||
691             msginfo->size  != s.st_size ||
692             msginfo->mtime != s.st_mtime)
693                 return TRUE;
694
695         return FALSE;
696 }
697
698 gint mh_scan_folder(Folder *folder, FolderItem *item)
699 {
700         gchar *path;
701         DIR *dp;
702         struct dirent *d;
703         struct stat s;
704         gint max = 0;
705         gint num;
706         gint n_msg = 0;
707
708         g_return_val_if_fail(item != NULL, -1);
709
710         debug_print("mh_scan_folder(): Scanning %s ...\n", item->path);
711
712         path = folder_item_get_path(item);
713         g_return_val_if_fail(path != NULL, -1);
714         if (change_dir(path) < 0) {
715                 g_free(path);
716                 return -1;
717         }
718         g_free(path);
719
720         if ((dp = opendir(".")) == NULL) {
721                 FILE_OP_ERROR(item->path, "opendir");
722                 return -1;
723         }
724
725         if (folder->ui_func)
726                 folder->ui_func(folder, item, folder->ui_func_data);
727
728         while ((d = readdir(dp)) != NULL) {
729                 if ((num = to_number(d->d_name)) >= 0 &&
730                     stat(d->d_name, &s) == 0 &&
731                     S_ISREG(s.st_mode)) {
732                         n_msg++;
733                         if (max < num)
734                                 max = num;
735                 }
736         }
737
738         closedir(dp);
739
740         if (n_msg == 0)
741                 item->new = item->unread = item->total = 0;
742         else {
743                 gint new, unread, total, min, max;
744
745                 procmsg_get_mark_sum(".", &new, &unread, &total, &min, &max, 0);
746                 if (n_msg > total) {
747                         new += n_msg - total;
748                         unread += n_msg - total;
749                 }
750                 item->new = new;
751                 item->unread = unread;
752                 item->total = n_msg;
753         }
754
755         debug_print(_("Last number in dir %s = %d\n"), item->path, max);
756         item->last_num = max;
757
758         return 0;
759 }
760
761 void mh_scan_tree(Folder *folder)
762 {
763         FolderItem *item;
764         gchar *rootpath;
765         GHashTable *pptable;
766
767         g_return_if_fail(folder != NULL);
768
769         pptable = folder_persist_prefs_new(folder);
770
771         prefs_scoring_clear();
772         prefs_filtering_clear();
773         folder_tree_destroy(folder);
774         item = folder_item_new(folder->name, NULL);
775         item->folder = folder;
776         folder->node = g_node_new(item);
777
778         rootpath = folder_item_get_path(item);
779         if (change_dir(rootpath) < 0) {
780                 g_free(rootpath);
781                 return;
782         }
783         g_free(rootpath);
784
785         mh_create_tree(folder);
786         mh_scan_tree_recursive(item, pptable);
787         
788         folder_persist_prefs_free(pptable);
789
790         prefs_matcher_read_config();
791 }
792
793 #define MAKE_DIR_IF_NOT_EXIST(dir) \
794 { \
795         if (!is_dir_exist(dir)) { \
796                 if (is_file_exist(dir)) { \
797                         g_warning(_("File `%s' already exists.\n" \
798                                     "Can't create folder."), dir); \
799                         return -1; \
800                 } \
801                 if (mkdir(dir, S_IRWXU) < 0) { \
802                         FILE_OP_ERROR(dir, "mkdir"); \
803                         return -1; \
804                 } \
805                 if (chmod(dir, S_IRWXU) < 0) \
806                         FILE_OP_ERROR(dir, "chmod"); \
807         } \
808 }
809
810 gint mh_create_tree(Folder *folder)
811 {
812         gchar *rootpath;
813
814         g_return_val_if_fail(folder != NULL, -1);
815
816         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), -1);
817         rootpath = LOCAL_FOLDER(folder)->rootpath;
818         MAKE_DIR_IF_NOT_EXIST(rootpath);
819         CHDIR_RETURN_VAL_IF_FAIL(rootpath, -1);
820         MAKE_DIR_IF_NOT_EXIST(INBOX_DIR);
821         MAKE_DIR_IF_NOT_EXIST(OUTBOX_DIR);
822         MAKE_DIR_IF_NOT_EXIST(QUEUE_DIR);
823         MAKE_DIR_IF_NOT_EXIST(DRAFT_DIR);
824         MAKE_DIR_IF_NOT_EXIST(TRASH_DIR);
825
826         return 0;
827 }
828
829 #undef MAKE_DIR_IF_NOT_EXIST
830
831 FolderItem *mh_create_folder(Folder *folder, FolderItem *parent,
832                              const gchar *name)
833 {
834         gchar *path;
835         gchar *fullpath;
836         FolderItem *new_item;
837
838         g_return_val_if_fail(folder != NULL, NULL);
839         g_return_val_if_fail(parent != NULL, NULL);
840         g_return_val_if_fail(name != NULL, NULL);
841
842         path = folder_item_get_path(parent);
843         if (!is_dir_exist(path))
844                 make_dir_hier(path);
845
846         fullpath = g_strconcat(path, G_DIR_SEPARATOR_S, name, NULL);
847         g_free(path);
848
849         if (mkdir(fullpath, S_IRWXU) < 0) {
850                 FILE_OP_ERROR(fullpath, "mkdir");
851                 g_free(fullpath);
852                 return NULL;
853         }
854         if (chmod(fullpath, S_IRWXU) < 0)
855                 FILE_OP_ERROR(fullpath, "chmod");
856
857         g_free(fullpath);
858
859         if (parent->path)
860                 path = g_strconcat(parent->path, G_DIR_SEPARATOR_S, name,
861                                    NULL);
862         else
863                 path = g_strdup(name);
864         new_item = folder_item_new(name, path);
865         folder_item_append(parent, new_item);
866         g_free(path);
867
868         return new_item;
869 }
870
871 gint mh_rename_folder(Folder *folder, FolderItem *item, const gchar *name)
872 {
873         gchar *oldpath;
874         gchar *dirname;
875         gchar *newpath;
876         GNode *node;
877         gchar *paths[2];
878
879         g_return_val_if_fail(folder != NULL, -1);
880         g_return_val_if_fail(item != NULL, -1);
881         g_return_val_if_fail(item->path != NULL, -1);
882         g_return_val_if_fail(name != NULL, -1);
883
884         oldpath = folder_item_get_path(item);
885         if (!is_dir_exist(oldpath))
886                 make_dir_hier(oldpath);
887
888         dirname = g_dirname(oldpath);
889         newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S, name, NULL);
890         g_free(dirname);
891
892         if (rename(oldpath, newpath) < 0) {
893                 FILE_OP_ERROR(oldpath, "rename");
894                 g_free(oldpath);
895                 g_free(newpath);
896                 return -1;
897         }
898
899         g_free(oldpath);
900         g_free(newpath);
901
902         if (strchr(item->path, G_DIR_SEPARATOR) != NULL) {
903                 dirname = g_dirname(item->path);
904                 newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S, name, NULL);
905                 g_free(dirname);
906         } else
907                 newpath = g_strdup(name);
908
909         g_free(item->name);
910         item->name = g_strdup(name);
911
912         node = g_node_find(item->folder->node, G_PRE_ORDER, G_TRAVERSE_ALL,
913                            item);
914         paths[0] = g_strdup(item->path);
915         paths[1] = newpath;
916         g_node_traverse(node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
917                         mh_rename_folder_func, paths);
918
919         g_free(paths[0]);
920         g_free(paths[1]);
921         return 0;
922 }
923
924 gint mh_remove_folder(Folder *folder, FolderItem *item)
925 {
926         gchar *path;
927
928         g_return_val_if_fail(folder != NULL, -1);
929         g_return_val_if_fail(item != NULL, -1);
930         g_return_val_if_fail(item->path != NULL, -1);
931
932         path = folder_item_get_path(item);
933         if (remove_dir_recursive(path) < 0) {
934                 g_warning("can't remove directory `%s'\n", path);
935                 g_free(path);
936                 return -1;
937         }
938
939         g_free(path);
940         folder_item_remove(item);
941         return 0;
942 }
943
944
945 static GSList *mh_get_uncached_msgs(GHashTable *msg_table, FolderItem *item)
946 {
947         gchar *path;
948         DIR *dp;
949         struct dirent *d;
950         struct stat s;
951         GSList *newlist = NULL;
952         GSList *last = NULL;
953         MsgInfo *msginfo;
954         gint n_newmsg = 0;
955         gint num;
956
957         g_return_val_if_fail(item != NULL, NULL);
958
959         path = folder_item_get_path(item);
960         g_return_val_if_fail(path != NULL, NULL);
961         if (change_dir(path) < 0) {
962                 g_free(path);
963                 return NULL;
964         }
965         g_free(path);
966
967         if ((dp = opendir(".")) == NULL) {
968                 FILE_OP_ERROR(item->path, "opendir");
969                 return NULL;
970         }
971
972         debug_print(_("\tSearching uncached messages... "));
973
974         if (msg_table) {
975                 while ((d = readdir(dp)) != NULL) {
976                         if ((num = to_number(d->d_name)) < 0) continue;
977                         if (stat(d->d_name, &s) < 0) {
978                                 FILE_OP_ERROR(d->d_name, "stat");
979                                 continue;
980                         }
981                         if (!S_ISREG(s.st_mode)) continue;
982
983                         msginfo = g_hash_table_lookup
984                                 (msg_table, GUINT_TO_POINTER(num));
985
986                         if (!msginfo) {
987                                 /* not found in the cache (uncached message) */
988                                 msginfo = mh_parse_msg(d->d_name, item);
989                                 if (!msginfo) continue;
990
991                                 if (!newlist)
992                                         last = newlist =
993                                                 g_slist_append(NULL, msginfo);
994                                 else {
995                                         last = g_slist_append(last, msginfo);
996                                         last = last->next;
997                                 }
998                                 n_newmsg++;
999                         }
1000                 }
1001         } else {
1002                 /* discard all previous cache */
1003                 while ((d = readdir(dp)) != NULL) {
1004                         if (to_number(d->d_name) < 0) continue;
1005                         if (stat(d->d_name, &s) < 0) {
1006                                 FILE_OP_ERROR(d->d_name, "stat");
1007                                 continue;
1008                         }
1009                         if (!S_ISREG(s.st_mode)) continue;
1010
1011                         msginfo = mh_parse_msg(d->d_name, item);
1012                         if (!msginfo) continue;
1013
1014                         if (!newlist)
1015                                 last = newlist = g_slist_append(NULL, msginfo);
1016                         else {
1017                                 last = g_slist_append(last, msginfo);
1018                                 last = last->next;
1019                         }
1020                         n_newmsg++;
1021                 }
1022         }
1023
1024         closedir(dp);
1025
1026         if (n_newmsg)
1027                 debug_print(_("%d uncached message(s) found.\n"), n_newmsg);
1028         else
1029                 debug_print(_("done.\n"));
1030
1031         /* sort new messages in numerical order */
1032         if (newlist) {
1033                 debug_print(_("\tSorting uncached messages in numerical order... "));
1034                 newlist = g_slist_sort
1035                         (newlist, (GCompareFunc)procmsg_cmp_msgnum_for_sort);
1036                 debug_print(_("done.\n"));
1037         }
1038
1039         return newlist;
1040 }
1041
1042 static MsgInfo *mh_parse_msg(const gchar *file, FolderItem *item)
1043 {
1044         struct stat s;
1045         MsgInfo *msginfo;
1046         MsgFlags flags;
1047
1048         flags.perm_flags = MSG_NEW|MSG_UNREAD;
1049         flags.tmp_flags = 0;
1050
1051         g_return_val_if_fail(item != NULL, NULL);
1052         g_return_val_if_fail(file != NULL, NULL);
1053
1054         if (item->stype == F_QUEUE) {
1055                 MSG_SET_TMP_FLAGS(flags, MSG_QUEUED);
1056         } else if (item->stype == F_DRAFT) {
1057                 MSG_SET_TMP_FLAGS(flags, MSG_DRAFT);
1058         }
1059
1060         msginfo = procheader_parse(file, flags, FALSE, FALSE);
1061         if (!msginfo) return NULL;
1062
1063         msginfo->msgnum = atoi(file);
1064         msginfo->folder = item;
1065
1066         if (stat(file, &s) < 0) {
1067                 FILE_OP_ERROR(file, "stat");
1068                 msginfo->size = 0;
1069                 msginfo->mtime = 0;
1070         } else {
1071                 msginfo->size = s.st_size;
1072                 msginfo->mtime = s.st_mtime;
1073         }
1074
1075         return msginfo;
1076 }
1077
1078 static gboolean mh_is_maildir_one(const gchar *path, const gchar *dir)
1079 {
1080         gchar *entry;
1081         gboolean result;
1082
1083         entry = g_strconcat(path, G_DIR_SEPARATOR_S, dir, NULL);
1084         result = is_dir_exist(entry);
1085         g_free(entry);
1086
1087         return result;
1088 }
1089
1090 /*
1091  * check whether PATH is a Maildir style mailbox.
1092  * This is the case if the 3 subdir: new, cur, tmp are existing.
1093  * This functon assumes that entry is an directory
1094  */
1095 static gboolean mh_is_maildir(const gchar *path)
1096 {
1097         return mh_is_maildir_one(path, "new") &&
1098                mh_is_maildir_one(path, "cur") &&
1099                mh_is_maildir_one(path, "tmp");
1100 }
1101
1102 static void mh_scan_tree_recursive(FolderItem *item, GHashTable *pptable)
1103 {
1104         DIR *dp;
1105         struct dirent *d;
1106         struct stat s;
1107         gchar *entry;
1108         gint n_msg = 0;
1109
1110         g_return_if_fail(item != NULL);
1111         g_return_if_fail(item->folder != NULL);
1112
1113         dp = opendir(item->path ? item->path : ".");
1114         if (!dp) {
1115                 FILE_OP_ERROR(item->path ? item->path : ".", "opendir");
1116                 return;
1117         }
1118
1119         debug_print("scanning %s ...\n",
1120                     item->path ? item->path
1121                     : LOCAL_FOLDER(item->folder)->rootpath);
1122         if (item->folder->ui_func)
1123                 item->folder->ui_func(item->folder, item,
1124                                       item->folder->ui_func_data);
1125
1126         while ((d = readdir(dp)) != NULL) {
1127                 if (d->d_name[0] == '.') continue;
1128
1129                 if (item->path)
1130                         entry = g_strconcat(item->path, G_DIR_SEPARATOR_S,
1131                                             d->d_name, NULL);
1132                 else
1133                         entry = g_strdup(d->d_name);
1134
1135                 if (stat(entry, &s) < 0) {
1136                         FILE_OP_ERROR(entry, "stat");
1137                         g_free(entry);
1138                         continue;
1139                 }
1140
1141                 if (S_ISDIR(s.st_mode)) {
1142                         FolderItem *new_item;
1143
1144                         if (mh_is_maildir(entry)) {
1145                                 g_free(entry);
1146                                 continue;
1147                         }
1148
1149                         new_item = folder_item_new(d->d_name, entry);
1150                         folder_item_append(item, new_item);
1151                         if (!item->path) {
1152                                 if (!strcmp(d->d_name, INBOX_DIR)) {
1153                                         new_item->stype = F_INBOX;
1154                                         item->folder->inbox = new_item;
1155                                 } else if (!strcmp(d->d_name, OUTBOX_DIR)) {
1156                                         new_item->stype = F_OUTBOX;
1157                                         item->folder->outbox = new_item;
1158                                 } else if (!strcmp(d->d_name, DRAFT_DIR)) {
1159                                         new_item->stype = F_DRAFT;
1160                                         item->folder->draft = new_item;
1161                                 } else if (!strcmp(d->d_name, QUEUE_DIR)) {
1162                                         new_item->stype = F_QUEUE;
1163                                         item->folder->queue = new_item;
1164                                 } else if (!strcmp(d->d_name, TRASH_DIR)) {
1165                                         new_item->stype = F_TRASH;
1166                                         item->folder->trash = new_item;
1167                                 }
1168                         }
1169                         folder_item_restore_persist_prefs(new_item, pptable);
1170                         mh_scan_tree_recursive(new_item, pptable);
1171                 } else if (to_number(d->d_name) != -1) n_msg++;
1172
1173                 g_free(entry);
1174         }
1175
1176         closedir(dp);
1177
1178         if (item->path) {
1179                 gint new, unread, total, min, max;
1180
1181                 procmsg_get_mark_sum(item->path, &new, &unread, &total,
1182                                      &min, &max, 0);
1183                 if (n_msg > total) {
1184                         new += n_msg - total;
1185                         unread += n_msg - total;
1186                 }
1187                 item->new = new;
1188                 item->unread = unread;
1189                 item->total = n_msg;
1190         }
1191 }
1192
1193 static gboolean mh_rename_folder_func(GNode *node, gpointer data)
1194 {
1195         FolderItem *item = node->data;
1196         gchar **paths = data;
1197         const gchar *oldpath = paths[0];
1198         const gchar *newpath = paths[1];
1199         gchar *base;
1200         gchar *new_itempath;
1201         gint oldpathlen;
1202
1203         oldpathlen = strlen(oldpath);
1204         if (strncmp(oldpath, item->path, oldpathlen) != 0) {
1205                 g_warning("path doesn't match: %s, %s\n", oldpath, item->path);
1206                 return TRUE;
1207         }
1208
1209         base = item->path + oldpathlen;
1210         while (*base == G_DIR_SEPARATOR) base++;
1211         if (*base == '\0')
1212                 new_itempath = g_strdup(newpath);
1213         else
1214                 new_itempath = g_strconcat(newpath, G_DIR_SEPARATOR_S, base,
1215                                            NULL);
1216         g_free(item->path);
1217         item->path = new_itempath;
1218
1219         return FALSE;
1220 }