DISTCHECK_CONFIGURE_FLAGS = --enable-introspection
-SUBDIRS = src plugins
+SUBDIRS = src plugins tests
EXTRA_DIST = libzakbookmarks.pc.in
src/Makefile
plugins/Makefile
plugins/db/Makefile
+ tests/Makefile
])
AC_OUTPUT
$(LIBZAKBOOKMARKS_LIBS)
plugins_DATA = db.plugin
+
+EXTRA_DIST = schema.sql
gdaex_sql_builder_from (sqlb, "bookmarks", NULL);
- gdaex_sql_builder_order (sqlb, "name", NULL);
+ gdaex_sql_builder_fields (sqlb,
+ "bookmarks", "name", "", NULL,
+ "bookmarks", "url", "", NULL,
+ NULL);
+
+ gdaex_sql_builder_order (sqlb, "bookmarks", "name", "", TRUE, NULL);
dm = gdaex_sql_builder_query (sqlb, priv->gdaex, NULL);
if (!gdaex_data_model_is_empty (dm))
{
iter = gda_data_model_create_iter (dm);
- while (gda_data_model_iter_next (dm, iter))
+ while (gda_data_model_iter_move_next (iter))
{
ZakBksBookmark *bk;
bk = g_new0 (ZakBksBookmark, 1);
GDA_SQL_OPERATOR_TYPE_EQ,
gval,
NULL);
- g_value_unset (gval);
dm = gdaex_sql_builder_query (sqlb, priv->gdaex, NULL);
- if (!gdaex_data_model_is_empty (dm))
+ if (gdaex_data_model_is_empty (dm))
{
sqlb = gdaex_sql_builder_new (GDA_SQL_STATEMENT_INSERT);
g_value_init (gval, G_TYPE_STRING);
g_value_set_string (gval, bk->name);
gdaex_sql_builder_field (sqlb,
- "bookmarks", "name", NULL,
+ "bookmarks", "name", "",
gval);
- g_value_unset (gval);
gval = g_new0 (GValue, 1);
g_value_init (gval, G_TYPE_STRING);
g_value_set_string (gval, bk->url);
gdaex_sql_builder_field (sqlb,
- "bookmarks", "url", NULL,
+ "bookmarks", "url", "",
gval);
- g_value_unset (gval);
-
- gdaex_sql_builder_execute (sqlb, priv->gdaex, NULL);
}
else
{
g_value_init (gval, G_TYPE_STRING);
g_value_set_string (gval, bk->name);
gdaex_sql_builder_field (sqlb,
- "bookmarks", "name", NULL,
+ "bookmarks", "name", "",
gval);
- g_value_unset (gval);
gval = g_new0 (GValue, 1);
g_value_init (gval, G_TYPE_STRING);
GDA_SQL_OPERATOR_TYPE_EQ,
gval,
NULL);
- g_value_unset (gval);
-
- gdaex_sql_builder_execute (sqlb, priv->gdaex, NULL);
}
+
+ gdaex_sql_builder_execute (sqlb, priv->gdaex, NULL);
}
static void
GDA_SQL_OPERATOR_TYPE_EQ,
gval,
NULL);
- g_value_unset (gval);
gdaex_sql_builder_execute (sqlb, priv->gdaex, NULL);
}
--- /dev/null
+CREATE TABLE bookmarks
+(
+ name character varying,
+ url character varying,
+ CONSTRAINT bookmarks_pkey PRIMARY KEY (url)
+);
return ppinfo;
}
+GList
+*zak_bks_bks_get_bookmarks (ZakBksBks *bks)
+{
+ GList *ret;
+
+ if (bks->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ }
+ else
+ {
+ ret = zak_bks_pluggable_get_bookmarks (bks->pluggable);
+ }
+
+ return ret;
+}
+
+void
+zak_bks_bks_add_bookmark (ZakBksBks *bks, ZakBksBookmark *bk)
+{
+ if (bks->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ }
+ else
+ {
+ zak_bks_pluggable_add_bookmark (bks->pluggable, bk);
+ }
+}
+
+void
+zak_bks_bks_remove_bookmark (ZakBksBks *bks, ZakBksBookmark *bk)
+{
+ if (bks->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ }
+ else
+ {
+ zak_bks_pluggable_remove_bookmark (bks->pluggable, bk);
+ }
+}
+
/**
* zak_bks_bks_destroy:
* @bks: a #ZakBksBks object.
void zak_bks_bks_add_bookmark (ZakBksBks *bks, ZakBksBookmark *bk);
void zak_bks_bks_remove_bookmark (ZakBksBks *bks, ZakBksBookmark *bk);
-void zak_bks_destroy (ZakBksBks *bks);
+void zak_bks_bks_destroy (ZakBksBks *bks);
G_END_DECLS
--- /dev/null
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+ $(DISABLE_DEPRECATED_CFLAGS) \
+ $(LIBZAKBOOKMARKS_CFLAGS) \
+ -I$(top_srcdir)/src \
+ -DPLUGINSDIR=\""$(top_builddir)/plugins"\"
+
+LIBS = $(LIBZAKBOOKMARKS_LIBS) \
+ -L$(top_builddir)/src -lzakbookmarks \
+ -export-dynamic
+
+LDADD = $(top_builddir)/src/libzakbookmarks.la
+
+noinst_PROGRAMS = test
--- /dev/null
+/*
+ * Copyright (C) 2019 Andrea Zagli <azagli@libero.it>
+ *
+ * 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.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakbookmarks.h"
+
+static void
+list_func (gpointer data,
+ gpointer user_data)
+{
+ ZakBksBookmark *bk = (ZakBksBookmark *)data;
+
+ g_printf ("Bookmark: %s - %s\n", bk->name, bk->url);
+}
+
+int
+main (int argc, char **argv)
+{
+ PeasEngine *engine;
+ ZakBksBks *bks;
+ PeasPluginInfo *ppinfo;
+
+ GList *list;
+
+ ZakBksBookmark *bk;
+
+ if (argc < 2)
+ {
+ g_error ("Usage: test <connection string>");
+ return 0;
+ }
+
+ engine = peas_engine_get_default ();
+ peas_engine_add_search_path (engine, PLUGINSDIR, NULL);
+
+ bks = zak_bks_bks_new (argv[1]);
+ if (bks == NULL)
+ {
+ g_error ("Error on initialization.");
+ return 0;
+ }
+
+ ppinfo = zak_bks_bks_get_plugin_info (bks);
+ g_printf ("Plugin info\n");
+ g_printf ("Name: %s\n", peas_plugin_info_get_name (ppinfo));
+ g_printf ("Module dir: %s\n", peas_plugin_info_get_module_dir (ppinfo));
+ g_printf ("Module name: %s\n", peas_plugin_info_get_module_name (ppinfo));
+ g_printf ("\n");
+
+ g_printf ("BOOKMARKS ORIGINAL LIST\n");
+ g_printf ("-----------------------\n");
+ list = zak_bks_bks_get_bookmarks (bks);
+ g_list_foreach (list, list_func, NULL);
+ g_printf ("-----------------------\n\n");
+
+ bk = g_new0 (ZakBksBookmark, 1);
+ bk->name = g_strdup ("Google");
+ bk->url = g_strdup ("https://www.google.it");
+ zak_bks_bks_add_bookmark (bks, bk);
+
+ bk = g_new0 (ZakBksBookmark, 1);
+ bk->name = g_strdup ("DuckDuckGo");
+ bk->url = g_strdup ("https://www.duckduckgo.com");
+ zak_bks_bks_add_bookmark (bks, bk);
+
+ g_printf ("ADDED 2 BOOKMARKS\n");
+ g_printf ("-----------------------\n");
+ list = zak_bks_bks_get_bookmarks (bks);
+ g_list_foreach (list, list_func, NULL);
+ g_printf ("-----------------------\n\n");
+
+ bk = g_new0 (ZakBksBookmark, 1);
+ bk->url = g_strdup ("https://www.google.it");
+ zak_bks_bks_remove_bookmark (bks, bk);
+
+ g_printf ("REMOVED GOOGLE BOOKMARK\n");
+ g_printf ("-----------------------\n");
+ list = zak_bks_bks_get_bookmarks (bks);
+ g_list_foreach (list, list_func, NULL);
+ g_printf ("-----------------------\n\n");
+
+ zak_bks_bks_destroy (bks);
+
+ return 0;
+}