| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "context.h" |
| #include "gtp-path.h" |
| #include "pfcp-path.h" |
|
|
| static ogs_thread_t *thread; |
| static void sgwu_main(void *data); |
|
|
| static int initialized = 0; |
|
|
| int sgwu_initialize(void) |
| { |
| int rv; |
|
|
| #define APP_NAME "sgwu" |
| rv = ogs_app_parse_local_conf(APP_NAME); |
| if (rv != OGS_OK) return rv; |
|
|
| ogs_gtp_context_init(OGS_MAX_NUM_OF_GTPU_RESOURCE); |
| ogs_pfcp_context_init(); |
|
|
| sgwu_context_init(); |
| sgwu_event_init(); |
| sgwu_gtp_init(); |
|
|
| rv = ogs_pfcp_xact_init(); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = ogs_log_config_domain( |
| ogs_app()->logger.domain, ogs_app()->logger.level); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = ogs_gtp_context_parse_config(APP_NAME, "sgwc"); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = ogs_pfcp_context_parse_config(APP_NAME, "sgwc"); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = sgwu_context_parse_config(); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = sgwu_pfcp_open(); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = sgwu_gtp_open(); |
| if (rv != OGS_OK) return rv; |
|
|
| thread = ogs_thread_create(sgwu_main, NULL); |
| if (!thread) return OGS_ERROR; |
|
|
| initialized = 1; |
|
|
| return OGS_OK; |
| } |
|
|
| void sgwu_terminate(void) |
| { |
| if (!initialized) return; |
|
|
| sgwu_event_term(); |
|
|
| ogs_thread_destroy(thread); |
|
|
| sgwu_pfcp_close(); |
| sgwu_gtp_close(); |
|
|
| sgwu_context_final(); |
|
|
| ogs_pfcp_context_final(); |
| ogs_gtp_context_final(); |
|
|
| ogs_pfcp_xact_final(); |
|
|
| sgwu_gtp_final(); |
| sgwu_event_final(); |
| } |
|
|
| static void sgwu_main(void *data) |
| { |
| ogs_fsm_t sgwu_sm; |
| int rv; |
|
|
| ogs_fsm_init(&sgwu_sm, sgwu_state_initial, sgwu_state_final, 0); |
|
|
| for ( ;; ) { |
| ogs_pollset_poll(ogs_app()->pollset, |
| ogs_timer_mgr_next(ogs_app()->timer_mgr)); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| ogs_timer_mgr_expire(ogs_app()->timer_mgr); |
|
|
| for ( ;; ) { |
| sgwu_event_t *e = NULL; |
|
|
| rv = ogs_queue_trypop(ogs_app()->queue, (void**)&e); |
| ogs_assert(rv != OGS_ERROR); |
|
|
| if (rv == OGS_DONE) |
| goto done; |
|
|
| if (rv == OGS_RETRY) |
| break; |
|
|
| ogs_assert(e); |
| ogs_fsm_dispatch(&sgwu_sm, e); |
| sgwu_event_free(e); |
| } |
| } |
| done: |
|
|
| ogs_fsm_fini(&sgwu_sm, 0); |
| } |
|
|