d1ac5cd34a230b3248f34f75a71a1076a90fbb00
[claws.git] / src / procmsg.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 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 #ifndef __PROCMSG_H__
21 #define __PROCMSG_H__
22
23 #include <glib.h>
24 #include <stdio.h>
25 #include <time.h>
26 #include <sys/types.h>
27 #include <string.h>
28
29 typedef struct _MsgInfo         MsgInfo;
30
31 #include "folder.h"
32
33 typedef enum
34 {
35         /* permanent flags (0x0000ffff) */
36         MSG_NEW         = 1 << 0,
37         MSG_UNREAD      = 1 << 1,
38         MSG_MARKED      = 1 << 2,
39         MSG_DELETED     = 1 << 3,
40         MSG_REPLIED     = 1 << 4,
41         MSG_FORWARDED   = 1 << 5,
42
43         /* temporary flags (0xffff0000) */
44         MSG_MOVE        = 1 << 16,
45         MSG_COPY        = 1 << 17,
46
47         MSG_QUEUED      = 1 << 25,
48         MSG_DRAFT       = 1 << 26,
49         MSG_ENCRYPTED   = 1 << 27,
50         MSG_IMAP        = 1 << 28,
51         MSG_MIME        = 1 << 29,
52         MSG_NEWS        = 1 << 30,
53         MSG_CACHED      = 1 << 31
54 } MsgFlags;
55
56 #define MSG_PERMANENT_FLAG_MASK         (MSG_NEW       | \
57                                          MSG_UNREAD    | \
58                                          MSG_MARKED    | \
59                                          MSG_DELETED   | \
60                                          MSG_REPLIED   | \
61                                          MSG_FORWARDED)
62 #define MSG_CACHED_FLAG_MASK            (MSG_MIME)
63
64 #define MSG_SET_FLAGS(msg, flags)       { (msg) |= (flags); }
65 #define MSG_UNSET_FLAGS(msg, flags)     { (msg) &= ~(flags); }
66 #define MSG_IS_NEW(msg)                 ((msg & MSG_NEW) != 0)
67 #define MSG_IS_UNREAD(msg)              ((msg & MSG_UNREAD) != 0)
68 #define MSG_IS_MARKED(msg)              ((msg & MSG_MARKED) != 0)
69 #define MSG_IS_DELETED(msg)             ((msg & MSG_DELETED) != 0)
70 #define MSG_IS_REPLIED(msg)             ((msg & MSG_REPLIED) != 0)
71 #define MSG_IS_FORWARDED(msg)           ((msg & MSG_FORWARDED) != 0)
72
73 #define MSG_IS_MOVE(msg)                ((msg & MSG_MOVE) != 0)
74 #define MSG_IS_COPY(msg)                ((msg & MSG_COPY) != 0)
75
76 #define MSG_IS_QUEUED(msg)              ((msg & MSG_QUEUED) != 0)
77 #define MSG_IS_DRAFT(msg)               ((msg & MSG_DRAFT) != 0)
78 #define MSG_IS_ENCRYPTED(msg)           ((msg & MSG_ENCRYPTED) != 0)
79 #define MSG_IS_IMAP(msg)                ((msg & MSG_IMAP) != 0)
80 #define MSG_IS_MIME(msg)                ((msg & MSG_MIME) != 0)
81 #define MSG_IS_NEWS(msg)                ((msg & MSG_NEWS) != 0)
82 #define MSG_IS_CACHED(msg)              ((msg & MSG_CACHED) != 0)
83
84 #define WRITE_CACHE_DATA_INT(n, fp) \
85         fwrite(&n, sizeof(n), 1, fp)
86
87 #define WRITE_CACHE_DATA(data, fp) \
88 { \
89         gint len; \
90  \
91         if (data == NULL || (len = strlen(data)) == 0) { \
92                 len = 0; \
93                 WRITE_CACHE_DATA_INT(len, fp); \
94         } else { \
95                 len = strlen(data); \
96                 WRITE_CACHE_DATA_INT(len, fp); \
97                 fwrite(data, len, 1, fp); \
98         } \
99 }
100
101 struct _MsgInfo
102 {
103         guint  msgnum;
104         off_t  size;
105         time_t mtime;
106         time_t date_t;
107         MsgFlags flags;
108
109         gchar *fromname;
110
111         gchar *date;
112         gchar *from;
113         gchar *to;
114         gchar *newsgroups;
115         gchar *subject;
116         gchar *msgid;
117         gchar *inreplyto;
118         gchar *cc;
119
120         FolderItem *folder;
121         FolderItem *to_folder;
122
123         gchar *xface;
124
125         gchar *dispositionnotificationto;
126         gchar *returnreceiptto;
127
128         gchar *references;
129
130         gint score;
131         gint threadscore;
132
133         /* used only for encrypted messages */
134         gchar *plaintext_file;
135         guint decryption_failed : 1;
136 };
137
138 GHashTable *procmsg_msg_hash_table_create       (GSList         *mlist);
139 void procmsg_msg_hash_table_append              (GHashTable     *msg_table,
140                                                  GSList         *mlist);
141 GHashTable *procmsg_to_folder_hash_table_create (GSList         *mlist);
142
143 GSList *procmsg_read_cache              (FolderItem     *item,
144                                          gboolean        scan_file);
145 void    procmsg_set_flags               (GSList         *mlist,
146                                          FolderItem     *item);
147 gint    procmsg_get_last_num_in_cache   (GSList         *mlist);
148 void    procmsg_write_cache             (MsgInfo        *msginfo,
149                                          FILE           *fp);
150 void    procmsg_write_flags             (MsgInfo        *msginfo,
151                                          FILE           *fp);
152 void    procmsg_get_mark_sum            (const gchar    *folder,
153                                          gint           *new,
154                                          gint           *unread,
155                                          gint           *total);
156 FILE   *procmsg_open_mark_file          (const gchar    *folder,
157                                          gboolean        append);
158
159 void    procmsg_move_messages           (GSList         *mlist);
160 void    procmsg_copy_messages           (GSList         *mlist);
161
162 gchar  *procmsg_get_message_file_path   (MsgInfo        *msginfo);
163 gchar  *procmsg_get_message_file        (MsgInfo        *msginfo);
164 FILE   *procmsg_open_message            (MsgInfo        *msginfo);
165 gboolean procmsg_msg_exist              (MsgInfo        *msginfo);
166
167 void    procmsg_empty_trash             (void);
168 gint    procmsg_send_queue              (void);
169 void    procmsg_print_message           (MsgInfo        *msginfo,
170                                          const gchar    *cmdline);
171
172 MsgInfo *procmsg_msginfo_copy           (MsgInfo        *msginfo);
173 void     procmsg_msginfo_free           (MsgInfo        *msginfo);
174
175 gint procmsg_cmp_msgnum_for_sort        (gconstpointer   a,
176                                          gconstpointer   b);
177
178 #endif /* __PROCMSG_H__ */