#include #include #include #include "media_component.h" OpenAPI_media_component_t *OpenAPI_media_component_create( char *af_app_id, OpenAPI_af_routing_requirement_t *af_rout_req, char *qos_reference, OpenAPI_list_t *alt_ser_reqs, int cont_ver, OpenAPI_list_t *codecs, float des_max_latency, float des_max_loss, char *flus_id, OpenAPI_flow_status_e f_status, char *mar_bw_dl, char *mar_bw_ul, int max_packet_loss_rate_dl, int max_packet_loss_rate_ul, char *max_supp_bw_dl, char *max_supp_bw_ul, int med_comp_n, OpenAPI_list_t* med_sub_comps, OpenAPI_media_type_e med_type, char *min_des_bw_dl, char *min_des_bw_ul, char *mir_bw_dl, char *mir_bw_ul, OpenAPI_preemption_capability_e preempt_cap, OpenAPI_preemption_vulnerability_e preempt_vuln, OpenAPI_priority_sharing_indicator_e prio_sharing_ind, OpenAPI_reserv_priority_e res_prio, char *rr_bw, char *rs_bw, int sharing_key_dl, int sharing_key_ul, OpenAPI_tsn_qos_container_t *tsn_qos, OpenAPI_tscai_input_container_t *tscai_input_dl, OpenAPI_tscai_input_container_t *tscai_input_ul ) { OpenAPI_media_component_t *media_component_local_var = OpenAPI_malloc(sizeof(OpenAPI_media_component_t)); if (!media_component_local_var) { return NULL; } media_component_local_var->af_app_id = af_app_id; media_component_local_var->af_rout_req = af_rout_req; media_component_local_var->qos_reference = qos_reference; media_component_local_var->alt_ser_reqs = alt_ser_reqs; media_component_local_var->cont_ver = cont_ver; media_component_local_var->codecs = codecs; media_component_local_var->des_max_latency = des_max_latency; media_component_local_var->des_max_loss = des_max_loss; media_component_local_var->flus_id = flus_id; media_component_local_var->f_status = f_status; media_component_local_var->mar_bw_dl = mar_bw_dl; media_component_local_var->mar_bw_ul = mar_bw_ul; media_component_local_var->max_packet_loss_rate_dl = max_packet_loss_rate_dl; media_component_local_var->max_packet_loss_rate_ul = max_packet_loss_rate_ul; media_component_local_var->max_supp_bw_dl = max_supp_bw_dl; media_component_local_var->max_supp_bw_ul = max_supp_bw_ul; media_component_local_var->med_comp_n = med_comp_n; media_component_local_var->med_sub_comps = med_sub_comps; media_component_local_var->med_type = med_type; media_component_local_var->min_des_bw_dl = min_des_bw_dl; media_component_local_var->min_des_bw_ul = min_des_bw_ul; media_component_local_var->mir_bw_dl = mir_bw_dl; media_component_local_var->mir_bw_ul = mir_bw_ul; media_component_local_var->preempt_cap = preempt_cap; media_component_local_var->preempt_vuln = preempt_vuln; media_component_local_var->prio_sharing_ind = prio_sharing_ind; media_component_local_var->res_prio = res_prio; media_component_local_var->rr_bw = rr_bw; media_component_local_var->rs_bw = rs_bw; media_component_local_var->sharing_key_dl = sharing_key_dl; media_component_local_var->sharing_key_ul = sharing_key_ul; media_component_local_var->tsn_qos = tsn_qos; media_component_local_var->tscai_input_dl = tscai_input_dl; media_component_local_var->tscai_input_ul = tscai_input_ul; return media_component_local_var; } void OpenAPI_media_component_free(OpenAPI_media_component_t *media_component) { 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); } OpenAPI_list_free(media_component->alt_ser_reqs); OpenAPI_list_for_each(media_component->codecs, node) { ogs_free(node->data); } 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; OpenAPI_media_sub_component_free(localKeyValue->value); ogs_free(localKeyValue); } 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; if (media_component == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [MediaComponent]"); return NULL; } item = cJSON_CreateObject(); if (media_component->af_app_id) { if (cJSON_AddStringToObject(item, "afAppId", media_component->af_app_id) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [af_app_id]"); goto end; } } if (media_component->af_rout_req) { cJSON *af_rout_req_local_JSON = OpenAPI_af_routing_requirement_convertToJSON(media_component->af_rout_req); if (af_rout_req_local_JSON == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [af_rout_req]"); goto end; } cJSON_AddItemToObject(item, "afRoutReq", af_rout_req_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [af_rout_req]"); goto end; } } if (media_component->qos_reference) { if (cJSON_AddStringToObject(item, "qosReference", media_component->qos_reference) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [qos_reference]"); goto end; } } if (media_component->alt_ser_reqs) { cJSON *alt_ser_reqs = cJSON_AddArrayToObject(item, "altSerReqs"); if (alt_ser_reqs == 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; } } } if (media_component->cont_ver) { if (cJSON_AddNumberToObject(item, "contVer", media_component->cont_ver) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [cont_ver]"); goto end; } } if (media_component->codecs) { cJSON *codecs = cJSON_AddArrayToObject(item, "codecs"); if (codecs == 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; } } } if (media_component->des_max_latency) { if (cJSON_AddNumberToObject(item, "desMaxLatency", media_component->des_max_latency) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [des_max_latency]"); goto end; } } if (media_component->des_max_loss) { if (cJSON_AddNumberToObject(item, "desMaxLoss", media_component->des_max_loss) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [des_max_loss]"); goto end; } } if (media_component->flus_id) { if (cJSON_AddStringToObject(item, "flusId", media_component->flus_id) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [flus_id]"); goto end; } } if (media_component->f_status) { 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; } } if (media_component->mar_bw_dl) { if (cJSON_AddStringToObject(item, "marBwDl", media_component->mar_bw_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [mar_bw_dl]"); goto end; } } if (media_component->mar_bw_ul) { if (cJSON_AddStringToObject(item, "marBwUl", media_component->mar_bw_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [mar_bw_ul]"); goto end; } } if (media_component->max_packet_loss_rate_dl) { if (cJSON_AddNumberToObject(item, "maxPacketLossRateDl", media_component->max_packet_loss_rate_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [max_packet_loss_rate_dl]"); goto end; } } if (media_component->max_packet_loss_rate_ul) { if (cJSON_AddNumberToObject(item, "maxPacketLossRateUl", media_component->max_packet_loss_rate_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [max_packet_loss_rate_ul]"); goto end; } } if (media_component->max_supp_bw_dl) { if (cJSON_AddStringToObject(item, "maxSuppBwDl", media_component->max_supp_bw_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [max_supp_bw_dl]"); goto end; } } if (media_component->max_supp_bw_ul) { if (cJSON_AddStringToObject(item, "maxSuppBwUl", media_component->max_supp_bw_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [max_supp_bw_ul]"); goto end; } } if (cJSON_AddNumberToObject(item, "medCompN", media_component->med_comp_n) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [med_comp_n]"); goto end; } if (media_component->med_sub_comps) { cJSON *med_sub_comps = cJSON_AddObjectToObject(item, "medSubComps"); if (med_sub_comps == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [med_sub_comps]"); 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 = OpenAPI_media_sub_component_convertToJSON(localKeyValue->value); if (itemLocal == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [med_sub_comps]"); goto end; } cJSON_AddItemToObject(med_sub_comps, localKeyValue->key, itemLocal); } } } if (media_component->med_type) { 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; } } if (media_component->min_des_bw_dl) { if (cJSON_AddStringToObject(item, "minDesBwDl", media_component->min_des_bw_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [min_des_bw_dl]"); goto end; } } if (media_component->min_des_bw_ul) { if (cJSON_AddStringToObject(item, "minDesBwUl", media_component->min_des_bw_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [min_des_bw_ul]"); goto end; } } if (media_component->mir_bw_dl) { if (cJSON_AddStringToObject(item, "mirBwDl", media_component->mir_bw_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [mir_bw_dl]"); goto end; } } if (media_component->mir_bw_ul) { if (cJSON_AddStringToObject(item, "mirBwUl", media_component->mir_bw_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [mir_bw_ul]"); goto end; } } if (media_component->preempt_cap) { 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 (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 (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 (cJSON_AddStringToObject(item, "resPrio", OpenAPI_reserv_priority_ToString(media_component->res_prio)) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [res_prio]"); goto end; } } if (media_component->rr_bw) { if (cJSON_AddStringToObject(item, "rrBw", media_component->rr_bw) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [rr_bw]"); goto end; } } if (media_component->rs_bw) { if (cJSON_AddStringToObject(item, "rsBw", media_component->rs_bw) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [rs_bw]"); goto end; } } if (media_component->sharing_key_dl) { if (cJSON_AddNumberToObject(item, "sharingKeyDl", media_component->sharing_key_dl) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [sharing_key_dl]"); goto end; } } if (media_component->sharing_key_ul) { if (cJSON_AddNumberToObject(item, "sharingKeyUl", media_component->sharing_key_ul) == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [sharing_key_ul]"); goto end; } } if (media_component->tsn_qos) { cJSON *tsn_qos_local_JSON = OpenAPI_tsn_qos_container_convertToJSON(media_component->tsn_qos); if (tsn_qos_local_JSON == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tsn_qos]"); goto end; } cJSON_AddItemToObject(item, "tsnQos", tsn_qos_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tsn_qos]"); goto end; } } if (media_component->tscai_input_dl) { cJSON *tscai_input_dl_local_JSON = OpenAPI_tscai_input_container_convertToJSON(media_component->tscai_input_dl); if (tscai_input_dl_local_JSON == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tscai_input_dl]"); goto end; } cJSON_AddItemToObject(item, "tscaiInputDl", tscai_input_dl_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tscai_input_dl]"); goto end; } } if (media_component->tscai_input_ul) { cJSON *tscai_input_ul_local_JSON = OpenAPI_tscai_input_container_convertToJSON(media_component->tscai_input_ul); if (tscai_input_ul_local_JSON == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tscai_input_ul]"); goto end; } cJSON_AddItemToObject(item, "tscaiInputUl", tscai_input_ul_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_media_component_convertToJSON() failed [tscai_input_ul]"); goto end; } } end: return item; } 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"); if (af_app_id) { if (!cJSON_IsString(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; 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"); if (qos_reference) { if (!cJSON_IsString(qos_reference)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [qos_reference]"); goto end; } } cJSON *alt_ser_reqs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "altSerReqs"); OpenAPI_list_t *alt_ser_reqsList; 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_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)); } } cJSON *cont_ver = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "contVer"); if (cont_ver) { if (!cJSON_IsNumber(cont_ver)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [cont_ver]"); goto end; } } cJSON *codecs = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "codecs"); OpenAPI_list_t *codecsList; if (codecs) { cJSON *codecs_local; if (!cJSON_IsArray(codecs)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [codecs]"); goto end; } codecsList = OpenAPI_list_create(); 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)); } } cJSON *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]"); goto end; } } cJSON *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]"); goto end; } } cJSON *flus_id = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "flusId"); if (flus_id) { if (!cJSON_IsString(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; if (f_status) { if (!cJSON_IsString(f_status)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [f_status]"); goto end; } f_statusVariable = OpenAPI_flow_status_FromString(f_status->valuestring); } cJSON *mar_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwDl"); if (mar_bw_dl) { if (!cJSON_IsString(mar_bw_dl)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [mar_bw_dl]"); goto end; } } cJSON *mar_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "marBwUl"); if (mar_bw_ul) { if (!cJSON_IsString(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"); 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]"); goto end; } } cJSON *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]"); goto end; } } cJSON *max_supp_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "maxSuppBwDl"); if (max_supp_bw_dl) { if (!cJSON_IsString(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"); if (max_supp_bw_ul) { if (!cJSON_IsString(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"); 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; 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(med_sub_comps_local_map)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_sub_comps]"); goto end; } localMapKeyPair = OpenAPI_map_create( localMapObject->string, OpenAPI_media_sub_component_parseFromJSON(localMapObject)); OpenAPI_list_add(med_sub_compsList, localMapKeyPair); } } cJSON *med_type = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "medType"); OpenAPI_media_type_e med_typeVariable; if (med_type) { if (!cJSON_IsString(med_type)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [med_type]"); goto end; } med_typeVariable = OpenAPI_media_type_FromString(med_type->valuestring); } cJSON *min_des_bw_dl = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "minDesBwDl"); if (min_des_bw_dl) { if (!cJSON_IsString(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"); if (min_des_bw_ul) { if (!cJSON_IsString(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"); if (mir_bw_dl) { if (!cJSON_IsString(mir_bw_dl)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [mir_bw_dl]"); goto end; } } cJSON *mir_bw_ul = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "mirBwUl"); if (mir_bw_ul) { if (!cJSON_IsString(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; if (preempt_cap) { if (!cJSON_IsString(preempt_cap)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [preempt_cap]"); goto end; } preempt_capVariable = OpenAPI_preemption_capability_FromString(preempt_cap->valuestring); } cJSON *preempt_vuln = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "preemptVuln"); OpenAPI_preemption_vulnerability_e preempt_vulnVariable; if (preempt_vuln) { if (!cJSON_IsString(preempt_vuln)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [preempt_vuln]"); goto end; } 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; if (prio_sharing_ind) { if (!cJSON_IsString(prio_sharing_ind)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [prio_sharing_ind]"); goto end; } 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; if (res_prio) { if (!cJSON_IsString(res_prio)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [res_prio]"); goto end; } res_prioVariable = OpenAPI_reserv_priority_FromString(res_prio->valuestring); } cJSON *rr_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rrBw"); if (rr_bw) { if (!cJSON_IsString(rr_bw)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [rr_bw]"); goto end; } } cJSON *rs_bw = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "rsBw"); if (rs_bw) { if (!cJSON_IsString(rs_bw)) { ogs_error("OpenAPI_media_component_parseFromJSON() failed [rs_bw]"); goto end; } } cJSON *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]"); goto end; } } cJSON *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]"); goto end; } } cJSON *tsn_qos = cJSON_GetObjectItemCaseSensitive(media_componentJSON, "tsnQos"); OpenAPI_tsn_qos_container_t *tsn_qos_local_nonprim = NULL; 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; 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; 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_rout_req ? af_rout_req_local_nonprim : NULL, qos_reference ? ogs_strdup(qos_reference->valuestring) : NULL, alt_ser_reqs ? alt_ser_reqsList : NULL, cont_ver ? cont_ver->valuedouble : 0, codecs ? codecsList : NULL, des_max_latency ? des_max_latency->valuedouble : 0, des_max_loss ? des_max_loss->valuedouble : 0, 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, max_packet_loss_rate_dl ? max_packet_loss_rate_dl->valuedouble : 0, 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, 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, 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, sharing_key_dl ? sharing_key_dl->valuedouble : 0, sharing_key_ul ? sharing_key_ul->valuedouble : 0, tsn_qos ? tsn_qos_local_nonprim : NULL, tscai_input_dl ? tscai_input_dl_local_nonprim : NULL, tscai_input_ul ? tscai_input_ul_local_nonprim : NULL ); return media_component_local_var; end: return NULL; } OpenAPI_media_component_t *OpenAPI_media_component_copy(OpenAPI_media_component_t *dst, OpenAPI_media_component_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_media_component_convertToJSON(src); if (!item) { ogs_error("OpenAPI_media_component_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_media_component_free(dst); dst = OpenAPI_media_component_parseFromJSON(item); cJSON_Delete(item); return dst; }