mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
149
lib/sbi/openapi/model/tmgi_1.c
Normal file
149
lib/sbi/openapi/model/tmgi_1.c
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "tmgi_1.h"
|
||||
|
||||
OpenAPI_tmgi_1_t *OpenAPI_tmgi_1_create(
|
||||
char *mbs_service_id,
|
||||
OpenAPI_plmn_id_1_t *plmn_id
|
||||
)
|
||||
{
|
||||
OpenAPI_tmgi_1_t *tmgi_1_local_var = ogs_malloc(sizeof(OpenAPI_tmgi_1_t));
|
||||
ogs_assert(tmgi_1_local_var);
|
||||
|
||||
tmgi_1_local_var->mbs_service_id = mbs_service_id;
|
||||
tmgi_1_local_var->plmn_id = plmn_id;
|
||||
|
||||
return tmgi_1_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_tmgi_1_free(OpenAPI_tmgi_1_t *tmgi_1)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == tmgi_1) {
|
||||
return;
|
||||
}
|
||||
if (tmgi_1->mbs_service_id) {
|
||||
ogs_free(tmgi_1->mbs_service_id);
|
||||
tmgi_1->mbs_service_id = NULL;
|
||||
}
|
||||
if (tmgi_1->plmn_id) {
|
||||
OpenAPI_plmn_id_1_free(tmgi_1->plmn_id);
|
||||
tmgi_1->plmn_id = NULL;
|
||||
}
|
||||
ogs_free(tmgi_1);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_tmgi_1_convertToJSON(OpenAPI_tmgi_1_t *tmgi_1)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (tmgi_1 == NULL) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [Tmgi_1]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!tmgi_1->mbs_service_id) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [mbs_service_id]");
|
||||
return NULL;
|
||||
}
|
||||
if (cJSON_AddStringToObject(item, "mbsServiceId", tmgi_1->mbs_service_id) == NULL) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [mbs_service_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!tmgi_1->plmn_id) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [plmn_id]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *plmn_id_local_JSON = OpenAPI_plmn_id_1_convertToJSON(tmgi_1->plmn_id);
|
||||
if (plmn_id_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [plmn_id]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "plmnId", plmn_id_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_tmgi_1_convertToJSON() failed [plmn_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_tmgi_1_t *OpenAPI_tmgi_1_parseFromJSON(cJSON *tmgi_1JSON)
|
||||
{
|
||||
OpenAPI_tmgi_1_t *tmgi_1_local_var = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *mbs_service_id = NULL;
|
||||
cJSON *plmn_id = NULL;
|
||||
OpenAPI_plmn_id_1_t *plmn_id_local_nonprim = NULL;
|
||||
mbs_service_id = cJSON_GetObjectItemCaseSensitive(tmgi_1JSON, "mbsServiceId");
|
||||
if (!mbs_service_id) {
|
||||
ogs_error("OpenAPI_tmgi_1_parseFromJSON() failed [mbs_service_id]");
|
||||
goto end;
|
||||
}
|
||||
if (!cJSON_IsString(mbs_service_id)) {
|
||||
ogs_error("OpenAPI_tmgi_1_parseFromJSON() failed [mbs_service_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
plmn_id = cJSON_GetObjectItemCaseSensitive(tmgi_1JSON, "plmnId");
|
||||
if (!plmn_id) {
|
||||
ogs_error("OpenAPI_tmgi_1_parseFromJSON() failed [plmn_id]");
|
||||
goto end;
|
||||
}
|
||||
plmn_id_local_nonprim = OpenAPI_plmn_id_1_parseFromJSON(plmn_id);
|
||||
|
||||
tmgi_1_local_var = OpenAPI_tmgi_1_create (
|
||||
ogs_strdup(mbs_service_id->valuestring),
|
||||
plmn_id_local_nonprim
|
||||
);
|
||||
|
||||
return tmgi_1_local_var;
|
||||
end:
|
||||
if (plmn_id_local_nonprim) {
|
||||
OpenAPI_plmn_id_1_free(plmn_id_local_nonprim);
|
||||
plmn_id_local_nonprim = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_tmgi_1_t *OpenAPI_tmgi_1_copy(OpenAPI_tmgi_1_t *dst, OpenAPI_tmgi_1_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_tmgi_1_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_tmgi_1_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_tmgi_1_free(dst);
|
||||
dst = OpenAPI_tmgi_1_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue