glib/docs/reference/gobject/glib-genmarshal.1

308 lines
6.2 KiB
Groff
Raw Normal View History

2009-03-02 06:49:44 +01:00
'\" t
.\" Title: glib-genmarshal
.\" Author: [see the "Author" section]
.\" Generator: DocBook XSL Stylesheets v1.74.2 <http://docbook.sf.net/>
2009-03-13 06:44:11 +01:00
.\" Date: 03/13/2009
2009-03-02 06:49:44 +01:00
.\" Manual: [FIXME: manual]
.\" Source: [FIXME: source]
.\" Language: English
.\"
2009-03-13 06:44:11 +01:00
.TH "GLIB\-GENMARSHAL" "1" "03/13/2009" "[FIXME: source]" "[FIXME: manual]"
2009-03-02 06:49:44 +01:00
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
2005-08-23 06:35:33 +02:00
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
2009-03-02 06:49:44 +01:00
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
2005-08-23 06:35:33 +02:00
.SH "NAME"
2009-03-02 06:49:44 +01:00
glib-genmarshal \- C code marshaller generation utility for GLib closures
.SH "SYNOPSIS"
2009-03-02 06:49:44 +01:00
.HP \w'\fBglib\-genmarshal\fR\ 'u
2005-08-23 06:35:33 +02:00
\fBglib\-genmarshal\fR [options...] [files...]
.SH "DESCRIPTION"
.PP
2005-08-23 06:35:33 +02:00
\fBglib\-genmarshal\fR
2009-03-02 06:49:44 +01:00
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
2005-08-23 06:35:33 +02:00
\fBglib\-genmarshal\fR
2009-03-02 06:49:44 +01:00
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"
2009-03-02 06:49:44 +01:00
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-header\fR
2009-03-02 06:49:44 +01:00
.RS 4
Generate header file contents of the marshallers\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-body\fR
2009-03-02 06:49:44 +01:00
.RS 4
Generate C code file contents of the marshallers\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-prefix=string\fR, \fB\-\-prefix string\fR
2009-03-02 06:49:44 +01:00
.RS 4
Specify marshaller prefix\&. The default prefix is
`g_cclosure_marshal\'\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-skip\-source\fR
2009-03-02 06:49:44 +01:00
.RS 4
Skip source location remarks in generated comments\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-nostdinc\fR
2009-03-02 06:49:44 +01:00
.RS 4
2005-08-23 06:35:33 +02:00
Do not use the standard marshallers of the GObject library, and skip
2009-03-02 06:49:44 +01:00
gmarshal\&.h
include directive in generated header files\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-\-g\-fatal\-warnings\fR
2009-03-02 06:49:44 +01:00
.RS 4
Make warnings fatal, that is, exit immediately once a warning occurs\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-h\fR, \fB\-\-help\fR
2009-03-02 06:49:44 +01:00
.RS 4
Print brief help and exit\&.
.RE
.PP
2005-08-23 06:35:33 +02:00
\fB\-v\fR, \fB\-\-version\fR
2009-03-02 06:49:44 +01:00
.RS 4
Print version and exit\&.
.RE
.SS "Marshaller list format"
.PP
2005-08-23 06:35:33 +02:00
The marshaller lists are processed line by line, a line can contain a comment in the form of
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.nf
# this is a comment
.fi
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
2005-08-23 06:35:33 +02:00
.sp
or a marshaller specification of the form
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.nf
\fIRTYPE\fR:\fIPTYPE\fR
\fIRTYPE\fR:\fIPTYPE\fR,\fIPTYPE\fR
\fIRTYPE\fR:\fIPTYPE\fR,\fIPTYPE\fR,\fIPTYPE\fR
.fi
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
2005-08-23 06:35:33 +02:00
.sp
(up to 16
2009-03-02 06:49:44 +01:00
\fIPTYPE\fRs may be present)\&.
.PP
2005-08-23 06:35:33 +02:00
The
\fIRTYPE\fR
2009-03-02 06:49:44 +01:00
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
2005-08-23 06:35:33 +02:00
Currently, the following types are supported:
2009-03-02 06:49:44 +01:00
.PP
\fIVOID\fR
2009-03-02 06:49:44 +01:00
.RS 4
indicates no return type, or no extra parameters\&. If
2005-08-23 06:35:33 +02:00
\fIVOID\fR
2009-03-02 06:49:44 +01:00
is used as the parameter list, no additional parameters may be present\&.
.RE
.PP
\fIBOOLEAN\fR
2009-03-02 06:49:44 +01:00
.RS 4
for boolean types (gboolean)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fICHAR\fR
2009-03-02 06:49:44 +01:00
.RS 4
for signed char types (gchar)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIUCHAR\fR
2009-03-02 06:49:44 +01:00
.RS 4
for unsigned char types (guchar)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIINT\fR
2009-03-02 06:49:44 +01:00
.RS 4
for signed integer types (gint)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIUINT\fR
2009-03-02 06:49:44 +01:00
.RS 4
for unsigned integer types (guint)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fILONG\fR
2009-03-02 06:49:44 +01:00
.RS 4
for signed long integer types (glong)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIULONG\fR
2009-03-02 06:49:44 +01:00
.RS 4
for unsigned long integer types (gulong)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIINT64\fR
2009-03-02 06:49:44 +01:00
.RS 4
for signed 64bit integer types (gint64)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIUINT64\fR
2009-03-02 06:49:44 +01:00
.RS 4
for unsigned 64bit integer types (guint64)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIENUM\fR
2009-03-02 06:49:44 +01:00
.RS 4
for enumeration types (gint)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIFLAGS\fR
2009-03-02 06:49:44 +01:00
.RS 4
for flag enumeration types (guint)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIFLOAT\fR
2009-03-02 06:49:44 +01:00
.RS 4
2005-08-23 06:35:33 +02:00
for single\-precision float types (gfloat)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIDOUBLE\fR
2009-03-02 06:49:44 +01:00
.RS 4
2005-08-23 06:35:33 +02:00
for double\-precision float types (gdouble)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fISTRING\fR
2009-03-02 06:49:44 +01:00
.RS 4
for string types (gchar*)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIBOXED\fR
2009-03-02 06:49:44 +01:00
.RS 4
for boxed (anonymous but reference counted) types (GBoxed*)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIPARAM\fR
2009-03-02 06:49:44 +01:00
.RS 4
for GParamSpec or derived types (GParamSpec*)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIPOINTER\fR
2009-03-02 06:49:44 +01:00
.RS 4
for anonymous pointer types (gpointer)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIOBJECT\fR
2009-03-02 06:49:44 +01:00
.RS 4
for GObject or derived types (GObject*)
2009-03-02 06:49:44 +01:00
.RE
.PP
\fINONE\fR
2009-03-02 06:49:44 +01:00
.RS 4
2005-08-23 06:35:33 +02:00
deprecated alias for
\fIVOID\fR
2009-03-02 06:49:44 +01:00
.RE
.PP
\fIBOOL\fR
2009-03-02 06:49:44 +01:00
.RS 4
2005-08-23 06:35:33 +02:00
deprecated alias for
\fIBOOLEAN\fR
2009-03-02 06:49:44 +01:00
.RE
.SH "EXAMPLE"
.PP
To generate marshallers for the following callback functions:
2005-08-23 06:35:33 +02:00
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.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
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
.PP
The marshaller list has to look like this:
2005-08-23 06:35:33 +02:00
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.nf
VOID:VOID
VOID:INT
FLOAT:BOOLEAN,UCHAR
.fi
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
.PP
2009-03-02 06:49:44 +01:00
The generated marshallers have the arguments encoded in their function name\&. For this particular list, they are
2005-08-23 06:35:33 +02:00
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.nf
g_cclosure_marshal_VOID__VOID(),
g_cclosure_marshal_VOID__INT(),
2009-03-02 06:49:44 +01:00
g_cclosure_marshal_FLOAT__BOOLEAN_UCHAR()\&.
.fi
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
.PP
They can be used directly for GClosures or be passed in as the GSignalCMarshaller c_marshaller; argument upon creation of signals:
2005-08-23 06:35:33 +02:00
.sp
2009-03-02 06:49:44 +01:00
.if n \{\
.RS 4
.\}
.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
2009-03-02 06:49:44 +01:00
.if n \{\
.RE
.\}
.SH "SEE ALSO"
.PP
2009-03-02 06:49:44 +01:00
2005-08-23 06:35:33 +02:00
\fBglib\-mkenums\fR(1)
.SH "BUGS"
.PP
2009-03-02 06:49:44 +01:00
None known yet\&.
.SH "AUTHOR"
.PP
2005-08-23 06:35:33 +02:00
\fBglib\-genmarshal\fR
has been written by Tim Janik
2009-03-02 06:49:44 +01:00
timj@gtk\&.org\&.
.PP
2005-08-23 06:35:33 +02:00
This manual page was provided by Tim Janik
2009-03-02 06:49:44 +01:00
timj@gtk\&.org\&.