45 if (mod.
type & eModLanguage)
48 CTASSERTF(lang != NULL,
"language module is NULL");
50 CTASSERTF(info != NULL,
"language info is NULL");
53 const char *
id = info->
id +
sizeof(
"lang/") - 1;
57 msg_notify(logger, &kEvent_LanguageDriverConflict, node,
"%s already loaded", info->
id);
63 for (
size_t i = 0; lang->
exts[i]; i++)
65 const char *ext = lang->
exts[i];
71 msg_notify(logger, &kEvent_ExtensionConflict, node,
"extension %s already associated with %s", ext, prev->
id);
77 if (mod.
type & eModPlugin)
83 const char *
id = info->
id +
sizeof(
"plugin/") - 1;
87 msg_notify(logger, &kEvent_PluginConflict, node,
"%s already loaded", info->
id);
94 if (mod.
type & eModTarget)
100 const char *
id = info->
id +
sizeof(
"target/") - 1;
104 msg_notify(logger, &kEvent_TargetConflict, node,
"%s already loaded", info->
id);
119 support->
arena = arena;
145 for (
size_t i = 0; i < len; i++)
148 add_loaded_module(support, *mod);
160 add_loaded_module(support, mod);
164 return mod.
type != eModNone;
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_BROKER_API const node_t * broker_get_node(broker_t *broker)
CT_BROKER_API language_runtime_t * broker_add_language(broker_t *broker, const language_t *lang)
CT_BROKER_API target_runtime_t * broker_add_target(broker_t *broker, const target_t *target)
CT_BROKER_API plugin_runtime_t * broker_add_plugin(broker_t *broker, const plugin_t *plugin)
CT_BROKER_API logger_t * broker_get_logger(broker_t *broker)
CT_STD_API void map_set(map_t *map, const void *key, void *value)
set a key-value pair in a map
CT_NODISCARD CT_STD_API map_t * map_new(size_t size, hash_info_t info, arena_t *arena)
create a new map on the heap
CT_NODISCARD CT_PUREFN CT_STD_API bool map_contains(const map_t *map, const void *key)
check if a map contains a key
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
typedefCT_BEGIN_API struct support_t support_t
#define ARENA_IDENTIFY(ptr, name, parent, arena)
rename and reparent a pointer in a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
CT_NOTIFY_API event_builder_t msg_notify(INOUT_NOTNULL logger_t *logs, const diagnostic_t *diagnostic, const node_t *node, STA_FORMAT_STRING const char *fmt,...)
notify the logger of a new message
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
#define CTASSERTF_ALWAYS(expr,...)
assert a condition with a message and optional format arguments
CT_NODISCARD CT_PUREFN CT_STD_API bool str_startswith(const char *str, const char *prefix)
see if a string starts with a prefix
CT_STD_API const hash_info_t kTypeInfoString
type information for a c style string
CT_STD_API void * typevec_push(typevec_t *vec, const void *src)
push a value onto the vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t typevec_len(const typevec_t *vec)
get the length of a vector
CT_NODISCARD CT_STD_API typevec_t * typevec_new(size_t width, size_t len, arena_t *arena)
create a new typed vector on the heap
CT_NODISCARD CT_PUREFN CT_STD_API void * typevec_offset(const typevec_t *vec, size_t index)
get a pointer to the value at the given index
CT_SUPPORT_API loaded_module_t load_module(loader_t *loader, module_type_t mask, const char *name)
CT_SUPPORT_API typevec_t * load_default_modules(loader_t *loader)
a language driver support capabilities
const char *const * exts
the default file extensions this language should be used for
module_info_t info
common information about the language
common information about anything the broker supports
const char * id
unique id for the module
a position in a source file
plugin support capabilities
module_info_t info
information about the plugin
module_info_t info
information about the target
A vector with a fixed type size.
STA_DECL 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...
STA_DECL plugin_runtime_t * support_get_plugin(support_t *support, const char *name)
STA_DECL void support_load_default_modules(support_t *support)
load all default modules
STA_DECL target_runtime_t * support_get_target(support_t *support, const char *name)
STA_DECL bool support_load_module(support_t *support, module_type_t mask, const char *name, loaded_module_t *out)
STA_DECL language_runtime_t * support_get_lang(support_t *support, const char *ext)
STA_DECL typevec_t * support_get_modules(support_t *support)