event-sequence-transformation/config.h

44 lines
922 B
C
Raw Normal View History

#ifndef CONFIG_H_
#define CONFIG_H_
#include <libconfig.h>
#include "defs.h"
2024-08-16 11:12:20 +03:00
#include "hash_table.h"
typedef struct {
const char *name;
const char *type;
config_setting_t *options;
} GraphNodeConfig;
typedef struct {
size_t length;
GraphNodeConfig *items;
} GraphNodeConfigSection;
typedef struct {
struct {
const char *name;
size_t index;
} from, to;
} GraphChannelConfig;
typedef struct {
size_t length;
GraphChannelConfig *items;
} GraphChannelConfigSection;
2024-08-16 11:12:20 +03:00
typedef TYPED_HASH_TABLE(long long) ConstantRegistry;
typedef struct {
GraphNodeConfigSection nodes;
GraphChannelConfigSection channels;
2024-08-16 11:12:20 +03:00
ConstantRegistry constants;
} FullConfig;
bool load_config(const config_setting_t *config_root, FullConfig *config);
2024-08-15 22:25:18 +03:00
void reset_config(FullConfig *config);
2024-08-16 11:12:20 +03:00
long long resolve_constant(const ConstantRegistry * registry, const config_setting_t * setting);
#endif /* end of include guard: CONFIG_H_ */