tests/test
*.csv
gtk-doc.m4
+*.gir
+*.typelib
-DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
+DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
SUBDIRS = src tests data docs
AC_PROG_LIBTOOL
GTK_DOC_CHECK(1.0)
+GOBJECT_INTROSPECTION_CHECK([1.30.0])
+
# Checks for libraries.
PKG_CHECK_MODULES(LIBCONFI, [libgdaex >= 0.5.0])
libconfi_la_LDFLAGS = -no-undefined
include_HEADERS = libconfi.h
+
+CLEANFILES =
+
+-include $(INTROSPECTION_MAKEFILE)
+INTROSPECTION_GIRS =
+INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --warn-all --accept-unprefixed --identifier-prefix=""
+INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
+INTROSPECTION_SCANNER_ENV = CC="$(CC)"
+
+if HAVE_INTROSPECTION
+introspection_sources = $(libconfi_la_SOURCES) $(include_HEADERS)
+
+Confi-1.0.gir: libconfi.la
+Confi_1_0_gir_INCLUDES = Gda-5.0
+Confi_1_0_gir_CFLAGS = $(AM_CPPFLAGS)
+Confi_1_0_gir_LIBS = libconfi.la
+Confi_1_0_gir_FILES = $(introspection_sources)
+INTROSPECTION_GIRS += Confi-1.0.gir
+
+girdir = $(datadir)/gir-1.0
+gir_DATA = $(INTROSPECTION_GIRS)
+
+typelibdir = $(libdir)/girepository-1.0
+typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
+
+CLEANFILES += $(gir_DATA) $(typelib_DATA)
+endif
\ No newline at end of file
#include <string.h>
+#include <libgdaex/libgdaex.h>
+
#include "libconfi.h"
enum
* @cnc_string: the connection string to use to connect to database that
* contains configuration.
* @name: configuration's name.
- * @root:
+ * @root: (nullable):
* @create: whether create a config into database if @name doesn't exists.
*
- * Returns: the newly created #Confi object, or NULL if it fails.
+ * Returns: (transfer none): the newly created #Confi object, or NULL if it fails.
*/
Confi
*confi_new (const gchar *cnc_string,
* contains configuration.
* @filter:
*
- * Returns: a #GList of #Confi. If there's no configurations, returns a valid
+ * Returns: (element-type Confi) (transfer container): a #GList of #Confi. If there's no configurations, returns a valid
* #GList but with a unique NULL element.
*/
GList
#ifndef __LIBCONFI_H__
#define __LIBCONFI_H__
-#include <glib.h>
#include <glib-object.h>
-#include <libgdaex/libgdaex.h>
G_BEGIN_DECLS
*path;
} ConfiKey;
-GType confi_get_type (void) G_GNUC_CONST;
+GType confi_get_type (void);
Confi *confi_new (const gchar *cnc_string,
const gchar *name,
-L../src -lconfi
noinst_PROGRAMS = test
+
+EXTRA_DIST = gir.py
--- /dev/null
+#!/usr/bin/env python2\r
+\r
+from gi.repository import Confi\r
+\r
+# Create a new object\r
+confi = Confi.Confi.new("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi", "Default", None, False)\r
+\r
+value = confi.path_get_value ("folder/key1/key1_2");\r
+\r
+print(value)
\ No newline at end of file