event-sequence-transformation/module_registry.c

50 lines
976 B
C
Raw Permalink Normal View History

#include "module_registry.h"
2024-08-18 15:44:39 +03:00
static GraphNodeSpecificationRegistry registry;
static bool initialized = false;
static void
ensure_initialized()
{
if (!initialized) {
hash_table_init(&registry, NULL);
initialized = true;
}
}
void
register_graph_node_specification(GraphNodeSpecification * spec)
{
ensure_initialized();
if (!spec->name) {
return;
}
hash_table_insert(&registry, hash_table_key_from_cstr(spec->name), &spec);
}
GraphNodeSpecification *
lookup_graph_node_specification(const char * name)
{
ensure_initialized();
HashTableIndex idx = hash_table_find(&registry, hash_table_key_from_cstr(name));
if (idx < 0) {
return NULL;
}
return registry.value_array[idx];
}
2024-08-18 15:44:39 +03:00
const GraphNodeSpecificationRegistry *
get_graph_node_specification_registy()
{
ensure_initialized();
return &registry;
}
__attribute__((destructor)) void
destroy_graph_node_specification_registry()
{
ensure_initialized();
hash_table_deinit(&registry);
initialized = false;
}