sync with 0.9.9cvs4
[claws.git] / src / common / utils.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 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 <dirent.h>
34 #include <time.h>
35 #if HAVE_ALLOCA_H
36 #  include <alloca.h>
37 #endif
38 #if HAVE_WCHAR_H
39 #  include <wchar.h>
40 #endif
41
42 /* The AC_CHECK_SIZEOF() in configure fails for some machines.
43  * we provide some fallback values here */
44 #if !SIZEOF_UNSIGNED_SHORT
45   #undef SIZEOF_UNSIGNED_SHORT
46   #define SIZEOF_UNSIGNED_SHORT 2
47 #endif
48 #if !SIZEOF_UNSIGNED_INT
49   #undef SIZEOF_UNSIGNED_INT
50   #define SIZEOF_UNSIGNED_INT 4
51 #endif
52 #if !SIZEOF_UNSIGNED_LONG
53   #undef SIZEOF_UNSIGNED_LONG
54   #define SIZEOF_UNSIGNED_LONG 4
55 #endif
56
57 #ifndef HAVE_U32_TYPEDEF
58   #undef u32        /* maybe there is a macro with this name */
59   typedef guint32 u32;
60   #define HAVE_U32_TYPEDEF
61 #endif
62
63 #ifndef BIG_ENDIAN_HOST
64   #if (G_BYTE_ORDER == G_BIG_ENDIAN)
65     #define BIG_ENDIAN_HOST 1
66   #endif
67 #endif
68
69 #define CHDIR_RETURN_IF_FAIL(dir) \
70 { \
71         if (change_dir(dir) < 0) return; \
72 }
73
74 #define CHDIR_RETURN_VAL_IF_FAIL(dir, val) \
75 { \
76         if (change_dir(dir) < 0) return val; \
77 }
78
79 #define Xalloca(ptr, size, iffail) \
80 { \
81         if ((ptr = alloca(size)) == NULL) { \
82                 g_warning("can't allocate memory\n"); \
83                 iffail; \
84         } \
85 }
86
87 #define Xstrdup_a(ptr, str, iffail) \
88 { \
89         gchar *__tmp; \
90  \
91         if ((__tmp = alloca(strlen(str) + 1)) == NULL) { \
92                 g_warning("can't allocate memory\n"); \
93                 iffail; \
94         } else \
95                 strcpy(__tmp, str); \
96  \
97         ptr = __tmp; \
98 }
99
100 #define Xstrndup_a(ptr, str, len, iffail) \
101 { \
102         gchar *__tmp; \
103  \
104         if ((__tmp = alloca(len + 1)) == NULL) { \
105                 g_warning("can't allocate memory\n"); \
106                 iffail; \
107         } else { \
108                 strncpy(__tmp, str, len); \
109                 __tmp[len] = '\0'; \
110         } \
111  \
112         ptr = __tmp; \
113 }
114
115 #define Xstrcat_a(ptr, str1, str2, iffail) \
116 { \
117         gchar *__tmp; \
118         gint len1, len2; \
119  \
120         len1 = strlen(str1); \
121         len2 = strlen(str2); \
122         if ((__tmp = alloca(len1 + len2 + 1)) == NULL) { \
123                 g_warning("can't allocate memory\n"); \
124                 iffail; \
125         } else { \
126                 memcpy(__tmp, str1, len1); \
127                 memcpy(__tmp + len1, str2, len2 + 1); \
128         } \
129  \
130         ptr = __tmp; \
131 }
132
133 #define AUTORELEASE_STR(str, iffail) \
134 { \
135         gchar *__str; \
136         Xstrdup_a(__str, str, iffail); \
137         g_free(str); \
138         str = __str; \
139 }
140
141 #define FILE_OP_ERROR(file, func) \
142 { \
143         fprintf(stderr, "%s: ", file); \
144         perror(func); \
145 }
146
147 typedef gpointer (*GNodeMapFunc)        (gpointer nodedata, gpointer data);
148
149 /* debug functions */
150 void debug_set_mode             (gboolean mode);
151 gboolean debug_get_mode         (void);
152 #define debug_print \
153         debug_print_real(__FILE__ ":%d:", __LINE__), \
154         debug_print_real
155
156 /* for macro expansion */
157 #define Str(x)  #x
158 #define Xstr(x) Str(x)
159
160 void list_free_strings          (GList          *list);
161 void slist_free_strings         (GSList         *list);
162
163 void hash_free_strings          (GHashTable     *table);
164 void hash_free_value_mem        (GHashTable     *table);
165
166 gint str_case_equal             (gconstpointer   v,
167                                  gconstpointer   v2);
168 guint str_case_hash             (gconstpointer   key);
169
170 void ptr_array_free_strings     (GPtrArray      *array);
171
172 /* number-string conversion */
173 gint to_number                  (const gchar *nstr);
174 gchar *itos_buf                 (gchar       *nstr,
175                                  gint         n);
176 gchar *itos                     (gint         n);
177 gchar *to_human_readable        (off_t        size);
178
179 /* alternative string functions */
180 gint strcmp2            (const gchar    *s1,
181                          const gchar    *s2);
182 gchar *strstr2          (const gchar    *s1,
183                          const gchar    *s2);
184 gint path_cmp           (const gchar    *s1,
185                          const gchar    *s2);
186 gchar *strretchomp      (gchar          *str);
187 gchar *strtailchomp     (gchar          *str,
188                          gchar           tail_char);
189 gchar *strcrchomp       (gchar          *str);
190 gchar *strcasestr       (const gchar    *haystack,
191                          const gchar    *needle);
192 gchar *strncpy2         (gchar          *dest,
193                          const gchar    *src,
194                          size_t          n);
195
196 /* wide-character functions */
197 #if !HAVE_ISWALNUM
198 int iswalnum            (wint_t wc);
199 #endif
200 #if !HAVE_ISWSPACE
201 int iswspace            (wint_t wc);
202 #endif
203 #if !HAVE_TOWLOWER
204 wint_t towlower         (wint_t wc);
205 #endif
206
207 #if !HAVE_WCSLEN
208 size_t wcslen           (const wchar_t *s);
209 #endif
210 #if !HAVE_WCSCPY
211 wchar_t *wcscpy         (wchar_t       *dest,
212                          const wchar_t *src);
213 #endif
214 #if !HAVE_WCSNCPY
215 wchar_t *wcsncpy        (wchar_t       *dest,
216                          const wchar_t *src,
217                          size_t         n);
218 #endif
219
220 wchar_t *wcsdup                 (const wchar_t *s);
221 wchar_t *wcsndup                (const wchar_t *s,
222                                  size_t         n);
223 wchar_t *strdup_mbstowcs        (const gchar   *s);
224 gchar *strdup_wcstombs          (const wchar_t *s);
225 gint wcsncasecmp                (const wchar_t *s1,
226                                  const wchar_t *s2,
227                                  size_t         n);
228 wchar_t *wcscasestr             (const wchar_t *haystack,
229                                  const wchar_t *needle);
230 gint get_mbs_len                (const gchar    *s);
231
232 gboolean is_next_nonascii       (const guchar *s);
233 gint get_next_word_len          (const guchar *s);
234
235 /* functions for string parsing */
236 gint subject_compare                    (const gchar    *s1,
237                                          const gchar    *s2);
238 gint subject_compare_for_sort           (const gchar    *s1,
239                                          const gchar    *s2);
240 void trim_subject_for_compare           (gchar          *str);
241 void trim_subject_for_sort              (gchar          *str);
242 void trim_subject                       (gchar          *str);
243 void eliminate_parenthesis              (gchar          *str,
244                                          gchar           op,
245                                          gchar           cl);
246 void extract_parenthesis                (gchar          *str,
247                                          gchar           op,
248                                          gchar           cl);
249
250 void extract_parenthesis_with_skip_quote        (gchar          *str,
251                                                  gchar           quote_chr,
252                                                  gchar           op,
253                                                  gchar           cl);
254
255 void eliminate_quote                    (gchar          *str,
256                                          gchar           quote_chr);
257 void extract_quote                      (gchar          *str,
258                                          gchar           quote_chr);
259 void eliminate_address_comment          (gchar          *str);
260 gchar *strchr_with_skip_quote           (const gchar    *str,
261                                          gint            quote_chr,
262                                          gint            c);
263 gchar *strrchr_with_skip_quote          (const gchar    *str,
264                                          gint            quote_chr,
265                                          gint            c);
266 void extract_address                    (gchar          *str);
267 void extract_list_id_str                (gchar          *str);
268
269 GSList *slist_concat_unique             (GSList         *first,
270                                          GSList         *second);
271 GSList *address_list_append             (GSList         *addr_list,
272                                          const gchar    *str);
273 GSList *address_list_append_with_comments(GSList        *addr_list,
274                                          const gchar    *str);
275 GSList *references_list_append          (GSList         *msgid_list,
276                                          const gchar    *str);
277 GSList *newsgroup_list_append           (GSList         *group_list,
278                                          const gchar    *str);
279
280 GList *add_history                      (GList          *list,
281                                          const gchar    *str);
282
283 void remove_return                      (gchar          *str);
284 void remove_space                       (gchar          *str);
285 void unfold_line                        (gchar          *str);
286 void subst_char                         (gchar          *str,
287                                          gchar           orig,
288                                          gchar           subst);
289 void subst_chars                        (gchar          *str,
290                                          gchar          *orig,
291                                          gchar           subst);
292 void subst_for_filename                 (gchar          *str);
293 void subst_for_shellsafe_filename       (gchar          *str);
294 gboolean is_header_line                 (const gchar    *str);
295 gboolean is_ascii_str                   (const guchar   *str);
296 gint get_quote_level                    (const gchar    *str,
297                                          const gchar    *quote_chars);
298 gchar *strstr_with_skip_quote           (const gchar    *haystack,
299                                          const gchar    *needle);
300 gchar *strchr_parenthesis_close         (const gchar    *str,
301                                          gchar           op,
302                                          gchar           cl);
303
304 gchar **strsplit_parenthesis            (const gchar    *str,
305                                          gchar           op,
306                                          gchar           cl,
307                                          gint            max_tokens);
308 gchar **strsplit_with_quote             (const gchar    *str,
309                                          const gchar    *delim,
310                                          gint            max_tokens);
311
312 gchar *get_abbrev_newsgroup_name        (const gchar    *group,
313                                          gint            len);
314 gchar *trim_string                      (const gchar    *str,
315                                          gint            len);
316
317 GList *uri_list_extract_filenames       (const gchar    *uri_list);
318 gboolean is_uri_string                  (const gchar    *str);
319 gchar *get_uri_path                     (const gchar    *uri);
320 void decode_uri                         (gchar          *decoded_uri,
321                                          const gchar    *encoded_uri);
322 gint scan_mailto_url                    (const gchar    *mailto,
323                                          gchar         **to,
324                                          gchar         **cc,
325                                          gchar         **bcc,
326                                          gchar         **subject,
327                                          gchar         **body);
328
329 /* return static strings */
330 gchar *get_home_dir             (void);
331 gchar *get_rc_dir               (void);
332 gchar *get_news_cache_dir       (void);
333 gchar *get_imap_cache_dir       (void);
334 gchar *get_mbox_cache_dir       (void);
335 gchar *get_mime_tmp_dir         (void);
336 gchar *get_template_dir         (void);
337 gchar *get_header_cache_dir     (void);
338 gchar *get_tmp_dir              (void);
339 gchar *get_tmp_file             (void);
340 gchar *get_domain_name          (void);
341
342 /* file / directory handling */
343 off_t get_file_size             (const gchar    *file);
344 off_t get_file_size_as_crlf     (const gchar    *file);
345 off_t get_left_file_size        (FILE           *fp);
346
347 gboolean file_exist             (const gchar    *file,
348                                  gboolean        allow_fifo);
349 gboolean is_dir_exist           (const gchar    *dir);
350 gboolean is_file_entry_exist    (const gchar    *file);
351 gboolean dirent_is_regular_file (struct dirent  *d);
352 gboolean dirent_is_directory    (struct dirent  *d);
353
354 #define is_file_exist(file)             file_exist(file, FALSE)
355 #define is_file_or_fifo_exist(file)     file_exist(file, TRUE)
356
357 gint change_dir                 (const gchar    *dir);
358 gint make_dir                   (const gchar    *dir);
359 gint make_dir_hier              (const gchar    *dir);
360 gint remove_all_files           (const gchar    *dir);
361 gint remove_numbered_files      (const gchar    *dir,
362                                  guint           first,
363                                  guint           last);
364 gint remove_numbered_files_not_in_list(const gchar *dir,
365                                        GSList *numberlist);
366 gint remove_all_numbered_files  (const gchar    *dir);
367 gint remove_expired_files       (const gchar    *dir,
368                                  guint           hours);
369 gint remove_dir_recursive       (const gchar    *dir);
370 gint append_file                (const gchar    *src,
371                                  const gchar    *dest,
372                                  gboolean        keep_backup);
373 gint copy_file                  (const gchar    *src,
374                                  const gchar    *dest,
375                                  gboolean        keep_backup);
376 gint move_file                  (const gchar    *src,
377                                  const gchar    *dest,
378                                  gboolean        overwrite);
379 gint copy_file_part             (FILE           *fp,
380                                  off_t           offset,
381                                  size_t          length,
382                                  const gchar    *dest);
383
384 gchar *canonicalize_str         (const gchar    *str);
385 gint canonicalize_file          (const gchar    *src,
386                                  const gchar    *dest);
387 gint canonicalize_file_replace  (const gchar    *file);
388 gint uncanonicalize_file        (const gchar    *src,
389                                  const gchar    *dest);
390 gint uncanonicalize_file_replace(const gchar    *file);
391
392 gchar *normalize_newlines       (const gchar    *str);
393
394 gchar *get_outgoing_rfc2822_str (FILE           *fp);
395
396 gint change_file_mode_rw        (FILE           *fp,
397                                  const gchar    *file);
398 FILE *my_tmpfile                (void);
399 FILE *get_tmpfile_in_dir        (const gchar    *dir,
400                                  gchar         **filename);
401 FILE *str_open_as_stream        (const gchar    *str);
402 gint str_write_to_file          (const gchar    *str,
403                                  const gchar    *file);
404 gchar *file_read_to_str         (const gchar    *file);
405 gchar *file_read_stream_to_str  (FILE           *fp);
406
407 /* process execution */
408 gint execute_async              (gchar *const    argv[]);
409 gint execute_sync               (gchar *const    argv[]);
410 gint execute_command_line       (const gchar    *cmdline,
411                                  gboolean        async);
412 gchar *get_command_output       (const gchar    *cmdline);
413
414 /* open URI with external browser */
415 gint open_uri(const gchar *uri, const gchar *cmdline);
416
417 /* time functions */
418 time_t remote_tzoffset_sec      (const gchar    *zone);
419 time_t tzoffset_sec             (time_t         *now);
420 gchar *tzoffset                 (time_t         *now);
421 void get_rfc822_date            (gchar          *buf,
422                                  gint            len);
423
424 /* debugging */
425 void debug_print_real   (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
426
427 /* subject threading */
428 void * subject_table_lookup(GHashTable *subject_table, gchar * subject);
429 void subject_table_insert(GHashTable *subject_table, gchar * subject,
430                           void * data);
431 void subject_table_remove(GHashTable *subject_table, gchar * subject);
432 gint subject_get_prefix_length (const gchar *subject);
433
434 /* quoting recognition */
435 const gchar * line_has_quote_char       (const gchar *str,
436                                          const gchar *quote_chars);
437 const gchar * line_has_quote_char_last  (const gchar *str,
438                                          const gchar *quote_chars);
439
440 /* used in extended search */
441 gchar * expand_search_string    (const gchar *str);
442
443 guint g_stricase_hash   (gconstpointer gptr);
444 gint g_stricase_equal   (gconstpointer gptr1, gconstpointer gptr2);
445 gint g_int_compare      (gconstpointer a, gconstpointer b);
446
447 gchar *generate_msgid           (const gchar *address, gchar *buf, gint len);
448 gchar *generate_mime_boundary   (const gchar *prefix);
449
450 gint quote_cmd_argument(gchar * result, guint size,
451                         const gchar * path);
452 GNode *g_node_map(GNode *node, GNodeMapFunc func, gpointer data);
453
454 #endif /* __UTILS_H__ */