+/*
+ * 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;
+}