#include <config.h>
#endif
+#include <syslog.h>
+
+#include "main.h"
#include "url.h"
static void zak_cgi_url_class_init (ZakCgiUrlClass *class);
typedef struct _ZakCgiUrlPrivate ZakCgiUrlPrivate;
struct _ZakCgiUrlPrivate
{
+ gchar *controller;
+ gchar *action;
+
+ GHashTable *ht_functions;
};
G_DEFINE_TYPE (ZakCgiUrl, zak_cgi_url, G_TYPE_OBJECT)
{
ZakCgiUrlPrivate *priv = ZAK_CGI_URL_GET_PRIVATE (zak_cgi_url);
+ priv->controller = NULL;
+ priv->action = NULL;
+
+ priv->ht_functions = g_hash_table_new (g_str_hash, g_str_equal);
}
/**
ZakCgiUrl *zak_cgi_url;
ZakCgiUrlPrivate *priv;
+ GHashTable *ht_env;
+
+ GValue *url;
+
zak_cgi_url = ZAK_CGI_URL (g_object_new (zak_cgi_url_get_type (), NULL));
priv = ZAK_CGI_URL_GET_PRIVATE (zak_cgi_url);
+ /* parsing */
+ ht_env = zak_cgi_main_get_parameters (NULL);
+ url = g_hash_table_lookup (ht_env, "_url");
+ if (url != NULL)
+ {
+ gchar **splitted;
+
+ splitted = g_strsplit (g_value_get_string (url), "/", -1);
+ if (g_strv_length (splitted) >= 3)
+ {
+ priv->controller = g_strdup (splitted[1]);
+ priv->action = g_strdup (splitted [2]);
+ }
+ g_strfreev (splitted);
+ }
return zak_cgi_url;
}
+void
+zak_cgi_url_connect (ZakCgiUrl *url,
+ const gchar *controller,
+ const gchar *action,
+ ZakCgiUrlConnectedFunction function,
+ gpointer user_data)
+{
+ GPtrArray *ar;
+
+ ZakCgiUrlPrivate *priv = ZAK_CGI_URL_GET_PRIVATE (url);
+
+ ar = g_ptr_array_new ();
+ g_ptr_array_add (ar, function);
+ g_ptr_array_add (ar, user_data);
+
+ g_hash_table_replace (priv->ht_functions, g_strdup_printf ("%s|%s", controller, action), g_ptr_array_ref (ar));
+
+ g_ptr_array_unref (ar);
+}
+
+void
+zak_cgi_url_dispatch (ZakCgiUrl *url)
+{
+ gchar *name;
+ GPtrArray *ar;
+ ZakCgiUrlConnectedFunction function;
+
+ ZakCgiUrlPrivate *priv = ZAK_CGI_URL_GET_PRIVATE (url);
+
+ name = g_strdup_printf ("%s|%s", priv->controller, priv->action);
+ ar = (GPtrArray *)g_hash_table_lookup (priv->ht_functions, name);
+ if (ar != NULL)
+ {
+ function = g_ptr_array_index (ar, 0);
+ (*function)(g_ptr_array_index (ar, 1));
+ }
+}
+
/* PRIVATE */
static void
zak_cgi_url_set_property (GObject *object,
ZakCgiUrl *zak_cgi_url_new (void);
+typedef void (*ZakCgiUrlConnectedFunction) (GString *buf);
+
+void zak_cgi_url_connect (ZakCgiUrl *url,
+ const gchar *controller,
+ const gchar *action,
+ ZakCgiUrlConnectedFunction function,
+ gpointer user_data);
+
+void zak_cgi_url_dispatch (ZakCgiUrl *url);
+
G_END_DECLS
--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library 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.1 of the License, or (at your option) any later version.
+ *
+ * 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 General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <url.h>
+
+void
+hook (gpointer user_data)
+{
+ GString *str = (GString *)user_data;
+
+ g_string_append_printf (str, "FROM THE HOOK<br/><br/>\n");
+}
+
+int
+main (int argc, char *argv[])
+{
+ ZakCgiUrl *url;
+ GString *str;
+
+ str = g_string_new ("<html>\n"
+ "<head><title>Url</title></head>\n"
+ "<body>\n");
+
+ url = zak_cgi_url_new ();
+
+ zak_cgi_url_connect (url, "thecontroller", "theaction", (ZakCgiUrlConnectedFunction)hook, str);
+
+ zak_cgi_url_dispatch (url);
+
+ g_string_append_printf (str, "</body>\n");
+
+ zak_cgi_main_out (NULL, str->str);
+ g_string_free (str, TRUE);
+
+ return 0;
+}
+