Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -9,7 +9,7 @@ OpenAPI_nwdaf_info_t *OpenAPI_nwdaf_info_create(
OpenAPI_list_t *nwdaf_events,
OpenAPI_list_t *tai_list,
OpenAPI_list_t *tai_range_list
)
)
{
OpenAPI_nwdaf_info_t *nwdaf_info_local_var = OpenAPI_malloc(sizeof(OpenAPI_nwdaf_info_t));
if (!nwdaf_info_local_var) {
@ -59,84 +59,84 @@ cJSON *OpenAPI_nwdaf_info_convertToJSON(OpenAPI_nwdaf_info_t *nwdaf_info)
item = cJSON_CreateObject();
if (nwdaf_info->event_ids) {
cJSON *event_idsList = cJSON_AddArrayToObject(item, "eventIds");
if (event_idsList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [event_ids]");
goto end;
}
cJSON *event_idsList = cJSON_AddArrayToObject(item, "eventIds");
if (event_idsList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [event_ids]");
goto end;
}
OpenAPI_lnode_t *event_ids_node;
if (nwdaf_info->event_ids) {
OpenAPI_list_for_each(nwdaf_info->event_ids, event_ids_node) {
cJSON *itemLocal = OpenAPI_event_id_convertToJSON(event_ids_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [event_ids]");
goto end;
}
cJSON_AddItemToArray(event_idsList, itemLocal);
OpenAPI_lnode_t *event_ids_node;
if (nwdaf_info->event_ids) {
OpenAPI_list_for_each(nwdaf_info->event_ids, event_ids_node) {
cJSON *itemLocal = OpenAPI_event_id_convertToJSON(event_ids_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [event_ids]");
goto end;
}
cJSON_AddItemToArray(event_idsList, itemLocal);
}
}
}
if (nwdaf_info->nwdaf_events) {
cJSON *nwdaf_eventsList = cJSON_AddArrayToObject(item, "nwdafEvents");
if (nwdaf_eventsList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [nwdaf_events]");
goto end;
}
cJSON *nwdaf_eventsList = cJSON_AddArrayToObject(item, "nwdafEvents");
if (nwdaf_eventsList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [nwdaf_events]");
goto end;
}
OpenAPI_lnode_t *nwdaf_events_node;
if (nwdaf_info->nwdaf_events) {
OpenAPI_list_for_each(nwdaf_info->nwdaf_events, nwdaf_events_node) {
cJSON *itemLocal = OpenAPI_nwdaf_event_convertToJSON(nwdaf_events_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [nwdaf_events]");
goto end;
}
cJSON_AddItemToArray(nwdaf_eventsList, itemLocal);
OpenAPI_lnode_t *nwdaf_events_node;
if (nwdaf_info->nwdaf_events) {
OpenAPI_list_for_each(nwdaf_info->nwdaf_events, nwdaf_events_node) {
cJSON *itemLocal = OpenAPI_nwdaf_event_convertToJSON(nwdaf_events_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [nwdaf_events]");
goto end;
}
cJSON_AddItemToArray(nwdaf_eventsList, itemLocal);
}
}
}
if (nwdaf_info->tai_list) {
cJSON *tai_listList = cJSON_AddArrayToObject(item, "taiList");
if (tai_listList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_list]");
goto end;
}
cJSON *tai_listList = cJSON_AddArrayToObject(item, "taiList");
if (tai_listList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_list]");
goto end;
}
OpenAPI_lnode_t *tai_list_node;
if (nwdaf_info->tai_list) {
OpenAPI_list_for_each(nwdaf_info->tai_list, tai_list_node) {
cJSON *itemLocal = OpenAPI_tai_convertToJSON(tai_list_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_list]");
goto end;
}
cJSON_AddItemToArray(tai_listList, itemLocal);
OpenAPI_lnode_t *tai_list_node;
if (nwdaf_info->tai_list) {
OpenAPI_list_for_each(nwdaf_info->tai_list, tai_list_node) {
cJSON *itemLocal = OpenAPI_tai_convertToJSON(tai_list_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_list]");
goto end;
}
cJSON_AddItemToArray(tai_listList, itemLocal);
}
}
}
if (nwdaf_info->tai_range_list) {
cJSON *tai_range_listList = cJSON_AddArrayToObject(item, "taiRangeList");
if (tai_range_listList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_range_list]");
goto end;
}
cJSON *tai_range_listList = cJSON_AddArrayToObject(item, "taiRangeList");
if (tai_range_listList == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_range_list]");
goto end;
}
OpenAPI_lnode_t *tai_range_list_node;
if (nwdaf_info->tai_range_list) {
OpenAPI_list_for_each(nwdaf_info->tai_range_list, tai_range_list_node) {
cJSON *itemLocal = OpenAPI_tai_range_convertToJSON(tai_range_list_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_range_list]");
goto end;
}
cJSON_AddItemToArray(tai_range_listList, itemLocal);
OpenAPI_lnode_t *tai_range_list_node;
if (nwdaf_info->tai_range_list) {
OpenAPI_list_for_each(nwdaf_info->tai_range_list, tai_range_list_node) {
cJSON *itemLocal = OpenAPI_tai_range_convertToJSON(tai_range_list_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_nwdaf_info_convertToJSON() failed [tai_range_list]");
goto end;
}
cJSON_AddItemToArray(tai_range_listList, itemLocal);
}
}
}
end:
return item;
@ -148,101 +148,101 @@ OpenAPI_nwdaf_info_t *OpenAPI_nwdaf_info_parseFromJSON(cJSON *nwdaf_infoJSON)
cJSON *event_ids = cJSON_GetObjectItemCaseSensitive(nwdaf_infoJSON, "eventIds");
OpenAPI_list_t *event_idsList;
if (event_ids) {
cJSON *event_ids_local_nonprimitive;
if (!cJSON_IsArray(event_ids)) {
if (event_ids) {
cJSON *event_ids_local_nonprimitive;
if (!cJSON_IsArray(event_ids)){
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [event_ids]");
goto end;
}
event_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(event_ids_local_nonprimitive, event_ids ) {
if (!cJSON_IsObject(event_ids_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [event_ids]");
goto end;
}
OpenAPI_event_id_t *event_idsItem = OpenAPI_event_id_parseFromJSON(event_ids_local_nonprimitive);
event_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(event_ids_local_nonprimitive, event_ids ) {
if (!cJSON_IsObject(event_ids_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [event_ids]");
goto end;
}
OpenAPI_event_id_t *event_idsItem = OpenAPI_event_id_parseFromJSON(event_ids_local_nonprimitive);
OpenAPI_list_add(event_idsList, event_idsItem);
}
OpenAPI_list_add(event_idsList, event_idsItem);
}
}
cJSON *nwdaf_events = cJSON_GetObjectItemCaseSensitive(nwdaf_infoJSON, "nwdafEvents");
OpenAPI_list_t *nwdaf_eventsList;
if (nwdaf_events) {
cJSON *nwdaf_events_local_nonprimitive;
if (!cJSON_IsArray(nwdaf_events)) {
if (nwdaf_events) {
cJSON *nwdaf_events_local_nonprimitive;
if (!cJSON_IsArray(nwdaf_events)){
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [nwdaf_events]");
goto end;
}
nwdaf_eventsList = OpenAPI_list_create();
cJSON_ArrayForEach(nwdaf_events_local_nonprimitive, nwdaf_events ) {
if (!cJSON_IsObject(nwdaf_events_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [nwdaf_events]");
goto end;
}
OpenAPI_nwdaf_event_t *nwdaf_eventsItem = OpenAPI_nwdaf_event_parseFromJSON(nwdaf_events_local_nonprimitive);
nwdaf_eventsList = OpenAPI_list_create();
cJSON_ArrayForEach(nwdaf_events_local_nonprimitive, nwdaf_events ) {
if (!cJSON_IsObject(nwdaf_events_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [nwdaf_events]");
goto end;
}
OpenAPI_nwdaf_event_t *nwdaf_eventsItem = OpenAPI_nwdaf_event_parseFromJSON(nwdaf_events_local_nonprimitive);
OpenAPI_list_add(nwdaf_eventsList, nwdaf_eventsItem);
}
OpenAPI_list_add(nwdaf_eventsList, nwdaf_eventsItem);
}
}
cJSON *tai_list = cJSON_GetObjectItemCaseSensitive(nwdaf_infoJSON, "taiList");
OpenAPI_list_t *tai_listList;
if (tai_list) {
cJSON *tai_list_local_nonprimitive;
if (!cJSON_IsArray(tai_list)) {
if (tai_list) {
cJSON *tai_list_local_nonprimitive;
if (!cJSON_IsArray(tai_list)){
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_list]");
goto end;
}
tai_listList = OpenAPI_list_create();
cJSON_ArrayForEach(tai_list_local_nonprimitive, tai_list ) {
if (!cJSON_IsObject(tai_list_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_list]");
goto end;
}
OpenAPI_tai_t *tai_listItem = OpenAPI_tai_parseFromJSON(tai_list_local_nonprimitive);
tai_listList = OpenAPI_list_create();
cJSON_ArrayForEach(tai_list_local_nonprimitive, tai_list ) {
if (!cJSON_IsObject(tai_list_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_list]");
goto end;
}
OpenAPI_tai_t *tai_listItem = OpenAPI_tai_parseFromJSON(tai_list_local_nonprimitive);
OpenAPI_list_add(tai_listList, tai_listItem);
}
OpenAPI_list_add(tai_listList, tai_listItem);
}
}
cJSON *tai_range_list = cJSON_GetObjectItemCaseSensitive(nwdaf_infoJSON, "taiRangeList");
OpenAPI_list_t *tai_range_listList;
if (tai_range_list) {
cJSON *tai_range_list_local_nonprimitive;
if (!cJSON_IsArray(tai_range_list)) {
if (tai_range_list) {
cJSON *tai_range_list_local_nonprimitive;
if (!cJSON_IsArray(tai_range_list)){
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_range_list]");
goto end;
}
tai_range_listList = OpenAPI_list_create();
cJSON_ArrayForEach(tai_range_list_local_nonprimitive, tai_range_list ) {
if (!cJSON_IsObject(tai_range_list_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_range_list]");
goto end;
}
OpenAPI_tai_range_t *tai_range_listItem = OpenAPI_tai_range_parseFromJSON(tai_range_list_local_nonprimitive);
tai_range_listList = OpenAPI_list_create();
cJSON_ArrayForEach(tai_range_list_local_nonprimitive, tai_range_list ) {
if (!cJSON_IsObject(tai_range_list_local_nonprimitive)) {
ogs_error("OpenAPI_nwdaf_info_parseFromJSON() failed [tai_range_list]");
goto end;
}
OpenAPI_tai_range_t *tai_range_listItem = OpenAPI_tai_range_parseFromJSON(tai_range_list_local_nonprimitive);
OpenAPI_list_add(tai_range_listList, tai_range_listItem);
}
OpenAPI_list_add(tai_range_listList, tai_range_listItem);
}
}
nwdaf_info_local_var = OpenAPI_nwdaf_info_create (
event_ids ? event_idsList : NULL,
nwdaf_events ? nwdaf_eventsList : NULL,
tai_list ? tai_listList : NULL,
tai_range_list ? tai_range_listList : NULL
);
);
return nwdaf_info_local_var;
end: