Cthulhu  0.2.10
Cthulhu compiler collection
support.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_support_api.h>
6 
7 #include "core/analyze.h"
8 
9 #include "support/loader.h"
10 
11 #include <stdbool.h>
12 
13 typedef struct arena_t arena_t;
14 typedef struct loader_t loader_t;
15 typedef struct logger_t logger_t;
16 
17 typedef struct broker_t broker_t;
19 typedef struct plugin_runtime_t plugin_runtime_t;
20 typedef struct target_runtime_t target_runtime_t;
21 
23 
26 
27 typedef struct support_t support_t;
28 
33 
38 CT_SUPPORT_API void support_load_default_modules(IN_NOTNULL support_t *support);
39 
40 CT_SUPPORT_API bool support_load_module(IN_NOTNULL support_t *support, module_type_t mask, IN_STRING const char *name, loaded_module_t *out);
41 
42 CT_SUPPORT_API typevec_t *support_get_modules(IN_NOTNULL support_t *support);
43 
44 CT_SUPPORT_API language_runtime_t *support_get_lang(IN_NOTNULL support_t *support, IN_STRING const char *ext);
45 CT_SUPPORT_API plugin_runtime_t *support_get_plugin(IN_NOTNULL support_t *support, IN_STRING const char *name);
46 CT_SUPPORT_API target_runtime_t *support_get_target(IN_NOTNULL support_t *support, IN_STRING const char *name);
47 
49 
#define RET_NOTNULL
annotate the return value as not being null
#define IN_NOTNULL
annotate a parameter as not being null
#define IN_STRING
annotate a parameter as being a null terminated string
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_SUPPORT_API language_runtime_t * support_get_lang(support_t *support, const char *ext)
Definition: support.c:176
CT_SUPPORT_API plugin_runtime_t * support_get_plugin(support_t *support, const char *name)
Definition: support.c:184
CT_SUPPORT_API void support_load_default_modules(support_t *support)
load all default modules
Definition: support.c:139
CT_SUPPORT_API bool support_load_module(support_t *support, module_type_t mask, const char *name, loaded_module_t *out)
Definition: support.c:153
CT_SUPPORT_API target_runtime_t * support_get_target(support_t *support, const char *name)
Definition: support.c:192
CT_SUPPORT_API typevec_t * support_get_modules(support_t *support)
Definition: support.c:168
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 i...
Definition: support.c:113
module_type_t
Definition: loader.h:32
an allocator object
Definition: arena.h:86
Definition: common.h:8
a logging sink
Definition: notify.c:14
loader_t * loader
Definition: support.c:22
broker_t * broker
Definition: support.c:21
arena_t * arena
Definition: support.c:20
A vector with a fixed type size.
Definition: vector.h:24