[SBI] Crash occurs when ENUM in the MAP (#2103)

This commit is contained in:
Sukchan Lee 2023-03-01 17:50:25 +09:00
parent ce668c556c
commit 969c116e77
1097 changed files with 266728 additions and 42047 deletions

View file

@ -22,25 +22,36 @@ OpenAPI_af_event_exposure_data_t *OpenAPI_af_event_exposure_data_create(
void OpenAPI_af_event_exposure_data_free(OpenAPI_af_event_exposure_data_t *af_event_exposure_data)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == af_event_exposure_data) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_list_free(af_event_exposure_data->af_events);
OpenAPI_list_for_each(af_event_exposure_data->af_ids, node) {
ogs_free(node->data);
if (af_event_exposure_data->af_events) {
OpenAPI_list_free(af_event_exposure_data->af_events);
af_event_exposure_data->af_events = NULL;
}
OpenAPI_list_free(af_event_exposure_data->af_ids);
OpenAPI_list_for_each(af_event_exposure_data->app_ids, node) {
ogs_free(node->data);
if (af_event_exposure_data->af_ids) {
OpenAPI_list_for_each(af_event_exposure_data->af_ids, node) {
ogs_free(node->data);
}
OpenAPI_list_free(af_event_exposure_data->af_ids);
af_event_exposure_data->af_ids = NULL;
}
if (af_event_exposure_data->app_ids) {
OpenAPI_list_for_each(af_event_exposure_data->app_ids, node) {
ogs_free(node->data);
}
OpenAPI_list_free(af_event_exposure_data->app_ids);
af_event_exposure_data->app_ids = NULL;
}
OpenAPI_list_free(af_event_exposure_data->app_ids);
ogs_free(af_event_exposure_data);
}
cJSON *OpenAPI_af_event_exposure_data_convertToJSON(OpenAPI_af_event_exposure_data_t *af_event_exposure_data)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (af_event_exposure_data == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [AfEventExposureData]");
@ -48,49 +59,48 @@ cJSON *OpenAPI_af_event_exposure_data_convertToJSON(OpenAPI_af_event_exposure_da
}
item = cJSON_CreateObject();
cJSON *af_events = cJSON_AddArrayToObject(item, "afEvents");
if (af_events == NULL) {
if (af_event_exposure_data->af_events == OpenAPI_af_event_NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_events]");
return NULL;
}
cJSON *af_eventsList = cJSON_AddArrayToObject(item, "afEvents");
if (af_eventsList == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_events]");
goto end;
}
OpenAPI_lnode_t *af_events_node;
OpenAPI_list_for_each(af_event_exposure_data->af_events, af_events_node) {
if (cJSON_AddStringToObject(af_events, "", OpenAPI_af_event_ToString((intptr_t)af_events_node->data)) == NULL) {
OpenAPI_list_for_each(af_event_exposure_data->af_events, node) {
if (cJSON_AddStringToObject(af_eventsList, "", OpenAPI_af_event_ToString((intptr_t)node->data)) == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_events]");
goto end;
}
}
if (af_event_exposure_data->af_ids) {
cJSON *af_ids = cJSON_AddArrayToObject(item, "afIds");
if (af_ids == NULL) {
cJSON *af_idsList = cJSON_AddArrayToObject(item, "afIds");
if (af_idsList == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_ids]");
goto end;
}
OpenAPI_lnode_t *af_ids_node;
OpenAPI_list_for_each(af_event_exposure_data->af_ids, af_ids_node) {
if (cJSON_AddStringToObject(af_ids, "", (char*)af_ids_node->data) == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_ids]");
goto end;
OpenAPI_list_for_each(af_event_exposure_data->af_ids, node) {
if (cJSON_AddStringToObject(af_idsList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [af_ids]");
goto end;
}
}
}
}
if (af_event_exposure_data->app_ids) {
cJSON *app_ids = cJSON_AddArrayToObject(item, "appIds");
if (app_ids == NULL) {
cJSON *app_idsList = cJSON_AddArrayToObject(item, "appIds");
if (app_idsList == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [app_ids]");
goto end;
}
OpenAPI_lnode_t *app_ids_node;
OpenAPI_list_for_each(af_event_exposure_data->app_ids, app_ids_node) {
if (cJSON_AddStringToObject(app_ids, "", (char*)app_ids_node->data) == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [app_ids]");
goto end;
OpenAPI_list_for_each(af_event_exposure_data->app_ids, node) {
if (cJSON_AddStringToObject(app_idsList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_af_event_exposure_data_convertToJSON() failed [app_ids]");
goto end;
}
}
}
}
end:
@ -100,68 +110,74 @@ end:
OpenAPI_af_event_exposure_data_t *OpenAPI_af_event_exposure_data_parseFromJSON(cJSON *af_event_exposure_dataJSON)
{
OpenAPI_af_event_exposure_data_t *af_event_exposure_data_local_var = NULL;
cJSON *af_events = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "afEvents");
OpenAPI_lnode_t *node = NULL;
cJSON *af_events = NULL;
OpenAPI_list_t *af_eventsList = NULL;
cJSON *af_ids = NULL;
OpenAPI_list_t *af_idsList = NULL;
cJSON *app_ids = NULL;
OpenAPI_list_t *app_idsList = NULL;
af_events = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "afEvents");
if (!af_events) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_events]");
goto end;
}
OpenAPI_list_t *af_eventsList;
cJSON *af_events_local_nonprimitive;
if (!cJSON_IsArray(af_events)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_events]");
goto end;
}
af_eventsList = OpenAPI_list_create();
cJSON_ArrayForEach(af_events_local_nonprimitive, af_events ) {
if (!cJSON_IsString(af_events_local_nonprimitive)){
cJSON *af_events_local = NULL;
if (!cJSON_IsArray(af_events)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_events]");
goto end;
}
OpenAPI_list_add(af_eventsList, (void *)OpenAPI_af_event_FromString(af_events_local_nonprimitive->valuestring));
}
af_eventsList = OpenAPI_list_create();
cJSON *af_ids = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "afIds");
cJSON_ArrayForEach(af_events_local, af_events) {
if (!cJSON_IsString(af_events_local)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_events]");
goto end;
}
OpenAPI_list_add(af_eventsList, (void *)OpenAPI_af_event_FromString(af_events_local->valuestring));
}
OpenAPI_list_t *af_idsList;
af_ids = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "afIds");
if (af_ids) {
cJSON *af_ids_local;
if (!cJSON_IsArray(af_ids)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_ids]");
goto end;
}
af_idsList = OpenAPI_list_create();
cJSON *af_ids_local = NULL;
if (!cJSON_IsArray(af_ids)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_ids]");
goto end;
}
cJSON_ArrayForEach(af_ids_local, af_ids) {
if (!cJSON_IsString(af_ids_local)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_ids]");
goto end;
}
OpenAPI_list_add(af_idsList, ogs_strdup(af_ids_local->valuestring));
}
af_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(af_ids_local, af_ids) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(af_ids_local)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [af_ids]");
goto end;
}
OpenAPI_list_add(af_idsList, ogs_strdup(af_ids_local->valuestring));
}
}
cJSON *app_ids = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "appIds");
OpenAPI_list_t *app_idsList;
app_ids = cJSON_GetObjectItemCaseSensitive(af_event_exposure_dataJSON, "appIds");
if (app_ids) {
cJSON *app_ids_local;
if (!cJSON_IsArray(app_ids)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [app_ids]");
goto end;
}
app_idsList = OpenAPI_list_create();
cJSON *app_ids_local = NULL;
if (!cJSON_IsArray(app_ids)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [app_ids]");
goto end;
}
cJSON_ArrayForEach(app_ids_local, app_ids) {
if (!cJSON_IsString(app_ids_local)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [app_ids]");
goto end;
}
OpenAPI_list_add(app_idsList, ogs_strdup(app_ids_local->valuestring));
}
app_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(app_ids_local, app_ids) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(app_ids_local)) {
ogs_error("OpenAPI_af_event_exposure_data_parseFromJSON() failed [app_ids]");
goto end;
}
OpenAPI_list_add(app_idsList, ogs_strdup(app_ids_local->valuestring));
}
}
af_event_exposure_data_local_var = OpenAPI_af_event_exposure_data_create (
@ -172,6 +188,24 @@ OpenAPI_af_event_exposure_data_t *OpenAPI_af_event_exposure_data_parseFromJSON(c
return af_event_exposure_data_local_var;
end:
if (af_eventsList) {
OpenAPI_list_free(af_eventsList);
af_eventsList = NULL;
}
if (af_idsList) {
OpenAPI_list_for_each(af_idsList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(af_idsList);
af_idsList = NULL;
}
if (app_idsList) {
OpenAPI_list_for_each(app_idsList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(app_idsList);
app_idsList = NULL;
}
return NULL;
}