better support for mime/digest
[claws.git] / src / utils.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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 __UTILS_H__
21 #define __UTILS_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <sys/types.h>
33 #include <time.h>
34 #if HAVE_ALLOCA_H
35 #  include <alloca.h>
36 #endif
37 #if HAVE_WCHAR_H
38 #  include <wchar.h>
39 #endif
40
41 /* The AC_CHECK_SIZEOF() in configure fails for some machines.
42  * we provide some fallback values here */
43 #if !SIZEOF_UNSIGNED_SHORT
44   #undef SIZEOF_UNSIGNED_SHORT
45   #define SIZEOF_UNSIGNED_SHORT 2
46 #endif
47 #if !SIZEOF_UNSIGNED_INT
48   #undef SIZEOF_UNSIGNED_INT
49   #define SIZEOF_UNSIGNED_INT 4
50 #endif
51 #if !SIZEOF_UNSIGNED_LONG
52   #undef SIZEOF_UNSIGNED_LONG
53   #define SIZEOF_UNSIGNED_LONG 4
54 #endif
55
56 #ifndef HAVE_U32_TYPEDEF
57   #undef u32        /* maybe there is a macro with this name */
58   typedef guint32 u32;
59   #define HAVE_U32_TYPEDEF
60 #endif
61
62 #ifndef BIG_ENDIAN_HOST
63   #if (G_BYTE_ORDER == G_BIG_ENDIAN)
64     #define BIG_ENDIAN_HOST 1
65   #endif
66 #endif
67
68 #define CHDIR_RETURN_IF_FAIL(dir) \
69 { \
70         if (change_dir(dir) < 0) return; \
71 }
72
73 #define CHDIR_RETURN_VAL_IF_FAIL(dir, val) \
74 { \
75         if (change_dir(dir) < 0) return val; \
76 }
77
78 #define Xalloca(ptr, size, iffail) \
79 { \
80         if ((ptr = alloca(size)) == NULL) { \
81                 g_warning("can't allocate memory\n"); \
82                 iffail; \
83         } \
84 }
85
86 #define Xstrdup_a(ptr, str, iffail) \
87 { \
88         gchar *__tmp; \
89  \
90         if ((__tmp = alloca(strlen(str) + 1)) == NULL) { \
91                 g_warning("can't allocate memory\n"); \
92                 iffail; \
93         } else \
94                 strcpy(__tmp, str); \
95  \
96         ptr = __tmp; \
97 }
98
99 #define Xstrndup_a(ptr, str, len, iffail) \
100 { \
101         gchar *__tmp; \
102  \
103         if ((__tmp = alloca(len + 1)) == NULL) { \
104                 g_warning("can't allocate memory\n"); \
105                 iffail; \
106         } else { \
107                 strncpy(__tmp, str, len); \
108                 __tmp[len] = '\0'; \
109         } \
110  \
111         ptr = __tmp; \
112 }
113
114 #define Xstrcat_a(ptr, str1, str2, iffail) \
115 { \
116         gchar *__tmp; \
117         gint len1, len2; \
118  \
119         len1 = strlen(str1); \
120         len2 = strlen(str2); \
121         if ((__tmp = alloca(len1 + len2 + 1)) == NULL) { \
122                 g_warning("can't allocate memory\n"); \
123                 iffail; \
124         } else { \
125                 memcpy(__tmp, str1, len1); \
126                 memcpy(__tmp + len1, str2, len2 + 1); \
127         } \
128  \
129         ptr = __tmp; \
130 }
131
132 #define FILE_OP_ERROR(file, func) \
133 { \
134         fprintf(stderr, "%s: ", file); \
135         perror(func); \
136 }
137
138 #define debug_print \
139         debug_print_real(__FILE__ ":%d:", __LINE__), \
140         debug_print_real
141
142 /* for macro expansion */
143 #define Str(x)  #x
144 #define Xstr(x) Str(x)
145
146 void list_free_strings          (GList          *list);
147 void slist_free_strings         (GSList         *list);
148
149 void hash_free_strings          (GHashTable     *table);
150 void hash_free_value_mem        (GHashTable     *table);
151
152 void ptr_array_free_strings     (GPtrArray      *array);
153
154 /* number-string conversion */
155 gint to_number                  (const gchar *nstr);
156 gchar *itos_buf                 (gchar       *nstr,
157                                  gint         n);
158 gchar *itos                     (gint         n);
159 gchar *to_human_readable        (off_t        size);
160
161 /* alternative string functions */
162 gint strcmp2            (const gchar    *s1,
163                          const gchar    *s2);
164 gchar *strstr2          (const gchar    *s1,
165                          const gchar    *s2);
166 gint path_cmp           (const gchar    *s1,
167                          const gchar    *s2);
168 gchar *strretchomp      (gchar          *str);
169 gchar *strtailchomp     (gchar          *str,
170                          gchar           tail_char);
171 gchar *strcrchomp       (gchar          *str);
172 gchar *strcasestr       (const gchar    *haystack,
173                          const gchar    *needle);
174 gchar *strncpy2         (gchar          *dest,
175                          const gchar    *src,
176                          size_t          n);
177
178 /* wide-character functions */
179 #if !HAVE_ISWALNUM
180 int iswalnum            (wint_t wc);
181 #endif
182 #if !HAVE_ISWSPACE
183 int iswspace            (wint_t wc);
184 #endif
185 #if !HAVE_TOWLOWER
186 wint_t towlower         (wint_t wc);
187 #endif
188
189 #if !HAVE_WCSLEN
190 size_t wcslen           (const wchar_t *s);
191 #endif
192 #if !HAVE_WCSCPY
193 wchar_t *wcscpy         (wchar_t       *dest,
194                          const wchar_t *src);
195 #endif
196 #if !HAVE_WCSNCPY
197 wchar_t *wcsncpy        (wchar_t       *dest,
198                          const wchar_t *src,
199                          size_t         n);
200 #endif
201
202 wchar_t *wcsdup                 (const wchar_t *s);
203 wchar_t *wcsndup                (const wchar_t *s,
204                                  size_t         n);
205 wchar_t *strdup_mbstowcs        (const gchar   *s);
206 gchar *strdup_wcstombs          (const wchar_t *s);
207 gint wcsncasecmp                (const wchar_t *s1,
208                                  const wchar_t *s2,
209                                  size_t         n);
210 wchar_t *wcscasestr             (const wchar_t *haystack,
211                                  const wchar_t *needle);
212
213 gboolean is_next_nonascii       (const wchar_t *s);
214 gboolean is_next_mbs            (const wchar_t *s);
215 wchar_t *find_wspace            (const wchar_t *s);
216
217 /* functions for string parsing */
218 gint subject_compare                    (const gchar    *s1,
219                                          const gchar    *s2);
220 void trim_subject                       (gchar          *str);
221 void eliminate_parenthesis              (gchar          *str,
222                                          gchar           op,
223                                          gchar           cl);
224 void extract_parenthesis                (gchar          *str,
225                                          gchar           op,
226                                          gchar           cl);
227
228 void extract_one_parenthesis_with_skip_quote    (gchar          *str,
229                                                  gchar           quote_chr,
230                                                  gchar           op,
231                                                  gchar           cl);
232 void extract_parenthesis_with_skip_quote        (gchar          *str,
233                                                  gchar           quote_chr,
234                                                  gchar           op,
235                                                  gchar           cl);
236
237 void eliminate_quote                    (gchar          *str,
238                                          gchar           quote_chr);
239 void extract_quote                      (gchar          *str,
240                                          gchar           quote_chr);
241 void eliminate_address_comment          (gchar          *str);
242 gchar *strchr_with_skip_quote           (const gchar    *str,
243                                          gint            quote_chr,
244                                          gint            c);
245 gchar *strrchr_with_skip_quote          (const gchar    *str,
246                                          gint            quote_chr,
247                                          gint            c);
248 void extract_address                    (gchar          *str);
249
250 GSList *address_list_append             (GSList         *addr_list,
251                                          const gchar    *str);
252 GSList *references_list_append          (GSList         *msgid_list,
253                                          const gchar    *str);
254 GSList *newsgroup_list_append           (GSList         *group_list,
255                                          const gchar    *str);
256
257 GList *add_history                      (GList          *list,
258                                          const gchar    *str);
259
260 void remove_return                      (gchar          *str);
261 void remove_space                       (gchar          *str);
262 void unfold_line                        (gchar          *str);
263 void subst_char                         (gchar          *str,
264                                          gchar           orig,
265                                          gchar           subst);
266 gboolean is_header_line                 (const gchar    *str);
267 gboolean is_ascii_str                   (const guchar   *str);
268 gint get_quote_level                    (const gchar    *str);
269 gchar *strstr_with_skip_quote           (const gchar    *haystack,
270                                          const gchar    *needle);
271 gchar **strsplit_with_quote             (const gchar    *str,
272                                          const gchar    *delim,
273                                          gint            max_tokens);
274
275 GList *uri_list_extract_filenames       (const gchar    *uri_list);
276 void decode_uri                         (gchar          *decoded_uri,
277                                          const gchar    *encoded_uri);
278
279 /* return static strings */
280 gchar *get_home_dir             (void);
281 gchar *get_rc_dir               (void);
282 gchar *get_news_cache_dir       (void);
283 gchar *get_imap_cache_dir       (void);
284 gchar *get_mbox_cache_dir       (void);
285 gchar *get_mime_tmp_dir         (void);
286 gchar *get_template_dir         (void);
287 gchar *get_tmp_file             (void);
288 gchar *get_domain_name          (void);
289
290 /* file / directory handling */
291 off_t get_file_size             (const gchar    *file);
292 off_t get_left_file_size        (FILE           *fp);
293 gboolean file_exist             (const gchar    *file,
294                                  gboolean        allow_fifo);
295 gboolean is_dir_exist           (const gchar    *dir);
296 gint change_dir                 (const gchar    *dir);
297 gint make_dir_hier              (const gchar    *dir);
298 gint remove_all_files           (const gchar    *dir);
299 gint remove_numbered_files      (const gchar    *dir,
300                                  guint           first,
301                                  guint           last);
302 gint remove_all_numbered_files  (const gchar    *dir);
303 gint remove_dir_recursive       (const gchar    *dir);
304 gint copy_file                  (const gchar    *src,
305                                  const gchar    *dest);
306 gint move_file                  (const gchar    *src,
307                                  const gchar    *dest);
308 gint change_file_mode_rw        (FILE           *fp,
309                                  const gchar    *file);
310 FILE *my_tmpfile                (void);
311
312 #define is_file_exist(file)             file_exist(file, FALSE)
313 #define is_file_or_fifo_exist(file)     file_exist(file, TRUE)
314
315 /* process execution */
316 gint execute_async              (gchar *const    argv[]);
317 gint execute_sync               (gchar *const    argv[]);
318 gint execute_command_line       (const gchar    *cmdline,
319                                  gboolean        async);
320
321 /* open URI with external browser */
322 gint open_uri(const gchar *uri, const gchar *cmdline);
323
324 /* time functions */
325 time_t remote_tzoffset_sec      (const gchar    *zone);
326 time_t tzoffset_sec             (time_t         *now);
327 gchar *tzoffset                 (time_t         *now);
328 void get_rfc822_date            (gchar          *buf,
329                                  gint            len);
330
331 /* logging */
332 void set_log_file       (const gchar *filename);
333 void close_log_file     (void);
334 void log_verbosity_set  (gboolean verbose);
335 void debug_print_real   (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
336 void log_print          (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
337 void log_message        (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
338 void log_warning        (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
339 void log_error          (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
340
341 /* subject threading */
342 void * subject_table_lookup(GHashTable *subject_table, gchar * subject);
343 void subject_table_insert(GHashTable *subject_table, gchar * subject,
344                           void * data);
345 void subject_table_remove(GHashTable *subject_table, gchar * subject);
346 gboolean subject_is_reply(const gchar *subject);
347
348
349 #endif /* __UTILS_H__ */