return line;
}
+ZakCgiFile
+*zak_cgi_file_copy (ZakCgiFile *file)
+{
+ ZakCgiFile *b;
+
+ b = g_slice_new (ZakCgiFile);
+ b->name = g_strdup (file->name);
+ b->content = g_strdup (file->content);
+ b->size = file->size;
+
+ return b;
+}
+
+void
+zak_cgi_file_free (ZakCgiFile *file)
+{
+ g_free (file->name);
+ g_free (file->content);
+ g_slice_free (ZakCgiFile, file);
+}
+
+G_DEFINE_BOXED_TYPE (ZakCgiFile, zak_cgi_file, zak_cgi_file_copy, zak_cgi_file_free)
+
+
/**
* zak_cgi_main_parse_stdin:
*
GValue *gval;
+ ZakCgiFile *zgfile;
+
content_disposition = zak_cgi_main_read_line (buf, l, &i, TRUE, &bytesread);
v_content = g_strsplit (content_disposition, ";", -1);
if (l_v_content == 3)
{
- GPtrArray *ar;
-
- ar = g_ptr_array_new ();
- g_ptr_array_add (ar, g_strdup (param_name_file));
- g_ptr_array_add (ar, g_memdup (param_value, file_l - 2));
- g_ptr_array_add (ar, GSIZE_TO_POINTER (file_l - 2));
+ zgfile = (ZakCgiFile *)g_new0 (ZakCgiFile, 1);
+ zgfile->name = g_strdup (param_name_file);
+ zgfile->content = g_memdup (param_value, file_l - 2);
+ zgfile->size = file_l - 2;
- g_value_init (gval, G_TYPE_PTR_ARRAY);
- g_value_take_boxed (gval, ar);
+ g_value_init (gval, ZAK_CGI_TYPE_FILE);
+ g_value_take_boxed (gval, zgfile);
}
else
{
GHashTable *zak_cgi_main_get_parameters (ZakCgiMain *zakcgimain, const gchar *query_string);
+
+typedef struct _ZakCgiFile ZakCgiFile;
+
+struct _ZakCgiFile
+{
+ gchar *name;
+ gchar *content;
+ guint size;
+};
+
+#define ZAK_CGI_TYPE_FILE (zak_cgi_file_get_type ())
+
+GType zak_cgi_file_get_type ();
+
+
gchar *zak_cgi_main_get_stdin (ZakCgiMain *zakcgimain);
GHashTable *zak_cgi_main_parse_stdin (const gchar *buf, const gchar *boundary);
g_hash_table_iter_init (&iter, ht);
while (g_hash_table_iter_next (&iter, &key, &value))
{
- if (G_VALUE_HOLDS (value, G_TYPE_BOXED))
+ if (G_VALUE_HOLDS (value, ZAK_CGI_TYPE_FILE))
{
- GPtrArray *ar = (GPtrArray *)g_value_get_boxed ((GValue *)value);
+ ZakCgiFile *zgfile = (ZakCgiFile *)g_value_get_boxed ((GValue *)value);
g_string_append_printf (str,
"<tr><td>%s</td><td>%s</td></tr>\n",
- (gchar *)key, (gchar *)g_ptr_array_index (ar, 0));
+ (gchar *)key, zgfile->name);
- if (g_strcmp0 ((gchar *)g_ptr_array_index (ar, 0), "") != 0)
+ if (g_strcmp0 (zgfile->name, "") != 0)
{
/* save the file to tmp */
GFile *gfile;
GOutputStream *ostream;
iostream = NULL;
- gfile = g_file_new_tmp (g_strdup_printf ("cgi-XXXXXX-%s", (gchar *)g_ptr_array_index (ar, 0)),
+ gfile = g_file_new_tmp (g_strdup_printf ("cgi-XXXXXX-%s", zgfile->name),
&iostream,
NULL);
ostream = g_io_stream_get_output_stream (G_IO_STREAM (iostream));
g_output_stream_write (ostream,
- g_ptr_array_index (ar, 1),
- GPOINTER_TO_SIZE (g_ptr_array_index (ar, 2)),
+ zgfile->content,
+ zgfile->size,
NULL,
NULL);
g_output_stream_close (ostream, NULL, NULL);
return 0;
}
-
<html>
<body>
-<!--<form method="POST" action="/cgi-bin/env" enctype="multipart/form-data">-->
+<form method="POST" action="/cgi-bin/env" enctype="multipart/form-data">
<!--<form method="POST" action="/cgi-bin/env" enctype="application/x-www-form-urlencoded">-->
-<form method="POST" action="/cgi-bin/env">
+<!--<form method="POST" action="/cgi-bin/env">-->
<input name="pippo" />
<input name="pluto" />
<input name="paperino" />