Cthulhu  0.2.10
Cthulhu compiler collection

Reflection API for configuration. More...

Collaboration diagram for Reflection:

Functions

CT_PUREFN CT_CONFIG_API cfg_type_t cfg_get_type (const cfg_field_t *field)
 get the type of a configuration field More...
 
CT_PUREFN CT_CONFIG_API const cfg_info_tcfg_get_info (const cfg_field_t *field)
 get the information about a configuration field More...
 
CT_PUREFN CT_CONFIG_API const cfg_info_tcfg_group_info (const cfg_group_t *config)
 get the information about a configuration group More...
 
CT_PUREFN CT_CONFIG_API const cfg_int_tcfg_int_info (const cfg_field_t *field)
 get the information about an integer field More...
 
CT_PUREFN CT_CONFIG_API bool cfg_bool_info (const cfg_field_t *field)
 get the information about a yes/no field More...
 
CT_PUREFN CT_CONFIG_API const char * cfg_string_info (const cfg_field_t *field)
 get the information about a string field More...
 
CT_PUREFN CT_CONFIG_API const vector_tcfg_vector_info (const cfg_field_t *field)
 get the information about a vector field More...
 
CT_PUREFN CT_CONFIG_API const cfg_enum_tcfg_enum_info (const cfg_field_t *field)
 get the information about a choice field More...
 
CT_PUREFN CT_CONFIG_API const cfg_enum_tcfg_flags_info (const cfg_field_t *field)
 get the information about a flags field More...
 
CT_CONSTFN CT_CONFIG_API const char * cfg_type_string (cfg_type_t type)
 get the name of a configuration type More...
 
CT_CONSTFN CT_CONFIG_API const char * cfg_arg_string (arg_style_t style)
 get the name of an argument style More...
 
CT_CONSTFN CT_CONFIG_API const char * cfg_arg_prefix (arg_style_t style)
 get the prefix for an argument style More...
 
CT_PUREFN CT_CONFIG_API typevec_tcfg_get_groups (const cfg_group_t *config)
 get all subgroups in a configuration group More...
 
CT_PUREFN CT_CONFIG_API vector_tcfg_get_fields (const cfg_group_t *config)
 get all fields in a configuration group More...
 

Detailed Description

Reflection API for configuration.

Function Documentation

◆ cfg_arg_prefix()

CT_CONSTFN CT_CONFIG_API const char* cfg_arg_prefix ( arg_style_t  style)

get the prefix for an argument style

Parameters
stylethe style to get the prefix for
Returns
the prefix for style

Definition at line 125 of file reflect.c.

◆ cfg_arg_string()

CT_CONSTFN CT_CONFIG_API const char* cfg_arg_string ( arg_style_t  style)

get the name of an argument style

Parameters
stylethe style to get the name of
Returns
the name of style

Definition at line 112 of file reflect.c.

◆ cfg_bool_info()

CT_PUREFN CT_CONFIG_API bool cfg_bool_info ( const cfg_field_t field)

get the information about a yes/no field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 54 of file reflect.c.

◆ cfg_enum_info()

CT_PUREFN CT_CONFIG_API const cfg_enum_t* cfg_enum_info ( const cfg_field_t field)

get the information about a choice field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 78 of file reflect.c.

◆ cfg_flags_info()

CT_PUREFN CT_CONFIG_API const cfg_enum_t* cfg_flags_info ( const cfg_field_t field)

get the information about a flags field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 86 of file reflect.c.

◆ cfg_get_fields()

CT_PUREFN CT_CONFIG_API vector_t* cfg_get_fields ( const cfg_group_t config)

get all fields in a configuration group

Parameters
configthe configuration group to get the fields from
Returns
the fields in config

Definition at line 38 of file reflect.c.

◆ cfg_get_groups()

CT_PUREFN CT_CONFIG_API typevec_t* cfg_get_groups ( const cfg_group_t config)

get all subgroups in a configuration group

Parameters
configthe configuration group to get the subgroups from
Returns
the subgroups in config

Definition at line 30 of file reflect.c.

◆ cfg_get_info()

CT_PUREFN CT_CONFIG_API const cfg_info_t* cfg_get_info ( const cfg_field_t field)

get the information about a configuration field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 14 of file reflect.c.

◆ cfg_get_type()

CT_PUREFN CT_CONFIG_API cfg_type_t cfg_get_type ( const cfg_field_t field)

get the type of a configuration field

Parameters
fieldthe field to get the type of
Returns
the type of field

Definition at line 6 of file reflect.c.

◆ cfg_group_info()

CT_PUREFN CT_CONFIG_API const cfg_info_t* cfg_group_info ( const cfg_group_t config)

get the information about a configuration group

Parameters
configthe configuration group to get the information about
Returns
the information about config

Definition at line 22 of file reflect.c.

◆ cfg_int_info()

CT_PUREFN CT_CONFIG_API const cfg_int_t* cfg_int_info ( const cfg_field_t field)

get the information about an integer field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 46 of file reflect.c.

◆ cfg_string_info()

CT_PUREFN CT_CONFIG_API const char* cfg_string_info ( const cfg_field_t field)

get the information about a string field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 62 of file reflect.c.

◆ cfg_type_string()

CT_CONSTFN CT_CONFIG_API const char* cfg_type_string ( cfg_type_t  type)

get the name of a configuration type

Parameters
typethe type to get the name of
Returns
the name of type

Definition at line 99 of file reflect.c.

◆ cfg_vector_info()

CT_PUREFN CT_CONFIG_API const vector_t* cfg_vector_info ( const cfg_field_t field)

get the information about a vector field

Parameters
fieldthe field to get the information about
Returns
the information about field

Definition at line 70 of file reflect.c.