2010-04-16 03:26:34 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink Limited
|
|
|
|
*
|
|
|
|
* 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
|
2017-05-26 16:08:19 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2010-04-16 03:26:34 +02:00
|
|
|
*
|
|
|
|
* 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
|
2018-08-13 15:22:53 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2010-04-16 03:26:34 +02:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __gvdb_reader_h__
|
|
|
|
#define __gvdb_reader_h__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2018-10-24 15:46:16 +02:00
|
|
|
/* We cannot enable the weak attribute unconditionally here because both
|
|
|
|
* gvdb/gvdb-reader.c and tests/dconf-mock-gvdb.c include this file. The
|
|
|
|
* intention of using weak symbols here is to allow the latter to override
|
|
|
|
* functions defined in the former, so functions in tests/dconf-mock-gvdb.c
|
|
|
|
* must have strong bindings. */
|
|
|
|
#ifdef GVDB_USE_WEAK_SYMBOLS
|
|
|
|
# ifdef __GNUC__
|
|
|
|
# define GVDB_GNUC_WEAK __attribute__((weak))
|
|
|
|
# else
|
|
|
|
# define GVDB_GNUC_WEAK
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define GVDB_GNUC_WEAK
|
|
|
|
#endif
|
|
|
|
|
2010-04-16 03:26:34 +02:00
|
|
|
typedef struct _GvdbTable GvdbTable;
|
|
|
|
|
2011-01-17 21:15:46 +01:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2012-10-23 17:34:13 +02:00
|
|
|
GvdbTable * gvdb_table_new_from_bytes (GBytes *bytes,
|
2010-04-16 03:26:34 +02:00
|
|
|
gboolean trusted,
|
|
|
|
GError **error);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2012-10-23 17:34:13 +02:00
|
|
|
GvdbTable * gvdb_table_new (const gchar *filename,
|
2012-01-13 15:59:56 +01:00
|
|
|
gboolean trusted,
|
2012-07-06 05:14:55 +02:00
|
|
|
GError **error);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2012-10-23 17:34:13 +02:00
|
|
|
void gvdb_table_free (GvdbTable *table);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2012-07-09 20:32:22 +02:00
|
|
|
gchar ** gvdb_table_get_names (GvdbTable *table,
|
2018-08-16 16:36:32 +02:00
|
|
|
gsize *length);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-04-16 03:26:34 +02:00
|
|
|
gchar ** gvdb_table_list (GvdbTable *table,
|
|
|
|
const gchar *key);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-04-16 03:26:34 +02:00
|
|
|
GvdbTable * gvdb_table_get_table (GvdbTable *table,
|
|
|
|
const gchar *key);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-10-04 04:54:03 +02:00
|
|
|
GVariant * gvdb_table_get_raw_value (GvdbTable *table,
|
|
|
|
const gchar *key);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-04-16 03:26:34 +02:00
|
|
|
GVariant * gvdb_table_get_value (GvdbTable *table,
|
2010-06-10 19:34:56 +02:00
|
|
|
const gchar *key);
|
2010-04-16 03:26:34 +02:00
|
|
|
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-04-16 03:26:34 +02:00
|
|
|
gboolean gvdb_table_has_value (GvdbTable *table,
|
|
|
|
const gchar *key);
|
2018-10-24 15:46:16 +02:00
|
|
|
G_GNUC_INTERNAL GVDB_GNUC_WEAK
|
2010-07-19 02:45:37 +02:00
|
|
|
gboolean gvdb_table_is_valid (GvdbTable *table);
|
|
|
|
|
2011-01-17 21:15:46 +01:00
|
|
|
G_END_DECLS
|
2010-04-16 03:26:34 +02:00
|
|
|
|
|
|
|
#endif /* __gvdb_reader_h__ */
|