mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
148
lib/sbi/openapi/model/area_1.c
Normal file
148
lib/sbi/openapi/model/area_1.c
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "area_1.h"
|
||||
|
||||
OpenAPI_area_1_t *OpenAPI_area_1_create(
|
||||
OpenAPI_list_t *tacs,
|
||||
char *area_code
|
||||
)
|
||||
{
|
||||
OpenAPI_area_1_t *area_1_local_var = OpenAPI_malloc(sizeof(OpenAPI_area_1_t));
|
||||
if (!area_1_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
area_1_local_var->tacs = tacs;
|
||||
area_1_local_var->area_code = area_code;
|
||||
|
||||
return area_1_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_area_1_free(OpenAPI_area_1_t *area_1)
|
||||
{
|
||||
if (NULL == area_1) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(area_1->tacs, node) {
|
||||
ogs_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(area_1->tacs);
|
||||
ogs_free(area_1->area_code);
|
||||
ogs_free(area_1);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_area_1_convertToJSON(OpenAPI_area_1_t *area_1)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (area_1 == NULL) {
|
||||
ogs_error("OpenAPI_area_1_convertToJSON() failed [Area_1]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (area_1->tacs) {
|
||||
cJSON *tacs = cJSON_AddArrayToObject(item, "tacs");
|
||||
if (tacs == NULL) {
|
||||
ogs_error("OpenAPI_area_1_convertToJSON() failed [tacs]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *tacs_node;
|
||||
OpenAPI_list_for_each(area_1->tacs, tacs_node) {
|
||||
if (cJSON_AddStringToObject(tacs, "", (char*)tacs_node->data) == NULL) {
|
||||
ogs_error("OpenAPI_area_1_convertToJSON() failed [tacs]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (area_1->area_code) {
|
||||
if (cJSON_AddStringToObject(item, "areaCode", area_1->area_code) == NULL) {
|
||||
ogs_error("OpenAPI_area_1_convertToJSON() failed [area_code]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_area_1_t *OpenAPI_area_1_parseFromJSON(cJSON *area_1JSON)
|
||||
{
|
||||
OpenAPI_area_1_t *area_1_local_var = NULL;
|
||||
cJSON *tacs = cJSON_GetObjectItemCaseSensitive(area_1JSON, "tacs");
|
||||
|
||||
OpenAPI_list_t *tacsList;
|
||||
if (tacs) {
|
||||
cJSON *tacs_local;
|
||||
if (!cJSON_IsArray(tacs)) {
|
||||
ogs_error("OpenAPI_area_1_parseFromJSON() failed [tacs]");
|
||||
goto end;
|
||||
}
|
||||
tacsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(tacs_local, tacs) {
|
||||
if (!cJSON_IsString(tacs_local)) {
|
||||
ogs_error("OpenAPI_area_1_parseFromJSON() failed [tacs]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(tacsList , ogs_strdup_or_assert(tacs_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *area_code = cJSON_GetObjectItemCaseSensitive(area_1JSON, "areaCode");
|
||||
|
||||
if (area_code) {
|
||||
if (!cJSON_IsString(area_code)) {
|
||||
ogs_error("OpenAPI_area_1_parseFromJSON() failed [area_code]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
area_1_local_var = OpenAPI_area_1_create (
|
||||
tacs ? tacsList : NULL,
|
||||
area_code ? ogs_strdup_or_assert(area_code->valuestring) : NULL
|
||||
);
|
||||
|
||||
return area_1_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_area_1_t *OpenAPI_area_1_copy(OpenAPI_area_1_t *dst, OpenAPI_area_1_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_area_1_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_area_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_area_1_free(dst);
|
||||
dst = OpenAPI_area_1_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue