sl@0
|
1 |
/* GLIB-GenMarshal - Marshaller generator for GObject library
|
sl@0
|
2 |
* Copyright (C) 2000-2001 Red Hat, Inc.
|
sl@0
|
3 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "config.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <stdlib.h>
|
sl@0
|
23 |
#include <fcntl.h>
|
sl@0
|
24 |
#include <string.h>
|
sl@0
|
25 |
#include <errno.h>
|
sl@0
|
26 |
#ifdef HAVE_UNISTD_H
|
sl@0
|
27 |
#include <unistd.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
#include <sys/types.h>
|
sl@0
|
30 |
#include <sys/stat.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
#undef G_LOG_DOMAIN
|
sl@0
|
33 |
#define G_LOG_DOMAIN "GLib-Genmarshal"
|
sl@0
|
34 |
#include <glib.h>
|
sl@0
|
35 |
#include <glib/gprintf.h>
|
sl@0
|
36 |
|
sl@0
|
37 |
#ifdef G_OS_WIN32
|
sl@0
|
38 |
#include <io.h>
|
sl@0
|
39 |
#endif
|
sl@0
|
40 |
#ifdef __SYMBIAN32__
|
sl@0
|
41 |
#include "mrt2_glib2_test.h"
|
sl@0
|
42 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
43 |
|
sl@0
|
44 |
/* --- defines --- */
|
sl@0
|
45 |
#define PRG_NAME "glib-genmarshal"
|
sl@0
|
46 |
#define PKG_NAME "GLib"
|
sl@0
|
47 |
#define PKG_HTTP_HOME "http://www.gtk.org"
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
/* --- typedefs & structures --- */
|
sl@0
|
51 |
typedef struct
|
sl@0
|
52 |
{
|
sl@0
|
53 |
gchar *keyword; /* marhaller list keyword [MY_STRING] */
|
sl@0
|
54 |
const gchar *sig_name; /* signature name [STRING] */
|
sl@0
|
55 |
const gchar *ctype; /* C type name [gchar*] */
|
sl@0
|
56 |
const gchar *getter; /* value getter function [g_value_get_string] */
|
sl@0
|
57 |
} InArgument;
|
sl@0
|
58 |
typedef struct
|
sl@0
|
59 |
{
|
sl@0
|
60 |
gchar *keyword; /* marhaller list keyword [MY_STRING] */
|
sl@0
|
61 |
const gchar *sig_name; /* signature name [STRING] */
|
sl@0
|
62 |
const gchar *ctype; /* C type name [gchar*] */
|
sl@0
|
63 |
const gchar *setter; /* value setter function [g_value_set_string] */
|
sl@0
|
64 |
} OutArgument;
|
sl@0
|
65 |
typedef struct
|
sl@0
|
66 |
{
|
sl@0
|
67 |
gchar *ploc;
|
sl@0
|
68 |
OutArgument *rarg;
|
sl@0
|
69 |
GList *args; /* of type InArgument* */
|
sl@0
|
70 |
} Signature;
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
/* --- prototypes --- */
|
sl@0
|
74 |
static void parse_args (gint *argc_p,
|
sl@0
|
75 |
gchar ***argv_p);
|
sl@0
|
76 |
static void print_blurb (FILE *bout,
|
sl@0
|
77 |
gboolean print_help);
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
/* --- variables --- */
|
sl@0
|
81 |
static const GScannerConfig scanner_config_template =
|
sl@0
|
82 |
{
|
sl@0
|
83 |
(
|
sl@0
|
84 |
" \t\r" /* "\n" is statement delimiter */
|
sl@0
|
85 |
) /* cset_skip_characters */,
|
sl@0
|
86 |
(
|
sl@0
|
87 |
G_CSET_a_2_z
|
sl@0
|
88 |
"_"
|
sl@0
|
89 |
G_CSET_A_2_Z
|
sl@0
|
90 |
) /* cset_identifier_first */,
|
sl@0
|
91 |
(
|
sl@0
|
92 |
G_CSET_a_2_z
|
sl@0
|
93 |
"_0123456789"
|
sl@0
|
94 |
G_CSET_A_2_Z
|
sl@0
|
95 |
) /* cset_identifier_nth */,
|
sl@0
|
96 |
( "#\n" ) /* cpair_comment_single */,
|
sl@0
|
97 |
|
sl@0
|
98 |
FALSE /* case_sensitive */,
|
sl@0
|
99 |
|
sl@0
|
100 |
TRUE /* skip_comment_multi */,
|
sl@0
|
101 |
TRUE /* skip_comment_single */,
|
sl@0
|
102 |
TRUE /* scan_comment_multi */,
|
sl@0
|
103 |
TRUE /* scan_identifier */,
|
sl@0
|
104 |
FALSE /* scan_identifier_1char */,
|
sl@0
|
105 |
FALSE /* scan_identifier_NULL */,
|
sl@0
|
106 |
TRUE /* scan_symbols */,
|
sl@0
|
107 |
FALSE /* scan_binary */,
|
sl@0
|
108 |
TRUE /* scan_octal */,
|
sl@0
|
109 |
TRUE /* scan_float */,
|
sl@0
|
110 |
TRUE /* scan_hex */,
|
sl@0
|
111 |
FALSE /* scan_hex_dollar */,
|
sl@0
|
112 |
TRUE /* scan_string_sq */,
|
sl@0
|
113 |
TRUE /* scan_string_dq */,
|
sl@0
|
114 |
TRUE /* numbers_2_int */,
|
sl@0
|
115 |
FALSE /* int_2_float */,
|
sl@0
|
116 |
FALSE /* identifier_2_string */,
|
sl@0
|
117 |
TRUE /* char_2_token */,
|
sl@0
|
118 |
FALSE /* symbol_2_token */,
|
sl@0
|
119 |
FALSE /* scope_0_fallback */,
|
sl@0
|
120 |
};
|
sl@0
|
121 |
static gchar * const std_marshaller_prefix = "g_cclosure_marshal";
|
sl@0
|
122 |
static gchar *marshaller_prefix = "g_cclosure_user_marshal";
|
sl@0
|
123 |
static GHashTable *marshallers = NULL;
|
sl@0
|
124 |
static FILE *fout = NULL;
|
sl@0
|
125 |
static gboolean gen_cheader = FALSE;
|
sl@0
|
126 |
static gboolean gen_cbody = FALSE;
|
sl@0
|
127 |
static gboolean gen_internal = FALSE;
|
sl@0
|
128 |
static gboolean skip_ploc = FALSE;
|
sl@0
|
129 |
static gboolean std_includes = TRUE;
|
sl@0
|
130 |
static gint exit_status = 0;
|
sl@0
|
131 |
|
sl@0
|
132 |
|
sl@0
|
133 |
/* --- functions --- */
|
sl@0
|
134 |
static void
|
sl@0
|
135 |
put_marshal_value_getters (void)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
fputs ("\n", fout);
|
sl@0
|
138 |
fputs ("#ifdef G_ENABLE_DEBUG\n", fout);
|
sl@0
|
139 |
fputs ("#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v)\n", fout);
|
sl@0
|
140 |
fputs ("#define g_marshal_value_peek_char(v) g_value_get_char (v)\n", fout);
|
sl@0
|
141 |
fputs ("#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v)\n", fout);
|
sl@0
|
142 |
fputs ("#define g_marshal_value_peek_int(v) g_value_get_int (v)\n", fout);
|
sl@0
|
143 |
fputs ("#define g_marshal_value_peek_uint(v) g_value_get_uint (v)\n", fout);
|
sl@0
|
144 |
fputs ("#define g_marshal_value_peek_long(v) g_value_get_long (v)\n", fout);
|
sl@0
|
145 |
fputs ("#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v)\n", fout);
|
sl@0
|
146 |
fputs ("#define g_marshal_value_peek_int64(v) g_value_get_int64 (v)\n", fout);
|
sl@0
|
147 |
fputs ("#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v)\n", fout);
|
sl@0
|
148 |
fputs ("#define g_marshal_value_peek_enum(v) g_value_get_enum (v)\n", fout);
|
sl@0
|
149 |
fputs ("#define g_marshal_value_peek_flags(v) g_value_get_flags (v)\n", fout);
|
sl@0
|
150 |
fputs ("#define g_marshal_value_peek_float(v) g_value_get_float (v)\n", fout);
|
sl@0
|
151 |
fputs ("#define g_marshal_value_peek_double(v) g_value_get_double (v)\n", fout);
|
sl@0
|
152 |
fputs ("#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v)\n", fout);
|
sl@0
|
153 |
fputs ("#define g_marshal_value_peek_param(v) g_value_get_param (v)\n", fout);
|
sl@0
|
154 |
fputs ("#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v)\n", fout);
|
sl@0
|
155 |
fputs ("#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v)\n", fout);
|
sl@0
|
156 |
fputs ("#define g_marshal_value_peek_object(v) g_value_get_object (v)\n", fout);
|
sl@0
|
157 |
fputs ("#else /* !G_ENABLE_DEBUG */\n", fout);
|
sl@0
|
158 |
fputs ("/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API.\n", fout);
|
sl@0
|
159 |
fputs (" * Do not access GValues directly in your code. Instead, use the\n", fout);
|
sl@0
|
160 |
fputs (" * g_value_get_*() functions\n", fout);
|
sl@0
|
161 |
fputs (" */\n", fout);
|
sl@0
|
162 |
fputs ("#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int\n", fout);
|
sl@0
|
163 |
fputs ("#define g_marshal_value_peek_char(v) (v)->data[0].v_int\n", fout);
|
sl@0
|
164 |
fputs ("#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint\n", fout);
|
sl@0
|
165 |
fputs ("#define g_marshal_value_peek_int(v) (v)->data[0].v_int\n", fout);
|
sl@0
|
166 |
fputs ("#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint\n", fout);
|
sl@0
|
167 |
fputs ("#define g_marshal_value_peek_long(v) (v)->data[0].v_long\n", fout);
|
sl@0
|
168 |
fputs ("#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong\n", fout);
|
sl@0
|
169 |
fputs ("#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64\n", fout);
|
sl@0
|
170 |
fputs ("#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64\n", fout);
|
sl@0
|
171 |
fputs ("#define g_marshal_value_peek_enum(v) (v)->data[0].v_long\n", fout);
|
sl@0
|
172 |
fputs ("#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong\n", fout);
|
sl@0
|
173 |
fputs ("#define g_marshal_value_peek_float(v) (v)->data[0].v_float\n", fout);
|
sl@0
|
174 |
fputs ("#define g_marshal_value_peek_double(v) (v)->data[0].v_double\n", fout);
|
sl@0
|
175 |
fputs ("#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer\n", fout);
|
sl@0
|
176 |
fputs ("#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer\n", fout);
|
sl@0
|
177 |
fputs ("#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer\n", fout);
|
sl@0
|
178 |
fputs ("#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer\n", fout);
|
sl@0
|
179 |
fputs ("#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer\n", fout);
|
sl@0
|
180 |
fputs ("#endif /* !G_ENABLE_DEBUG */\n", fout);
|
sl@0
|
181 |
fputs ("\n", fout);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
static gboolean
|
sl@0
|
185 |
complete_in_arg (InArgument *iarg)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
static const InArgument args[] = {
|
sl@0
|
188 |
/* keyword sig_name ctype getter */
|
sl@0
|
189 |
{ "VOID", "VOID", "void", NULL, },
|
sl@0
|
190 |
{ "BOOLEAN", "BOOLEAN", "gboolean", "g_marshal_value_peek_boolean", },
|
sl@0
|
191 |
{ "CHAR", "CHAR", "gchar", "g_marshal_value_peek_char", },
|
sl@0
|
192 |
{ "UCHAR", "UCHAR", "guchar", "g_marshal_value_peek_uchar", },
|
sl@0
|
193 |
{ "INT", "INT", "gint", "g_marshal_value_peek_int", },
|
sl@0
|
194 |
{ "UINT", "UINT", "guint", "g_marshal_value_peek_uint", },
|
sl@0
|
195 |
{ "LONG", "LONG", "glong", "g_marshal_value_peek_long", },
|
sl@0
|
196 |
{ "ULONG", "ULONG", "gulong", "g_marshal_value_peek_ulong", },
|
sl@0
|
197 |
{ "INT64", "INT64", "gint64", "g_marshal_value_peek_int64", },
|
sl@0
|
198 |
{ "UINT64", "UINT64", "guint64", "g_marshal_value_peek_uint64", },
|
sl@0
|
199 |
{ "ENUM", "ENUM", "gint", "g_marshal_value_peek_enum", },
|
sl@0
|
200 |
{ "FLAGS", "FLAGS", "guint", "g_marshal_value_peek_flags", },
|
sl@0
|
201 |
{ "FLOAT", "FLOAT", "gfloat", "g_marshal_value_peek_float", },
|
sl@0
|
202 |
{ "DOUBLE", "DOUBLE", "gdouble", "g_marshal_value_peek_double", },
|
sl@0
|
203 |
{ "STRING", "STRING", "gpointer", "g_marshal_value_peek_string", },
|
sl@0
|
204 |
{ "PARAM", "PARAM", "gpointer", "g_marshal_value_peek_param", },
|
sl@0
|
205 |
{ "BOXED", "BOXED", "gpointer", "g_marshal_value_peek_boxed", },
|
sl@0
|
206 |
{ "POINTER", "POINTER", "gpointer", "g_marshal_value_peek_pointer", },
|
sl@0
|
207 |
{ "OBJECT", "OBJECT", "gpointer", "g_marshal_value_peek_object", },
|
sl@0
|
208 |
/* deprecated: */
|
sl@0
|
209 |
{ "NONE", "VOID", "void", NULL, },
|
sl@0
|
210 |
{ "BOOL", "BOOLEAN", "gboolean", "g_marshal_value_peek_boolean", },
|
sl@0
|
211 |
};
|
sl@0
|
212 |
guint i;
|
sl@0
|
213 |
|
sl@0
|
214 |
g_return_val_if_fail (iarg != NULL, FALSE);
|
sl@0
|
215 |
|
sl@0
|
216 |
for (i = 0; i < G_N_ELEMENTS (args); i++)
|
sl@0
|
217 |
if (strcmp (args[i].keyword, iarg->keyword) == 0)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
iarg->sig_name = args[i].sig_name;
|
sl@0
|
220 |
iarg->ctype = args[i].ctype;
|
sl@0
|
221 |
iarg->getter = args[i].getter;
|
sl@0
|
222 |
|
sl@0
|
223 |
return TRUE;
|
sl@0
|
224 |
}
|
sl@0
|
225 |
return FALSE;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
static gboolean
|
sl@0
|
229 |
complete_out_arg (OutArgument *oarg)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
static const OutArgument args[] = {
|
sl@0
|
232 |
/* keyword sig_name ctype setter */
|
sl@0
|
233 |
{ "VOID", "VOID", "void", NULL, },
|
sl@0
|
234 |
{ "BOOLEAN", "BOOLEAN", "gboolean", "g_value_set_boolean", },
|
sl@0
|
235 |
{ "CHAR", "CHAR", "gchar", "g_value_set_char", },
|
sl@0
|
236 |
{ "UCHAR", "UCHAR", "guchar", "g_value_set_uchar", },
|
sl@0
|
237 |
{ "INT", "INT", "gint", "g_value_set_int", },
|
sl@0
|
238 |
{ "UINT", "UINT", "guint", "g_value_set_uint", },
|
sl@0
|
239 |
{ "LONG", "LONG", "glong", "g_value_set_long", },
|
sl@0
|
240 |
{ "ULONG", "ULONG", "gulong", "g_value_set_ulong", },
|
sl@0
|
241 |
{ "INT64", "INT64", "gint64", "g_value_set_int64", },
|
sl@0
|
242 |
{ "UINT64", "UINT64", "guint64", "g_value_set_uint64", },
|
sl@0
|
243 |
{ "ENUM", "ENUM", "gint", "g_value_set_enum", },
|
sl@0
|
244 |
{ "FLAGS", "FLAGS", "guint", "g_value_set_flags", },
|
sl@0
|
245 |
{ "FLOAT", "FLOAT", "gfloat", "g_value_set_float", },
|
sl@0
|
246 |
{ "DOUBLE", "DOUBLE", "gdouble", "g_value_set_double", },
|
sl@0
|
247 |
{ "STRING", "STRING", "gchar*", "g_value_take_string", },
|
sl@0
|
248 |
{ "PARAM", "PARAM", "GParamSpec*", "g_value_take_param", },
|
sl@0
|
249 |
{ "BOXED", "BOXED", "gpointer", "g_value_take_boxed", },
|
sl@0
|
250 |
{ "POINTER", "POINTER", "gpointer", "g_value_set_pointer", },
|
sl@0
|
251 |
{ "OBJECT", "OBJECT", "GObject*", "g_value_take_object", },
|
sl@0
|
252 |
/* deprecated: */
|
sl@0
|
253 |
{ "NONE", "VOID", "void", NULL, },
|
sl@0
|
254 |
{ "BOOL", "BOOLEAN", "gboolean", "g_value_set_boolean", },
|
sl@0
|
255 |
};
|
sl@0
|
256 |
guint i;
|
sl@0
|
257 |
|
sl@0
|
258 |
g_return_val_if_fail (oarg != NULL, FALSE);
|
sl@0
|
259 |
|
sl@0
|
260 |
for (i = 0; i < G_N_ELEMENTS (args); i++)
|
sl@0
|
261 |
if (strcmp (args[i].keyword, oarg->keyword) == 0)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
oarg->sig_name = args[i].sig_name;
|
sl@0
|
264 |
oarg->ctype = args[i].ctype;
|
sl@0
|
265 |
oarg->setter = args[i].setter;
|
sl@0
|
266 |
|
sl@0
|
267 |
return TRUE;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
return FALSE;
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
static const gchar*
|
sl@0
|
273 |
pad (const gchar *string)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
#define PAD_LENGTH 12
|
sl@0
|
276 |
static gchar *buffer = NULL;
|
sl@0
|
277 |
gint i;
|
sl@0
|
278 |
|
sl@0
|
279 |
g_return_val_if_fail (string != NULL, NULL);
|
sl@0
|
280 |
|
sl@0
|
281 |
if (!buffer)
|
sl@0
|
282 |
buffer = g_new (gchar, PAD_LENGTH + 1);
|
sl@0
|
283 |
|
sl@0
|
284 |
/* paranoid check */
|
sl@0
|
285 |
if (strlen (string) >= PAD_LENGTH)
|
sl@0
|
286 |
{
|
sl@0
|
287 |
g_free (buffer);
|
sl@0
|
288 |
buffer = g_strdup_printf ("%s ", string);
|
sl@0
|
289 |
g_warning ("overfull string (%u bytes) for padspace",
|
sl@0
|
290 |
(guint) strlen (string));
|
sl@0
|
291 |
exit_status |= 2;
|
sl@0
|
292 |
|
sl@0
|
293 |
return buffer;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
for (i = 0; i < PAD_LENGTH; i++)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
gboolean done = *string == 0;
|
sl@0
|
299 |
|
sl@0
|
300 |
buffer[i] = done ? ' ' : *string++;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
buffer[i] = 0;
|
sl@0
|
303 |
|
sl@0
|
304 |
return buffer;
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
static const gchar*
|
sl@0
|
308 |
indent (guint n_spaces)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
static gchar *buffer = NULL;
|
sl@0
|
311 |
static guint blength = 0;
|
sl@0
|
312 |
|
sl@0
|
313 |
if (blength <= n_spaces)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
blength = n_spaces + 1;
|
sl@0
|
316 |
g_free (buffer);
|
sl@0
|
317 |
buffer = g_new (gchar, blength);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
memset (buffer, ' ', n_spaces);
|
sl@0
|
320 |
buffer[n_spaces] = 0;
|
sl@0
|
321 |
|
sl@0
|
322 |
return buffer;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
|
sl@0
|
325 |
static void
|
sl@0
|
326 |
generate_marshal (const gchar *signame,
|
sl@0
|
327 |
Signature *sig)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
guint ind, a;
|
sl@0
|
330 |
GList *node;
|
sl@0
|
331 |
gchar *tmp = g_strconcat (marshaller_prefix, "_", signame, NULL);
|
sl@0
|
332 |
gboolean have_std_marshaller = FALSE;
|
sl@0
|
333 |
|
sl@0
|
334 |
/* here we have to make sure a marshaller named <marshaller_prefix>_<signame>
|
sl@0
|
335 |
* exists. we might have put it out already, can revert to a standard
|
sl@0
|
336 |
* marshaller provided by glib, or need to generate one.
|
sl@0
|
337 |
*/
|
sl@0
|
338 |
|
sl@0
|
339 |
if (g_hash_table_lookup (marshallers, tmp))
|
sl@0
|
340 |
{
|
sl@0
|
341 |
/* done, marshaller already generated */
|
sl@0
|
342 |
g_free (tmp);
|
sl@0
|
343 |
return;
|
sl@0
|
344 |
}
|
sl@0
|
345 |
else
|
sl@0
|
346 |
{
|
sl@0
|
347 |
/* need to alias/generate marshaller, register name */
|
sl@0
|
348 |
g_hash_table_insert (marshallers, tmp, tmp);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
/* can we revert to a standard marshaller? */
|
sl@0
|
352 |
if (std_includes)
|
sl@0
|
353 |
{
|
sl@0
|
354 |
tmp = g_strconcat (std_marshaller_prefix, "_", signame, NULL);
|
sl@0
|
355 |
have_std_marshaller = g_hash_table_lookup (marshallers, tmp) != NULL;
|
sl@0
|
356 |
g_free (tmp);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
if (gen_cheader && have_std_marshaller)
|
sl@0
|
360 |
{
|
sl@0
|
361 |
g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, signame, std_marshaller_prefix, signame);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
if (gen_cheader && !have_std_marshaller)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
ind = g_fprintf (fout, gen_internal ? "G_GNUC_INTERNAL " : "extern ");
|
sl@0
|
366 |
ind += g_fprintf (fout, "void ");
|
sl@0
|
367 |
ind += g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
|
sl@0
|
368 |
g_fprintf (fout, "GClosure *closure,\n");
|
sl@0
|
369 |
g_fprintf (fout, "%sGValue *return_value,\n", indent (ind));
|
sl@0
|
370 |
g_fprintf (fout, "%sguint n_param_values,\n", indent (ind));
|
sl@0
|
371 |
g_fprintf (fout, "%sconst GValue *param_values,\n", indent (ind));
|
sl@0
|
372 |
g_fprintf (fout, "%sgpointer invocation_hint,\n", indent (ind));
|
sl@0
|
373 |
g_fprintf (fout, "%sgpointer marshal_data);\n",
|
sl@0
|
374 |
indent (ind));
|
sl@0
|
375 |
}
|
sl@0
|
376 |
if (gen_cbody && !have_std_marshaller)
|
sl@0
|
377 |
{
|
sl@0
|
378 |
/* cfile marshal header */
|
sl@0
|
379 |
g_fprintf (fout, "void\n");
|
sl@0
|
380 |
ind = g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
|
sl@0
|
381 |
g_fprintf (fout, "GClosure *closure,\n");
|
sl@0
|
382 |
g_fprintf (fout, "%sGValue *return_value G_GNUC_UNUSED,\n", indent (ind));
|
sl@0
|
383 |
g_fprintf (fout, "%sguint n_param_values,\n", indent (ind));
|
sl@0
|
384 |
g_fprintf (fout, "%sconst GValue *param_values,\n", indent (ind));
|
sl@0
|
385 |
g_fprintf (fout, "%sgpointer invocation_hint G_GNUC_UNUSED,\n", indent (ind));
|
sl@0
|
386 |
g_fprintf (fout, "%sgpointer marshal_data)\n", indent (ind));
|
sl@0
|
387 |
g_fprintf (fout, "{\n");
|
sl@0
|
388 |
|
sl@0
|
389 |
/* cfile GMarshalFunc typedef */
|
sl@0
|
390 |
ind = g_fprintf (fout, " typedef %s (*GMarshalFunc_%s) (", sig->rarg->ctype, signame);
|
sl@0
|
391 |
g_fprintf (fout, "%s data1,\n", pad ("gpointer"));
|
sl@0
|
392 |
for (a = 1, node = sig->args; node; node = node->next)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
InArgument *iarg = node->data;
|
sl@0
|
395 |
|
sl@0
|
396 |
if (iarg->getter)
|
sl@0
|
397 |
g_fprintf (fout, "%s%s arg_%d,\n", indent (ind), pad (iarg->ctype), a++);
|
sl@0
|
398 |
}
|
sl@0
|
399 |
g_fprintf (fout, "%s%s data2);\n", indent (ind), pad ("gpointer"));
|
sl@0
|
400 |
|
sl@0
|
401 |
/* cfile marshal variables */
|
sl@0
|
402 |
g_fprintf (fout, " register GMarshalFunc_%s callback;\n", signame);
|
sl@0
|
403 |
g_fprintf (fout, " register GCClosure *cc = (GCClosure*) closure;\n");
|
sl@0
|
404 |
g_fprintf (fout, " register gpointer data1, data2;\n");
|
sl@0
|
405 |
if (sig->rarg->setter)
|
sl@0
|
406 |
g_fprintf (fout, " %s v_return;\n", sig->rarg->ctype);
|
sl@0
|
407 |
|
sl@0
|
408 |
if (sig->args || sig->rarg->setter)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
g_fprintf (fout, "\n");
|
sl@0
|
411 |
|
sl@0
|
412 |
if (sig->rarg->setter)
|
sl@0
|
413 |
g_fprintf (fout, " g_return_if_fail (return_value != NULL);\n");
|
sl@0
|
414 |
if (sig->args)
|
sl@0
|
415 |
{
|
sl@0
|
416 |
for (a = 0, node = sig->args; node; node = node->next)
|
sl@0
|
417 |
{
|
sl@0
|
418 |
InArgument *iarg = node->data;
|
sl@0
|
419 |
|
sl@0
|
420 |
if (iarg->getter)
|
sl@0
|
421 |
a++;
|
sl@0
|
422 |
}
|
sl@0
|
423 |
g_fprintf (fout, " g_return_if_fail (n_param_values == %u);\n", 1 + a);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
/* cfile marshal data1, data2 and callback setup */
|
sl@0
|
428 |
g_fprintf (fout, "\n");
|
sl@0
|
429 |
g_fprintf (fout, " if (G_CCLOSURE_SWAP_DATA (closure))\n {\n");
|
sl@0
|
430 |
g_fprintf (fout, " data1 = closure->data;\n");
|
sl@0
|
431 |
g_fprintf (fout, " data2 = g_value_peek_pointer (param_values + 0);\n");
|
sl@0
|
432 |
g_fprintf (fout, " }\n else\n {\n");
|
sl@0
|
433 |
g_fprintf (fout, " data1 = g_value_peek_pointer (param_values + 0);\n");
|
sl@0
|
434 |
g_fprintf (fout, " data2 = closure->data;\n");
|
sl@0
|
435 |
g_fprintf (fout, " }\n");
|
sl@0
|
436 |
g_fprintf (fout, " callback = (GMarshalFunc_%s) (marshal_data ? marshal_data : cc->callback);\n", signame);
|
sl@0
|
437 |
|
sl@0
|
438 |
/* cfile marshal callback action */
|
sl@0
|
439 |
g_fprintf (fout, "\n");
|
sl@0
|
440 |
ind = g_fprintf (fout, " %s callback (", sig->rarg->setter ? " v_return =" : "");
|
sl@0
|
441 |
g_fprintf (fout, "data1,\n");
|
sl@0
|
442 |
for (a = 1, node = sig->args; node; node = node->next)
|
sl@0
|
443 |
{
|
sl@0
|
444 |
InArgument *iarg = node->data;
|
sl@0
|
445 |
|
sl@0
|
446 |
if (iarg->getter)
|
sl@0
|
447 |
g_fprintf (fout, "%s%s (param_values + %d),\n", indent (ind), iarg->getter, a++);
|
sl@0
|
448 |
}
|
sl@0
|
449 |
g_fprintf (fout, "%sdata2);\n", indent (ind));
|
sl@0
|
450 |
|
sl@0
|
451 |
/* cfile marshal return value storage */
|
sl@0
|
452 |
if (sig->rarg->setter)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
g_fprintf (fout, "\n");
|
sl@0
|
455 |
g_fprintf (fout, " %s (return_value, v_return);\n", sig->rarg->setter);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
/* cfile marshal footer */
|
sl@0
|
459 |
g_fprintf (fout, "}\n");
|
sl@0
|
460 |
}
|
sl@0
|
461 |
}
|
sl@0
|
462 |
|
sl@0
|
463 |
static void
|
sl@0
|
464 |
process_signature (Signature *sig)
|
sl@0
|
465 |
{
|
sl@0
|
466 |
gchar *pname, *sname, *tmp;
|
sl@0
|
467 |
GList *node;
|
sl@0
|
468 |
|
sl@0
|
469 |
/* lookup and complete info on arguments */
|
sl@0
|
470 |
if (!complete_out_arg (sig->rarg))
|
sl@0
|
471 |
{
|
sl@0
|
472 |
g_warning ("unknown type: %s", sig->rarg->keyword);
|
sl@0
|
473 |
exit_status |= 1;
|
sl@0
|
474 |
return;
|
sl@0
|
475 |
}
|
sl@0
|
476 |
for (node = sig->args; node; node = node->next)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
InArgument *iarg = node->data;
|
sl@0
|
479 |
|
sl@0
|
480 |
if (!complete_in_arg (iarg))
|
sl@0
|
481 |
{
|
sl@0
|
482 |
g_warning ("unknown type: %s", iarg->keyword);
|
sl@0
|
483 |
exit_status |= 1;
|
sl@0
|
484 |
return;
|
sl@0
|
485 |
}
|
sl@0
|
486 |
}
|
sl@0
|
487 |
|
sl@0
|
488 |
/* construct requested marshaller name and technical marshaller name */
|
sl@0
|
489 |
pname = g_strconcat (sig->rarg->keyword, "_", NULL);
|
sl@0
|
490 |
sname = g_strconcat (sig->rarg->sig_name, "_", NULL);
|
sl@0
|
491 |
for (node = sig->args; node; node = node->next)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
InArgument *iarg = node->data;
|
sl@0
|
494 |
gchar *tmp;
|
sl@0
|
495 |
|
sl@0
|
496 |
tmp = sname;
|
sl@0
|
497 |
sname = g_strconcat (tmp, "_", iarg->sig_name, NULL);
|
sl@0
|
498 |
g_free (tmp);
|
sl@0
|
499 |
tmp = pname;
|
sl@0
|
500 |
pname = g_strconcat (tmp, "_", iarg->keyword, NULL);
|
sl@0
|
501 |
g_free (tmp);
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
/* introductionary comment */
|
sl@0
|
505 |
g_fprintf (fout, "\n/* %s", sig->rarg->keyword);
|
sl@0
|
506 |
for (node = sig->args; node; node = node->next)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
InArgument *iarg = node->data;
|
sl@0
|
509 |
|
sl@0
|
510 |
g_fprintf (fout, "%c%s", node->prev ? ',' : ':', iarg->keyword);
|
sl@0
|
511 |
}
|
sl@0
|
512 |
if (!skip_ploc)
|
sl@0
|
513 |
g_fprintf (fout, " (%s)", sig->ploc);
|
sl@0
|
514 |
g_fprintf (fout, " */\n");
|
sl@0
|
515 |
|
sl@0
|
516 |
/* ensure technical marshaller exists (<marshaller_prefix>_<sname>) */
|
sl@0
|
517 |
generate_marshal (sname, sig);
|
sl@0
|
518 |
|
sl@0
|
519 |
/* put out marshaller alias for requested name if required (<marshaller_prefix>_<pname>) */
|
sl@0
|
520 |
tmp = g_strconcat (marshaller_prefix, "_", pname, NULL);
|
sl@0
|
521 |
if (gen_cheader && !g_hash_table_lookup (marshallers, tmp))
|
sl@0
|
522 |
{
|
sl@0
|
523 |
g_fprintf (fout, "#define %s_%s\t%s_%s\n", marshaller_prefix, pname, marshaller_prefix, sname);
|
sl@0
|
524 |
|
sl@0
|
525 |
g_hash_table_insert (marshallers, tmp, tmp);
|
sl@0
|
526 |
}
|
sl@0
|
527 |
else
|
sl@0
|
528 |
g_free (tmp);
|
sl@0
|
529 |
|
sl@0
|
530 |
g_free (pname);
|
sl@0
|
531 |
g_free (sname);
|
sl@0
|
532 |
}
|
sl@0
|
533 |
|
sl@0
|
534 |
static InArgument*
|
sl@0
|
535 |
new_in_arg (const gchar *pname)
|
sl@0
|
536 |
{
|
sl@0
|
537 |
InArgument *iarg = g_new0 (InArgument, 1);
|
sl@0
|
538 |
|
sl@0
|
539 |
iarg->keyword = g_strdup (pname);
|
sl@0
|
540 |
|
sl@0
|
541 |
return iarg;
|
sl@0
|
542 |
}
|
sl@0
|
543 |
|
sl@0
|
544 |
static OutArgument*
|
sl@0
|
545 |
new_out_arg (const gchar *pname)
|
sl@0
|
546 |
{
|
sl@0
|
547 |
OutArgument *oarg = g_new0 (OutArgument, 1);
|
sl@0
|
548 |
|
sl@0
|
549 |
oarg->keyword = g_strdup (pname);
|
sl@0
|
550 |
|
sl@0
|
551 |
return oarg;
|
sl@0
|
552 |
}
|
sl@0
|
553 |
|
sl@0
|
554 |
static guint
|
sl@0
|
555 |
parse_line (GScanner *scanner,
|
sl@0
|
556 |
Signature *sig)
|
sl@0
|
557 |
{
|
sl@0
|
558 |
/* parse identifier for return value */
|
sl@0
|
559 |
if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
|
sl@0
|
560 |
return G_TOKEN_IDENTIFIER;
|
sl@0
|
561 |
sig->rarg = new_out_arg (scanner->value.v_identifier);
|
sl@0
|
562 |
|
sl@0
|
563 |
/* keep a note on the location */
|
sl@0
|
564 |
sig->ploc = g_strdup_printf ("%s:%u", scanner->input_name, scanner->line);
|
sl@0
|
565 |
|
sl@0
|
566 |
/* expect ':' */
|
sl@0
|
567 |
if (g_scanner_get_next_token (scanner) != ':')
|
sl@0
|
568 |
return ':';
|
sl@0
|
569 |
|
sl@0
|
570 |
/* parse first argument */
|
sl@0
|
571 |
if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
|
sl@0
|
572 |
return G_TOKEN_IDENTIFIER;
|
sl@0
|
573 |
sig->args = g_list_append (sig->args, new_in_arg (scanner->value.v_identifier));
|
sl@0
|
574 |
|
sl@0
|
575 |
/* parse rest of argument list */
|
sl@0
|
576 |
while (g_scanner_peek_next_token (scanner) == ',')
|
sl@0
|
577 |
{
|
sl@0
|
578 |
/* eat comma */
|
sl@0
|
579 |
g_scanner_get_next_token (scanner);
|
sl@0
|
580 |
|
sl@0
|
581 |
/* parse arg identifier */
|
sl@0
|
582 |
if (g_scanner_get_next_token (scanner) != G_TOKEN_IDENTIFIER)
|
sl@0
|
583 |
return G_TOKEN_IDENTIFIER;
|
sl@0
|
584 |
sig->args = g_list_append (sig->args, new_in_arg (scanner->value.v_identifier));
|
sl@0
|
585 |
}
|
sl@0
|
586 |
|
sl@0
|
587 |
/* expect end of line, done */
|
sl@0
|
588 |
if (g_scanner_get_next_token (scanner) != '\n')
|
sl@0
|
589 |
return '\n';
|
sl@0
|
590 |
|
sl@0
|
591 |
/* success */
|
sl@0
|
592 |
return G_TOKEN_NONE;
|
sl@0
|
593 |
}
|
sl@0
|
594 |
|
sl@0
|
595 |
static gboolean
|
sl@0
|
596 |
string_key_destroy (gpointer key,
|
sl@0
|
597 |
gpointer value,
|
sl@0
|
598 |
gpointer user_data)
|
sl@0
|
599 |
{
|
sl@0
|
600 |
g_free (key);
|
sl@0
|
601 |
|
sl@0
|
602 |
return TRUE;
|
sl@0
|
603 |
}
|
sl@0
|
604 |
|
sl@0
|
605 |
int
|
sl@0
|
606 |
main (int argc,
|
sl@0
|
607 |
char *argv[])
|
sl@0
|
608 |
{
|
sl@0
|
609 |
const gchar *gobject_marshallers[] = {
|
sl@0
|
610 |
#include "gmarshal.strings"
|
sl@0
|
611 |
};
|
sl@0
|
612 |
GScanner *scanner;
|
sl@0
|
613 |
GSList *slist, *files = NULL;
|
sl@0
|
614 |
gint i;
|
sl@0
|
615 |
#ifdef __SYMBIAN32__
|
sl@0
|
616 |
gint fd1;
|
sl@0
|
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);
|
sl@0
|
618 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
619 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
620 |
/* parse args and do fast exits */
|
sl@0
|
621 |
parse_args (&argc, &argv);
|
sl@0
|
622 |
|
sl@0
|
623 |
/* list input files */
|
sl@0
|
624 |
for (i = 1; i < argc; i++)
|
sl@0
|
625 |
files = g_slist_prepend (files, argv[i]);
|
sl@0
|
626 |
if (files)
|
sl@0
|
627 |
files = g_slist_reverse (files);
|
sl@0
|
628 |
else
|
sl@0
|
629 |
#ifdef __SYMBIAN32__
|
sl@0
|
630 |
fd1 = open("c:\\genmarshaltest.txt", O_CREAT, 0666);
|
sl@0
|
631 |
close(fd1);
|
sl@0
|
632 |
files = g_slist_prepend (files, "c:\\genmarshaltest.txt");
|
sl@0
|
633 |
#else
|
sl@0
|
634 |
files = g_slist_prepend (files, "/dev/stdin");
|
sl@0
|
635 |
#endif//__SYMBIAN32__
|
sl@0
|
636 |
|
sl@0
|
637 |
/* setup auxillary structs */
|
sl@0
|
638 |
scanner = g_scanner_new (&scanner_config_template);
|
sl@0
|
639 |
fout = stdout;
|
sl@0
|
640 |
marshallers = g_hash_table_new (g_str_hash, g_str_equal);
|
sl@0
|
641 |
|
sl@0
|
642 |
/* add standard marshallers of the GObject library */
|
sl@0
|
643 |
if (std_includes)
|
sl@0
|
644 |
for (i = 0; i < G_N_ELEMENTS (gobject_marshallers); i++)
|
sl@0
|
645 |
{
|
sl@0
|
646 |
gchar *tmp = g_strdup (gobject_marshallers[i]);
|
sl@0
|
647 |
|
sl@0
|
648 |
g_hash_table_insert (marshallers, tmp, tmp);
|
sl@0
|
649 |
}
|
sl@0
|
650 |
|
sl@0
|
651 |
/* put out initial heading */
|
sl@0
|
652 |
g_fprintf (fout, "\n");
|
sl@0
|
653 |
|
sl@0
|
654 |
if (gen_cheader && std_includes)
|
sl@0
|
655 |
{
|
sl@0
|
656 |
g_fprintf (fout, "#ifndef __%s_MARSHAL_H__\n", marshaller_prefix);
|
sl@0
|
657 |
g_fprintf (fout, "#define __%s_MARSHAL_H__\n\n", marshaller_prefix);
|
sl@0
|
658 |
}
|
sl@0
|
659 |
|
sl@0
|
660 |
if ((gen_cheader || gen_cbody) && std_includes)
|
sl@0
|
661 |
g_fprintf (fout, "#include\t<glib-object.h>\n\n");
|
sl@0
|
662 |
|
sl@0
|
663 |
if (gen_cheader)
|
sl@0
|
664 |
g_fprintf (fout, "G_BEGIN_DECLS\n");
|
sl@0
|
665 |
|
sl@0
|
666 |
/* generate necessary preprocessor directives */
|
sl@0
|
667 |
if (gen_cbody)
|
sl@0
|
668 |
put_marshal_value_getters ();
|
sl@0
|
669 |
|
sl@0
|
670 |
/* process input files */
|
sl@0
|
671 |
for (slist = files; slist; slist = slist->next)
|
sl@0
|
672 |
{
|
sl@0
|
673 |
gchar *file = slist->data;
|
sl@0
|
674 |
gint fd;
|
sl@0
|
675 |
|
sl@0
|
676 |
#ifdef __SYMBIAN32__
|
sl@0
|
677 |
if (strcmp (file, "c:\\genmarshaltest.txt") == 0)
|
sl@0
|
678 |
#else
|
sl@0
|
679 |
if (strcmp (file, "/dev/stdin") == 0)
|
sl@0
|
680 |
/* Mostly for Win32. This is equivalent to opening /dev/stdin */
|
sl@0
|
681 |
fd = dup (0);
|
sl@0
|
682 |
else
|
sl@0
|
683 |
#endif//__SYMBIAN32__
|
sl@0
|
684 |
fd = open (file, O_RDONLY);
|
sl@0
|
685 |
|
sl@0
|
686 |
if (fd < 0)
|
sl@0
|
687 |
{
|
sl@0
|
688 |
g_warning ("failed to open \"%s\": %s", file, g_strerror (errno));
|
sl@0
|
689 |
exit_status |= 1;
|
sl@0
|
690 |
continue;
|
sl@0
|
691 |
}
|
sl@0
|
692 |
|
sl@0
|
693 |
/* set file name for error reports */
|
sl@0
|
694 |
scanner->input_name = file;
|
sl@0
|
695 |
|
sl@0
|
696 |
/* parse & process file */
|
sl@0
|
697 |
g_scanner_input_file (scanner, fd);
|
sl@0
|
698 |
|
sl@0
|
699 |
/* scanning loop, we parse the input until its end is reached,
|
sl@0
|
700 |
* or our sub routine came across invalid syntax
|
sl@0
|
701 |
*/
|
sl@0
|
702 |
do
|
sl@0
|
703 |
{
|
sl@0
|
704 |
guint expected_token = G_TOKEN_NONE;
|
sl@0
|
705 |
|
sl@0
|
706 |
switch (g_scanner_peek_next_token (scanner))
|
sl@0
|
707 |
{
|
sl@0
|
708 |
case '\n':
|
sl@0
|
709 |
/* eat newline and restart */
|
sl@0
|
710 |
g_scanner_get_next_token (scanner);
|
sl@0
|
711 |
continue;
|
sl@0
|
712 |
case G_TOKEN_EOF:
|
sl@0
|
713 |
/* done */
|
sl@0
|
714 |
break;
|
sl@0
|
715 |
default:
|
sl@0
|
716 |
/* parse and process signatures */
|
sl@0
|
717 |
{
|
sl@0
|
718 |
Signature signature = { NULL, NULL, NULL };
|
sl@0
|
719 |
GList *node;
|
sl@0
|
720 |
|
sl@0
|
721 |
expected_token = parse_line (scanner, &signature);
|
sl@0
|
722 |
|
sl@0
|
723 |
/* once we got a valid signature, process it */
|
sl@0
|
724 |
if (expected_token == G_TOKEN_NONE)
|
sl@0
|
725 |
process_signature (&signature);
|
sl@0
|
726 |
|
sl@0
|
727 |
/* clean up signature contents */
|
sl@0
|
728 |
g_free (signature.ploc);
|
sl@0
|
729 |
if (signature.rarg)
|
sl@0
|
730 |
g_free (signature.rarg->keyword);
|
sl@0
|
731 |
g_free (signature.rarg);
|
sl@0
|
732 |
for (node = signature.args; node; node = node->next)
|
sl@0
|
733 |
{
|
sl@0
|
734 |
InArgument *iarg = node->data;
|
sl@0
|
735 |
|
sl@0
|
736 |
g_free (iarg->keyword);
|
sl@0
|
737 |
g_free (iarg);
|
sl@0
|
738 |
}
|
sl@0
|
739 |
g_list_free (signature.args);
|
sl@0
|
740 |
}
|
sl@0
|
741 |
break;
|
sl@0
|
742 |
}
|
sl@0
|
743 |
|
sl@0
|
744 |
/* bail out on errors */
|
sl@0
|
745 |
if (expected_token != G_TOKEN_NONE)
|
sl@0
|
746 |
{
|
sl@0
|
747 |
g_scanner_unexp_token (scanner, expected_token, "type name", NULL, NULL, NULL, TRUE);
|
sl@0
|
748 |
exit_status |= 1;
|
sl@0
|
749 |
break;
|
sl@0
|
750 |
}
|
sl@0
|
751 |
|
sl@0
|
752 |
g_scanner_peek_next_token (scanner);
|
sl@0
|
753 |
}
|
sl@0
|
754 |
while (scanner->next_token != G_TOKEN_EOF);
|
sl@0
|
755 |
|
sl@0
|
756 |
close (fd);
|
sl@0
|
757 |
}
|
sl@0
|
758 |
|
sl@0
|
759 |
/* put out trailer */
|
sl@0
|
760 |
if (gen_cheader)
|
sl@0
|
761 |
{
|
sl@0
|
762 |
g_fprintf (fout, "\nG_END_DECLS\n");
|
sl@0
|
763 |
|
sl@0
|
764 |
if (std_includes)
|
sl@0
|
765 |
g_fprintf (fout, "\n#endif /* __%s_MARSHAL_H__ */\n", marshaller_prefix);
|
sl@0
|
766 |
}
|
sl@0
|
767 |
g_fprintf (fout, "\n");
|
sl@0
|
768 |
|
sl@0
|
769 |
/* clean up */
|
sl@0
|
770 |
g_slist_free (files);
|
sl@0
|
771 |
g_scanner_destroy (scanner);
|
sl@0
|
772 |
g_hash_table_foreach_remove (marshallers, string_key_destroy, NULL);
|
sl@0
|
773 |
g_hash_table_destroy (marshallers);
|
sl@0
|
774 |
#ifdef __SYMBIAN32__
|
sl@0
|
775 |
testResultXml("glib-genmarshall");
|
sl@0
|
776 |
remove("c:\\genmarshaltest.txt");
|
sl@0
|
777 |
#endif /* EMULATOR */
|
sl@0
|
778 |
return exit_status;
|
sl@0
|
779 |
}
|
sl@0
|
780 |
|
sl@0
|
781 |
static void
|
sl@0
|
782 |
parse_args (gint *argc_p,
|
sl@0
|
783 |
gchar ***argv_p)
|
sl@0
|
784 |
{
|
sl@0
|
785 |
guint argc = *argc_p;
|
sl@0
|
786 |
gchar **argv = *argv_p;
|
sl@0
|
787 |
guint i, e;
|
sl@0
|
788 |
|
sl@0
|
789 |
for (i = 1; i < argc; i++)
|
sl@0
|
790 |
{
|
sl@0
|
791 |
if (strcmp ("-header", argv[i]) == 0)
|
sl@0
|
792 |
{
|
sl@0
|
793 |
gen_cheader = TRUE;
|
sl@0
|
794 |
argv[i] = NULL;
|
sl@0
|
795 |
}
|
sl@0
|
796 |
else if (strcmp ("-body", argv[i]) == 0)
|
sl@0
|
797 |
{
|
sl@0
|
798 |
gen_cbody = TRUE;
|
sl@0
|
799 |
argv[i] = NULL;
|
sl@0
|
800 |
}
|
sl@0
|
801 |
else if (strcmp ("-skip-source", argv[i]) == 0)
|
sl@0
|
802 |
{
|
sl@0
|
803 |
skip_ploc = TRUE;
|
sl@0
|
804 |
argv[i] = NULL;
|
sl@0
|
805 |
}
|
sl@0
|
806 |
else if (strcmp ("-nostdinc", argv[i]) == 0)
|
sl@0
|
807 |
{
|
sl@0
|
808 |
std_includes = FALSE;
|
sl@0
|
809 |
argv[i] = NULL;
|
sl@0
|
810 |
}
|
sl@0
|
811 |
else if (strcmp ("-stdinc", argv[i]) == 0)
|
sl@0
|
812 |
{
|
sl@0
|
813 |
std_includes = TRUE;
|
sl@0
|
814 |
argv[i] = NULL;
|
sl@0
|
815 |
}
|
sl@0
|
816 |
else if (strcmp ("-internal", argv[i]) == 0)
|
sl@0
|
817 |
{
|
sl@0
|
818 |
gen_internal = TRUE;
|
sl@0
|
819 |
argv[i] = NULL;
|
sl@0
|
820 |
}
|
sl@0
|
821 |
else if ((strcmp ("-prefix", argv[i]) == 0) ||
|
sl@0
|
822 |
(strncmp ("-prefix=", argv[i], 9) == 0))
|
sl@0
|
823 |
{
|
sl@0
|
824 |
gchar *equal = argv[i] + 8;
|
sl@0
|
825 |
|
sl@0
|
826 |
if (*equal == '=')
|
sl@0
|
827 |
marshaller_prefix = g_strdup (equal + 1);
|
sl@0
|
828 |
else if (i + 1 < argc)
|
sl@0
|
829 |
{
|
sl@0
|
830 |
marshaller_prefix = g_strdup (argv[i + 1]);
|
sl@0
|
831 |
argv[i] = NULL;
|
sl@0
|
832 |
i += 1;
|
sl@0
|
833 |
}
|
sl@0
|
834 |
argv[i] = NULL;
|
sl@0
|
835 |
}
|
sl@0
|
836 |
else if (strcmp ("-h", argv[i]) == 0 ||
|
sl@0
|
837 |
strcmp ("-?", argv[i]) == 0 ||
|
sl@0
|
838 |
strcmp ("-help", argv[i]) == 0)
|
sl@0
|
839 |
{
|
sl@0
|
840 |
print_blurb (stderr, TRUE);
|
sl@0
|
841 |
argv[i] = NULL;
|
sl@0
|
842 |
exit (0);
|
sl@0
|
843 |
}
|
sl@0
|
844 |
else if (strcmp ("-v", argv[i]) == 0 ||
|
sl@0
|
845 |
strcmp ("-version", argv[i]) == 0)
|
sl@0
|
846 |
{
|
sl@0
|
847 |
print_blurb (stderr, FALSE);
|
sl@0
|
848 |
argv[i] = NULL;
|
sl@0
|
849 |
exit (0);
|
sl@0
|
850 |
}
|
sl@0
|
851 |
else if (strcmp (argv[i], "-g-fatal-warnings") == 0)
|
sl@0
|
852 |
{
|
sl@0
|
853 |
GLogLevelFlags fatal_mask;
|
sl@0
|
854 |
|
sl@0
|
855 |
fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
|
sl@0
|
856 |
fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
|
sl@0
|
857 |
g_log_set_always_fatal (fatal_mask);
|
sl@0
|
858 |
|
sl@0
|
859 |
argv[i] = NULL;
|
sl@0
|
860 |
}
|
sl@0
|
861 |
}
|
sl@0
|
862 |
|
sl@0
|
863 |
e = 0;
|
sl@0
|
864 |
for (i = 1; i < argc; i++)
|
sl@0
|
865 |
{
|
sl@0
|
866 |
if (e)
|
sl@0
|
867 |
{
|
sl@0
|
868 |
if (argv[i])
|
sl@0
|
869 |
{
|
sl@0
|
870 |
argv[e++] = argv[i];
|
sl@0
|
871 |
argv[i] = NULL;
|
sl@0
|
872 |
}
|
sl@0
|
873 |
}
|
sl@0
|
874 |
else if (!argv[i])
|
sl@0
|
875 |
e = i;
|
sl@0
|
876 |
}
|
sl@0
|
877 |
if (e)
|
sl@0
|
878 |
*argc_p = e;
|
sl@0
|
879 |
}
|
sl@0
|
880 |
|
sl@0
|
881 |
static void
|
sl@0
|
882 |
print_blurb (FILE *bout,
|
sl@0
|
883 |
gboolean print_help)
|
sl@0
|
884 |
{
|
sl@0
|
885 |
if (!print_help)
|
sl@0
|
886 |
{
|
sl@0
|
887 |
g_fprintf (bout, "%s version ", PRG_NAME);
|
sl@0
|
888 |
g_fprintf (bout, "%u.%u.%u", GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
|
sl@0
|
889 |
g_fprintf (bout, "\n");
|
sl@0
|
890 |
g_fprintf (bout, "%s comes with ABSOLUTELY NO WARRANTY.\n", PRG_NAME);
|
sl@0
|
891 |
g_fprintf (bout, "You may redistribute copies of %s under the terms of\n", PRG_NAME);
|
sl@0
|
892 |
g_fprintf (bout, "the GNU General Public License which can be found in the\n");
|
sl@0
|
893 |
g_fprintf (bout, "%s source package. Sources, examples and contact\n", PKG_NAME);
|
sl@0
|
894 |
g_fprintf (bout, "information are available at %s\n", PKG_HTTP_HOME);
|
sl@0
|
895 |
}
|
sl@0
|
896 |
else
|
sl@0
|
897 |
{
|
sl@0
|
898 |
g_fprintf (bout, "Usage:\n");
|
sl@0
|
899 |
g_fprintf (bout, " %s [OPTION...] [FILES...]\n\n", PRG_NAME);
|
sl@0
|
900 |
g_fprintf (bout, "Help Options:\n");
|
sl@0
|
901 |
g_fprintf (bout, " -h, -help Show this help message\n\n");
|
sl@0
|
902 |
g_fprintf (bout, "Utility Options:\n");
|
sl@0
|
903 |
g_fprintf (bout, " -header Generate C headers\n");
|
sl@0
|
904 |
g_fprintf (bout, " -body Generate C code\n");
|
sl@0
|
905 |
g_fprintf (bout, " -prefix=string Specify marshaller prefix\n");
|
sl@0
|
906 |
g_fprintf (bout, " -skip-source Skip source location comments\n");
|
sl@0
|
907 |
g_fprintf (bout, " -stdinc, -nostdinc Include/use standard marshallers\n");
|
sl@0
|
908 |
g_fprintf (bout, " -internal Mark generated functions as internal\n");
|
sl@0
|
909 |
g_fprintf (bout, " -v, -version Print version informations\n");
|
sl@0
|
910 |
g_fprintf (bout, " -g-fatal-warnings Make warnings fatal (abort)\n");
|
sl@0
|
911 |
}
|
sl@0
|
912 |
}
|