mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
109
lib/sbi/openapi/model/ue_context_in_amf_data.c
Normal file
109
lib/sbi/openapi/model/ue_context_in_amf_data.c
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "ue_context_in_amf_data.h"
|
||||
|
||||
OpenAPI_ue_context_in_amf_data_t *OpenAPI_ue_context_in_amf_data_create(
|
||||
OpenAPI_eps_interworking_info_t *eps_interworking_info
|
||||
)
|
||||
{
|
||||
OpenAPI_ue_context_in_amf_data_t *ue_context_in_amf_data_local_var = OpenAPI_malloc(sizeof(OpenAPI_ue_context_in_amf_data_t));
|
||||
if (!ue_context_in_amf_data_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
ue_context_in_amf_data_local_var->eps_interworking_info = eps_interworking_info;
|
||||
|
||||
return ue_context_in_amf_data_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_ue_context_in_amf_data_free(OpenAPI_ue_context_in_amf_data_t *ue_context_in_amf_data)
|
||||
{
|
||||
if (NULL == ue_context_in_amf_data) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_eps_interworking_info_free(ue_context_in_amf_data->eps_interworking_info);
|
||||
ogs_free(ue_context_in_amf_data);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_ue_context_in_amf_data_convertToJSON(OpenAPI_ue_context_in_amf_data_t *ue_context_in_amf_data)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (ue_context_in_amf_data == NULL) {
|
||||
ogs_error("OpenAPI_ue_context_in_amf_data_convertToJSON() failed [UeContextInAmfData]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (ue_context_in_amf_data->eps_interworking_info) {
|
||||
cJSON *eps_interworking_info_local_JSON = OpenAPI_eps_interworking_info_convertToJSON(ue_context_in_amf_data->eps_interworking_info);
|
||||
if (eps_interworking_info_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_ue_context_in_amf_data_convertToJSON() failed [eps_interworking_info]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "epsInterworkingInfo", eps_interworking_info_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_ue_context_in_amf_data_convertToJSON() failed [eps_interworking_info]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_ue_context_in_amf_data_t *OpenAPI_ue_context_in_amf_data_parseFromJSON(cJSON *ue_context_in_amf_dataJSON)
|
||||
{
|
||||
OpenAPI_ue_context_in_amf_data_t *ue_context_in_amf_data_local_var = NULL;
|
||||
cJSON *eps_interworking_info = cJSON_GetObjectItemCaseSensitive(ue_context_in_amf_dataJSON, "epsInterworkingInfo");
|
||||
|
||||
OpenAPI_eps_interworking_info_t *eps_interworking_info_local_nonprim = NULL;
|
||||
if (eps_interworking_info) {
|
||||
eps_interworking_info_local_nonprim = OpenAPI_eps_interworking_info_parseFromJSON(eps_interworking_info);
|
||||
}
|
||||
|
||||
ue_context_in_amf_data_local_var = OpenAPI_ue_context_in_amf_data_create (
|
||||
eps_interworking_info ? eps_interworking_info_local_nonprim : NULL
|
||||
);
|
||||
|
||||
return ue_context_in_amf_data_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_ue_context_in_amf_data_t *OpenAPI_ue_context_in_amf_data_copy(OpenAPI_ue_context_in_amf_data_t *dst, OpenAPI_ue_context_in_amf_data_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_ue_context_in_amf_data_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_ue_context_in_amf_data_convertToJSON() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
content = cJSON_Print(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
if (!content) {
|
||||
ogs_error("cJSON_Print() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_Parse(content);
|
||||
ogs_free(content);
|
||||
if (!item) {
|
||||
ogs_error("cJSON_Parse() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_ue_context_in_amf_data_free(dst);
|
||||
dst = OpenAPI_ue_context_in_amf_data_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue