| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "sbi-path.h" |
|
|
| static udr_context_t self; |
|
|
| int __udr_log_domain; |
|
|
| static int context_initialized = 0; |
|
|
| void udr_context_init(void) |
| { |
| ogs_assert(context_initialized == 0); |
|
|
| |
| memset(&self, 0, sizeof(udr_context_t)); |
|
|
| ogs_log_install_domain(&__ogs_dbi_domain, "dbi", ogs_core()->log.level); |
| ogs_log_install_domain(&__udr_log_domain, "udr", ogs_core()->log.level); |
|
|
| context_initialized = 1; |
| } |
|
|
| void udr_context_final(void) |
| { |
| ogs_assert(context_initialized == 1); |
|
|
| context_initialized = 0; |
| } |
|
|
| udr_context_t *udr_self(void) |
| { |
| return &self; |
| } |
|
|
| static int udr_context_prepare(void) |
| { |
| return OGS_OK; |
| } |
|
|
| static int udr_context_validation(void) |
| { |
| return OGS_OK; |
| } |
|
|
| int udr_context_parse_config(void) |
| { |
| int rv; |
| yaml_document_t *document = NULL; |
| ogs_yaml_iter_t root_iter; |
|
|
| document = ogs_app()->document; |
| ogs_assert(document); |
|
|
| rv = udr_context_prepare(); |
| if (rv != OGS_OK) return rv; |
|
|
| ogs_yaml_iter_init(&root_iter, document); |
| while (ogs_yaml_iter_next(&root_iter)) { |
| const char *root_key = ogs_yaml_iter_key(&root_iter); |
| ogs_assert(root_key); |
| if (!strcmp(root_key, "udr")) { |
| ogs_yaml_iter_t udr_iter; |
| ogs_yaml_iter_recurse(&root_iter, &udr_iter); |
| while (ogs_yaml_iter_next(&udr_iter)) { |
| const char *udr_key = ogs_yaml_iter_key(&udr_iter); |
| ogs_assert(udr_key); |
| if (!strcmp(udr_key, "default")) { |
| |
| } else if (!strcmp(udr_key, "sbi")) { |
| |
| } else if (!strcmp(udr_key, "nrf")) { |
| |
| } else if (!strcmp(udr_key, "scp")) { |
| |
| } else if (!strcmp(udr_key, "service_name")) { |
| |
| } else if (!strcmp(udr_key, "discovery")) { |
| |
| } else |
| ogs_warn("unknown key `%s`", udr_key); |
| } |
| } |
| } |
|
|
| rv = udr_context_validation(); |
| if (rv != OGS_OK) return rv; |
|
|
| return OGS_OK; |
| } |
|
|