medit/moo/mooutils/mooconfig.c

1438 lines
35 KiB
C
Raw Normal View History

2006-04-08 01:45:37 -07:00
/*
* mooconfig.c
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
*/
#include "mooutils/mooconfig.h"
2006-04-09 02:01:48 -07:00
#include "mooutils/mooutils-gobject.h"
2006-04-09 03:57:22 -07:00
#include "mooutils/moocompat.h"
2006-04-08 01:45:37 -07:00
#include <string.h>
2006-04-09 02:56:51 -07:00
#ifdef __WIN32__
#define LINE_TERM "\r\n"
#else
#define LINE_TERM "\n"
#endif
struct _MooConfigPrivate {
2006-04-08 01:45:37 -07:00
GPtrArray *items;
int model_stamp;
gboolean modified;
GHashTable *default_bool;
2006-04-08 01:45:37 -07:00
};
struct _MooConfigItem {
GHashTable *dict;
char *content;
guint start;
guint end;
};
#define NTH_ITEM(cfg,n) ((MooConfigItem*) (cfg)->priv->items->pdata[n])
2006-04-08 01:45:37 -07:00
#define ITER_INDEX(iter) GPOINTER_TO_UINT((iter)->user_data)
#define ITER_SET(config,iter,ind) \
G_STMT_START { \
(iter)->user_data = GUINT_TO_POINTER(ind); \
(iter)->stamp = (config)->priv->model_stamp; \
} G_STMT_END
#define ITER_SET_INVALID(iter) (iter)->stamp = 0
2006-04-08 01:45:37 -07:00
static GObjectClass *moo_config_parent_class;
2006-04-08 01:45:37 -07:00
enum {
PROP_0,
2006-04-21 02:11:43 -07:00
PROP_MODIFIED
};
static MooConfigItem *moo_config_item_new (void);
static void moo_config_item_free (MooConfigItem *item);
static int get_item_index (MooConfig *config,
MooConfigItem *item);
static GtkTreeModelFlags moo_config_get_flags (GtkTreeModel *model);
static int moo_config_get_n_columns (GtkTreeModel *model);
static GType moo_config_get_column_type (GtkTreeModel *model,
int index);
static gboolean moo_config_get_iter (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreePath *path);
static GtkTreePath *moo_config_get_path (GtkTreeModel *model,
GtkTreeIter *iter);
static void moo_config_get_value (GtkTreeModel *model,
GtkTreeIter *iter,
int column,
GValue *value);
static gboolean moo_config_iter_next (GtkTreeModel *model,
GtkTreeIter *iter);
static gboolean moo_config_iter_children (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreeIter *parent);
static gboolean moo_config_iter_has_child (GtkTreeModel *model,
GtkTreeIter *iter);
static gint moo_config_iter_n_children (GtkTreeModel *model,
GtkTreeIter *iter);
static gboolean moo_config_iter_nth_child (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreeIter *parent,
int n);
static gboolean moo_config_iter_parent (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreeIter *child);
static void
moo_config_init (MooConfig *config)
2006-04-08 01:45:37 -07:00
{
config->priv = g_new0 (MooConfigPrivate, 1);
config->priv->items = g_ptr_array_new ();
config->priv->model_stamp = 1;
config->priv->default_bool =
g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
2006-04-08 01:45:37 -07:00
}
static void
moo_config_finalize (GObject *object)
{
MooConfig *config = MOO_CONFIG (object);
g_ptr_array_foreach (config->priv->items,
(GFunc) moo_config_item_free,
NULL);
g_ptr_array_free (config->priv->items, TRUE);
g_hash_table_destroy (config->priv->default_bool);
g_free (config->priv);
moo_config_parent_class->finalize (object);
}
static void
moo_config_set_property (GObject *object,
guint param_id,
const GValue *value,
GParamSpec *pspec)
2006-04-08 01:45:37 -07:00
{
MooConfig *config = MOO_CONFIG (object);
switch (param_id)
2006-04-08 01:45:37 -07:00
{
2006-04-21 02:11:43 -07:00
case PROP_MODIFIED:
moo_config_set_modified (config, g_value_get_boolean (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
2006-04-08 01:45:37 -07:00
}
}
static void
moo_config_get_property (GObject *object,
guint param_id,
GValue *value,
GParamSpec *pspec)
{
MooConfig *config = MOO_CONFIG (object);
switch (param_id)
{
2006-04-21 02:11:43 -07:00
case PROP_MODIFIED:
g_value_set_boolean (value, config->priv->modified);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
}
}
static void
moo_config_class_init (MooConfigClass *klass)
2006-04-08 01:45:37 -07:00
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
moo_config_parent_class = g_type_class_peek_parent (klass);
gobject_class->finalize = moo_config_finalize;
gobject_class->set_property = moo_config_set_property;
gobject_class->get_property = moo_config_get_property;
g_object_class_install_property (gobject_class,
PROP_MODIFIED,
g_param_spec_boolean ("modified",
"modified",
"modified",
FALSE,
G_PARAM_READWRITE));
2006-04-08 01:45:37 -07:00
}
static void
moo_config_tree_model_init (GtkTreeModelIface *iface)
2006-04-08 01:45:37 -07:00
{
iface->get_flags = moo_config_get_flags;
iface->get_n_columns = moo_config_get_n_columns;
iface->get_column_type = moo_config_get_column_type;
iface->get_iter = moo_config_get_iter;
iface->get_path = moo_config_get_path;
iface->get_value = moo_config_get_value;
iface->iter_next = moo_config_iter_next;
iface->iter_children = moo_config_iter_children;
iface->iter_has_child = moo_config_iter_has_child;
iface->iter_n_children = moo_config_iter_n_children;
iface->iter_nth_child = moo_config_iter_nth_child;
iface->iter_parent = moo_config_iter_parent;
2006-04-08 01:45:37 -07:00
}
GType
moo_config_get_type (void)
2006-04-08 01:45:37 -07:00
{
static GType type;
2006-04-08 01:45:37 -07:00
if (!type)
{
static GTypeInfo info = {
sizeof (MooConfigClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) moo_config_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (MooConfig),
0,
(GInstanceInitFunc) moo_config_init,
NULL
};
static const GInterfaceInfo tree_model_info = {
(GInterfaceInitFunc) moo_config_tree_model_init,
NULL,
NULL
};
type = g_type_register_static (G_TYPE_OBJECT, "MooConfig", &info, 0);
g_type_add_interface_static (type,
GTK_TYPE_TREE_MODEL,
&tree_model_info);
}
2006-04-08 01:45:37 -07:00
return type;
}
2006-04-08 01:45:37 -07:00
2006-04-21 02:11:43 -07:00
gboolean
moo_config_get_modified (MooConfig *config)
{
g_return_val_if_fail (MOO_IS_CONFIG (config), FALSE);
return config->priv->modified;
}
void
moo_config_set_modified (MooConfig *config,
gboolean modified)
{
g_return_if_fail (MOO_IS_CONFIG (config));
modified = modified != 0;
if (modified != config->priv->modified)
{
config->priv->modified = modified;
g_object_notify (G_OBJECT (config), "modified");
}
}
GQuark
moo_config_error_quark (void)
{
return g_quark_from_static_string ("moo-config-error-quark");
2006-04-21 02:11:43 -07:00
}
GType
moo_config_item_get_type (void)
{
static GType type;
if (!type)
type = g_pointer_type_register_static ("MooConfigItem");
return type;
2006-04-08 01:45:37 -07:00
}
static MooConfigItem *
moo_config_item_new (void)
2006-04-08 01:45:37 -07:00
{
MooConfigItem *item = g_new0 (MooConfigItem, 1);
item->dict = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
2006-04-08 01:45:37 -07:00
return item;
}
static void
moo_config_item_free (MooConfigItem *item)
{
if (item)
{
g_hash_table_destroy (item->dict);
g_free (item->content);
g_free (item);
}
}
MooConfig *
moo_config_new (void)
{
return g_object_new (MOO_TYPE_CONFIG, NULL);
}
MooConfig *
moo_config_new_from_file (const char *filename,
gboolean modified,
GError **error)
{
MooConfig *config;
g_return_val_if_fail (filename != NULL, NULL);
config = moo_config_new ();
if (moo_config_parse_file (config, filename, modified, error))
return config;
g_object_unref (config);
return NULL;
}
MooConfig *
moo_config_new_from_buffer (const char *string,
int len,
gboolean modified,
GError **error)
{
MooConfig *config;
g_return_val_if_fail (string != NULL, NULL);
config = moo_config_new ();
if (moo_config_parse_buffer (config, string, len, modified, error))
return config;
g_object_unref (config);
return NULL;
}
guint
moo_config_n_items (MooConfig *config)
{
g_return_val_if_fail (MOO_IS_CONFIG (config), 0);
return config->priv->items->len;
}
MooConfigItem *
moo_config_nth_item (MooConfig *config,
guint n)
{
g_return_val_if_fail (MOO_IS_CONFIG (config), NULL);
g_return_val_if_fail (n < config->priv->items->len, NULL);
return NTH_ITEM (config, n);
}
2006-04-08 01:45:37 -07:00
static char *
normalize_key (const char *string)
{
char *norm = g_ascii_strdown (string, -1);
return g_strdelimit (norm, "_", '-');
}
const char *
moo_config_item_get (MooConfigItem *item,
const char *key)
2006-04-08 01:45:37 -07:00
{
char *norm;
const char *value;
g_return_val_if_fail (item != NULL, NULL);
g_return_val_if_fail (key != NULL, NULL);
norm = normalize_key (key);
value = g_hash_table_lookup (item->dict, norm);
g_free (norm);
return value;
}
static void
emit_row_changed (MooConfig *config,
MooConfigItem *item)
{
int index;
GtkTreeIter iter;
GtkTreePath *path;
index = get_item_index (config, item);
g_return_if_fail (index >= 0);
config->priv->model_stamp++;
path = gtk_tree_path_new_from_indices (index, -1);
ITER_SET (config, &iter, index);
2006-04-21 02:11:43 -07:00
gtk_tree_model_row_changed (GTK_TREE_MODEL (config), path, &iter);
gtk_tree_path_free (path);
}
static gboolean
is_empty_string (const char *string)
{
if (!string)
return TRUE;
#define IS_SPACE(c) (c == ' ' || c == '\t' || c == '\r' || c == '\n')
while (*string)
{
if (*string && !IS_SPACE (*string))
return FALSE;
string++;
}
#undef IS_SPACE
return TRUE;
}
2006-04-08 01:45:37 -07:00
void
moo_config_set (MooConfig *config,
MooConfigItem *item,
const char *key,
const char *value,
gboolean modify)
2006-04-08 01:45:37 -07:00
{
char *norm, *old_value, *new_value = NULL;
gboolean modified = FALSE;
2006-04-08 01:45:37 -07:00
g_return_if_fail (item != NULL);
g_return_if_fail (key != NULL);
norm = normalize_key (key);
old_value = g_hash_table_lookup (item->dict, norm);
2006-04-08 01:45:37 -07:00
if (value)
{
new_value = g_strstrip (g_strdup (value));
if (is_empty_string (new_value))
{
g_free (new_value);
new_value = NULL;
}
2006-04-08 01:45:37 -07:00
}
if (new_value)
2006-04-08 01:45:37 -07:00
{
if (!old_value || strcmp (new_value, old_value))
{
g_hash_table_insert (item->dict, norm, new_value);
new_value = NULL;
modified = TRUE;
}
2006-04-08 01:45:37 -07:00
}
else if (old_value)
{
g_hash_table_remove (item->dict, norm);
g_free (norm);
modified = TRUE;
}
if (modified && modify)
moo_config_set_modified (config, TRUE);
if (modified)
emit_row_changed (config, item);
g_free (new_value);
2006-04-08 01:45:37 -07:00
}
const char *
moo_config_item_get_content (MooConfigItem *item)
{
g_return_val_if_fail (item != NULL, NULL);
return item->content;
}
void
moo_config_set_item_content (MooConfig *config,
MooConfigItem *item,
const char *content,
gboolean modify)
2006-04-08 01:45:37 -07:00
{
char *tmp;
g_return_if_fail (item != NULL);
g_return_if_fail (MOO_IS_CONFIG (config));
2006-04-08 01:45:37 -07:00
if (item->content == content)
return;
if ((!item->content && content) || (item->content && !content) ||
strcmp (content, item->content))
{
tmp = item->content;
item->content = g_strdup (content);
g_free (tmp);
if (modify)
moo_config_set_modified (config, TRUE);
emit_row_changed (config, item);
}
}
static int
get_item_index (MooConfig *config,
MooConfigItem *item)
{
guint i;
for (i = 0; i < config->priv->items->len; ++i)
if (config->priv->items->pdata[i] == item)
return i;
return -1;
}
void
moo_config_delete_item (MooConfig *config,
guint index,
gboolean modify)
{
MooConfigItem *item;
GtkTreePath *path;
g_return_if_fail (MOO_IS_CONFIG (config));
g_return_if_fail (index < config->priv->items->len);
item = config->priv->items->pdata[index];
g_ptr_array_remove_index (config->priv->items, index);
moo_config_item_free (item);
if (modify)
moo_config_set_modified (config, TRUE);
config->priv->model_stamp++;
path = gtk_tree_path_new_from_indices (index, -1);
2006-04-21 02:11:43 -07:00
gtk_tree_model_row_deleted (GTK_TREE_MODEL (config), path);
gtk_tree_path_free (path);
}
void
moo_config_move_item (MooConfig *config,
guint index,
guint new_index,
gboolean modify)
{
MooConfigItem *item;
int *new_order;
guint i;
GtkTreePath *path;
g_return_if_fail (MOO_IS_CONFIG (config));
g_return_if_fail (index < config->priv->items->len);
g_return_if_fail (new_index < config->priv->items->len);
if (index == new_index)
return;
item = config->priv->items->pdata[index];
g_ptr_array_remove_index (config->priv->items, index);
g_ptr_array_add (config->priv->items, item);
if (new_index != config->priv->items->len - 1)
{
memmove (config->priv->items->pdata + new_index + 1,
config->priv->items->pdata + new_index,
sizeof (gpointer) * (config->priv->items->len - new_index - 1));
config->priv->items->pdata[new_index] = item;
}
if (modify)
moo_config_set_modified (config, TRUE);
2006-04-21 02:11:43 -07:00
new_order = g_new (int, config->priv->items->len);
for (i = 0; i < config->priv->items->len; ++i)
if (i < MIN (index, new_index) || i > MAX (index, new_index))
new_order[i] = i;
else if (i == new_index)
new_order[i] = index;
else if (index < new_index)
new_order[i] = i + 1;
else
new_order[i] = i - 1;
config->priv->model_stamp++;
path = gtk_tree_path_new ();
gtk_tree_model_rows_reordered (GTK_TREE_MODEL (config),
path, NULL, new_order);
g_free (new_order);
gtk_tree_path_free (path);
}
static MooConfigItem *
moo_config_new_item_real (MooConfig *config,
int index,
MooConfigItem *item,
gboolean modify)
{
GtkTreePath *path;
GtkTreeIter iter;
if (!item)
item = moo_config_item_new ();
if (index >= (int) config->priv->items->len || index < 0)
index = config->priv->items->len;
if (index == (int) config->priv->items->len)
{
g_ptr_array_add (config->priv->items, item);
}
else
{
g_ptr_array_add (config->priv->items, NULL);
memmove (config->priv->items->pdata + index + 1,
config->priv->items->pdata + index,
sizeof (gpointer) * (config->priv->items->len - index - 1));
config->priv->items->pdata[index] = item;
}
if (modify)
moo_config_set_modified (config, TRUE);
config->priv->model_stamp++;
ITER_SET (config, &iter, index);
path = gtk_tree_path_new_from_indices (index, -1);
2006-04-21 02:11:43 -07:00
gtk_tree_model_row_inserted (GTK_TREE_MODEL (config), path, &iter);
gtk_tree_path_free (path);
return item;
}
MooConfigItem *
moo_config_new_item (MooConfig *config,
int index,
gboolean modify)
{
g_return_val_if_fail (MOO_IS_CONFIG (config), NULL);
return moo_config_new_item_real (config, index, NULL, modify);
2006-04-08 01:45:37 -07:00
}
/*********************************************************************/
/* Parsing
*/
inline static const char *
find_line_term (const char *string,
guint len,
guint *term_len)
{
while (len)
{
switch (string[0])
{
case '\r':
if (len > 1 && string[1] == '\n')
*term_len = 2;
else
*term_len = 1;
return string;
case '\n':
*term_len = 1;
return string;
default:
len--;
string++;
}
}
return NULL;
}
inline static char *
normalize_indent (const char *line,
guint len)
{
char *norm;
guint n_tabs;
if (!len || line[0] != '\t')
return g_strndup (line, len);
for (n_tabs = 0; n_tabs < len && line[n_tabs] == '\t'; ++n_tabs) ;
norm = g_new (char, len - n_tabs + n_tabs * 8 + 1);
norm[len - n_tabs + n_tabs * 8] = 0;
2006-04-19 11:52:35 -07:00
memset (norm, ' ', n_tabs * 8);
2006-04-08 01:45:37 -07:00
if (n_tabs < len)
memcpy (norm + n_tabs * 8, line + n_tabs, len - n_tabs);
return norm;
}
static char **
splitlines (const char *string,
guint len,
guint *n_lines_p)
{
GSList *list = NULL;
char **lines;
guint n_lines = 0, i;
if (!len)
2006-04-13 00:28:47 -07:00
{
*n_lines_p = 0;
return g_new0 (char*, 1);
}
2006-04-08 01:45:37 -07:00
while (len)
{
guint term_len = 0;
const char *term = find_line_term (string, len, &term_len);
n_lines++;
if (term)
{
list = g_slist_prepend (list, normalize_indent (string, term - string));
len -= (term - string + term_len);
string = term + term_len;
}
else
{
list = g_slist_prepend (list, normalize_indent (string, len));
break;
}
}
list = g_slist_reverse (list);
lines = g_new (char*, n_lines + 1);
lines[n_lines] = NULL;
i = 0;
while (list)
{
lines[i++] = list->data;
list = g_slist_delete_link (list, list);
}
*n_lines_p = n_lines;
return lines;
}
static gboolean
line_is_blank_or_comment (const char *line)
{
if (!line[0] || line[0] == '#')
return TRUE;
while (*line)
{
if (*line != ' ' && *line != '\t')
return FALSE;
line++;
}
return TRUE;
}
static gboolean
line_is_blank (const char *line)
{
while (line[0])
{
if (line[0] != ' ' && line[0] != '\t')
return FALSE;
line++;
}
return TRUE;
}
static guint
line_indent (const char *line)
{
guint indent = 0;
while (TRUE)
{
switch (*line++)
{
case ' ':
indent += 1;
break;
case '\t':
indent += 8;
break;
default:
return indent;
}
}
}
inline static gboolean
line_is_comment (const char *line)
{
return line[0] == '#';
}
inline static gboolean
line_is_indented (const char *line)
{
return line[0] == ' ';
}
static gboolean
parse_header_line (char **lines,
guint n,
MooConfigItem *item,
const char *filename,
GError **error)
2006-04-08 01:45:37 -07:00
{
char *line = lines[n];
char *value = NULL, *key = NULL;
value = strchr (line, ':');
if (!value)
{
g_set_error (error, MOO_CONFIG_ERROR, MOO_CONFIG_ERROR_PARSE,
"In '%s': value missing on line %d", filename, n+1);
2006-04-08 01:45:37 -07:00
goto error;
}
key = g_strstrip (g_strndup (line, value - line));
value = g_strstrip (g_strdup (value + 1));
if (!key[0])
{
g_set_error (error, MOO_CONFIG_ERROR, MOO_CONFIG_ERROR_PARSE,
"In '%s': empty key on line %d", filename, n+1);
2006-04-08 01:45:37 -07:00
goto error;
}
if (!value[0])
{
g_set_error (error, MOO_CONFIG_ERROR, MOO_CONFIG_ERROR_PARSE,
"In '%s': value missing on line %d", filename, n+1);
2006-04-08 01:45:37 -07:00
goto error;
}
if (g_hash_table_lookup (item->dict, key))
2006-04-08 01:45:37 -07:00
{
g_set_error (error, MOO_CONFIG_ERROR, MOO_CONFIG_ERROR_PARSE,
"In '%s': duplicated key '%s' on line %d",
filename, key, n+1);
2006-04-08 01:45:37 -07:00
goto error;
}
g_hash_table_insert (item->dict, key, value);
2006-04-08 01:45:37 -07:00
return TRUE;
error:
g_free (value);
g_free (key);
return FALSE;
}
static void
moo_config_add_items (MooConfig *config,
GSList *list,
gboolean modify)
2006-04-08 01:45:37 -07:00
{
while (list)
{
moo_config_new_item_real (config, -1, list->data, modify);
list = g_slist_delete_link (list, list);
}
}
static gboolean
moo_config_parse_lines (MooConfig *config,
char **lines,
guint n_lines,
gboolean modify,
const char *filename,
GError **error)
{
MooConfigItem *item;
2006-04-08 01:45:37 -07:00
GPtrArray *content;
guint start;
GSList *items;
content = g_ptr_array_new ();
start = 0;
items = NULL;
item = NULL;
2006-04-08 01:45:37 -07:00
2006-04-13 00:28:47 -07:00
while (start < n_lines)
2006-04-08 01:45:37 -07:00
{
guint content_start;
while (start < n_lines && line_is_blank_or_comment (lines[start]))
start++;
if (start == n_lines)
break;
if (line_is_indented (lines[start]))
{
g_set_error (error, MOO_CONFIG_ERROR, MOO_CONFIG_ERROR_PARSE,
"In '%s', line %d: indented line without header",
filename, start+1);
2006-04-08 01:45:37 -07:00
goto error;
}
content_start = start;
while (content_start < n_lines)
{
const char *line = lines[content_start];
if (line_is_blank (line) || line_is_indented (line))
break;
if (line_is_comment (lines[content_start]))
{
content_start++;
continue;
}
if (!item)
{
item = moo_config_item_new ();
item->start = start;
}
if (!parse_header_line (lines, content_start, item, filename, error))
2006-04-08 01:45:37 -07:00
goto error;
content_start++;
}
if (!item)
2006-04-13 00:28:47 -07:00
break;
2006-04-08 01:45:37 -07:00
start = content_start;
if (start < n_lines &&
line_is_indented (lines[start]) &&
!line_is_blank (lines[start]))
2006-04-08 01:45:37 -07:00
{
while (start < n_lines)
{
if (line_is_blank_or_comment (lines[start]))
{
start++;
continue;
}
if (!line_is_indented (lines[start]))
break;
g_ptr_array_add (content, lines[start]);
start++;
}
}
if (content->len)
{
guint indent, i;
GString *str;
indent = line_indent (content->pdata[0]);
for (i = 1; i < content->len; ++i)
{
guint indent_here = line_indent (content->pdata[i]);
indent = MIN (indent_here, indent);
}
if (!indent)
{
g_set_error (error, MOO_CONFIG_ERROR,
MOO_CONFIG_ERROR_PARSE,
"%s: oops", G_STRLOC);
2006-04-08 01:45:37 -07:00
goto error;
}
str = g_string_new (NULL);
for (i = 0; i < content->len; ++i)
{
char *line = content->pdata[i];
g_string_append (str, line + indent);
g_string_append_c (str, '\n');
}
item->content = str->str;
2006-04-08 01:45:37 -07:00
g_string_free (str, FALSE);
g_ptr_array_set_size (content, 0);
}
item->end = start;
items = g_slist_prepend (items, item);
item = NULL;
2006-04-08 01:45:37 -07:00
}
items = g_slist_reverse (items);
moo_config_add_items (config, items, modify);
2006-04-08 01:45:37 -07:00
g_ptr_array_free (content, TRUE);
return TRUE;
2006-04-08 01:45:37 -07:00
error:
moo_config_item_free (item);
2006-04-08 01:45:37 -07:00
g_ptr_array_free (content, TRUE);
g_slist_foreach (items, (GFunc) moo_config_item_free, NULL);
2006-04-08 01:45:37 -07:00
g_slist_free (items);
return FALSE;
2006-04-08 01:45:37 -07:00
}
static gboolean
moo_config_parse_buffer_real (MooConfig *config,
const char *filename,
const char *string,
int len,
gboolean modify,
GError **error)
2006-04-08 01:45:37 -07:00
{
char **lines;
guint n_lines;
gboolean result;
2006-04-08 01:45:37 -07:00
g_return_val_if_fail (MOO_IS_CONFIG (config), FALSE);
g_return_val_if_fail (string != NULL, FALSE);
2006-04-08 01:45:37 -07:00
if (len < 0)
len = strlen (string);
lines = splitlines (string, len, &n_lines);
result = moo_config_parse_lines (config, lines, n_lines,
modify, filename, error);
2006-04-08 01:45:37 -07:00
g_strfreev (lines);
return result;
2006-04-08 01:45:37 -07:00
}
gboolean
moo_config_parse_buffer (MooConfig *config,
const char *string,
int len,
gboolean modify,
GError **error)
{
g_return_val_if_fail (MOO_IS_CONFIG (config), FALSE);
g_return_val_if_fail (string != NULL, FALSE);
return moo_config_parse_buffer_real (config, "<input>",
string, len, modify,
error);
}
gboolean
moo_config_parse_file (MooConfig *config,
const char *filename,
gboolean modify,
GError **error)
2006-04-08 01:45:37 -07:00
{
GMappedFile *file;
GError *error_here = NULL;
gboolean result;
2006-04-08 01:45:37 -07:00
g_return_val_if_fail (MOO_IS_CONFIG (config), FALSE);
g_return_val_if_fail (filename != NULL, FALSE);
2006-04-08 01:45:37 -07:00
file = g_mapped_file_new (filename, FALSE, &error_here);
2006-04-08 01:45:37 -07:00
if (!file)
{
g_set_error (error, MOO_CONFIG_ERROR,
MOO_CONFIG_ERROR_FILE,
"%s", error_here->message);
g_error_free (error_here);
return FALSE;
2006-04-08 01:45:37 -07:00
}
result = moo_config_parse_buffer_real (config, filename,
g_mapped_file_get_contents (file),
g_mapped_file_get_length (file),
modify, error);
2006-04-08 01:45:37 -07:00
g_mapped_file_free (file);
return result;
2006-04-08 01:45:37 -07:00
}
2006-04-09 02:01:48 -07:00
static gboolean
get_default_bool (MooConfig *config,
const char *key)
{
char *norm_key = normalize_key (key);
gpointer val = g_hash_table_lookup (config->priv->default_bool, key);
g_free (norm_key);
return GPOINTER_TO_INT (val);
}
2006-04-09 02:01:48 -07:00
gboolean
moo_config_get_bool (MooConfig *config,
MooConfigItem *item,
const char *key)
2006-04-09 02:01:48 -07:00
{
const char *string;
gboolean default_val;
g_return_val_if_fail (MOO_IS_CONFIG (config), FALSE);
g_return_val_if_fail (item != NULL, FALSE);
g_return_val_if_fail (key != NULL, FALSE);
string = moo_config_item_get (item, key);
default_val = get_default_bool (config, key);
return moo_convert_string_to_bool (string, default_val);
2006-04-09 02:01:48 -07:00
}
void
moo_config_set_bool (MooConfig *config,
MooConfigItem *item,
const char *key,
gboolean value,
gboolean modify)
{
gboolean default_val;
g_return_if_fail (MOO_IS_CONFIG (config));
g_return_if_fail (item != NULL);
g_return_if_fail (key != NULL);
default_val = get_default_bool (config, key);
value = value != 0;
if (default_val == value)
moo_config_set (config, item, key, NULL, modify);
else
moo_config_set (config, item, key,
value ? "true" : "false",
modify);
}
void
moo_config_set_default_bool (MooConfig *config,
const char *key,
gboolean value)
{
char *norm_key;
g_return_if_fail (MOO_IS_CONFIG (config));
g_return_if_fail (key != NULL);
norm_key = normalize_key (key);
value = value != 0;
g_hash_table_insert (config->priv->default_bool, norm_key,
GINT_TO_POINTER (value));
}
2006-04-09 02:56:51 -07:00
static void
format_key (const char *key,
const char *value,
GString *string)
{
g_string_append_printf (string, "%s: %s" LINE_TERM, key, value);
}
static void
moo_config_item_format (MooConfigItem *item,
GString *string)
{
char **lines;
guint n_lines, i;
char *indent;
g_return_if_fail (g_hash_table_size (item->dict) != 0);
2006-04-09 02:56:51 -07:00
g_hash_table_foreach (item->dict, (GHFunc) format_key, string);
if (!item->content)
return;
lines = splitlines (item->content, strlen (item->content), &n_lines);
indent = g_strnfill (2, ' ');
for (i = 0; i < n_lines; ++i)
{
g_string_append (string, indent);
g_string_append (string, lines[i]);
g_string_append (string, LINE_TERM);
}
g_free (indent);
g_strfreev (lines);
}
char *
moo_config_format (MooConfig *config)
{
GString *string;
guint i;
g_return_val_if_fail (config != NULL, NULL);
string = g_string_new (NULL);
for (i = 0; i < config->priv->items->len; ++i)
2006-04-09 02:56:51 -07:00
{
if (i > 0)
g_string_append (string, LINE_TERM);
moo_config_item_format (config->priv->items->pdata[i], string);
2006-04-09 02:56:51 -07:00
}
return g_string_free (string, FALSE);
}
/***********************************************************************/
/* GtkTreeModel interface
*/
static GtkTreeModelFlags
moo_config_get_flags (G_GNUC_UNUSED GtkTreeModel *model)
{
return GTK_TREE_MODEL_LIST_ONLY;
}
static int
moo_config_get_n_columns (G_GNUC_UNUSED GtkTreeModel *model)
{
return 1;
}
static GType
moo_config_get_column_type (G_GNUC_UNUSED GtkTreeModel *model,
int index)
{
g_return_val_if_fail (index == 0, 0);
return MOO_TYPE_CONFIG_ITEM;
}
static gboolean
moo_config_get_iter_nth (MooConfig *config,
GtkTreeIter *iter,
int index)
{
if (index < 0 || index >= (int) config->priv->items->len)
{
ITER_SET_INVALID (iter);
return FALSE;
}
ITER_SET (config, iter, index);
return TRUE;
}
static gboolean
moo_config_get_iter (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreePath *path)
{
if (gtk_tree_path_get_depth (path) != 1)
{
ITER_SET_INVALID (iter);
return FALSE;
}
return moo_config_get_iter_nth (MOO_CONFIG (model), iter,
gtk_tree_path_get_indices(path)[0]);
}
static GtkTreePath *
moo_config_get_path (GtkTreeModel *model,
GtkTreeIter *iter)
{
MooConfig *config = MOO_CONFIG (model);
g_return_val_if_fail (config->priv->model_stamp == iter->stamp, NULL);
return gtk_tree_path_new_from_indices (ITER_INDEX (iter), -1);
}
static void
moo_config_get_value (GtkTreeModel *model,
GtkTreeIter *iter,
int column,
GValue *value)
{
MooConfig *config = MOO_CONFIG (model);
g_return_if_fail (config->priv->model_stamp == iter->stamp);
g_return_if_fail (column == 0);
g_value_init (value, MOO_TYPE_CONFIG_ITEM);
g_value_set_pointer (value, config->priv->items->pdata[ITER_INDEX (iter)]);
}
static gboolean
moo_config_iter_next (GtkTreeModel *model,
GtkTreeIter *iter)
{
return moo_config_get_iter_nth (MOO_CONFIG (model), iter,
ITER_INDEX (iter) + 1);
}
static gboolean
moo_config_iter_children (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreeIter *parent)
{
if (parent)
{
ITER_SET_INVALID (iter);
return FALSE;
}
else
{
return moo_config_get_iter_nth (MOO_CONFIG (model), iter, 0);
}
}
static gboolean
moo_config_iter_has_child (GtkTreeModel *model,
GtkTreeIter *iter)
{
if (iter)
return FALSE;
else
return MOO_CONFIG(model)->priv->items->len != 0;
}
static int
moo_config_iter_n_children (GtkTreeModel *model,
GtkTreeIter *iter)
{
if (iter)
return 0;
else
return MOO_CONFIG(model)->priv->items->len;
}
static gboolean
moo_config_iter_nth_child (GtkTreeModel *model,
GtkTreeIter *iter,
GtkTreeIter *parent,
int n)
{
if (parent)
{
ITER_SET_INVALID (iter);
return FALSE;
}
else
{
return moo_config_get_iter_nth (MOO_CONFIG (model), iter, n);
}
}
static gboolean
moo_config_iter_parent (G_GNUC_UNUSED GtkTreeModel *model,
G_GNUC_UNUSED GtkTreeIter *iter,
G_GNUC_UNUSED GtkTreeIter *child)
{
ITER_SET_INVALID (iter);
return FALSE;
}
void
moo_config_get_item_iter (MooConfig *config,
MooConfigItem *item,
GtkTreeIter *iter)
{
int index;
g_return_if_fail (MOO_IS_CONFIG (config));
g_return_if_fail (item != NULL);
g_return_if_fail (iter != NULL);
index = get_item_index (config, item);
g_return_if_fail (index >= 0);
moo_config_get_iter_nth (config, iter, index);
}