2001-04-19 14:21:46 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2007-01-03 06:42:43 +01:00
|
|
|
* Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
|
2001-04-19 14:21:46 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-11 18:38:12 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-04-19 14:21:46 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-11 18:38:12 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2001-04-19 14:21:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTILS_H__
|
|
|
|
#define __UTILS_H__
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <glib.h>
|
2005-01-03 19:03:20 +01:00
|
|
|
#include <glib-object.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2004-01-12 22:28:31 +01:00
|
|
|
#include <dirent.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
#include <time.h>
|
|
|
|
#if HAVE_ALLOCA_H
|
|
|
|
# include <alloca.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_WCHAR_H
|
|
|
|
# include <wchar.h>
|
|
|
|
#endif
|
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
/* Wrappers for C library function that take pathname arguments. */
|
|
|
|
#if GLIB_CHECK_VERSION(2, 6, 0)
|
|
|
|
# include <glib/gstdio.h>
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define g_open open
|
|
|
|
#define g_rename rename
|
|
|
|
#define g_mkdir mkdir
|
|
|
|
#define g_stat stat
|
|
|
|
#define g_lstat lstat
|
|
|
|
#define g_unlink unlink
|
|
|
|
#define g_remove remove
|
|
|
|
#define g_rmdir rmdir
|
|
|
|
#define g_fopen fopen
|
|
|
|
#define g_freopen freopen
|
|
|
|
|
|
|
|
#endif /* GLIB_CHECK_VERSION */
|
|
|
|
|
|
|
|
#if !GLIB_CHECK_VERSION(2, 7, 0)
|
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
#define g_chdir chdir
|
|
|
|
#define g_chmod chmod
|
|
|
|
#else
|
|
|
|
gint g_chdir (const gchar *path);
|
|
|
|
gint g_chmod (const gchar *path,
|
|
|
|
gint mode);
|
|
|
|
#endif /* G_OS_UNIX */
|
|
|
|
|
|
|
|
#endif /* !GLIB_CHECK_VERSION */
|
|
|
|
|
2001-04-27 22:27:24 +02:00
|
|
|
/* The AC_CHECK_SIZEOF() in configure fails for some machines.
|
|
|
|
* we provide some fallback values here */
|
|
|
|
#if !SIZEOF_UNSIGNED_SHORT
|
|
|
|
#undef SIZEOF_UNSIGNED_SHORT
|
|
|
|
#define SIZEOF_UNSIGNED_SHORT 2
|
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_INT
|
|
|
|
#undef SIZEOF_UNSIGNED_INT
|
|
|
|
#define SIZEOF_UNSIGNED_INT 4
|
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_LONG
|
|
|
|
#undef SIZEOF_UNSIGNED_LONG
|
|
|
|
#define SIZEOF_UNSIGNED_LONG 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_U32_TYPEDEF
|
|
|
|
#undef u32 /* maybe there is a macro with this name */
|
2001-05-02 20:51:12 +02:00
|
|
|
typedef guint32 u32;
|
2001-04-27 22:27:24 +02:00
|
|
|
#define HAVE_U32_TYPEDEF
|
|
|
|
#endif
|
|
|
|
|
2001-05-02 20:51:12 +02:00
|
|
|
#ifndef BIG_ENDIAN_HOST
|
|
|
|
#if (G_BYTE_ORDER == G_BIG_ENDIAN)
|
|
|
|
#define BIG_ENDIAN_HOST 1
|
|
|
|
#endif
|
|
|
|
#endif
|
2001-04-27 22:27:24 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#define CHDIR_RETURN_IF_FAIL(dir) \
|
|
|
|
{ \
|
|
|
|
if (change_dir(dir) < 0) return; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CHDIR_RETURN_VAL_IF_FAIL(dir, val) \
|
|
|
|
{ \
|
|
|
|
if (change_dir(dir) < 0) return val; \
|
|
|
|
}
|
|
|
|
|
2007-08-21 11:04:16 +02:00
|
|
|
#define CHDIR_EXEC_CODE_RETURN_VAL_IF_FAIL(dir, val, code) \
|
|
|
|
{ \
|
|
|
|
if (change_dir(dir) < 0) { \
|
|
|
|
code \
|
|
|
|
return val; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#define Xalloca(ptr, size, iffail) \
|
|
|
|
{ \
|
|
|
|
if ((ptr = alloca(size)) == NULL) { \
|
|
|
|
g_warning("can't allocate memory\n"); \
|
|
|
|
iffail; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define Xstrdup_a(ptr, str, iffail) \
|
|
|
|
{ \
|
|
|
|
gchar *__tmp; \
|
|
|
|
\
|
|
|
|
if ((__tmp = alloca(strlen(str) + 1)) == NULL) { \
|
|
|
|
g_warning("can't allocate memory\n"); \
|
|
|
|
iffail; \
|
|
|
|
} else \
|
|
|
|
strcpy(__tmp, str); \
|
|
|
|
\
|
|
|
|
ptr = __tmp; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define Xstrndup_a(ptr, str, len, iffail) \
|
|
|
|
{ \
|
|
|
|
gchar *__tmp; \
|
|
|
|
\
|
|
|
|
if ((__tmp = alloca(len + 1)) == NULL) { \
|
|
|
|
g_warning("can't allocate memory\n"); \
|
|
|
|
iffail; \
|
|
|
|
} else { \
|
|
|
|
strncpy(__tmp, str, len); \
|
|
|
|
__tmp[len] = '\0'; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
ptr = __tmp; \
|
|
|
|
}
|
|
|
|
|
2001-12-14 10:32:45 +01:00
|
|
|
#define Xstrcat_a(ptr, str1, str2, iffail) \
|
2001-12-09 11:48:52 +01:00
|
|
|
{ \
|
|
|
|
gchar *__tmp; \
|
2001-12-14 10:32:45 +01:00
|
|
|
gint len1, len2; \
|
2001-12-09 11:48:52 +01:00
|
|
|
\
|
2001-12-14 10:32:45 +01:00
|
|
|
len1 = strlen(str1); \
|
|
|
|
len2 = strlen(str2); \
|
|
|
|
if ((__tmp = alloca(len1 + len2 + 1)) == NULL) { \
|
2001-12-09 11:48:52 +01:00
|
|
|
g_warning("can't allocate memory\n"); \
|
|
|
|
iffail; \
|
|
|
|
} else { \
|
2001-12-14 10:32:45 +01:00
|
|
|
memcpy(__tmp, str1, len1); \
|
|
|
|
memcpy(__tmp + len1, str2, len2 + 1); \
|
2001-12-09 11:48:52 +01:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
ptr = __tmp; \
|
|
|
|
}
|
|
|
|
|
2004-05-10 12:22:28 +02:00
|
|
|
#define AUTORELEASE_STR(str, iffail) \
|
|
|
|
{ \
|
|
|
|
gchar *__str; \
|
|
|
|
Xstrdup_a(__str, str, iffail); \
|
|
|
|
g_free(str); \
|
|
|
|
str = __str; \
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#define FILE_OP_ERROR(file, func) \
|
|
|
|
{ \
|
2007-08-21 11:17:38 +02:00
|
|
|
g_printerr("%s: ", file); \
|
2005-08-19 11:30:30 +02:00
|
|
|
fflush(stderr); \
|
2001-04-19 14:21:46 +02:00
|
|
|
perror(func); \
|
|
|
|
}
|
|
|
|
|
2004-10-19 09:28:20 +02:00
|
|
|
#define IS_ASCII(c) (((guchar) c) <= 0177 ? 1 : 0)
|
|
|
|
|
2004-08-06 13:34:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-02-21 12:01:01 +01:00
|
|
|
typedef gpointer (*GNodeMapFunc) (gpointer nodedata, gpointer data);
|
|
|
|
|
2002-12-02 18:41:39 +01:00
|
|
|
/* debug functions */
|
|
|
|
void debug_set_mode (gboolean mode);
|
2003-06-12 20:02:29 +02:00
|
|
|
gboolean debug_get_mode (void);
|
2006-03-05 11:04:40 +01:00
|
|
|
|
|
|
|
#ifndef __CYGWIN__
|
2001-09-20 17:36:43 +02:00
|
|
|
#define debug_print \
|
2005-12-20 18:43:40 +01:00
|
|
|
debug_print_real("%s:%d:", debug_srcname(__FILE__), __LINE__), \
|
2001-09-20 17:36:43 +02:00
|
|
|
debug_print_real
|
2006-03-05 11:04:40 +01:00
|
|
|
#else
|
|
|
|
/* FIXME: cygwin: why debug_srcname couldn't be resolved in library? */
|
|
|
|
#define debug_print \
|
|
|
|
debug_print_real("%s:%d:", __FILE__, __LINE__), \
|
|
|
|
debug_print_real
|
|
|
|
#endif
|
2001-09-15 00:17:03 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
/* for macro expansion */
|
|
|
|
#define Str(x) #x
|
|
|
|
#define Xstr(x) Str(x)
|
|
|
|
|
2007-07-09 21:21:53 +02:00
|
|
|
|
|
|
|
/* System related stuff. */
|
|
|
|
|
|
|
|
gboolean superuser_p (void);
|
|
|
|
|
|
|
|
|
|
|
|
/* String utilities. */
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void list_free_strings (GList *list);
|
|
|
|
void slist_free_strings (GSList *list);
|
|
|
|
|
|
|
|
void hash_free_strings (GHashTable *table);
|
|
|
|
|
2003-04-22 15:53:19 +02:00
|
|
|
gint str_case_equal (gconstpointer v,
|
|
|
|
gconstpointer v2);
|
|
|
|
guint str_case_hash (gconstpointer key);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void ptr_array_free_strings (GPtrArray *array);
|
|
|
|
|
2004-11-12 07:41:50 +01:00
|
|
|
typedef gboolean (*StrFindFunc) (const gchar *haystack,
|
|
|
|
const gchar *needle);
|
|
|
|
|
|
|
|
gboolean str_find (const gchar *haystack,
|
|
|
|
const gchar *needle);
|
|
|
|
gboolean str_case_find (const gchar *haystack,
|
|
|
|
const gchar *needle);
|
2001-04-19 14:21:46 +02:00
|
|
|
/* number-string conversion */
|
|
|
|
gint to_number (const gchar *nstr);
|
2001-06-08 12:14:40 +02:00
|
|
|
gchar *itos_buf (gchar *nstr,
|
|
|
|
gint n);
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *itos (gint n);
|
|
|
|
gchar *to_human_readable (off_t size);
|
|
|
|
|
|
|
|
/* alternative string functions */
|
|
|
|
gint strcmp2 (const gchar *s1,
|
|
|
|
const gchar *s2);
|
2001-10-26 23:04:01 +02:00
|
|
|
gchar *strstr2 (const gchar *s1,
|
2001-08-30 12:51:36 +02:00
|
|
|
const gchar *s2);
|
2001-04-19 14:21:46 +02:00
|
|
|
gint path_cmp (const gchar *s1,
|
|
|
|
const gchar *s2);
|
|
|
|
gchar *strretchomp (gchar *str);
|
2001-06-15 12:29:27 +02:00
|
|
|
gchar *strtailchomp (gchar *str,
|
|
|
|
gchar tail_char);
|
2001-11-07 11:29:45 +01:00
|
|
|
gchar *strcrchomp (gchar *str);
|
2007-09-22 14:03:56 +02:00
|
|
|
gint file_strip_crs (const gchar *file);
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *strcasestr (const gchar *haystack,
|
|
|
|
const gchar *needle);
|
2004-12-03 05:30:51 +01:00
|
|
|
gpointer my_memmem (gconstpointer haystack,
|
|
|
|
size_t haystacklen,
|
|
|
|
gconstpointer needle,
|
|
|
|
size_t needlelen);
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *strncpy2 (gchar *dest,
|
|
|
|
const gchar *src,
|
|
|
|
size_t n);
|
|
|
|
|
2005-08-03 10:31:53 +02:00
|
|
|
gboolean is_next_nonascii (const gchar *s);
|
|
|
|
gint get_next_word_len (const gchar *s);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
/* functions for string parsing */
|
|
|
|
gint subject_compare (const gchar *s1,
|
|
|
|
const gchar *s2);
|
2003-03-10 10:54:40 +01:00
|
|
|
gint subject_compare_for_sort (const gchar *s1,
|
|
|
|
const gchar *s2);
|
2001-04-19 14:21:46 +02:00
|
|
|
void trim_subject (gchar *str);
|
|
|
|
void eliminate_parenthesis (gchar *str,
|
|
|
|
gchar op,
|
|
|
|
gchar cl);
|
|
|
|
void extract_parenthesis (gchar *str,
|
|
|
|
gchar op,
|
|
|
|
gchar cl);
|
2001-06-13 13:23:49 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void extract_quote (gchar *str,
|
|
|
|
gchar quote_chr);
|
|
|
|
void eliminate_address_comment (gchar *str);
|
|
|
|
gchar *strchr_with_skip_quote (const gchar *str,
|
|
|
|
gint quote_chr,
|
|
|
|
gint c);
|
|
|
|
void extract_address (gchar *str);
|
2003-04-15 13:43:13 +02:00
|
|
|
void extract_list_id_str (gchar *str);
|
2001-11-07 11:29:45 +01:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
GSList *address_list_append (GSList *addr_list,
|
|
|
|
const gchar *str);
|
2003-03-05 20:46:21 +01:00
|
|
|
GSList *address_list_append_with_comments(GSList *addr_list,
|
|
|
|
const gchar *str);
|
2005-03-30 22:29:56 +02:00
|
|
|
GSList *references_list_prepend (GSList *msgid_list,
|
|
|
|
const gchar *str);
|
2001-04-19 14:21:46 +02:00
|
|
|
GSList *references_list_append (GSList *msgid_list,
|
|
|
|
const gchar *str);
|
|
|
|
GSList *newsgroup_list_append (GSList *group_list,
|
|
|
|
const gchar *str);
|
2001-11-07 11:29:45 +01:00
|
|
|
|
|
|
|
GList *add_history (GList *list,
|
|
|
|
const gchar *str);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void remove_return (gchar *str);
|
|
|
|
void remove_space (gchar *str);
|
2001-05-06 22:06:56 +02:00
|
|
|
void unfold_line (gchar *str);
|
2001-04-19 14:21:46 +02:00
|
|
|
void subst_char (gchar *str,
|
|
|
|
gchar orig,
|
|
|
|
gchar subst);
|
2007-11-26 23:30:58 +01:00
|
|
|
void subst_chars (gchar *str,
|
|
|
|
gchar *orig,
|
|
|
|
gchar subst);
|
2002-01-16 12:48:36 +01:00
|
|
|
void subst_for_filename (gchar *str);
|
2004-01-12 22:28:31 +01:00
|
|
|
void subst_for_shellsafe_filename (gchar *str);
|
2005-08-03 10:31:53 +02:00
|
|
|
gboolean is_ascii_str (const gchar *str);
|
2002-04-28 22:43:24 +02:00
|
|
|
gint get_quote_level (const gchar *str,
|
|
|
|
const gchar *quote_chars);
|
2005-07-04 12:40:54 +02:00
|
|
|
gint check_line_length (const gchar *str,
|
|
|
|
gint max_chars,
|
|
|
|
gint *line);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar **strsplit_with_quote (const gchar *str,
|
|
|
|
const gchar *delim,
|
|
|
|
gint max_tokens);
|
|
|
|
|
2002-10-23 09:44:28 +02:00
|
|
|
gchar *get_abbrev_newsgroup_name (const gchar *group,
|
2003-01-14 12:16:47 +01:00
|
|
|
gint len);
|
2002-04-28 12:31:35 +02:00
|
|
|
gchar *trim_string (const gchar *str,
|
|
|
|
gint len);
|
2002-03-23 10:35:55 +01:00
|
|
|
|
2001-11-14 11:51:23 +01:00
|
|
|
GList *uri_list_extract_filenames (const gchar *uri_list);
|
2004-02-21 12:01:01 +01:00
|
|
|
gboolean is_uri_string (const gchar *str);
|
|
|
|
gchar *get_uri_path (const gchar *uri);
|
2005-02-21 11:18:27 +01:00
|
|
|
gint get_uri_len (const gchar *str);
|
2001-11-14 11:51:23 +01:00
|
|
|
void decode_uri (gchar *decoded_uri,
|
|
|
|
const gchar *encoded_uri);
|
2007-02-27 22:38:57 +01:00
|
|
|
void decode_uri_with_plus (gchar *decoded_uri,
|
|
|
|
const gchar *encoded_uri,
|
|
|
|
gboolean with_plus);
|
2002-09-26 12:26:16 +02:00
|
|
|
gint scan_mailto_url (const gchar *mailto,
|
2008-01-22 18:43:12 +01:00
|
|
|
gchar **from,
|
2002-09-26 12:26:16 +02:00
|
|
|
gchar **to,
|
|
|
|
gchar **cc,
|
|
|
|
gchar **bcc,
|
|
|
|
gchar **subject,
|
2006-11-06 15:18:59 +01:00
|
|
|
gchar **body,
|
2007-11-16 18:28:18 +01:00
|
|
|
gchar ***attach);
|
2001-11-14 11:51:23 +01:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
/* return static strings */
|
2003-10-05 12:10:30 +02:00
|
|
|
const gchar *get_home_dir (void);
|
|
|
|
const gchar *get_rc_dir (void);
|
2007-10-03 18:58:44 +02:00
|
|
|
void set_rc_dir (const gchar *dir);
|
|
|
|
gboolean rc_dir_is_alt (void);
|
2005-08-19 11:30:30 +02:00
|
|
|
const gchar *get_mail_base_dir (void);
|
2003-10-05 12:10:30 +02:00
|
|
|
const gchar *get_news_cache_dir (void);
|
|
|
|
const gchar *get_imap_cache_dir (void);
|
|
|
|
const gchar *get_mime_tmp_dir (void);
|
|
|
|
const gchar *get_template_dir (void);
|
2005-12-23 08:36:23 +01:00
|
|
|
const gchar *get_plugin_dir (void);
|
2003-10-05 12:10:30 +02:00
|
|
|
const gchar *get_tmp_dir (void);
|
2006-07-06 18:34:05 +02:00
|
|
|
const gchar *get_locale_dir (void);
|
2003-10-05 12:10:30 +02:00
|
|
|
gchar *get_tmp_file (void);
|
|
|
|
const gchar *get_domain_name (void);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
/* file / directory handling */
|
|
|
|
off_t get_file_size (const gchar *file);
|
2002-01-24 11:11:51 +01:00
|
|
|
off_t get_file_size_as_crlf (const gchar *file);
|
2002-04-21 11:24:27 +02:00
|
|
|
|
2006-10-20 18:51:50 +02:00
|
|
|
time_t get_file_mtime (const gchar *file);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gboolean file_exist (const gchar *file,
|
|
|
|
gboolean allow_fifo);
|
2005-12-23 08:36:23 +01:00
|
|
|
gboolean is_relative_filename (const gchar *file);
|
2001-04-19 14:21:46 +02:00
|
|
|
gboolean is_dir_exist (const gchar *dir);
|
2002-04-21 11:24:27 +02:00
|
|
|
gboolean is_file_entry_exist (const gchar *file);
|
2004-01-12 22:28:31 +01:00
|
|
|
gboolean dirent_is_regular_file (struct dirent *d);
|
2002-04-21 11:24:27 +02:00
|
|
|
|
|
|
|
#define is_file_exist(file) file_exist(file, FALSE)
|
|
|
|
#define is_file_or_fifo_exist(file) file_exist(file, TRUE)
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gint change_dir (const gchar *dir);
|
2002-05-28 08:42:48 +02:00
|
|
|
gint make_dir (const gchar *dir);
|
2001-04-19 14:21:46 +02:00
|
|
|
gint make_dir_hier (const gchar *dir);
|
|
|
|
gint remove_all_files (const gchar *dir);
|
2001-06-19 13:24:32 +02:00
|
|
|
gint remove_numbered_files (const gchar *dir,
|
2001-06-20 21:10:41 +02:00
|
|
|
guint first,
|
|
|
|
guint last);
|
2002-10-05 15:02:50 +02:00
|
|
|
gint remove_numbered_files_not_in_list(const gchar *dir,
|
|
|
|
GSList *numberlist);
|
2001-06-06 15:05:23 +02:00
|
|
|
gint remove_all_numbered_files (const gchar *dir);
|
2001-04-19 14:21:46 +02:00
|
|
|
gint remove_dir_recursive (const gchar *dir);
|
2002-09-24 20:58:07 +02:00
|
|
|
gint append_file (const gchar *src,
|
|
|
|
const gchar *dest,
|
|
|
|
gboolean keep_backup);
|
2005-08-19 11:30:30 +02:00
|
|
|
gint rename_force (const gchar *oldpath,
|
|
|
|
const gchar *newpath);
|
2001-04-19 14:21:46 +02:00
|
|
|
gint copy_file (const gchar *src,
|
2002-08-08 07:56:32 +02:00
|
|
|
const gchar *dest,
|
|
|
|
gboolean keep_backup);
|
2001-06-08 12:14:40 +02:00
|
|
|
gint move_file (const gchar *src,
|
2002-08-08 07:56:32 +02:00
|
|
|
const gchar *dest,
|
|
|
|
gboolean overwrite);
|
2005-10-20 19:49:21 +02:00
|
|
|
gint copy_dir (const gchar *src,
|
|
|
|
const gchar *dest);
|
2004-10-12 11:45:18 +02:00
|
|
|
gint copy_file_part_to_fp (FILE *fp,
|
|
|
|
off_t offset,
|
|
|
|
size_t length,
|
|
|
|
FILE *dest_fp);
|
2002-09-19 19:36:44 +02:00
|
|
|
gint copy_file_part (FILE *fp,
|
|
|
|
off_t offset,
|
|
|
|
size_t length,
|
|
|
|
const gchar *dest);
|
2003-01-17 10:59:47 +01:00
|
|
|
|
|
|
|
gchar *canonicalize_str (const gchar *str);
|
2002-08-08 07:56:32 +02:00
|
|
|
gint canonicalize_file (const gchar *src,
|
2001-06-08 12:14:40 +02:00
|
|
|
const gchar *dest);
|
2002-08-06 11:34:13 +02:00
|
|
|
gint canonicalize_file_replace (const gchar *file);
|
2003-01-17 10:59:47 +01:00
|
|
|
|
2003-04-12 02:28:06 +02:00
|
|
|
gchar *normalize_newlines (const gchar *str);
|
|
|
|
|
2003-03-20 12:00:55 +01:00
|
|
|
gchar *get_outgoing_rfc2822_str (FILE *fp);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gint change_file_mode_rw (FILE *fp,
|
|
|
|
const gchar *file);
|
|
|
|
FILE *my_tmpfile (void);
|
2004-01-12 22:28:31 +01:00
|
|
|
FILE *get_tmpfile_in_dir (const gchar *dir,
|
|
|
|
gchar **filename);
|
2002-02-11 14:43:37 +01:00
|
|
|
FILE *str_open_as_stream (const gchar *str);
|
2002-08-10 11:19:15 +02:00
|
|
|
gint str_write_to_file (const gchar *str,
|
|
|
|
const gchar *file);
|
|
|
|
gchar *file_read_to_str (const gchar *file);
|
2003-03-20 12:00:55 +01:00
|
|
|
gchar *file_read_stream_to_str (FILE *fp);
|
2007-12-06 08:48:28 +01:00
|
|
|
gchar *file_read_to_str_no_recode(const gchar *file);
|
|
|
|
gchar *file_read_stream_to_str_no_recode(FILE *fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2007-06-04 15:15:02 +02:00
|
|
|
char *fgets_crlf(char *buf, int size, FILE *stream);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
/* process execution */
|
2001-09-13 15:38:32 +02:00
|
|
|
gint execute_command_line (const gchar *cmdline,
|
|
|
|
gboolean async);
|
2003-04-12 02:28:06 +02:00
|
|
|
gchar *get_command_output (const gchar *cmdline);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
/* open URI with external browser */
|
2001-11-14 11:51:23 +01:00
|
|
|
gint open_uri(const gchar *uri, const gchar *cmdline);
|
2006-02-01 18:52:48 +01:00
|
|
|
/* open file with text editor */
|
|
|
|
gint open_txt_editor(const gchar *filepath, const gchar *cmdline);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
/* time functions */
|
|
|
|
time_t remote_tzoffset_sec (const gchar *zone);
|
|
|
|
time_t tzoffset_sec (time_t *now);
|
|
|
|
gchar *tzoffset (time_t *now);
|
|
|
|
void get_rfc822_date (gchar *buf,
|
|
|
|
gint len);
|
|
|
|
|
2006-10-02 19:29:24 +02:00
|
|
|
size_t fast_strftime (gchar *buf,
|
|
|
|
gint buflen,
|
|
|
|
const gchar *format,
|
|
|
|
struct tm *lt);
|
2005-07-04 12:40:54 +02:00
|
|
|
|
2002-12-02 18:41:39 +01:00
|
|
|
/* debugging */
|
2001-09-20 17:36:43 +02:00
|
|
|
void debug_print_real (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
|
2005-12-20 18:43:40 +01:00
|
|
|
const char * debug_srcname (const char *file);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-11-06 19:27:14 +01:00
|
|
|
/* subject threading */
|
2001-11-06 20:19:42 +01:00
|
|
|
void * subject_table_lookup(GHashTable *subject_table, gchar * subject);
|
2001-11-06 19:27:14 +01:00
|
|
|
void subject_table_insert(GHashTable *subject_table, gchar * subject,
|
|
|
|
void * data);
|
|
|
|
void subject_table_remove(GHashTable *subject_table, gchar * subject);
|
2007-12-07 21:01:13 +01:00
|
|
|
void utils_free_regex(void);
|
2003-07-19 20:41:15 +02:00
|
|
|
gint subject_get_prefix_length (const gchar *subject);
|
2003-06-12 02:29:17 +02:00
|
|
|
|
2002-04-28 22:43:24 +02:00
|
|
|
/* quoting recognition */
|
|
|
|
const gchar * line_has_quote_char (const gchar *str,
|
|
|
|
const gchar *quote_chars);
|
|
|
|
|
2003-04-06 15:21:26 +02:00
|
|
|
gint g_int_compare (gconstpointer a, gconstpointer b);
|
2003-01-12 23:09:09 +01:00
|
|
|
|
2004-11-18 07:36:19 +01:00
|
|
|
gchar *generate_msgid (gchar *buf, gint len);
|
2004-01-12 22:28:31 +01:00
|
|
|
gchar *generate_mime_boundary (const gchar *prefix);
|
|
|
|
|
|
|
|
gint quote_cmd_argument(gchar * result, guint size,
|
|
|
|
const gchar * path);
|
2004-02-21 12:01:01 +01:00
|
|
|
GNode *g_node_map(GNode *node, GNodeMapFunc func, gpointer data);
|
2003-07-29 21:47:24 +02:00
|
|
|
|
2004-10-29 08:17:33 +02:00
|
|
|
gboolean get_hex_value(guchar *out, gchar c1, gchar c2);
|
|
|
|
void get_hex_str(gchar *out, guchar ch);
|
|
|
|
|
2005-01-03 19:03:20 +01:00
|
|
|
/* auto pointer for containers that support GType system */
|
|
|
|
|
|
|
|
#define G_TYPE_AUTO_POINTER g_auto_pointer_register()
|
|
|
|
typedef struct AutoPointer GAuto;
|
|
|
|
GType g_auto_pointer_register (void);
|
|
|
|
GAuto *g_auto_pointer_new (gpointer pointer);
|
|
|
|
GAuto *g_auto_pointer_new_with_free (gpointer p,
|
|
|
|
GFreeFunc free);
|
|
|
|
gpointer g_auto_pointer_get_ptr (GAuto *auto_ptr);
|
|
|
|
GAuto *g_auto_pointer_copy (GAuto *auto_ptr);
|
|
|
|
void g_auto_pointer_free (GAuto *auto_ptr);
|
2005-06-16 21:59:41 +02:00
|
|
|
void replace_returns (gchar *str);
|
2006-08-18 10:36:38 +02:00
|
|
|
gboolean get_uri_part (const gchar *start,
|
|
|
|
const gchar *scanpos,
|
|
|
|
const gchar **bp,
|
|
|
|
const gchar **ep,
|
|
|
|
gboolean hdr);
|
|
|
|
gchar *make_uri_string (const gchar *bp,
|
|
|
|
const gchar *ep);
|
|
|
|
gboolean get_email_part (const gchar *start,
|
|
|
|
const gchar *scanpos,
|
|
|
|
const gchar **bp,
|
|
|
|
const gchar **ep,
|
|
|
|
gboolean hdr);
|
|
|
|
gchar *make_email_string(const gchar *bp,
|
|
|
|
const gchar *ep);
|
|
|
|
gchar *make_http_string (const gchar *bp,
|
|
|
|
const gchar *ep);
|
|
|
|
|
|
|
|
gchar *mailcap_get_command_for_type(const gchar *type,
|
|
|
|
const gchar *file_to_open);
|
|
|
|
void mailcap_update_default (const gchar *type,
|
|
|
|
const gchar *command);
|
|
|
|
|
|
|
|
gboolean file_is_email(const gchar *filename);
|
2006-08-25 08:20:23 +02:00
|
|
|
gboolean sc_g_list_bigger(GList *list, gint max);
|
|
|
|
gboolean sc_g_slist_bigger(GSList *list, gint max);
|
2004-08-06 13:34:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#endif /* __UTILS_H__ */
|