]> saetta.ns0.it Git - libzakcgi/commitdiff
Implemented ZakCgiUrl (routing).
authorAndrea Zagli <azagli@libero.it>
Mon, 29 Jun 2015 20:43:38 +0000 (22:43 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 29 Jun 2015 20:43:38 +0000 (22:43 +0200)
Only controller and action.

.gitignore
src/url.c
src/url.h
tests/Makefile.am
tests/url.c [new file with mode: 0644]

index 3db7834a2fd6703fe896c06d3a9ef37e6769550c..bb5048c59b1712bb10d3e96e8a95abe11251987d 100644 (file)
@@ -55,3 +55,4 @@ tests/env
 tests/querystring
 tests/redirect
 tests/session
+tests/url
index 0a871c5b437c472c4a88107f1c98f2edaf5af9a1..ed790529bc362152574025b02730cb5462b10007 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -20,6 +20,9 @@
        #include <config.h>
 #endif
 
+#include <syslog.h>
+
+#include "main.h"
 #include "url.h"
 
 static void zak_cgi_url_class_init (ZakCgiUrlClass *class);
@@ -42,6 +45,10 @@ static void zak_cgi_url_finalize (GObject *gobject);
 typedef struct _ZakCgiUrlPrivate ZakCgiUrlPrivate;
 struct _ZakCgiUrlPrivate
        {
+               gchar *controller;
+               gchar *action;
+
+               GHashTable *ht_functions;
        };
 
 G_DEFINE_TYPE (ZakCgiUrl, zak_cgi_url, G_TYPE_OBJECT)
@@ -64,6 +71,10 @@ zak_cgi_url_init (ZakCgiUrl *zak_cgi_url)
 {
        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);
 }
 
 /**
@@ -77,14 +88,71 @@ ZakCgiUrl
        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,
index 01dfb618a1067f55a4d37de56985fcbd60915270..5e536019e78ae9fbfcbe28514b5de442a9888487 100644 (file)
--- a/src/url.h
+++ b/src/url.h
@@ -51,6 +51,16 @@ GType zak_cgi_url_get_type (void);
 
 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
 
index 7e1279943267e250733850611d8e0f636c717d7d..b070e92df174c984325adcaec08987d23afbf5db 100644 (file)
@@ -13,4 +13,5 @@ noinst_PROGRAMS = \
                     env \
                     querystring \
                     redirect \
-                    session
+                    session \
+                    url
diff --git a/tests/url.c b/tests/url.c
new file mode 100644 (file)
index 0000000..22ddfe5
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * 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;
+}
+