glib-mkenums
glib-mkenums takes a list of valid C code files as input. The options specified control the text that generated, substituting various keywords enclosed in @ characters in the templates.
Certain keywords enclosed in @ characters will be substituted in the emitted text. For the substitution examples of the keywords below, the following example enum definition is assumed:
typedef enum { PREFIX_THE_XVALUE = 1 << 3, PREFIX_ANOTHER_VALUE = 1 << 4 } PrefixTheXEnum;
@EnumName@>
@enum_name@
@ENUMNAME@
@ENUMSHORT@
@ENUMPREFIX@
@VALUENAME@
@valuenick@
@valuenum@
@type@
@Type@
@TYPE@
@filename@
@basename@
Some C comments are treated specially in the parsed enum definitions, such comments start out with the trigraph sequence /*< and end with the trigraph sequence >*/.
The following options can be specified per enum definition:
skip
flags
underscore_name
since
The following options can be specified per value definition:
skip
nick
Examples:
typedef enum /*< skip >*/ { PREFIX_FOO } PrefixThisEnumWillBeSkipped; typedef enum /*< flags,prefix=PREFIX,since=1.0 >*/ { PREFIX_THE_ZEROTH_VALUE, /*< skip >*/ PREFIX_THE_FIRST_VALUE, PREFIX_THE_SECOND_VALUE, PREFIX_THE_THIRD_VALUE, /*< nick=the-last-value >*/ } PrefixTheFlagsEnum;
--fhead TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be prepended to the template's file-header section.
--fprod TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be appended to the template's file-production section.
--ftail TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be appended to the template's file-tail section.
--eprod TEXT
--vhead TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be prepended to the template's value-header section.
--vprod TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be appended to the template's value-production section.
--vtail TEXT
You can specify this option multiple times, and the TEXT will be concatenated.
When used along with a template file, TEXT will be appended to the template's value-tail section.
--comments TEXT
--template FILE
/*** BEGIN section ***/ /*** END section ***/
--identifier-prefix PREFIX
--symbol-prefix PREFIX
--help
--version
--output=FILE
@RSPFILE
Instead of passing the various sections of the generated file to the command line of glib-mkenums, it's strongly recommended to use a template file, especially for generating C sources.
A C header template file will typically look like this:
/*** BEGIN file-header ***/ #pragma once /* Include the main project header */ #include "project.h" G_BEGIN_DECLS /*** END file-header ***/ /*** BEGIN file-production ***/ /* enumerations from "@basename@" */ /*** END file-production ***/ /*** BEGIN value-header ***/ GType @enum_name@_get_type (void) G_GNUC_CONST; #define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) /*** END value-header ***/ /*** BEGIN file-tail ***/ G_END_DECLS /*** END file-tail ***/
A C source template file will typically look like this:
/*** BEGIN file-header ***/ #include "config.h" #include "enum-types.h" /*** END file-header ***/ /*** BEGIN file-production ***/ /* enumerations from "@basename@" */ /*** END file-production ***/ /*** BEGIN value-header ***/ GType @enum_name@_get_type (void) { static gsize static_g_@type@_type_id; if (g_once_init_enter (&static_g_@type@_type_id)) { static const G@Type@Value values[] = { /*** END value-header ***/ /*** BEGIN value-production ***/ { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, /*** END value-production ***/ /*** BEGIN value-tail ***/ { 0, NULL, NULL } }; GType g_@type@_type_id = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); g_once_init_leave (&static_g_@type@_type_id, g_@type@_type_id); } return static_g_@type@_type_id; } /*** END value-tail ***/
Template files are easier to modify and update, and can be used to generate various types of outputs using the same command line or tools during the build.
Meson supports generating enumeration types using glib-mkenums out of the box in its "gnome" module.
In your meson.build file you will typically call the gnome.mkenums_simple() method to generate idiomatic enumeration types from a list of headers to inspect:
project_headers = [ 'project-foo.h', 'project-bar.h', 'project-baz.h', ] gnome = import('gnome') enum_files = gnome.mkenums_simple('enum-types', sources: project_headers, )
The enum_files variable will contain an array of two elements in the following order:
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:
mainlib = library('project', sources: project_sources + enum_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:
mainlib_dep = declare_dependency(sources: enum_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 m[blue]corresponding Meson FAQ entrym[][1].
If you are generating C header and source files that require special templates, you can use gnome.mkenums() to provide those headers, for instance:
enum_files = gnome.mkenums('enum-types', sources: project_headers, h_template: 'enum-types.h.in', c_template: 'enum-types.c.in', install_header: true, )
For more information, see the m[blue]Meson documentation for gnome.mkenums()m[][2].
In order to use glib-mkenums 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.
PKG_PROG_PKG_CONFIG([0.28]) PKG_CHECK_VAR([GLIB_MKENUMS], [glib-2.0], [glib_mkenums])
In your Makefile.am file you will typically use rules like these:
# A list of headers to inspect project_headers = \ project-foo.h \ project-bar.h \ project-baz.h enum-types.h: $(project_headers) enum-types.h.in $(AM_V_GEN)$(GLIB_MKENUMS) \ --template=enum-types.h.in \ --output=$@ \ $(project_headers) enum-types.c: $(project_headers) enum-types.c.in enum-types.h $(AM_V_GEN)$(GLIB_MKENUMS) \ --template=enum-types.c.in \ --output=$@ \ $(project_headers) # Build the enum types files before every other target BUILT_SOURCES += enum-types.h enum-types.c CLEANFILES += enum-types.h enum-types.c EXTRA_DIST += enum-types.h.in enum-types.c.in
In the example above, we have a variable called project_headers where we reference all header files we want to inspect for generating enumeration GTypes. In the enum-types.h rule we use glib-mkenums with a template called enum-types.h.in in order to generate the header file; similarly, in the enum-types.c rule we use a template called enum-types.c.in.