[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

@ -102,48 +102,110 @@ OpenAPI_media_component_t *OpenAPI_media_component_create(
void OpenAPI_media_component_free(OpenAPI_media_component_t *media_component)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == media_component) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(media_component->af_app_id);
OpenAPI_af_routing_requirement_free(media_component->af_rout_req);
ogs_free(media_component->qos_reference);
OpenAPI_list_for_each(media_component->alt_ser_reqs, node) {
ogs_free(node->data);
if (media_component->af_app_id) {
ogs_free(media_component->af_app_id);
media_component->af_app_id = NULL;
}
OpenAPI_list_free(media_component->alt_ser_reqs);
OpenAPI_list_for_each(media_component->codecs, node) {
ogs_free(node->data);
if (media_component->af_rout_req) {
OpenAPI_af_routing_requirement_free(media_component->af_rout_req);
media_component->af_rout_req = NULL;
}
OpenAPI_list_free(media_component->codecs);
ogs_free(media_component->flus_id);
ogs_free(media_component->mar_bw_dl);
ogs_free(media_component->mar_bw_ul);
ogs_free(media_component->max_supp_bw_dl);
ogs_free(media_component->max_supp_bw_ul);
OpenAPI_list_for_each(media_component->med_sub_comps, node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)node->data;
ogs_free(localKeyValue->key);
OpenAPI_media_sub_component_free(localKeyValue->value);
ogs_free(localKeyValue);
if (media_component->qos_reference) {
ogs_free(media_component->qos_reference);
media_component->qos_reference = NULL;
}
if (media_component->alt_ser_reqs) {
OpenAPI_list_for_each(media_component->alt_ser_reqs, node) {
ogs_free(node->data);
}
OpenAPI_list_free(media_component->alt_ser_reqs);
media_component->alt_ser_reqs = NULL;
}
if (media_component->codecs) {
OpenAPI_list_for_each(media_component->codecs, node) {
ogs_free(node->data);
}
OpenAPI_list_free(media_component->codecs);
media_component->codecs = NULL;
}
if (media_component->flus_id) {
ogs_free(media_component->flus_id);
media_component->flus_id = NULL;
}
if (media_component->mar_bw_dl) {
ogs_free(media_component->mar_bw_dl);
media_component->mar_bw_dl = NULL;
}
if (media_component->mar_bw_ul) {
ogs_free(media_component->mar_bw_ul);
media_component->mar_bw_ul = NULL;
}
if (media_component->max_supp_bw_dl) {
ogs_free(media_component->max_supp_bw_dl);
media_component->max_supp_bw_dl = NULL;
}
if (media_component->max_supp_bw_ul) {
ogs_free(media_component->max_supp_bw_ul);
media_component->max_supp_bw_ul = NULL;
}
if (media_component->med_sub_comps) {
OpenAPI_list_for_each(media_component->med_sub_comps, node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)node->data;
ogs_free(localKeyValue->key);
OpenAPI_media_sub_component_free(localKeyValue->value);
OpenAPI_map_free(localKeyValue);
}
OpenAPI_list_free(media_component->med_sub_comps);
media_component->med_sub_comps = NULL;
}
if (media_component->min_des_bw_dl) {
ogs_free(media_component->min_des_bw_dl);
media_component->min_des_bw_dl = NULL;
}
if (media_component->min_des_bw_ul) {
ogs_free(media_component->min_des_bw_ul);
media_component->min_des_bw_ul = NULL;
}
if (media_component->mir_bw_dl) {
ogs_free(media_component->mir_bw_dl);
media_component->mir_bw_dl = NULL;
}
if (media_component->mir_bw_ul) {
ogs_free(media_component->mir_bw_ul);
media_component->mir_bw_ul = NULL;
}
if (media_component->rr_bw) {
ogs_free(media_component->rr_bw);
media_component->rr_bw = NULL;
}
if (media_component->rs_bw) {
ogs_free(media_component->rs_bw);
media_component->rs_bw = NULL;
}
if (media_component->tsn_qos) {
OpenAPI_tsn_qos_container_free(media_component->tsn_qos);
media_component->tsn_qos = NULL;
}
if (media_component->tscai_input_dl) {
OpenAPI_tscai_input_container_free(media_component->tscai_input_dl);
media_component->tscai_input_dl = NULL;
}
if (media_component->tscai_input_ul) {
OpenAPI_tscai_input_container_free(media_component->tscai_input_ul);
media_component->tscai_input_ul = NULL;
}
OpenAPI_list_free(media_component->med_sub_comps);
ogs_free(media_component->min_des_bw_dl);
ogs_free(media_component->min_des_bw_ul);
ogs_free(media_component->mir_bw_dl);
ogs_free(media_component->mir_bw_ul);
ogs_free(media_component->rr_bw);
ogs_free(media_component->rs_bw);
OpenAPI_tsn_qos_container_free(media_component->tsn_qos);
OpenAPI_tscai_input_container_free(media_component->tscai_input_dl);
OpenAPI_tscai_input_container_free(media_component->tscai_input_ul);
ogs_free(media_component);
}
cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_component)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (media_component == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [MediaComponent]");
@ -186,19 +248,17 @@ cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_co
}
if (media_component->alt_ser_reqs) {
cJSON *alt_ser_reqs = cJSON_AddArrayToObject(item, "altSerReqs");
if (alt_ser_reqs == NULL) {
cJSON *alt_ser_reqsList = cJSON_AddArrayToObject(item, "altSerReqs");
if (alt_ser_reqsList == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [alt_ser_reqs]");
goto end;
}
OpenAPI_lnode_t *alt_ser_reqs_node;
OpenAPI_list_for_each(media_component->alt_ser_reqs, alt_ser_reqs_node) {
if (cJSON_AddStringToObject(alt_ser_reqs, "", (char*)alt_ser_reqs_node->data) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [alt_ser_reqs]");
goto end;
OpenAPI_list_for_each(media_component->alt_ser_reqs, node) {
if (cJSON_AddStringToObject(alt_ser_reqsList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [alt_ser_reqs]");
goto end;
}
}
}
}
if (media_component->is_cont_ver) {
@ -209,19 +269,17 @@ cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_co
}
if (media_component->codecs) {
cJSON *codecs = cJSON_AddArrayToObject(item, "codecs");
if (codecs == NULL) {
cJSON *codecsList = cJSON_AddArrayToObject(item, "codecs");
if (codecsList == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [codecs]");
goto end;
}
OpenAPI_lnode_t *codecs_node;
OpenAPI_list_for_each(media_component->codecs, codecs_node) {
if (cJSON_AddStringToObject(codecs, "", (char*)codecs_node->data) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [codecs]");
goto end;
OpenAPI_list_for_each(media_component->codecs, node) {
if (cJSON_AddStringToObject(codecsList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [codecs]");
goto end;
}
}
}
}
if (media_component->is_des_max_latency) {
@ -245,7 +303,7 @@ cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_co
}
}
if (media_component->f_status) {
if (media_component->f_status != OpenAPI_flow_status_NULL) {
if (cJSON_AddStringToObject(item, "fStatus", OpenAPI_flow_status_ToString(media_component->f_status)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [f_status]");
goto end;
@ -306,23 +364,22 @@ cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_co
goto end;
}
cJSON *localMapObject = med_sub_comps;
OpenAPI_lnode_t *med_sub_comps_node;
if (media_component->med_sub_comps) {
OpenAPI_list_for_each(media_component->med_sub_comps, med_sub_comps_node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)med_sub_comps_node->data;
cJSON *itemLocal = localKeyValue->value ?
OpenAPI_media_sub_component_convertToJSON(localKeyValue->value) :
cJSON_CreateNull();
if (itemLocal == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [inner]");
goto end;
}
cJSON_AddItemToObject(localMapObject, localKeyValue->key, itemLocal);
OpenAPI_list_for_each(media_component->med_sub_comps, node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)node->data;
cJSON *itemLocal = localKeyValue->value ?
OpenAPI_media_sub_component_convertToJSON(localKeyValue->value) :
cJSON_CreateNull();
if (itemLocal == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [inner]");
goto end;
}
cJSON_AddItemToObject(localMapObject, localKeyValue->key, itemLocal);
}
}
}
if (media_component->med_type) {
if (media_component->med_type != OpenAPI_media_type_NULL) {
if (cJSON_AddStringToObject(item, "medType", OpenAPI_media_type_ToString(media_component->med_type)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [med_type]");
goto end;
@ -357,28 +414,28 @@ cJSON *OpenAPI_media_component_convertToJSON(OpenAPI_media_component_t *media_co
}
}
if (media_component->preempt_cap) {
if (media_component->preempt_cap != OpenAPI_preemption_capability_NULL) {
if (cJSON_AddStringToObject(item, "preemptCap", OpenAPI_preemption_capability_ToString(media_component->preempt_cap)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [preempt_cap]");
goto end;
}
}
if (media_component->preempt_vuln) {
if (media_component->preempt_vuln != OpenAPI_preemption_vulnerability_NULL) {
if (cJSON_AddStringToObject(item, "preemptVuln", OpenAPI_preemption_vulnerability_ToString(media_component->preempt_vuln)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [preempt_vuln]");
goto end;
}
}
if (media_component->prio_sharing_ind) {
if (media_component->prio_sharing_ind != OpenAPI_priority_sharing_indicator_NULL) {
if (cJSON_AddStringToObject(item, "prioSharingInd", OpenAPI_priority_sharing_indicator_ToString(media_component->prio_sharing_ind)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [prio_sharing_ind]");
goto end;
}
}
if (media_component->res_prio) {
if (media_component->res_prio != OpenAPI_reserv_priority_NULL) {
if (cJSON_AddStringToObject(item, "resPrio", OpenAPI_reserv_priority_ToString(media_component->res_prio)) == NULL) {
ogs_error("OpenAPI_media_component_convertToJSON() failed [res_prio]");
goto end;
@ -459,33 +516,77 @@ end:
OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_componentJSON)
{
OpenAPI_media_component_t *media_component_local_var = NULL;
cJSON *af_app_id = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "afAppId");
OpenAPI_lnode_t *node = NULL;
cJSON *af_app_id = NULL;
cJSON *af_rout_req = NULL;
OpenAPI_af_routing_requirement_t *af_rout_req_local_nonprim = NULL;
cJSON *qos_reference = NULL;
cJSON *dis_ue_notif = NULL;
cJSON *alt_ser_reqs = NULL;
OpenAPI_list_t *alt_ser_reqsList = NULL;
cJSON *cont_ver = NULL;
cJSON *codecs = NULL;
OpenAPI_list_t *codecsList = NULL;
cJSON *des_max_latency = NULL;
cJSON *des_max_loss = NULL;
cJSON *flus_id = NULL;
cJSON *f_status = NULL;
OpenAPI_flow_status_e f_statusVariable = 0;
cJSON *mar_bw_dl = NULL;
cJSON *mar_bw_ul = NULL;
cJSON *max_packet_loss_rate_dl = NULL;
cJSON *max_packet_loss_rate_ul = NULL;
cJSON *max_supp_bw_dl = NULL;
cJSON *max_supp_bw_ul = NULL;
cJSON *med_comp_n = NULL;
cJSON *med_sub_comps = NULL;
OpenAPI_list_t *med_sub_compsList = NULL;
cJSON *med_type = NULL;
OpenAPI_media_type_e med_typeVariable = 0;
cJSON *min_des_bw_dl = NULL;
cJSON *min_des_bw_ul = NULL;
cJSON *mir_bw_dl = NULL;
cJSON *mir_bw_ul = NULL;
cJSON *preempt_cap = NULL;
OpenAPI_preemption_capability_e preempt_capVariable = 0;
cJSON *preempt_vuln = NULL;
OpenAPI_preemption_vulnerability_e preempt_vulnVariable = 0;
cJSON *prio_sharing_ind = NULL;
OpenAPI_priority_sharing_indicator_e prio_sharing_indVariable = 0;
cJSON *res_prio = NULL;
OpenAPI_reserv_priority_e res_prioVariable = 0;
cJSON *rr_bw = NULL;
cJSON *rs_bw = NULL;
cJSON *sharing_key_dl = NULL;
cJSON *sharing_key_ul = NULL;
cJSON *tsn_qos = NULL;
OpenAPI_tsn_qos_container_t *tsn_qos_local_nonprim = NULL;
cJSON *tscai_input_dl = NULL;
OpenAPI_tscai_input_container_t *tscai_input_dl_local_nonprim = NULL;
cJSON *tscai_input_ul = NULL;
OpenAPI_tscai_input_container_t *tscai_input_ul_local_nonprim = NULL;
af_app_id = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "afAppId");
if (af_app_id) {
if (!cJSON_IsString(af_app_id)) {
if (!cJSON_IsString(af_app_id) && !cJSON_IsNull(af_app_id)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [af_app_id]");
goto end;
}
}
cJSON *af_rout_req = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "afRoutReq");
OpenAPI_af_routing_requirement_t *af_rout_req_local_nonprim = NULL;
af_rout_req = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "afRoutReq");
if (af_rout_req) {
af_rout_req_local_nonprim = OpenAPI_af_routing_requirement_parseFromJSON(af_rout_req);
}
cJSON *qos_reference = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "qosReference");
qos_reference = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "qosReference");
if (qos_reference) {
if (!cJSON_IsString(qos_reference)) {
if (!cJSON_IsString(qos_reference) && !cJSON_IsNull(qos_reference)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [qos_reference]");
goto end;
}
}
cJSON *dis_ue_notif = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "disUeNotif");
dis_ue_notif = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "disUeNotif");
if (dis_ue_notif) {
if (!cJSON_IsBool(dis_ue_notif)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [dis_ue_notif]");
@ -493,28 +594,28 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *alt_ser_reqs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "altSerReqs");
OpenAPI_list_t *alt_ser_reqsList;
alt_ser_reqs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "altSerReqs");
if (alt_ser_reqs) {
cJSON *alt_ser_reqs_local;
if (!cJSON_IsArray(alt_ser_reqs)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [alt_ser_reqs]");
goto end;
}
alt_ser_reqsList = OpenAPI_list_create();
cJSON *alt_ser_reqs_local = NULL;
if (!cJSON_IsArray(alt_ser_reqs)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [alt_ser_reqs]");
goto end;
}
cJSON_ArrayForEach(alt_ser_reqs_local, alt_ser_reqs) {
if (!cJSON_IsString(alt_ser_reqs_local)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [alt_ser_reqs]");
goto end;
}
OpenAPI_list_add(alt_ser_reqsList, ogs_strdup(alt_ser_reqs_local->valuestring));
}
alt_ser_reqsList = OpenAPI_list_create();
cJSON_ArrayForEach(alt_ser_reqs_local, alt_ser_reqs) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(alt_ser_reqs_local)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [alt_ser_reqs]");
goto end;
}
OpenAPI_list_add(alt_ser_reqsList, ogs_strdup(alt_ser_reqs_local->valuestring));
}
}
cJSON *cont_ver = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "contVer");
cont_ver = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "contVer");
if (cont_ver) {
if (!cJSON_IsNumber(cont_ver)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [cont_ver]");
@ -522,28 +623,28 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *codecs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "codecs");
OpenAPI_list_t *codecsList;
codecs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "codecs");
if (codecs) {
cJSON *codecs_local;
if (!cJSON_IsArray(codecs)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [codecs]");
goto end;
}
codecsList = OpenAPI_list_create();
cJSON *codecs_local = NULL;
if (!cJSON_IsArray(codecs)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [codecs]");
goto end;
}
cJSON_ArrayForEach(codecs_local, codecs) {
if (!cJSON_IsString(codecs_local)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [codecs]");
goto end;
}
OpenAPI_list_add(codecsList, ogs_strdup(codecs_local->valuestring));
}
codecsList = OpenAPI_list_create();
cJSON_ArrayForEach(codecs_local, codecs) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(codecs_local)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [codecs]");
goto end;
}
OpenAPI_list_add(codecsList, ogs_strdup(codecs_local->valuestring));
}
}
cJSON *des_max_latency = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "desMaxLatency");
des_max_latency = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "desMaxLatency");
if (des_max_latency) {
if (!cJSON_IsNumber(des_max_latency)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [des_max_latency]");
@ -551,8 +652,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *des_max_loss = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "desMaxLoss");
des_max_loss = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "desMaxLoss");
if (des_max_loss) {
if (!cJSON_IsNumber(des_max_loss)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [des_max_loss]");
@ -560,18 +660,15 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *flus_id = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "flusId");
flus_id = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "flusId");
if (flus_id) {
if (!cJSON_IsString(flus_id)) {
if (!cJSON_IsString(flus_id) && !cJSON_IsNull(flus_id)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [flus_id]");
goto end;
}
}
cJSON *f_status = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "fStatus");
OpenAPI_flow_status_e f_statusVariable;
f_status = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "fStatus");
if (f_status) {
if (!cJSON_IsString(f_status)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [f_status]");
@ -580,26 +677,23 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
f_statusVariable = OpenAPI_flow_status_FromString(f_status->valuestring);
}
cJSON *mar_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwDl");
mar_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwDl");
if (mar_bw_dl) {
if (!cJSON_IsString(mar_bw_dl)) {
if (!cJSON_IsString(mar_bw_dl) && !cJSON_IsNull(mar_bw_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [mar_bw_dl]");
goto end;
}
}
cJSON *mar_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwUl");
mar_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwUl");
if (mar_bw_ul) {
if (!cJSON_IsString(mar_bw_ul)) {
if (!cJSON_IsString(mar_bw_ul) && !cJSON_IsNull(mar_bw_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [mar_bw_ul]");
goto end;
}
}
cJSON *max_packet_loss_rate_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxPacketLossRateDl");
max_packet_loss_rate_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxPacketLossRateDl");
if (max_packet_loss_rate_dl) {
if (!cJSON_IsNumber(max_packet_loss_rate_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [max_packet_loss_rate_dl]");
@ -607,8 +701,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *max_packet_loss_rate_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxPacketLossRateUl");
max_packet_loss_rate_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxPacketLossRateUl");
if (max_packet_loss_rate_ul) {
if (!cJSON_IsNumber(max_packet_loss_rate_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [max_packet_loss_rate_ul]");
@ -616,64 +709,59 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *max_supp_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxSuppBwDl");
max_supp_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxSuppBwDl");
if (max_supp_bw_dl) {
if (!cJSON_IsString(max_supp_bw_dl)) {
if (!cJSON_IsString(max_supp_bw_dl) && !cJSON_IsNull(max_supp_bw_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [max_supp_bw_dl]");
goto end;
}
}
cJSON *max_supp_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxSuppBwUl");
max_supp_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxSuppBwUl");
if (max_supp_bw_ul) {
if (!cJSON_IsString(max_supp_bw_ul)) {
if (!cJSON_IsString(max_supp_bw_ul) && !cJSON_IsNull(max_supp_bw_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [max_supp_bw_ul]");
goto end;
}
}
cJSON *med_comp_n = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medCompN");
med_comp_n = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medCompN");
if (!med_comp_n) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_comp_n]");
goto end;
}
if (!cJSON_IsNumber(med_comp_n)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_comp_n]");
goto end;
}
cJSON *med_sub_comps = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medSubComps");
OpenAPI_list_t *med_sub_compsList;
med_sub_comps = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medSubComps");
if (med_sub_comps) {
cJSON *med_sub_comps_local_map;
if (!cJSON_IsObject(med_sub_comps)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_sub_comps]");
goto end;
}
med_sub_compsList = OpenAPI_list_create();
OpenAPI_map_t *localMapKeyPair = NULL;
cJSON_ArrayForEach(med_sub_comps_local_map, med_sub_comps) {
cJSON *localMapObject = med_sub_comps_local_map;
if (cJSON_IsObject(localMapObject)) {
localMapKeyPair = OpenAPI_map_create(
ogs_strdup(localMapObject->string), OpenAPI_media_sub_component_parseFromJSON(localMapObject));
} else if (cJSON_IsNull(localMapObject)) {
localMapKeyPair = OpenAPI_map_create(ogs_strdup(localMapObject->string), NULL);
} else {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [inner]");
cJSON *med_sub_comps_local_map = NULL;
if (!cJSON_IsObject(med_sub_comps) && !cJSON_IsNull(med_sub_comps)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_sub_comps]");
goto end;
}
OpenAPI_list_add(med_sub_compsList, localMapKeyPair);
}
if (cJSON_IsObject(med_sub_comps)) {
med_sub_compsList = OpenAPI_list_create();
OpenAPI_map_t *localMapKeyPair = NULL;
cJSON_ArrayForEach(med_sub_comps_local_map, med_sub_comps) {
cJSON *localMapObject = med_sub_comps_local_map;
if (cJSON_IsObject(localMapObject)) {
localMapKeyPair = OpenAPI_map_create(
ogs_strdup(localMapObject->string), OpenAPI_media_sub_component_parseFromJSON(localMapObject));
} else if (cJSON_IsNull(localMapObject)) {
localMapKeyPair = OpenAPI_map_create(ogs_strdup(localMapObject->string), NULL);
} else {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [inner]");
goto end;
}
OpenAPI_list_add(med_sub_compsList, localMapKeyPair);
}
}
}
cJSON *med_type = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medType");
OpenAPI_media_type_e med_typeVariable;
med_type = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medType");
if (med_type) {
if (!cJSON_IsString(med_type)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_type]");
@ -682,45 +770,39 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
med_typeVariable = OpenAPI_media_type_FromString(med_type->valuestring);
}
cJSON *min_des_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "minDesBwDl");
min_des_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "minDesBwDl");
if (min_des_bw_dl) {
if (!cJSON_IsString(min_des_bw_dl)) {
if (!cJSON_IsString(min_des_bw_dl) && !cJSON_IsNull(min_des_bw_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [min_des_bw_dl]");
goto end;
}
}
cJSON *min_des_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "minDesBwUl");
min_des_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "minDesBwUl");
if (min_des_bw_ul) {
if (!cJSON_IsString(min_des_bw_ul)) {
if (!cJSON_IsString(min_des_bw_ul) && !cJSON_IsNull(min_des_bw_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [min_des_bw_ul]");
goto end;
}
}
cJSON *mir_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "mirBwDl");
mir_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "mirBwDl");
if (mir_bw_dl) {
if (!cJSON_IsString(mir_bw_dl)) {
if (!cJSON_IsString(mir_bw_dl) && !cJSON_IsNull(mir_bw_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [mir_bw_dl]");
goto end;
}
}
cJSON *mir_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "mirBwUl");
mir_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "mirBwUl");
if (mir_bw_ul) {
if (!cJSON_IsString(mir_bw_ul)) {
if (!cJSON_IsString(mir_bw_ul) && !cJSON_IsNull(mir_bw_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [mir_bw_ul]");
goto end;
}
}
cJSON *preempt_cap = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "preemptCap");
OpenAPI_preemption_capability_e preempt_capVariable;
preempt_cap = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "preemptCap");
if (preempt_cap) {
if (!cJSON_IsString(preempt_cap)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [preempt_cap]");
@ -729,9 +811,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
preempt_capVariable = OpenAPI_preemption_capability_FromString(preempt_cap->valuestring);
}
cJSON *preempt_vuln = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "preemptVuln");
OpenAPI_preemption_vulnerability_e preempt_vulnVariable;
preempt_vuln = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "preemptVuln");
if (preempt_vuln) {
if (!cJSON_IsString(preempt_vuln)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [preempt_vuln]");
@ -740,9 +820,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
preempt_vulnVariable = OpenAPI_preemption_vulnerability_FromString(preempt_vuln->valuestring);
}
cJSON *prio_sharing_ind = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "prioSharingInd");
OpenAPI_priority_sharing_indicator_e prio_sharing_indVariable;
prio_sharing_ind = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "prioSharingInd");
if (prio_sharing_ind) {
if (!cJSON_IsString(prio_sharing_ind)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [prio_sharing_ind]");
@ -751,9 +829,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
prio_sharing_indVariable = OpenAPI_priority_sharing_indicator_FromString(prio_sharing_ind->valuestring);
}
cJSON *res_prio = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "resPrio");
OpenAPI_reserv_priority_e res_prioVariable;
res_prio = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "resPrio");
if (res_prio) {
if (!cJSON_IsString(res_prio)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [res_prio]");
@ -762,26 +838,23 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
res_prioVariable = OpenAPI_reserv_priority_FromString(res_prio->valuestring);
}
cJSON *rr_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rrBw");
rr_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rrBw");
if (rr_bw) {
if (!cJSON_IsString(rr_bw)) {
if (!cJSON_IsString(rr_bw) && !cJSON_IsNull(rr_bw)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [rr_bw]");
goto end;
}
}
cJSON *rs_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rsBw");
rs_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rsBw");
if (rs_bw) {
if (!cJSON_IsString(rs_bw)) {
if (!cJSON_IsString(rs_bw) && !cJSON_IsNull(rs_bw)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [rs_bw]");
goto end;
}
}
cJSON *sharing_key_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "sharingKeyDl");
sharing_key_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "sharingKeyDl");
if (sharing_key_dl) {
if (!cJSON_IsNumber(sharing_key_dl)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [sharing_key_dl]");
@ -789,8 +862,7 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *sharing_key_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "sharingKeyUl");
sharing_key_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "sharingKeyUl");
if (sharing_key_ul) {
if (!cJSON_IsNumber(sharing_key_ul)) {
ogs_error("OpenAPI_media_component_parseFromJSON() failed [sharing_key_ul]");
@ -798,31 +870,25 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
}
}
cJSON *tsn_qos = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tsnQos");
OpenAPI_tsn_qos_container_t *tsn_qos_local_nonprim = NULL;
tsn_qos = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tsnQos");
if (tsn_qos) {
tsn_qos_local_nonprim = OpenAPI_tsn_qos_container_parseFromJSON(tsn_qos);
}
cJSON *tscai_input_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tscaiInputDl");
OpenAPI_tscai_input_container_t *tscai_input_dl_local_nonprim = NULL;
tscai_input_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tscaiInputDl");
if (tscai_input_dl) {
tscai_input_dl_local_nonprim = OpenAPI_tscai_input_container_parseFromJSON(tscai_input_dl);
}
cJSON *tscai_input_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tscaiInputUl");
OpenAPI_tscai_input_container_t *tscai_input_ul_local_nonprim = NULL;
tscai_input_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tscaiInputUl");
if (tscai_input_ul) {
tscai_input_ul_local_nonprim = OpenAPI_tscai_input_container_parseFromJSON(tscai_input_ul);
}
media_component_local_var = OpenAPI_media_component_create (
af_app_id ? ogs_strdup(af_app_id->valuestring) : NULL,
af_app_id && !cJSON_IsNull(af_app_id) ? ogs_strdup(af_app_id->valuestring) : NULL,
af_rout_req ? af_rout_req_local_nonprim : NULL,
qos_reference ? ogs_strdup(qos_reference->valuestring) : NULL,
qos_reference && !cJSON_IsNull(qos_reference) ? ogs_strdup(qos_reference->valuestring) : NULL,
dis_ue_notif ? true : false,
dis_ue_notif ? dis_ue_notif->valueint : 0,
alt_ser_reqs ? alt_ser_reqsList : NULL,
@ -833,30 +899,30 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
des_max_latency ? des_max_latency->valuedouble : 0,
des_max_loss ? true : false,
des_max_loss ? des_max_loss->valuedouble : 0,
flus_id ? ogs_strdup(flus_id->valuestring) : NULL,
flus_id && !cJSON_IsNull(flus_id) ? ogs_strdup(flus_id->valuestring) : NULL,
f_status ? f_statusVariable : 0,
mar_bw_dl ? ogs_strdup(mar_bw_dl->valuestring) : NULL,
mar_bw_ul ? ogs_strdup(mar_bw_ul->valuestring) : NULL,
mar_bw_dl && !cJSON_IsNull(mar_bw_dl) ? ogs_strdup(mar_bw_dl->valuestring) : NULL,
mar_bw_ul && !cJSON_IsNull(mar_bw_ul) ? ogs_strdup(mar_bw_ul->valuestring) : NULL,
max_packet_loss_rate_dl ? true : false,
max_packet_loss_rate_dl ? max_packet_loss_rate_dl->valuedouble : 0,
max_packet_loss_rate_ul ? true : false,
max_packet_loss_rate_ul ? max_packet_loss_rate_ul->valuedouble : 0,
max_supp_bw_dl ? ogs_strdup(max_supp_bw_dl->valuestring) : NULL,
max_supp_bw_ul ? ogs_strdup(max_supp_bw_ul->valuestring) : NULL,
max_supp_bw_dl && !cJSON_IsNull(max_supp_bw_dl) ? ogs_strdup(max_supp_bw_dl->valuestring) : NULL,
max_supp_bw_ul && !cJSON_IsNull(max_supp_bw_ul) ? ogs_strdup(max_supp_bw_ul->valuestring) : NULL,
med_comp_n->valuedouble,
med_sub_comps ? med_sub_compsList : NULL,
med_type ? med_typeVariable : 0,
min_des_bw_dl ? ogs_strdup(min_des_bw_dl->valuestring) : NULL,
min_des_bw_ul ? ogs_strdup(min_des_bw_ul->valuestring) : NULL,
mir_bw_dl ? ogs_strdup(mir_bw_dl->valuestring) : NULL,
mir_bw_ul ? ogs_strdup(mir_bw_ul->valuestring) : NULL,
min_des_bw_dl && !cJSON_IsNull(min_des_bw_dl) ? ogs_strdup(min_des_bw_dl->valuestring) : NULL,
min_des_bw_ul && !cJSON_IsNull(min_des_bw_ul) ? ogs_strdup(min_des_bw_ul->valuestring) : NULL,
mir_bw_dl && !cJSON_IsNull(mir_bw_dl) ? ogs_strdup(mir_bw_dl->valuestring) : NULL,
mir_bw_ul && !cJSON_IsNull(mir_bw_ul) ? ogs_strdup(mir_bw_ul->valuestring) : NULL,
preempt_cap ? preempt_capVariable : 0,
preempt_vuln ? preempt_vulnVariable : 0,
prio_sharing_ind ? prio_sharing_indVariable : 0,
res_prio ? res_prioVariable : 0,
rr_bw ? ogs_strdup(rr_bw->valuestring) : NULL,
rs_bw ? ogs_strdup(rs_bw->valuestring) : NULL,
rr_bw && !cJSON_IsNull(rr_bw) ? ogs_strdup(rr_bw->valuestring) : NULL,
rs_bw && !cJSON_IsNull(rs_bw) ? ogs_strdup(rs_bw->valuestring) : NULL,
sharing_key_dl ? true : false,
sharing_key_dl ? sharing_key_dl->valuedouble : 0,
sharing_key_ul ? true : false,
@ -868,6 +934,46 @@ OpenAPI_media_component_t *OpenAPI_media_component_parseFromJSON(cJSON *media_co
return media_component_local_var;
end:
if (af_rout_req_local_nonprim) {
OpenAPI_af_routing_requirement_free(af_rout_req_local_nonprim);
af_rout_req_local_nonprim = NULL;
}
if (alt_ser_reqsList) {
OpenAPI_list_for_each(alt_ser_reqsList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(alt_ser_reqsList);
alt_ser_reqsList = NULL;
}
if (codecsList) {
OpenAPI_list_for_each(codecsList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(codecsList);
codecsList = NULL;
}
if (med_sub_compsList) {
OpenAPI_list_for_each(med_sub_compsList, node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*) node->data;
ogs_free(localKeyValue->key);
OpenAPI_media_sub_component_free(localKeyValue->value);
OpenAPI_map_free(localKeyValue);
}
OpenAPI_list_free(med_sub_compsList);
med_sub_compsList = NULL;
}
if (tsn_qos_local_nonprim) {
OpenAPI_tsn_qos_container_free(tsn_qos_local_nonprim);
tsn_qos_local_nonprim = NULL;
}
if (tscai_input_dl_local_nonprim) {
OpenAPI_tscai_input_container_free(tscai_input_dl_local_nonprim);
tscai_input_dl_local_nonprim = NULL;
}
if (tscai_input_ul_local_nonprim) {
OpenAPI_tscai_input_container_free(tscai_input_ul_local_nonprim);
tscai_input_ul_local_nonprim = NULL;
}
return NULL;
}