Update contrib.
1 /* GLIB-GenMarshal - Marshaller generator for GObject library
2 * Copyright (C) 2000-2001 Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
29 #include <sys/types.h>
33 #define G_LOG_DOMAIN "GLib-Genmarshal"
35 #include <glib/gprintf.h>
41 #include "mrt2_glib2_test.h"
42 #endif /*__SYMBIAN32__*/
45 #define PRG_NAME "glib-genmarshal"
46 #define PKG_NAME "GLib"
47 #define PKG_HTTP_HOME "http://www.gtk.org"
50 /* --- typedefs & structures --- */
53 gchar *keyword; /* marhaller list keyword [MY_STRING] */
54 const gchar *sig_name; /* signature name [STRING] */
55 const gchar *ctype; /* C type name [gchar*] */
56 const gchar *getter; /* value getter function [g_value_get_string] */
60 gchar *keyword; /* marhaller list keyword [MY_STRING] */
61 const gchar *sig_name; /* signature name [STRING] */
62 const gchar *ctype; /* C type name [gchar*] */
63 const gchar *setter; /* value setter function [g_value_set_string] */
69 GList *args; /* of type InArgument* */
73 /* --- prototypes --- */
74 static void parse_args (gint *argc_p,
76 static void print_blurb (FILE *bout,
80 /* --- variables --- */
81 static const GScannerConfig scanner_config_template =
84 " \t\r" /* "\n" is statement delimiter */
85 ) /* cset_skip_characters */,
90 ) /* cset_identifier_first */,
95 ) /* cset_identifier_nth */,
96 ( "#\n" ) /* cpair_comment_single */,
98 FALSE /* case_sensitive */,
100 TRUE /* skip_comment_multi */,
101 TRUE /* skip_comment_single */,
102 TRUE /* scan_comment_multi */,
103 TRUE /* scan_identifier */,
104 FALSE /* scan_identifier_1char */,
105 FALSE /* scan_identifier_NULL */,
106 TRUE /* scan_symbols */,
107 FALSE /* scan_binary */,
108 TRUE /* scan_octal */,
109 TRUE /* scan_float */,
111 FALSE /* scan_hex_dollar */,
112 TRUE /* scan_string_sq */,
113 TRUE /* scan_string_dq */,
114 TRUE /* numbers_2_int */,
115 FALSE /* int_2_float */,
116 FALSE /* identifier_2_string */,
117 TRUE /* char_2_token */,
118 FALSE /* symbol_2_token */,
119 FALSE /* scope_0_fallback */,
121 static gchar * const std_marshaller_prefix = "g_cclosure_marshal";
122 static gchar *marshaller_prefix = "g_cclosure_user_marshal";
123 static GHashTable *marshallers = NULL;
124 static FILE *fout = NULL;
125 static gboolean gen_cheader = FALSE;
126 static gboolean gen_cbody = FALSE;
127 static gboolean gen_internal = FALSE;
128 static gboolean skip_ploc = FALSE;
129 static gboolean std_includes = TRUE;
130 static gint exit_status = 0;
133 /* --- functions --- */
135 put_marshal_value_getters (void)
138 fputs ("#ifdef G_ENABLE_DEBUG\n", fout);
139 fputs ("#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v)\n", fout);
140 fputs ("#define g_marshal_value_peek_char(v) g_value_get_char (v)\n", fout);
141 fputs ("#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v)\n", fout);
142 fputs ("#define g_marshal_value_peek_int(v) g_value_get_int (v)\n", fout);
143 fputs ("#define g_marshal_value_peek_uint(v) g_value_get_uint (v)\n", fout);
144 fputs ("#define g_marshal_value_peek_long(v) g_value_get_long (v)\n", fout);
145 fputs ("#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v)\n", fout);
146 fputs ("#define g_marshal_value_peek_int64(v) g_value_get_int64 (v)\n", fout);
147 fputs ("#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v)\n", fout);
148 fputs ("#define g_marshal_value_peek_enum(v) g_value_get_enum (v)\n", fout);
149 fputs ("#define g_marshal_value_peek_flags(v) g_value_get_flags (v)\n", fout);
150 fputs ("#define g_marshal_value_peek_float(v) g_value_get_float (v)\n", fout);
151 fputs ("#define g_marshal_value_peek_double(v) g_value_get_double (v)\n", fout);
152 fputs ("#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v)\n", fout);
153 fputs ("#define g_marshal_value_peek_param(v) g_value_get_param (v)\n", fout);
154 fputs ("#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v)\n", fout);
155 fputs ("#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v)\n", fout);
156 fputs ("#define g_marshal_value_peek_object(v) g_value_get_object (v)\n", fout);
157 fputs ("#else /* !G_ENABLE_DEBUG */\n", fout);
158 fputs ("/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API.\n", fout);
159 fputs (" * Do not access GValues directly in your code. Instead, use the\n", fout);
160 fputs (" * g_value_get_*() functions\n", fout);
161 fputs (" */\n", fout);
162 fputs ("#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int\n", fout);
163 fputs ("#define g_marshal_value_peek_char(v) (v)->data[0].v_int\n", fout);
164 fputs ("#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint\n", fout);
165 fputs ("#define g_marshal_value_peek_int(v) (v)->data[0].v_int\n", fout);
166 fputs ("#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint\n", fout);
167 fputs ("#define g_marshal_value_peek_long(v) (v)->data[0].v_long\n", fout);
168 fputs ("#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong\n", fout);
169 fputs ("#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64\n", fout);
170 fputs ("#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64\n", fout);
171 fputs ("#define g_marshal_value_peek_enum(v) (v)->data[0].v_long\n", fout);
172 fputs ("#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong\n", fout);
173 fputs ("#define g_marshal_value_peek_float(v) (v)->data[0].v_float\n", fout);
174 fputs ("#define g_marshal_value_peek_double(v) (v)->data[0].v_double\n", fout);
175 fputs ("#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer\n", fout);
176 fputs ("#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer\n", fout);
177 fputs ("#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer\n", fout);
178 fputs ("#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer\n", fout);
179 fputs ("#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer\n", fout);
180 fputs ("#endif /* !G_ENABLE_DEBUG */\n", fout);
185 complete_in_arg (InArgument *iarg)
187 static const InArgument args[] = {
188 /* keyword sig_name ctype getter */
189 { "VOID", "VOID", "void", NULL, },
190 { "BOOLEAN", "BOOLEAN", "gboolean", "g_marshal_value_peek_boolean", },
191 { "CHAR", "CHAR", "gchar", "g_marshal_value_peek_char", },
192 { "UCHAR", "UCHAR", "guchar", "g_marshal_value_peek_uchar", },
193 { "INT", "INT", "gint", "g_marshal_value_peek_int", },
194 { "UINT", "UINT", "guint", "g_marshal_value_peek_uint", },
195 { "LONG", "LONG", "glong", "g_marshal_value_peek_long", },
196 { "ULONG", "ULONG", "gulong", "g_marshal_value_peek_ulong", },
197 { "INT64", "INT64", "gint64", "g_marshal_value_peek_int64", },
198 { "UINT64", "UINT64", "guint64", "g_marshal_value_peek_uint64", },
199 { "ENUM", "ENUM", "gint", "g_marshal_value_peek_enum", },
200 { "FLAGS", "FLAGS", "guint", "g_marshal_value_peek_flags", },
201 { "FLOAT", "FLOAT", "gfloat", "g_marshal_value_peek_float", },
202 { "DOUBLE", "DOUBLE", "gdouble", "g_marshal_value_peek_double", },
203 { "STRING", "STRING", "gpointer", "g_marshal_value_peek_string", },
204 { "PARAM", "PARAM", "gpointer", "g_marshal_value_peek_param", },
205 { "BOXED", "BOXED", "gpointer", "g_marshal_value_peek_boxed", },
206 { "POINTER", "POINTER", "gpointer", "g_marshal_value_peek_pointer", },
207 { "OBJECT", "OBJECT", "gpointer", "g_marshal_value_peek_object", },
209 { "NONE", "VOID", "void", NULL, },
210 { "BOOL", "BOOLEAN", "gboolean", "g_marshal_value_peek_boolean", },
214 g_return_val_if_fail (iarg != NULL, FALSE);
216 for (i = 0; i < G_N_ELEMENTS (args); i++)
217 if (strcmp (args[i].keyword, iarg->keyword) == 0)
219 iarg->sig_name = args[i].sig_name;
220 iarg->ctype = args[i].ctype;
221 iarg->getter = args[i].getter;
229 complete_out_arg (OutArgument *oarg)
231 static const OutArgument args[] = {
232 /* keyword sig_name ctype setter */
233 { "VOID", "VOID", "void", NULL, },
234 { "BOOLEAN", "BOOLEAN", "gboolean", "g_value_set_boolean", },
235 { "CHAR", "CHAR", "gchar", "g_value_set_char", },
236 { "UCHAR", "UCHAR", "guchar", "g_value_set_uchar", },
237 { "INT", "INT", "gint", "g_value_set_int", },
238 { "UINT", "UINT", "guint", "g_value_set_uint", },
239 { "LONG", "LONG", "glong", "g_value_set_long", },
240 { "ULONG", "ULONG", "gulong", "g_value_set_ulong", },
241 { "INT64", "INT64", "gint64", "g_value_set_int64", },
242 { "UINT64", "UINT64", "guint64", "g_value_set_uint64", },
243 { "ENUM", "ENUM", "gint", "g_value_set_enum", },
244 { "FLAGS", "FLAGS", "guint", "g_value_set_flags", },
245 { "FLOAT", "FLOAT", "gfloat", "g_value_set_float", },
246 { "DOUBLE", "DOUBLE", "gdouble", "g_value_set_double", },
247 { "STRING", "STRING", "gchar*", "g_value_take_string", },
248 { "PARAM", "PARAM", "GParamSpec*", "g_value_take_param", },
249 { "BOXED", "BOXED", "gpointer", "g_value_take_boxed", },
250 { "POINTER", "POINTER", "gpointer", "g_value_set_pointer", },
251 { "OBJECT", "OBJECT", "GObject*", "g_value_take_object", },
253 { "NONE", "VOID", "void", NULL, },
254 { "BOOL", "BOOLEAN", "gboolean", "g_value_set_boolean", },
258 g_return_val_if_fail (oarg != NULL, FALSE);
260 for (i = 0; i < G_N_ELEMENTS (args); i++)
261 if (strcmp (args[i].keyword, oarg->keyword) == 0)
263 oarg->sig_name = args[i].sig_name;
264 oarg->ctype = args[i].ctype;
265 oarg->setter = args[i].setter;
273 pad (const gchar *string)
275 #define PAD_LENGTH 12
276 static gchar *buffer = NULL;
279 g_return_val_if_fail (string != NULL, NULL);
282 buffer = g_new (gchar, PAD_LENGTH + 1);
285 if (strlen (string) >= PAD_LENGTH)
288 buffer = g_strdup_printf ("%s ", string);
289 g_warning ("overfull string (%u bytes) for padspace",
290 (guint) strlen (string));
296 for (i = 0; i < PAD_LENGTH; i++)
298 gboolean done = *string == 0;
300 buffer[i] = done ? ' ' : *string++;
308 indent (guint n_spaces)
310 static gchar *buffer = NULL;
311 static guint blength = 0;
313 if (blength <= n_spaces)
315 blength = n_spaces + 1;
317 buffer = g_new (gchar, blength);
319 memset (buffer, ' ', n_spaces);
320 buffer[n_spaces] = 0;
326 generate_marshal (const gchar *signame,
331 gchar *tmp = g_strconcat (marshaller_prefix, "_", signame, NULL);
332 gboolean have_std_marshaller = FALSE;
334 /* here we have to make sure a marshaller named <marshaller_prefix>_<signame>
335 * exists. we might have put it out already, can revert to a standard
336 * marshaller provided by glib, or need to generate one.
339 if (g_hash_table_lookup (marshallers, tmp))
341 /* done, marshaller already generated */
347 /* need to alias/generate marshaller, register name */
348 g_hash_table_insert (marshallers, tmp, tmp);
351 /* can we revert to a standard marshaller? */
354 tmp = g_strconcat (std_marshaller_prefix, "_", signame, NULL);
355 have_std_marshaller = g_hash_table_lookup (marshallers, tmp) != NULL;
359 if (gen_cheader && have_std_marshaller)
361 g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, signame, std_marshaller_prefix, signame);
363 if (gen_cheader && !have_std_marshaller)
365 ind = g_fprintf (fout, gen_internal ? "G_GNUC_INTERNAL " : "extern ");
366 ind += g_fprintf (fout, "void ");
367 ind += g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
368 g_fprintf (fout, "GClosure *closure,\n");
369 g_fprintf (fout, "%sGValue *return_value,\n", indent (ind));
370 g_fprintf (fout, "%sguint n_param_values,\n", indent (ind));
371 g_fprintf (fout, "%sconst GValue *param_values,\n", indent (ind));
372 g_fprintf (fout, "%sgpointer invocation_hint,\n", indent (ind));
373 g_fprintf (fout, "%sgpointer marshal_data);\n",
376 if (gen_cbody && !have_std_marshaller)
378 /* cfile marshal header */
379 g_fprintf (fout, "void\n");
380 ind = g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
381 g_fprintf (fout, "GClosure *closure,\n");
382 g_fprintf (fout, "%sGValue *return_value G_GNUC_UNUSED,\n", indent (ind));
383 g_fprintf (fout, "%sguint n_param_values,\n", indent (ind));
384 g_fprintf (fout, "%sconst GValue *param_values,\n", indent (ind));
385 g_fprintf (fout, "%sgpointer invocation_hint G_GNUC_UNUSED,\n", indent (ind));
386 g_fprintf (fout, "%sgpointer marshal_data)\n", indent (ind));
387 g_fprintf (fout, "{\n");
389 /* cfile GMarshalFunc typedef */
390 ind = g_fprintf (fout, " typedef %s (*GMarshalFunc_%s) (", sig->rarg->ctype, signame);
391 g_fprintf (fout, "%s data1,\n", pad ("gpointer"));
392 for (a = 1, node = sig->args; node; node = node->next)
394 InArgument *iarg = node->data;
397 g_fprintf (fout, "%s%s arg_%d,\n", indent (ind), pad (iarg->ctype), a++);
399 g_fprintf (fout, "%s%s data2);\n", indent (ind), pad ("gpointer"));
401 /* cfile marshal variables */
402 g_fprintf (fout, " register GMarshalFunc_%s callback;\n", signame);
403 g_fprintf (fout, " register GCClosure *cc = (GCClosure*) closure;\n");
404 g_fprintf (fout, " register gpointer data1, data2;\n");
405 if (sig->rarg->setter)
406 g_fprintf (fout, " %s v_return;\n", sig->rarg->ctype);
408 if (sig->args || sig->rarg->setter)
410 g_fprintf (fout, "\n");
412 if (sig->rarg->setter)
413 g_fprintf (fout, " g_return_if_fail (return_value != NULL);\n");
416 for (a = 0, node = sig->args; node; node = node->next)
418 InArgument *iarg = node->data;
423 g_fprintf (fout, " g_return_if_fail (n_param_values == %u);\n", 1 + a);
427 /* cfile marshal data1, data2 and callback setup */
428 g_fprintf (fout, "\n");
429 g_fprintf (fout, " if (G_CCLOSURE_SWAP_DATA (closure))\n {\n");
430 g_fprintf (fout, " data1 = closure->data;\n");
431 g_fprintf (fout, " data2 = g_value_peek_pointer (param_values + 0);\n");
432 g_fprintf (fout, " }\n else\n {\n");
433 g_fprintf (fout, " data1 = g_value_peek_pointer (param_values + 0);\n");
434 g_fprintf (fout, " data2 = closure->data;\n");
435 g_fprintf (fout, " }\n");
436 g_fprintf (fout, " callback = (GMarshalFunc_%s) (marshal_data ? marshal_data : cc->callback);\n", signame);
438 /* cfile marshal callback action */
439 g_fprintf (fout, "\n");
440 ind = g_fprintf (fout, " %s callback (", sig->rarg->setter ? " v_return =" : "");
441 g_fprintf (fout, "data1,\n");
442 for (a = 1, node = sig->args; node; node = node->next)
444 InArgument *iarg = node->data;
447 g_fprintf (fout, "%s%s (param_values + %d),\n", indent (ind), iarg->getter, a++);
449 g_fprintf (fout, "%sdata2);\n", indent (ind));
451 /* cfile marshal return value storage */
452 if (sig->rarg->setter)
454 g_fprintf (fout, "\n");
455 g_fprintf (fout, " %s (return_value, v_return);\n", sig->rarg->setter);
458 /* cfile marshal footer */
459 g_fprintf (fout, "}\n");
464 process_signature (Signature *sig)
466 gchar *pname, *sname, *tmp;
469 /* lookup and complete info on arguments */
470 if (!complete_out_arg (sig->rarg))
472 g_warning ("unknown type: %s", sig->rarg->keyword);
476 for (node = sig->args; node; node = node->next)
478 InArgument *iarg = node->data;
480 if (!complete_in_arg (iarg))
482 g_warning ("unknown type: %s", iarg->keyword);
488 /* construct requested marshaller name and technical marshaller name */
489 pname = g_strconcat (sig->rarg->keyword, "_", NULL);
490 sname = g_strconcat (sig->rarg->sig_name, "_", NULL);
491 for (node = sig->args; node; node = node->next)
493 InArgument *iarg = node->data;
497 sname = g_strconcat (tmp, "_", iarg->sig_name, NULL);
500 pname = g_strconcat (tmp, "_", iarg->keyword, NULL);
504 /* introductionary comment */
505 g_fprintf (fout, "\n/* %s", sig->rarg->keyword);
506 for (node = sig->args; node; node = node->next)
508 InArgument *iarg = node->data;
510 g_fprintf (fout, "%c%s", node->prev ? ',' : ':', iarg->keyword);
513 g_fprintf (fout, " (%s)", sig->ploc);
514 g_fprintf (fout, " */\n");
516 /* ensure technical marshaller exists (<marshaller_prefix>_<sname>) */
517 generate_marshal (sname, sig);
519 /* put out marshaller alias for requested name if required (<marshaller_prefix>_<pname>) */
520 tmp = g_strconcat (marshaller_prefix, "_", pname, NULL);
521 if (gen_cheader && !g_hash_table_lookup (marshallers, tmp))
523 g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, pname, marshaller_prefix, sname);
525 g_hash_table_insert (marshallers, tmp, tmp);
535 new_in_arg (const gchar *pname)
537 InArgument *iarg = g_new0 (InArgument, 1);
539 iarg->keyword = g_strdup (pname);
545 new_out_arg (const gchar *pname)
547 OutArgument *oarg = g_new0 (OutArgument, 1);
549 oarg->keyword = g_strdup (pname);
555 parse_line (GScanner *scanner,
558 /* parse identifier for return value */
559 if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
560 return G_TOKEN_IDENTIFIER;
561 sig->rarg = new_out_arg (scanner->value.v_identifier);
563 /* keep a note on the location */
564 sig->ploc = g_strdup_printf ("%s:%u", scanner->input_name, scanner->line);
567 if (g_scanner_get_next_token (scanner) != ':')
570 /* parse first argument */
571 if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
572 return G_TOKEN_IDENTIFIER;
573 sig->args = g_list_append (sig->args, new_in_arg (scanner->value.v_identifier));
575 /* parse rest of argument list */
576 while (g_scanner_peek_next_token (scanner) == ',')
579 g_scanner_get_next_token (scanner);
581 /* parse arg identifier */
582 if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
583 return G_TOKEN_IDENTIFIER;
584 sig->args = g_list_append (sig->args, new_in_arg (scanner->value.v_identifier));
587 /* expect end of line, done */
588 if (g_scanner_get_next_token (scanner) != '\n')
596 string_key_destroy (gpointer key,
609 const gchar *gobject_marshallers[] = {
610 #include "gmarshal.strings"
613 GSList *slist, *files = NULL;
617 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
618 g_set_print_handler(mrtPrintHandler);
619 #endif /*__SYMBIAN32__*/
620 /* parse args and do fast exits */
621 parse_args (&argc, &argv);
623 /* list input files */
624 for (i = 1; i < argc; i++)
625 files = g_slist_prepend (files, argv[i]);
627 files = g_slist_reverse (files);
630 fd1 = open("c:\\genmarshaltest.txt", O_CREAT, 0666);
632 files = g_slist_prepend (files, "c:\\genmarshaltest.txt");
634 files = g_slist_prepend (files, "/dev/stdin");
635 #endif//__SYMBIAN32__
637 /* setup auxillary structs */
638 scanner = g_scanner_new (&scanner_config_template);
640 marshallers = g_hash_table_new (g_str_hash, g_str_equal);
642 /* add standard marshallers of the GObject library */
644 for (i = 0; i < G_N_ELEMENTS (gobject_marshallers); i++)
646 gchar *tmp = g_strdup (gobject_marshallers[i]);
648 g_hash_table_insert (marshallers, tmp, tmp);
651 /* put out initial heading */
652 g_fprintf (fout, "\n");
654 if (gen_cheader && std_includes)
656 g_fprintf (fout, "#ifndef __%s_MARSHAL_H__\n", marshaller_prefix);
657 g_fprintf (fout, "#define __%s_MARSHAL_H__\n\n", marshaller_prefix);
660 if ((gen_cheader || gen_cbody) && std_includes)
661 g_fprintf (fout, "#include\t<glib-object.h>\n\n");
664 g_fprintf (fout, "G_BEGIN_DECLS\n");
666 /* generate necessary preprocessor directives */
668 put_marshal_value_getters ();
670 /* process input files */
671 for (slist = files; slist; slist = slist->next)
673 gchar *file = slist->data;
677 if (strcmp (file, "c:\\genmarshaltest.txt") == 0)
679 if (strcmp (file, "/dev/stdin") == 0)
680 /* Mostly for Win32. This is equivalent to opening /dev/stdin */
683 #endif//__SYMBIAN32__
684 fd = open (file, O_RDONLY);
688 g_warning ("failed to open \"%s\": %s", file, g_strerror (errno));
693 /* set file name for error reports */
694 scanner->input_name = file;
696 /* parse & process file */
697 g_scanner_input_file (scanner, fd);
699 /* scanning loop, we parse the input until its end is reached,
700 * or our sub routine came across invalid syntax
704 guint expected_token = G_TOKEN_NONE;
706 switch (g_scanner_peek_next_token (scanner))
709 /* eat newline and restart */
710 g_scanner_get_next_token (scanner);
716 /* parse and process signatures */
718 Signature signature = { NULL, NULL, NULL };
721 expected_token = parse_line (scanner, &signature);
723 /* once we got a valid signature, process it */
724 if (expected_token == G_TOKEN_NONE)
725 process_signature (&signature);
727 /* clean up signature contents */
728 g_free (signature.ploc);
730 g_free (signature.rarg->keyword);
731 g_free (signature.rarg);
732 for (node = signature.args; node; node = node->next)
734 InArgument *iarg = node->data;
736 g_free (iarg->keyword);
739 g_list_free (signature.args);
744 /* bail out on errors */
745 if (expected_token != G_TOKEN_NONE)
747 g_scanner_unexp_token (scanner, expected_token, "type name", NULL, NULL, NULL, TRUE);
752 g_scanner_peek_next_token (scanner);
754 while (scanner->next_token != G_TOKEN_EOF);
759 /* put out trailer */
762 g_fprintf (fout, "\nG_END_DECLS\n");
765 g_fprintf (fout, "\n#endif /* __%s_MARSHAL_H__ */\n", marshaller_prefix);
767 g_fprintf (fout, "\n");
770 g_slist_free (files);
771 g_scanner_destroy (scanner);
772 g_hash_table_foreach_remove (marshallers, string_key_destroy, NULL);
773 g_hash_table_destroy (marshallers);
775 testResultXml("glib-genmarshall");
776 remove("c:\\genmarshaltest.txt");
777 #endif /* EMULATOR */
782 parse_args (gint *argc_p,
785 guint argc = *argc_p;
786 gchar **argv = *argv_p;
789 for (i = 1; i < argc; i++)
791 if (strcmp ("-header", argv[i]) == 0)
796 else if (strcmp ("-body", argv[i]) == 0)
801 else if (strcmp ("-skip-source", argv[i]) == 0)
806 else if (strcmp ("-nostdinc", argv[i]) == 0)
808 std_includes = FALSE;
811 else if (strcmp ("-stdinc", argv[i]) == 0)
816 else if (strcmp ("-internal", argv[i]) == 0)
821 else if ((strcmp ("-prefix", argv[i]) == 0) ||
822 (strncmp ("-prefix=", argv[i], 9) == 0))
824 gchar *equal = argv[i] + 8;
827 marshaller_prefix = g_strdup (equal + 1);
828 else if (i + 1 < argc)
830 marshaller_prefix = g_strdup (argv[i + 1]);
836 else if (strcmp ("-h", argv[i]) == 0 ||
837 strcmp ("-?", argv[i]) == 0 ||
838 strcmp ("-help", argv[i]) == 0)
840 print_blurb (stderr, TRUE);
844 else if (strcmp ("-v", argv[i]) == 0 ||
845 strcmp ("-version", argv[i]) == 0)
847 print_blurb (stderr, FALSE);
851 else if (strcmp (argv[i], "-g-fatal-warnings") == 0)
853 GLogLevelFlags fatal_mask;
855 fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
856 fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
857 g_log_set_always_fatal (fatal_mask);
864 for (i = 1; i < argc; i++)
882 print_blurb (FILE *bout,
887 g_fprintf (bout, "%s version ", PRG_NAME);
888 g_fprintf (bout, "%u.%u.%u", GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
889 g_fprintf (bout, "\n");
890 g_fprintf (bout, "%s comes with ABSOLUTELY NO WARRANTY.\n", PRG_NAME);
891 g_fprintf (bout, "You may redistribute copies of %s under the terms of\n", PRG_NAME);
892 g_fprintf (bout, "the GNU General Public License which can be found in the\n");
893 g_fprintf (bout, "%s source package. Sources, examples and contact\n", PKG_NAME);
894 g_fprintf (bout, "information are available at %s\n", PKG_HTTP_HOME);
898 g_fprintf (bout, "Usage:\n");
899 g_fprintf (bout, " %s [OPTION...] [FILES...]\n\n", PRG_NAME);
900 g_fprintf (bout, "Help Options:\n");
901 g_fprintf (bout, " -h, -help Show this help message\n\n");
902 g_fprintf (bout, "Utility Options:\n");
903 g_fprintf (bout, " -header Generate C headers\n");
904 g_fprintf (bout, " -body Generate C code\n");
905 g_fprintf (bout, " -prefix=string Specify marshaller prefix\n");
906 g_fprintf (bout, " -skip-source Skip source location comments\n");
907 g_fprintf (bout, " -stdinc, -nostdinc Include/use standard marshallers\n");
908 g_fprintf (bout, " -internal Mark generated functions as internal\n");
909 g_fprintf (bout, " -v, -version Print version informations\n");
910 g_fprintf (bout, " -g-fatal-warnings Make warnings fatal (abort)\n");