]> saetta.ns0.it Git - libzakcgi/commitdiff
Added function ZakCgiMain::get_parameters.
authorAndrea Zagli <azagli@libero.it>
Mon, 15 Jun 2015 20:14:16 +0000 (22:14 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 15 Jun 2015 20:14:16 +0000 (22:14 +0200)
.gitignore
src/main.c
src/main.h
tests/Makefile.am
tests/querystring.c [new file with mode: 0644]

index a46cc6ccf65841b71dd1858c56f3f13d5c22fb00..0eae689810312dc7436ec217404dd74442d04c69 100644 (file)
@@ -51,3 +51,4 @@ Rules-quot
 *.exe
 *.csv
 tests/env
+tests/querystring
index ce7b54a21797cb22b61780373538d1bc8f071dd5..dde008e0f2ceda25f63ddaf587bf3f2315d105e1 100644 (file)
        #include <config.h>
 #endif
 
-#include <unistd.h>
-
 #include "main.h"
 
-extern char **environ;
-
 static void zak_cgi_main_class_init (ZakCgiMainClass *class);
 static void zak_cgi_main_init (ZakCgiMain *zak_cgi_main);
 
@@ -112,12 +108,14 @@ GHashTable
 {
        GHashTable *ht;
 
+       gchar **environ;
        guint l;
        guint i;
        gchar **envs;
 
        ht = g_hash_table_new (g_str_hash, g_str_equal);
 
+       environ = g_get_environ ();
        l = g_strv_length (environ);
        for (i = 0; i < l; i++)
                {
@@ -165,6 +163,38 @@ gchar
        return ret;
 }
 
+/**
+ * zak_cgi_main_get_parameters:
+ *
+ * Returns:
+ */
+GHashTable
+*zak_cgi_main_get_parameters (void)
+{
+       GHashTable *ht;
+
+       const gchar *qstring;
+
+       gchar **params;
+       gchar **parts;
+       guint i;
+       guint l;
+
+       ht = g_hash_table_new (g_str_hash, g_str_equal);
+
+       qstring = g_getenv ("QUERY_STRING");
+       params = g_strsplit (qstring, "&", -1);
+       l = g_strv_length (params);
+       for (i = 0; i < l; i++)
+               {
+                       parts = g_strsplit (params[i], "=", 2);
+                       g_hash_table_replace (ht, g_strdup (parts[0]), g_strdup (parts[1]));
+                       g_strfreev (parts);
+               }
+
+       return ht;
+}
+
 /* PRIVATE */
 static void
 zak_cgi_main_set_property (GObject *object,
index 52602ab5c4956d26e76bce159c9e5428ccd1b571..69a3c29ad09800ae0bff81b47ba70c4ff111bd6c 100644 (file)
@@ -56,6 +56,8 @@ void zak_cgi_main_out (const gchar *body);
 GHashTable *zak_cgi_main_get_env (void);
 gchar *zak_cgi_main_dump_env ();
 
+GHashTable *zak_cgi_main_get_parameters (void);
+
 
 G_END_DECLS
 
index a70c5c9a011b135c74adf3be29989be887b31779..dbdd3e98d206be0266339d65456d05c93421618e 100644 (file)
@@ -9,4 +9,5 @@ LIBS = $(ZAKCGI_LIBS) \
 LDADD = $(top_builddir)/src/libzakcgi.la
 
 noinst_PROGRAMS = \
-                    env
+                    env \
+                    querystring
diff --git a/tests/querystring.c b/tests/querystring.c
new file mode 100644 (file)
index 0000000..b0b472a
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * 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 <main.h>
+
+int
+main (int argc, char *argv[])
+{
+       GHashTable *ht_env;
+       GString *str;
+
+       GHashTableIter iter;
+       gpointer key;
+       gpointer value;
+
+       ht_env = zak_cgi_main_get_parameters ();
+
+       str = g_string_new ("<html>\n"
+                           "<head><title>Query string</title></head>\n"
+                           "<body>\n");
+
+       if (g_hash_table_size (ht_env) > 0)
+               {
+                       g_string_append_printf (str, "<table>\n");
+
+                       g_hash_table_iter_init (&iter, ht_env);
+                       while (g_hash_table_iter_next (&iter, &key, &value))
+                               {
+                                       g_string_append_printf (str, "<tr><td>%s</td><td>%s</td></tr>\n",
+                                                               (gchar *)key, (gchar *)value);
+                               }
+
+                       g_string_append_printf (str, "</table>\n");
+               }
+
+       g_string_append_printf (str, "</body>\n");
+
+       zak_cgi_main_out (str->str);
+       g_string_free (str, TRUE);
+
+       return 0;
+}
+