1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
.\"Generated by db2man.xsl. Don't modify this, modify the source.
.de Sh \" Subsection
.br
.if t .Sp
.ne 5
.PP
\fB\\$1\fR
.PP
..
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Ip \" List item
.br
.ie \\n(.$>=3 .ne \\$3
.el .ne 3
.IP "\\$1" \\$2
..
.TH "GLIB-GENMARSHAL" 1 "" "" ""
.SH NAME
glib-genmarshal \- C code marshaller generation utility for GLib closures
.SH "SYNOPSIS"
.nf
\fBglib-genmarshal\fR [options...] [files...]
.fi
.SH "DESCRIPTION"
.PP
\fBglib-genmarshal\fR is a small utility that generates C code marshallers for callback functions of the GClosure mechanism in the GObject sublibrary of GLib\&. The marshaller functions have a standard signature, they get passed in the invoking closure, an array of value structures holding the callback function parameters and a value structure for the return value of the callback\&. The marshaller is then responsible to call the respective C code function of the closure with all the parameters on the stack and to collect its return value\&.
.SH "INVOCATION"
.PP
\fBglib-genmarshal\fR takes a list of marshallers to generate as input\&. The marshaller list is either read from standard input or from files passed as additional arguments on the command line\&.
.SS "Options"
.TP
\fB--header\fR
Generate header file contents of the marshallers\&.
.TP
\fB--body\fR
Generate C code file contents of the marshallers\&.
.TP
\fB--prefix=string\fR, \fB--prefix string\fR
Specify marshaller prefix\&. The default prefix is `g_cclosure_marshal'\&.
.TP
\fB--skip-source\fR
Skip source location remarks in generated comments\&.
.TP
\fB--nostdinc\fR
Do not use the standard marshallers of the GObject library, and skip \fIgmarshal\&.h\fR include directive in generated header files\&.
.TP
\fB--g-fatal-warnings\fR
Make warnings fatal, that is, exit immediately once a warning occurs\&.
.TP
\fB-h\fR, \fB--help\fR
Print brief help and exit\&.
.TP
\fB-v\fR, \fB--version\fR
Print version and exit\&.
.SS "Marshaller list format"
.PP
The marshaller lists are processed line by line, a line can contain a comment in the form of
.nf
# this is a comment
.fi
or a marshaller specification of the form
.nf
\fIRTYPE\fR:\fIPTYPE\fR
\fIRTYPE\fR:\fIPTYPE\fR,\fIPTYPE\fR
\fIRTYPE\fR:\fIPTYPE\fR,\fIPTYPE\fR,\fIPTYPE\fR
.fi
(up to 16 \fIPTYPE\fRs may be present)\&.
.PP
The \fIRTYPE\fR part specifies the callback's return type and the \fIPTYPE\fRs right to the colon specify the callback's parameter list, except for the first and the last arguments which are always pointers\&.
.SS "Parameter types"
.PP
Currently, the following types are supported:
.TP
\fIVOID\fR
indicates no return type, or no extra parameters\&. If \fIVOID\fR is used as the parameter list, no additional parameters may be present\&.
.TP
\fIBOOLEAN\fR
for boolean types (gboolean)
.TP
\fICHAR\fR
for signed char types (gchar)
.TP
\fIUCHAR\fR
for unsigned char types (guchar)
.TP
\fIINT\fR
for signed integer types (gint)
.TP
\fIUINT\fR
for unsigned integer types (guint)
.TP
\fILONG\fR
for signed long integer types (glong)
.TP
\fIULONG\fR
for unsigned long integer types (gulong)
.TP
\fIINT64\fR
for signed 64bit integer types (gint64)
.TP
\fIUINT64\fR
for unsigned 64bit integer types (guint64)
.TP
\fIENUM\fR
for enumeration types (gint)
.TP
\fIFLAGS\fR
for flag enumeration types (guint)
.TP
\fIFLOAT\fR
for single-precision float types (gfloat)
.TP
\fIDOUBLE\fR
for double-precision float types (gdouble)
.TP
\fISTRING\fR
for string types (gchar*)
.TP
\fIBOXED\fR
for boxed (anonymous but reference counted) types (GBoxed*)
.TP
\fIPARAM\fR
for GParamSpec or derived types (GParamSpec*)
.TP
\fIPOINTER\fR
for anonymous pointer types (gpointer)
.TP
\fIOBJECT\fR
for GObject or derived types (GObject*)
.TP
\fINONE\fR
deprecated alias for \fIVOID\fR
.TP
\fIBOOL\fR
deprecated alias for \fIBOOLEAN\fR
.SH "EXAMPLE"
.PP
To generate marshallers for the following callback functions:
.nf
void foo (gpointer data1,
gpointer data2);
void bar (gpointer data1,
gint param1,
gpointer data2);
gfloat baz (gpointer data1,
gboolean param1,
guchar param2,
gpointer data2);
.fi
.PP
The marshaller list has to look like this:
.nf
VOID:VOID
VOID:INT
FLOAT:BOOLEAN,UCHAR
.fi
.PP
The generated marshallers have the arguments encoded in their function name\&. For this particular list, they are
.nf
g_cclosure_marshal_VOID__VOID(),
g_cclosure_marshal_VOID__INT(),
g_cclosure_marshal_FLOAT__BOOLEAN_UCHAR()\&.
.fi
.PP
They can be used directly for GClosures or be passed in as the GSignalCMarshaller c_marshaller; argument upon creation of signals:
.nf
GClosure *cc_foo, *cc_bar, *cc_baz;
cc_foo = g_cclosure_new (NULL, foo, NULL);
g_closure_set_marshal (cc_foo, g_cclosure_marshal_VOID__VOID);
cc_bar = g_cclosure_new (NULL, bar, NULL);
g_closure_set_marshal (cc_bar, g_cclosure_marshal_VOID__INT);
cc_baz = g_cclosure_new (NULL, baz, NULL);
g_closure_set_marshal (cc_baz, g_cclosure_marshal_FLOAT__BOOLEAN_UCHAR);
.fi
.SH "SEE ALSO"
.PP
\fBglib-mkenums\fR(1)
.SH "BUGS"
.PP
None known yet\&.
.SH "AUTHOR"
.PP
\fBglib-genmarshal\fR has been written by Tim Janik <timj@gtk\&.org>\&.
.PP
This manual page was provided by Tim Janik <timj@gtk\&.org>\&.
|