[gnome-builder/wip/chergert/pipeline: 24/43] configuration: add strv internal data helpers
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/chergert/pipeline: 24/43] configuration: add strv internal data helpers
- Date: Fri, 3 Feb 2017 22:08:27 +0000 (UTC)
commit f25c6d5d8e061ace4f41f4290b99dcaea7d7957a
Author: Christian Hergert <chergert redhat com>
Date: Fri Feb 3 12:42:00 2017 -0800
configuration: add strv internal data helpers
libide/buildsystem/ide-configuration.c | 31 +++++++++++++++++++++++++++++++
libide/buildsystem/ide-configuration.h | 5 +++++
2 files changed, 36 insertions(+), 0 deletions(-)
---
diff --git a/libide/buildsystem/ide-configuration.c b/libide/buildsystem/ide-configuration.c
index 827350c..0bfc391 100644
--- a/libide/buildsystem/ide-configuration.c
+++ b/libide/buildsystem/ide-configuration.c
@@ -1228,6 +1228,37 @@ ide_configuration_set_internal_string (IdeConfiguration *self,
g_value_set_string (v, value);
}
+const gchar * const *
+ide_configuration_get_internal_strv (IdeConfiguration *self,
+ const gchar *key)
+{
+ const GValue *v;
+
+ g_return_val_if_fail (IDE_IS_CONFIGURATION (self), NULL);
+ g_return_val_if_fail (key != NULL, NULL);
+
+ v = g_hash_table_lookup (self->internal, key);
+
+ if (v != NULL && G_VALUE_HOLDS (v, G_TYPE_STRV))
+ return g_value_get_boxed (v);
+
+ return NULL;
+}
+
+void
+ide_configuration_set_internal_strv (IdeConfiguration *self,
+ const gchar *key,
+ const gchar * const *value)
+{
+ GValue *v;
+
+ g_return_if_fail (IDE_IS_CONFIGURATION (self));
+ g_return_if_fail (key != NULL);
+
+ v = ide_configuration_reset_internal_value (self, key, G_TYPE_STRV);
+ g_value_set_boxed (v, value);
+}
+
gboolean
ide_configuration_get_internal_boolean (IdeConfiguration *self,
const gchar *key)
diff --git a/libide/buildsystem/ide-configuration.h b/libide/buildsystem/ide-configuration.h
index 7d72584..5875eff 100644
--- a/libide/buildsystem/ide-configuration.h
+++ b/libide/buildsystem/ide-configuration.h
@@ -86,6 +86,11 @@ const gchar *ide_configuration_get_internal_string (IdeConfiguration
void ide_configuration_set_internal_string (IdeConfiguration *self,
const gchar *key,
const gchar *value);
+const gchar * const *ide_configuration_get_internal_strv (IdeConfiguration *self,
+ const gchar *key);
+void ide_configuration_set_internal_strv (IdeConfiguration *self,
+ const gchar *key,
+ const gchar * const *value);
gboolean ide_configuration_get_internal_boolean (IdeConfiguration *self,
const gchar *key);
void ide_configuration_set_internal_boolean (IdeConfiguration *self,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]