Cthulhu  0.2.10
Cthulhu compiler collection
Module loader

Module enumeration and shared library loading. More...

typedef typedefCT_BEGIN_API struct loader_t loader_t
 
typedef typedefCT_BEGIN_API struct support_t support_t
 
CT_SUPPORT_API support_tsupport_new (broker_t *broker, loader_t *loader, arena_t *arena)
 create a support instance from an existing loader and broker configures the broker with the modules in the loader More...
 
CT_SUPPORT_API void support_load_default_modules (support_t *support)
 load all default modules More...
 
CT_SUPPORT_API bool support_load_module (support_t *support, module_type_t mask, const char *name, loaded_module_t *out)
 
CT_SUPPORT_API typevec_tsupport_get_modules (support_t *support)
 
CT_SUPPORT_API language_runtime_tsupport_get_lang (support_t *support, const char *ext)
 
CT_SUPPORT_API plugin_runtime_tsupport_get_plugin (support_t *support, const char *name)
 
CT_SUPPORT_API target_runtime_tsupport_get_target (support_t *support, const char *name)
 

Detailed Description

Module enumeration and shared library loading.

Typedef Documentation

◆ loader_t

typedef struct loader_t loader_t

Definition at line 18 of file loader.h.

◆ support_t

typedef struct support_t support_t

Definition at line 22 of file support.h.

Function Documentation

◆ support_get_lang()

CT_SUPPORT_API language_runtime_t* support_get_lang ( support_t support,
const char *  ext 
)

Definition at line 176 of file support.c.

◆ support_get_modules()

CT_SUPPORT_API typevec_t* support_get_modules ( support_t support)

Definition at line 168 of file support.c.

◆ support_get_plugin()

CT_SUPPORT_API plugin_runtime_t* support_get_plugin ( support_t support,
const char *  name 
)

Definition at line 184 of file support.c.

◆ support_get_target()

CT_SUPPORT_API target_runtime_t* support_get_target ( support_t support,
const char *  name 
)

Definition at line 192 of file support.c.

◆ support_load_default_modules()

CT_SUPPORT_API void support_load_default_modules ( support_t support)

load all default modules

Note
does nothing if static modules are not enabled
Parameters
supportthe support

Definition at line 139 of file support.c.

◆ support_load_module()

CT_SUPPORT_API bool support_load_module ( support_t support,
module_type_t  mask,
const char *  name,
loaded_module_t out 
)

Definition at line 153 of file support.c.

◆ support_new()

CT_SUPPORT_API support_t* support_new ( broker_t broker,
loader_t loader,
arena_t arena 
)

create a support instance from an existing loader and broker configures the broker with the modules in the loader

Definition at line 113 of file support.c.