os/ossrv/glib/gobject/glib-genmarshal.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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.
     8  *
     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.
    13  *
    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.
    18  */
    19 
    20 #include "config.h"
    21 
    22 #include <stdlib.h>
    23 #include <fcntl.h>
    24 #include <string.h>
    25 #include <errno.h>
    26 #ifdef HAVE_UNISTD_H
    27 #include <unistd.h>
    28 #endif
    29 #include <sys/types.h>
    30 #include <sys/stat.h>
    31 
    32 #undef G_LOG_DOMAIN
    33 #define G_LOG_DOMAIN "GLib-Genmarshal"
    34 #include <glib.h>
    35 #include <glib/gprintf.h>
    36 
    37 #ifdef G_OS_WIN32
    38 #include <io.h>
    39 #endif
    40 #ifdef __SYMBIAN32__
    41 #include "mrt2_glib2_test.h"
    42 #endif /*__SYMBIAN32__*/
    43 
    44 /* --- defines --- */
    45 #define	PRG_NAME	"glib-genmarshal"
    46 #define	PKG_NAME	"GLib"
    47 #define PKG_HTTP_HOME	"http://www.gtk.org"
    48 
    49 
    50 /* --- typedefs & structures --- */
    51 typedef struct
    52 {
    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] */
    57 } InArgument;
    58 typedef struct
    59 {
    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] */
    64 } OutArgument;
    65 typedef struct
    66 {
    67   gchar       *ploc;
    68   OutArgument *rarg;
    69   GList       *args;	/* of type InArgument* */
    70 } Signature;
    71 
    72 
    73 /* --- prototypes --- */
    74 static void	parse_args	(gint	   	*argc_p,
    75 				 gchar	     ***argv_p);
    76 static void	print_blurb	(FILE	       	*bout,
    77 				 gboolean	 print_help);
    78 
    79 
    80 /* --- variables --- */
    81 static const GScannerConfig scanner_config_template =
    82 {
    83   (
    84    " \t\r"		/* "\n" is statement delimiter */
    85    )                    /* cset_skip_characters */,
    86   (
    87    G_CSET_a_2_z
    88    "_"
    89    G_CSET_A_2_Z
    90    )                    /* cset_identifier_first */,
    91   (
    92    G_CSET_a_2_z
    93    "_0123456789"
    94    G_CSET_A_2_Z
    95    )                    /* cset_identifier_nth */,
    96   ( "#\n" )             /* cpair_comment_single */,
    97 
    98   FALSE                 /* case_sensitive */,
    99 
   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 */,
   110   TRUE                  /* scan_hex */,
   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 */,
   120 };
   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;
   131 
   132 
   133 /* --- functions --- */
   134 static void
   135 put_marshal_value_getters (void)
   136 {
   137   fputs ("\n", fout);
   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);
   181   fputs ("\n", fout);
   182 }
   183 
   184 static gboolean
   185 complete_in_arg (InArgument *iarg)
   186 {
   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",	},
   208     /* deprecated: */
   209     { "NONE",		"VOID",		"void",		NULL,			},
   210     { "BOOL",		"BOOLEAN",	"gboolean",	"g_marshal_value_peek_boolean",	},
   211   };
   212   guint i;
   213 
   214   g_return_val_if_fail (iarg != NULL, FALSE);
   215 
   216   for (i = 0; i < G_N_ELEMENTS (args); i++)
   217     if (strcmp (args[i].keyword, iarg->keyword) == 0)
   218       {
   219 	iarg->sig_name = args[i].sig_name;
   220 	iarg->ctype = args[i].ctype;
   221 	iarg->getter = args[i].getter;
   222 
   223 	return TRUE;
   224       }
   225   return FALSE;
   226 }
   227 
   228 static gboolean
   229 complete_out_arg (OutArgument *oarg)
   230 {
   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",			     },
   252     /* deprecated: */
   253     { "NONE",		"VOID",		"void",		NULL,					     },
   254     { "BOOL",		"BOOLEAN",	"gboolean",	"g_value_set_boolean",			     },
   255   };
   256   guint i;
   257 
   258   g_return_val_if_fail (oarg != NULL, FALSE);
   259 
   260   for (i = 0; i < G_N_ELEMENTS (args); i++)
   261     if (strcmp (args[i].keyword, oarg->keyword) == 0)
   262       {
   263 	oarg->sig_name = args[i].sig_name;
   264 	oarg->ctype = args[i].ctype;
   265 	oarg->setter = args[i].setter;
   266 
   267 	return TRUE;
   268       }
   269   return FALSE;
   270 }
   271 
   272 static const gchar*
   273 pad (const gchar *string)
   274 {
   275 #define PAD_LENGTH	12
   276   static gchar *buffer = NULL;
   277   gint i;
   278 
   279   g_return_val_if_fail (string != NULL, NULL);
   280 
   281   if (!buffer)
   282     buffer = g_new (gchar, PAD_LENGTH + 1);
   283 
   284   /* paranoid check */
   285   if (strlen (string) >= PAD_LENGTH)
   286     {
   287       g_free (buffer);
   288       buffer = g_strdup_printf ("%s ", string);
   289       g_warning ("overfull string (%u bytes) for padspace",
   290                  (guint) strlen (string));
   291       exit_status |= 2;
   292 
   293       return buffer;
   294     }
   295 
   296   for (i = 0; i < PAD_LENGTH; i++)
   297     {
   298       gboolean done = *string == 0;
   299 
   300       buffer[i] = done ? ' ' : *string++;
   301     }
   302   buffer[i] = 0;
   303 
   304   return buffer;
   305 }
   306 
   307 static const gchar*
   308 indent (guint n_spaces)
   309 {
   310   static gchar *buffer = NULL;
   311   static guint blength = 0;
   312 
   313   if (blength <= n_spaces)
   314     {
   315       blength = n_spaces + 1;
   316       g_free (buffer);
   317       buffer = g_new (gchar, blength);
   318     }
   319   memset (buffer, ' ', n_spaces);
   320   buffer[n_spaces] = 0;
   321 
   322   return buffer;
   323 }
   324 
   325 static void
   326 generate_marshal (const gchar *signame,
   327 		  Signature   *sig)
   328 {
   329   guint ind, a;
   330   GList *node;
   331   gchar *tmp = g_strconcat (marshaller_prefix, "_", signame, NULL);
   332   gboolean have_std_marshaller = FALSE;
   333 
   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.
   337    */
   338 
   339   if (g_hash_table_lookup (marshallers, tmp))
   340     {
   341       /* done, marshaller already generated */
   342       g_free (tmp);
   343       return;
   344     }
   345   else
   346     {
   347       /* need to alias/generate marshaller, register name */
   348       g_hash_table_insert (marshallers, tmp, tmp);
   349     }
   350 
   351   /* can we revert to a standard marshaller? */
   352   if (std_includes)
   353     {
   354       tmp = g_strconcat (std_marshaller_prefix, "_", signame, NULL);
   355       have_std_marshaller = g_hash_table_lookup (marshallers, tmp) != NULL;
   356       g_free (tmp);
   357     }
   358 
   359   if (gen_cheader && have_std_marshaller)
   360     {
   361       g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, signame, std_marshaller_prefix, signame);
   362     }
   363   if (gen_cheader && !have_std_marshaller)
   364     {
   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",
   374                  indent (ind));
   375     }
   376   if (gen_cbody && !have_std_marshaller)
   377     {
   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");
   388 
   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)
   393 	{
   394 	  InArgument *iarg = node->data;
   395 
   396 	  if (iarg->getter)
   397 	    g_fprintf (fout, "%s%s arg_%d,\n", indent (ind), pad (iarg->ctype), a++);
   398 	}
   399       g_fprintf (fout, "%s%s data2);\n", indent (ind), pad ("gpointer"));
   400 
   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);
   407 
   408       if (sig->args || sig->rarg->setter)
   409 	{
   410 	  g_fprintf (fout, "\n");
   411 
   412 	  if (sig->rarg->setter)
   413 	    g_fprintf (fout, "  g_return_if_fail (return_value != NULL);\n");
   414 	  if (sig->args)
   415 	    {
   416 	      for (a = 0, node = sig->args; node; node = node->next)
   417 		{
   418 		  InArgument *iarg = node->data;
   419 
   420 		  if (iarg->getter)
   421 		    a++;
   422 		}
   423 	      g_fprintf (fout, "  g_return_if_fail (n_param_values == %u);\n", 1 + a);
   424 	    }
   425 	}
   426 
   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);
   437 
   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)
   443 	{
   444 	  InArgument *iarg = node->data;
   445 
   446 	  if (iarg->getter)
   447 	    g_fprintf (fout, "%s%s (param_values + %d),\n", indent (ind), iarg->getter, a++);
   448 	}
   449       g_fprintf (fout, "%sdata2);\n", indent (ind));
   450 
   451       /* cfile marshal return value storage */
   452       if (sig->rarg->setter)
   453 	{
   454 	  g_fprintf (fout, "\n");
   455 	  g_fprintf (fout, "  %s (return_value, v_return);\n", sig->rarg->setter);
   456 	}
   457 
   458       /* cfile marshal footer */
   459       g_fprintf (fout, "}\n");
   460     }
   461 }
   462 
   463 static void
   464 process_signature (Signature *sig)
   465 {
   466   gchar *pname, *sname, *tmp;
   467   GList *node;
   468 
   469   /* lookup and complete info on arguments */
   470   if (!complete_out_arg (sig->rarg))
   471     {
   472       g_warning ("unknown type: %s", sig->rarg->keyword);
   473       exit_status |= 1;
   474       return;
   475     }
   476   for (node = sig->args; node; node = node->next)
   477     {
   478       InArgument *iarg = node->data;
   479 
   480       if (!complete_in_arg (iarg))
   481 	{
   482 	  g_warning ("unknown type: %s", iarg->keyword);
   483           exit_status |= 1;
   484 	  return;
   485 	}
   486     }
   487 
   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)
   492     {
   493       InArgument *iarg = node->data;
   494       gchar *tmp;
   495 
   496       tmp = sname;
   497       sname = g_strconcat (tmp, "_", iarg->sig_name, NULL);
   498       g_free (tmp);
   499       tmp = pname;
   500       pname = g_strconcat (tmp, "_", iarg->keyword, NULL);
   501       g_free (tmp);
   502     }
   503 
   504   /* introductionary comment */
   505   g_fprintf (fout, "\n/* %s", sig->rarg->keyword);
   506   for (node = sig->args; node; node = node->next)
   507     {
   508       InArgument *iarg = node->data;
   509 
   510       g_fprintf (fout, "%c%s", node->prev ? ',' : ':', iarg->keyword);
   511     }
   512   if (!skip_ploc)
   513     g_fprintf (fout, " (%s)", sig->ploc);
   514   g_fprintf (fout, " */\n");
   515 
   516   /* ensure technical marshaller exists (<marshaller_prefix>_<sname>) */
   517   generate_marshal (sname, sig);
   518 
   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))
   522     {
   523       g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, pname, marshaller_prefix, sname);
   524 
   525       g_hash_table_insert (marshallers, tmp, tmp);
   526     }
   527   else
   528     g_free (tmp);
   529 
   530   g_free (pname);
   531   g_free (sname);
   532 }
   533 
   534 static InArgument*
   535 new_in_arg (const gchar *pname)
   536 {
   537   InArgument *iarg = g_new0 (InArgument, 1);
   538 
   539   iarg->keyword = g_strdup (pname);
   540 
   541   return iarg;
   542 }
   543 
   544 static OutArgument*
   545 new_out_arg (const gchar *pname)
   546 {
   547   OutArgument *oarg = g_new0 (OutArgument, 1);
   548 
   549   oarg->keyword = g_strdup (pname);
   550 
   551   return oarg;
   552 }
   553 
   554 static guint
   555 parse_line (GScanner  *scanner,
   556 	    Signature *sig)
   557 {
   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);
   562 
   563   /* keep a note on the location */
   564   sig->ploc = g_strdup_printf ("%s:%u", scanner->input_name, scanner->line);
   565 
   566   /* expect ':' */
   567   if (g_scanner_get_next_token (scanner) != ':')
   568     return ':';
   569 
   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));
   574 
   575   /* parse rest of argument list */
   576   while (g_scanner_peek_next_token (scanner) == ',')
   577     {
   578       /* eat comma */
   579       g_scanner_get_next_token (scanner);
   580 
   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));
   585     }
   586 
   587   /* expect end of line, done */
   588   if (g_scanner_get_next_token (scanner) != '\n')
   589     return '\n';
   590 
   591   /* success */
   592   return G_TOKEN_NONE;
   593 }
   594 
   595 static gboolean
   596 string_key_destroy (gpointer key,
   597 		    gpointer value,
   598 		    gpointer user_data)
   599 {
   600   g_free (key);
   601 
   602   return TRUE;
   603 }
   604 
   605 int
   606 main (int   argc,
   607       char *argv[])
   608 {
   609   const gchar *gobject_marshallers[] = {
   610 #include	"gmarshal.strings"
   611   };
   612   GScanner *scanner;
   613   GSList *slist, *files = NULL;
   614   gint i;
   615 #ifdef __SYMBIAN32__
   616   gint fd1;
   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);
   622 
   623   /* list input files */
   624   for (i = 1; i < argc; i++)
   625     files = g_slist_prepend (files, argv[i]);
   626   if (files)
   627     files = g_slist_reverse (files);
   628   else
   629 #ifdef __SYMBIAN32__
   630 	fd1 = open("c:\\genmarshaltest.txt", O_CREAT, 0666);
   631 	close(fd1);
   632 	files = g_slist_prepend (files, "c:\\genmarshaltest.txt");
   633 #else
   634     files = g_slist_prepend (files, "/dev/stdin");
   635 #endif//__SYMBIAN32__
   636   
   637   /* setup auxillary structs */
   638   scanner = g_scanner_new (&scanner_config_template);
   639   fout = stdout;
   640   marshallers = g_hash_table_new (g_str_hash, g_str_equal);
   641 
   642   /* add standard marshallers of the GObject library */
   643   if (std_includes)
   644     for (i = 0; i < G_N_ELEMENTS (gobject_marshallers); i++)
   645       {
   646 	gchar *tmp = g_strdup (gobject_marshallers[i]);
   647 
   648 	g_hash_table_insert (marshallers, tmp, tmp);
   649       }
   650 
   651   /* put out initial heading */
   652   g_fprintf (fout, "\n");
   653 
   654   if (gen_cheader && std_includes)
   655     {
   656       g_fprintf (fout, "#ifndef __%s_MARSHAL_H__\n", marshaller_prefix);
   657       g_fprintf (fout, "#define __%s_MARSHAL_H__\n\n", marshaller_prefix);
   658     }
   659 
   660   if ((gen_cheader || gen_cbody) && std_includes)
   661     g_fprintf (fout, "#include\t<glib-object.h>\n\n");
   662 
   663   if (gen_cheader)
   664     g_fprintf (fout, "G_BEGIN_DECLS\n");
   665 
   666   /* generate necessary preprocessor directives */
   667   if (gen_cbody)
   668     put_marshal_value_getters ();
   669 
   670   /* process input files */
   671   for (slist = files; slist; slist = slist->next)
   672     {
   673       gchar *file = slist->data;
   674       gint fd;
   675       
   676 #ifdef __SYMBIAN32__
   677       if (strcmp (file, "c:\\genmarshaltest.txt") == 0)
   678 #else      
   679       if (strcmp (file, "/dev/stdin") == 0)    	  
   680 	/* Mostly for Win32. This is equivalent to opening /dev/stdin */
   681 	fd = dup (0);
   682       else
   683 #endif//__SYMBIAN32__    	  
   684 	fd = open (file, O_RDONLY);
   685 
   686       if (fd < 0)
   687 	{
   688 	  g_warning ("failed to open \"%s\": %s", file, g_strerror (errno));
   689 	  exit_status |= 1;
   690 	  continue;
   691 	}
   692 
   693       /* set file name for error reports */
   694       scanner->input_name = file;
   695 
   696       /* parse & process file */
   697       g_scanner_input_file (scanner, fd);
   698 
   699       /* scanning loop, we parse the input until its end is reached,
   700        * or our sub routine came across invalid syntax
   701        */
   702       do
   703 	{
   704 	  guint expected_token = G_TOKEN_NONE;
   705 
   706 	  switch (g_scanner_peek_next_token (scanner))
   707 	    {
   708 	    case '\n':
   709 	      /* eat newline and restart */
   710 	      g_scanner_get_next_token (scanner);
   711 	      continue;
   712 	    case G_TOKEN_EOF:
   713 	      /* done */
   714 	      break;
   715 	    default:
   716 	      /* parse and process signatures */
   717 	      {
   718 		Signature signature = { NULL, NULL, NULL };
   719 		GList *node;
   720 
   721 		expected_token = parse_line (scanner, &signature);
   722 
   723 		/* once we got a valid signature, process it */
   724 		if (expected_token == G_TOKEN_NONE)
   725 		  process_signature (&signature);
   726 
   727 		/* clean up signature contents */
   728 		g_free (signature.ploc);
   729 		if (signature.rarg)
   730 		  g_free (signature.rarg->keyword);
   731 		g_free (signature.rarg);
   732 		for (node = signature.args; node; node = node->next)
   733 		  {
   734 		    InArgument *iarg = node->data;
   735 
   736 		    g_free (iarg->keyword);
   737 		    g_free (iarg);
   738 		  }
   739 		g_list_free (signature.args);
   740 	      }
   741 	      break;
   742 	    }
   743 
   744 	  /* bail out on errors */
   745 	  if (expected_token != G_TOKEN_NONE)
   746 	    {
   747 	      g_scanner_unexp_token (scanner, expected_token, "type name", NULL, NULL, NULL, TRUE);
   748 	      exit_status |= 1;
   749 	      break;
   750 	    }
   751 
   752 	  g_scanner_peek_next_token (scanner);
   753 	}
   754       while (scanner->next_token != G_TOKEN_EOF);
   755 
   756       close (fd);
   757     }
   758 
   759   /* put out trailer */
   760   if (gen_cheader)
   761     {
   762       g_fprintf (fout, "\nG_END_DECLS\n");
   763 
   764       if (std_includes)
   765 	g_fprintf (fout, "\n#endif /* __%s_MARSHAL_H__ */\n", marshaller_prefix);
   766     }
   767   g_fprintf (fout, "\n");
   768 
   769   /* clean up */
   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);
   774 #ifdef __SYMBIAN32__
   775   testResultXml("glib-genmarshall");
   776   remove("c:\\genmarshaltest.txt");
   777 #endif /* EMULATOR */
   778   return exit_status;
   779 }
   780 
   781 static void
   782 parse_args (gint    *argc_p,
   783 	    gchar ***argv_p)
   784 {
   785   guint argc = *argc_p;
   786   gchar **argv = *argv_p;
   787   guint i, e;
   788 
   789   for (i = 1; i < argc; i++)
   790     {
   791       if (strcmp ("-header", argv[i]) == 0)
   792 	{
   793 	  gen_cheader = TRUE;
   794 	  argv[i] = NULL;
   795 	}
   796       else if (strcmp ("-body", argv[i]) == 0)
   797 	{
   798 	  gen_cbody = TRUE;
   799 	  argv[i] = NULL;
   800 	}
   801       else if (strcmp ("-skip-source", argv[i]) == 0)
   802 	{
   803 	  skip_ploc = TRUE;
   804 	  argv[i] = NULL;
   805 	}
   806       else if (strcmp ("-nostdinc", argv[i]) == 0)
   807 	{
   808 	  std_includes = FALSE;
   809 	  argv[i] = NULL;
   810 	}
   811       else if (strcmp ("-stdinc", argv[i]) == 0)
   812 	{
   813 	  std_includes = TRUE;
   814 	  argv[i] = NULL;
   815 	}
   816       else if (strcmp ("-internal", argv[i]) == 0)
   817 	{
   818 	  gen_internal = TRUE;
   819 	  argv[i] = NULL;
   820 	}
   821       else if ((strcmp ("-prefix", argv[i]) == 0) ||
   822 	       (strncmp ("-prefix=", argv[i], 9) == 0))
   823 	{
   824           gchar *equal = argv[i] + 8;
   825 
   826 	  if (*equal == '=')
   827 	    marshaller_prefix = g_strdup (equal + 1);
   828 	  else if (i + 1 < argc)
   829 	    {
   830 	      marshaller_prefix = g_strdup (argv[i + 1]);
   831 	      argv[i] = NULL;
   832 	      i += 1;
   833 	    }
   834 	  argv[i] = NULL;
   835 	}
   836       else if (strcmp ("-h", argv[i]) == 0 ||
   837           strcmp ("-?", argv[i]) == 0 ||
   838 	  strcmp ("-help", argv[i]) == 0)
   839 	{
   840 	  print_blurb (stderr, TRUE);
   841 	  argv[i] = NULL;
   842 	  exit (0);
   843 	}
   844       else if (strcmp ("-v", argv[i]) == 0 ||
   845 	       strcmp ("-version", argv[i]) == 0)
   846 	{
   847 	  print_blurb (stderr, FALSE);
   848 	  argv[i] = NULL;
   849 	  exit (0);
   850 	}
   851       else if (strcmp (argv[i], "-g-fatal-warnings") == 0)
   852 	{
   853 	  GLogLevelFlags fatal_mask;
   854 
   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);
   858 
   859 	  argv[i] = NULL;
   860 	}
   861     }
   862 
   863   e = 0;
   864   for (i = 1; i < argc; i++)
   865     {
   866       if (e)
   867 	{
   868 	  if (argv[i])
   869 	    {
   870 	      argv[e++] = argv[i];
   871 	      argv[i] = NULL;
   872 	    }
   873 	}
   874       else if (!argv[i])
   875 	e = i;
   876     }
   877   if (e)
   878     *argc_p = e;
   879 }
   880 
   881 static void
   882 print_blurb (FILE    *bout,
   883 	     gboolean print_help)
   884 {
   885   if (!print_help)
   886     {
   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);
   895     }
   896   else
   897     {
   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");
   911     }
   912 }