glib-genmarshalglib-genmarshal — C code marshaller generation utility for GLib closures |
glib-genmarshal
[OPTION...] [FILE...]
glib-genmarshal 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.
glib-genmarshal takes a list of marshallers to generate as
input. The marshaller list is either read from files passed as additional arguments
on the command line; or from standard input, by using -
as the
input file.
The marshaller lists are processed line by line, a line can contain a comment in the form of
1 |
# this is a comment |
or a marshaller specification of the form
RTYPE
:PTYPE
RTYPE
:PTYPE
,PTYPE
RTYPE
:PTYPE
,PTYPE
,PTYPE
The RTYPE
part specifies the callback's return
type and the PTYPE
s right to the colon specify
the callback's parameter list, except for the first and the last arguments
which are always pointers.
Currently, the following types are supported:
|
indicates no return type, or no extra parameters.
If |
|
for boolean types (gboolean) |
|
for signed char types (gchar) |
|
for unsigned char types (guchar) |
|
for signed integer types (gint) |
|
for unsigned integer types (guint) |
|
for signed long integer types (glong) |
|
for unsigned long integer types (gulong) |
|
for signed 64bit integer types (gint64) |
|
for unsigned 64bit integer types (guint64) |
|
for enumeration types (gint) |
|
for flag enumeration types (guint) |
|
for single-precision float types (gfloat) |
|
for double-precision float types (gdouble) |
|
for string types (gchar*) |
|
for boxed (anonymous but reference counted) types (GBoxed*) |
|
for GParamSpec or derived types (GParamSpec*) |
|
for anonymous pointer types (gpointer) |
|
for GObject or derived types (GObject*) |
|
for GVariant types (GVariant*) |
|
deprecated alias for |
|
deprecated alias for |
|
Generate header file contents of the marshallers. This option is mutually
exclusive with the |
|
Generate C code file contents of the marshallers. This option is mutually
exclusive with the |
|
Specify marshaller prefix. The default prefix is |
|
Skip source location remarks in generated comments. |
|
Use the standard marshallers of the GObject library, and include
|
|
Do not use the standard marshallers of the GObject library, and skip
|
|
Mark generated functions as internal, using |
|
Generate valist marshallers, for use with |
|
Print version information. |
|
Make warnings fatal, that is, exit immediately once a warning occurs. |
|
Print brief help and exit. |
|
Print version and exit. |
|
Write output to |
|
Generate function prototypes before the function definition in the C source
file, in order to avoid a |
|
Use the |
|
Adds a |
|
Adds a |
|
Adds a |
|
Minimizes the output of glib-genmarshal, by printing only
warnings and errors. This option is mutually exclusive with the
|
|
Increases the verbosity of glib-genmarshal, by printing
debugging information. This option is mutually exclusive with the
|
Meson supports generating closure marshallers using glib-genmarshal out of the box in its "gnome" module.
In your meson.build
file you will typically call the
gnome.genmarshal()
method with the source list of marshallers
to generate:
1 2 3 4 5 |
gnome = import('gnome') marshal_files = gnome.genmarshal('marshal', sources: 'marshal.list', internal: true, ) |
The marshal_files
variable will contain an array of two elements
in the following order:
a build target for the source file
a build target for the header file
You should use the returned objects to provide a dependency on every other build target that references the source or header file; for instance, if you are using the source to build a library:
1 2 3 4 |
mainlib = library('project', sources: project_sources + marshal_files, ... ) |
Additionally, if you are including the generated header file inside a build target that depends on the library you just built, you must ensure that the internal dependency includes the generated header as a required source file:
1 |
mainlib_dep = declare_dependency(sources: marshal_files[1], link_with: mainlib) |
You should not include the generated source file as well, otherwise it will be built separately for every target that depends on it, causing build failures. To know more about why all this is required, please refer to the corresponding Meson FAQ entry.
For more information on how to use the method, see the
Meson
documentation for gnome.genmarshal()
.
In order to use glib-genmarshal in your project when using
Autotools as the build system, you will first need to modify your
configure.ac
file to ensure you find the appropriate
command using pkg-config, similarly as to how you discover
the compiler and linker flags for GLib.
1 2 3 |
PKG_PROG_PKG_CONFIG([0.28]) PKG_CHECK_VAR([GLIB_GENMARSHAL], [glib-2.0], [glib_genmarshal]) |
In your Makefile.am
file you will typically need very
simple rules to generate the C files needed for the build.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
marshal.h: marshal.list $(AM_V_GEN)$(GLIB_GENMARSHAL) \ --header \ --output=$@ \ $< marshal.c: marshal.list marshal.h $(AM_V_GEN)$(GLIB_GENMARSHAL) \ --include-header=marshal.h \ --body \ --output=$@ \ $< BUILT_SOURCES += marshal.h marshal.c CLEANFILES += marshal.h marshal.c EXTRA_DIST += marshal.list |
In the example above, the first rule generates the header file and depends on
a marshal.list
file in order to regenerate the result in
case the marshallers list is updated. The second rule generates the source file
for the same marshal.list
, and includes the file generated
by the header rule.
To generate marshallers for the following callback functions:
1 2 3 4 5 6 7 8 9 |
void foo (gpointer data1, gpointer data2); void bar (gpointer data1, gint param1, gpointer data2); gfloat baz (gpointer data1, gboolean param1, guchar param2, gpointer data2); |
The marshaller.list
file has to look like this:
VOID:VOID VOID:INT FLOAT:BOOLEAN,UCHAR
and you call glib-genmarshal like this:
glib-genmarshal --header marshaller.list > marshaller.h glib-genmarshal --body marshaller.list > marshaller.c
The generated marshallers have the arguments encoded in their function name. For this particular list, they are
g_cclosure_user_marshal_VOID__VOID(...), g_cclosure_user_marshal_VOID__INT(...), g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR(...).
They can be used directly for GClosures or be passed in as the GSignalCMarshaller c_marshaller; argument upon creation of signals:
1 2 3 4 5 6 7 8 |
GClosure *cc_foo, *cc_bar, *cc_baz; cc_foo = g_cclosure_new (NULL, foo, NULL); g_closure_set_marshal (cc_foo, g_cclosure_user_marshal_VOID__VOID); cc_bar = g_cclosure_new (NULL, bar, NULL); g_closure_set_marshal (cc_bar, g_cclosure_user_marshal_VOID__INT); cc_baz = g_cclosure_new (NULL, baz, NULL); g_closure_set_marshal (cc_baz, g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR); |