1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2007-2009 Kouhei Sutou <kou@clear-code.com>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __CUT_UTILS_H__
#define __CUT_UTILS_H__
#include <glib.h>
G_BEGIN_DECLS
typedef enum {
CUT_READ,
CUT_WRITE
} CutPipeMode;
#define cut_utils_report_error(error) do \
{ \
gchar *inspected; \
\
inspected = gcut_error_inspect(error); \
g_warning("%s", inspected); \
g_free(inspected); \
g_error_free(error); \
} while (0)
gchar *cut_utils_create_regex_pattern (const gchar *string);
GList *cut_utils_filter_to_regexs (const gchar **filters);
gboolean cut_utils_filter_match (GList *regexs,
const gchar *name);
void cut_utils_append_indent (GString *string,
guint size);
void cut_utils_append_xml_element_with_value
(GString *string,
guint indent,
const gchar *element_name,
const gchar *value);
void cut_utils_append_xml_element_with_boolean_value
(GString *string,
guint indent,
const gchar *element_name,
gboolean boolean);
gchar **cut_utils_strv_concat (const gchar **str_array,
...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED;
void cut_utils_close_pipe (int *pipe,
CutPipeMode mode);
const gchar *cut_utils_get_cutter_command_path (void);
gchar *cut_utils_expand_path (const gchar *path);
gchar *cut_utils_expand_path_va_list (const gchar *path, va_list args);
gboolean cut_utils_remove_path (const char *path,
GError **error);
gboolean cut_utils_remove_path_recursive (const char *path,
GError **error);
gchar *cut_utils_regex_replace (const gchar *pattern,
const gchar *string,
const gchar *replacement,
GError **error);
GList *cut_utils_parse_gdb_backtrace (const gchar *gdb_backtrace);
gchar *cut_utils_double_to_string (gdouble value);
gint cut_utils_compare_string (gconstpointer data1,
gconstpointer data2);
gint cut_utils_compare_direct (gconstpointer data1,
gconstpointer data2);
#ifdef G_OS_WIN32
const gchar *cut_win32_base_path (void);
gchar *cut_win32_build_module_dir_name (const gchar *type);
gchar *cut_win32_build_factory_module_dir_name (const gchar *type);
gboolean cut_win32_kill_process (GPid pid,
guint exit_code);
#endif
G_END_DECLS
#endif /* __CUT_UTILS_H__ */
/*
vi:ts=4:nowrap:ai:expandtab:sw=4
*/
|