]> saetta.ns0.it Git - libzakcgi/commitdiff
Added function ZakMain::get_stdin.
authorAndrea Zagli <azagli@libero.it>
Sat, 20 Jun 2015 10:39:19 +0000 (12:39 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 20 Jun 2015 10:39:19 +0000 (12:39 +0200)
src/main.c
src/main.h
tests/env.c

index dde008e0f2ceda25f63ddaf587bf3f2315d105e1..7732373665067b435805609b55e9789e356b0322 100644 (file)
@@ -20,6 +20,8 @@
        #include <config.h>
 #endif
 
+#include <stdio.h>
+
 #include "main.h"
 
 static void zak_cgi_main_class_init (ZakCgiMainClass *class);
@@ -127,6 +129,11 @@ GHashTable
        return ht;
 }
 
+/**
+ * zak_cgi_main_dump_env:
+ *
+ * Returns: an html table with each environment variables.
+ */
 gchar
 *zak_cgi_main_dump_env ()
 {
@@ -195,6 +202,31 @@ GHashTable
        return ht;
 }
 
+/**
+ * zak_cgi_main_get_stdin:
+ *
+ * Returns: the stdin.
+ */
+gchar
+*zak_cgi_main_get_stdin (void)
+{
+       gchar *ret;
+
+       guint l;
+
+       ret = NULL;
+
+       l = strtol (g_getenv ("CONTENT_LENGTH"), NULL, 10);
+       if (l > 0)
+               {
+                       ret = g_malloc (l + 1);
+                       fread (ret, l, 1, stdin);
+                       ret[l] = '\0';
+               }
+
+       return ret;
+}
+
 /* PRIVATE */
 static void
 zak_cgi_main_set_property (GObject *object,
index 69a3c29ad09800ae0bff81b47ba70c4ff111bd6c..a672caa621d8e674920b23d16a618d0f564013b7 100644 (file)
@@ -58,6 +58,8 @@ gchar *zak_cgi_main_dump_env ();
 
 GHashTable *zak_cgi_main_get_parameters (void);
 
+gchar *zak_cgi_main_get_stdin (void);
+
 
 G_END_DECLS
 
index 0a3e5199dd5b0628d17d2fa00e48e6a67a5b7275..3706965d16ecb9bee434e036f8a310a6a0795991 100644 (file)
@@ -33,6 +33,16 @@ main (int argc, char *argv[])
        g_string_append_printf (str, "%s\n</body>", env);
        g_free (env);
 
+       env = zak_cgi_main_get_stdin ();
+       if (env != NULL)
+               {
+                       g_string_append_printf (str,
+                                               "<br/><hr/>\n"
+                                               "%s",
+                                               env);
+                       g_free (env);
+               }
+
        zak_cgi_main_out (str->str);
        g_string_free (str, TRUE);