mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
[5GC] Added BSF(Binding Support Function)
This commit is contained in:
parent
611986794b
commit
fe89f7cd11
293 changed files with 24988 additions and 1507 deletions
369
lib/sbi/openapi/model/media_sub_component_rm.c
Normal file
369
lib/sbi/openapi/model/media_sub_component_rm.c
Normal file
|
|
@ -0,0 +1,369 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "media_sub_component_rm.h"
|
||||
|
||||
OpenAPI_media_sub_component_rm_t *OpenAPI_media_sub_component_rm_create(
|
||||
OpenAPI_af_sig_protocol_e af_sig_protocol,
|
||||
OpenAPI_list_t *ethf_descs,
|
||||
int f_num,
|
||||
OpenAPI_list_t *f_descs,
|
||||
OpenAPI_flow_status_e f_status,
|
||||
char *mar_bw_dl,
|
||||
char *mar_bw_ul,
|
||||
char *tos_tr_cl,
|
||||
OpenAPI_flow_usage_e flow_usage,
|
||||
OpenAPI_tscai_input_container_t *tscai_input_dl,
|
||||
OpenAPI_tscai_input_container_t *tscai_input_ul
|
||||
)
|
||||
{
|
||||
OpenAPI_media_sub_component_rm_t *media_sub_component_rm_local_var = OpenAPI_malloc(sizeof(OpenAPI_media_sub_component_rm_t));
|
||||
if (!media_sub_component_rm_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
media_sub_component_rm_local_var->af_sig_protocol = af_sig_protocol;
|
||||
media_sub_component_rm_local_var->ethf_descs = ethf_descs;
|
||||
media_sub_component_rm_local_var->f_num = f_num;
|
||||
media_sub_component_rm_local_var->f_descs = f_descs;
|
||||
media_sub_component_rm_local_var->f_status = f_status;
|
||||
media_sub_component_rm_local_var->mar_bw_dl = mar_bw_dl;
|
||||
media_sub_component_rm_local_var->mar_bw_ul = mar_bw_ul;
|
||||
media_sub_component_rm_local_var->tos_tr_cl = tos_tr_cl;
|
||||
media_sub_component_rm_local_var->flow_usage = flow_usage;
|
||||
media_sub_component_rm_local_var->tscai_input_dl = tscai_input_dl;
|
||||
media_sub_component_rm_local_var->tscai_input_ul = tscai_input_ul;
|
||||
|
||||
return media_sub_component_rm_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_media_sub_component_rm_free(OpenAPI_media_sub_component_rm_t *media_sub_component_rm)
|
||||
{
|
||||
if (NULL == media_sub_component_rm) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(media_sub_component_rm->ethf_descs, node) {
|
||||
OpenAPI_eth_flow_description_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(media_sub_component_rm->ethf_descs);
|
||||
OpenAPI_list_for_each(media_sub_component_rm->f_descs, node) {
|
||||
ogs_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(media_sub_component_rm->f_descs);
|
||||
ogs_free(media_sub_component_rm->mar_bw_dl);
|
||||
ogs_free(media_sub_component_rm->mar_bw_ul);
|
||||
ogs_free(media_sub_component_rm->tos_tr_cl);
|
||||
OpenAPI_tscai_input_container_free(media_sub_component_rm->tscai_input_dl);
|
||||
OpenAPI_tscai_input_container_free(media_sub_component_rm->tscai_input_ul);
|
||||
ogs_free(media_sub_component_rm);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_media_sub_component_rm_convertToJSON(OpenAPI_media_sub_component_rm_t *media_sub_component_rm)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (media_sub_component_rm == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [MediaSubComponentRm]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (media_sub_component_rm->af_sig_protocol) {
|
||||
if (cJSON_AddStringToObject(item, "afSigProtocol", OpenAPI_af_sig_protocol_ToString(media_sub_component_rm->af_sig_protocol)) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [af_sig_protocol]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->ethf_descs) {
|
||||
cJSON *ethf_descsList = cJSON_AddArrayToObject(item, "ethfDescs");
|
||||
if (ethf_descsList == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [ethf_descs]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *ethf_descs_node;
|
||||
if (media_sub_component_rm->ethf_descs) {
|
||||
OpenAPI_list_for_each(media_sub_component_rm->ethf_descs, ethf_descs_node) {
|
||||
cJSON *itemLocal = OpenAPI_eth_flow_description_convertToJSON(ethf_descs_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [ethf_descs]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(ethf_descsList, itemLocal);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (cJSON_AddNumberToObject(item, "fNum", media_sub_component_rm->f_num) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [f_num]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->f_descs) {
|
||||
cJSON *f_descs = cJSON_AddArrayToObject(item, "fDescs");
|
||||
if (f_descs == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [f_descs]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *f_descs_node;
|
||||
OpenAPI_list_for_each(media_sub_component_rm->f_descs, f_descs_node) {
|
||||
if (cJSON_AddStringToObject(f_descs, "", (char*)f_descs_node->data) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [f_descs]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->f_status) {
|
||||
if (cJSON_AddStringToObject(item, "fStatus", OpenAPI_flow_status_ToString(media_sub_component_rm->f_status)) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [f_status]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->mar_bw_dl) {
|
||||
if (cJSON_AddStringToObject(item, "marBwDl", media_sub_component_rm->mar_bw_dl) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [mar_bw_dl]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->mar_bw_ul) {
|
||||
if (cJSON_AddStringToObject(item, "marBwUl", media_sub_component_rm->mar_bw_ul) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [mar_bw_ul]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->tos_tr_cl) {
|
||||
if (cJSON_AddStringToObject(item, "tosTrCl", media_sub_component_rm->tos_tr_cl) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [tos_tr_cl]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->flow_usage) {
|
||||
if (cJSON_AddStringToObject(item, "flowUsage", OpenAPI_flow_usage_ToString(media_sub_component_rm->flow_usage)) == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [flow_usage]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->tscai_input_dl) {
|
||||
cJSON *tscai_input_dl_local_JSON = OpenAPI_tscai_input_container_convertToJSON(media_sub_component_rm->tscai_input_dl);
|
||||
if (tscai_input_dl_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [tscai_input_dl]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "tscaiInputDl", tscai_input_dl_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [tscai_input_dl]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (media_sub_component_rm->tscai_input_ul) {
|
||||
cJSON *tscai_input_ul_local_JSON = OpenAPI_tscai_input_container_convertToJSON(media_sub_component_rm->tscai_input_ul);
|
||||
if (tscai_input_ul_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [tscai_input_ul]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "tscaiInputUl", tscai_input_ul_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_convertToJSON() failed [tscai_input_ul]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_media_sub_component_rm_t *OpenAPI_media_sub_component_rm_parseFromJSON(cJSON *media_sub_component_rmJSON)
|
||||
{
|
||||
OpenAPI_media_sub_component_rm_t *media_sub_component_rm_local_var = NULL;
|
||||
cJSON *af_sig_protocol = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "afSigProtocol");
|
||||
|
||||
OpenAPI_af_sig_protocol_e af_sig_protocolVariable;
|
||||
if (af_sig_protocol) {
|
||||
if (!cJSON_IsString(af_sig_protocol)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [af_sig_protocol]");
|
||||
goto end;
|
||||
}
|
||||
af_sig_protocolVariable = OpenAPI_af_sig_protocol_FromString(af_sig_protocol->valuestring);
|
||||
}
|
||||
|
||||
cJSON *ethf_descs = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "ethfDescs");
|
||||
|
||||
OpenAPI_list_t *ethf_descsList;
|
||||
if (ethf_descs) {
|
||||
cJSON *ethf_descs_local_nonprimitive;
|
||||
if (!cJSON_IsArray(ethf_descs)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [ethf_descs]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
ethf_descsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(ethf_descs_local_nonprimitive, ethf_descs ) {
|
||||
if (!cJSON_IsObject(ethf_descs_local_nonprimitive)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [ethf_descs]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_eth_flow_description_t *ethf_descsItem = OpenAPI_eth_flow_description_parseFromJSON(ethf_descs_local_nonprimitive);
|
||||
|
||||
OpenAPI_list_add(ethf_descsList, ethf_descsItem);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *f_num = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "fNum");
|
||||
if (!f_num) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [f_num]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsNumber(f_num)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [f_num]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *f_descs = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "fDescs");
|
||||
|
||||
OpenAPI_list_t *f_descsList;
|
||||
if (f_descs) {
|
||||
cJSON *f_descs_local;
|
||||
if (!cJSON_IsArray(f_descs)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [f_descs]");
|
||||
goto end;
|
||||
}
|
||||
f_descsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(f_descs_local, f_descs) {
|
||||
if (!cJSON_IsString(f_descs_local)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [f_descs]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(f_descsList, ogs_strdup(f_descs_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *f_status = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "fStatus");
|
||||
|
||||
OpenAPI_flow_status_e f_statusVariable;
|
||||
if (f_status) {
|
||||
if (!cJSON_IsString(f_status)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [f_status]");
|
||||
goto end;
|
||||
}
|
||||
f_statusVariable = OpenAPI_flow_status_FromString(f_status->valuestring);
|
||||
}
|
||||
|
||||
cJSON *mar_bw_dl = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "marBwDl");
|
||||
|
||||
if (mar_bw_dl) {
|
||||
if (!cJSON_IsString(mar_bw_dl)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [mar_bw_dl]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *mar_bw_ul = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "marBwUl");
|
||||
|
||||
if (mar_bw_ul) {
|
||||
if (!cJSON_IsString(mar_bw_ul)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [mar_bw_ul]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *tos_tr_cl = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "tosTrCl");
|
||||
|
||||
if (tos_tr_cl) {
|
||||
if (!cJSON_IsString(tos_tr_cl)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [tos_tr_cl]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *flow_usage = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "flowUsage");
|
||||
|
||||
OpenAPI_flow_usage_e flow_usageVariable;
|
||||
if (flow_usage) {
|
||||
if (!cJSON_IsString(flow_usage)) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_parseFromJSON() failed [flow_usage]");
|
||||
goto end;
|
||||
}
|
||||
flow_usageVariable = OpenAPI_flow_usage_FromString(flow_usage->valuestring);
|
||||
}
|
||||
|
||||
cJSON *tscai_input_dl = cJSON_GetObjectItemCaseSensitive(media_sub_component_rmJSON, "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_sub_component_rmJSON, "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_sub_component_rm_local_var = OpenAPI_media_sub_component_rm_create (
|
||||
af_sig_protocol ? af_sig_protocolVariable : 0,
|
||||
ethf_descs ? ethf_descsList : NULL,
|
||||
f_num->valuedouble,
|
||||
f_descs ? f_descsList : 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,
|
||||
tos_tr_cl ? ogs_strdup(tos_tr_cl->valuestring) : NULL,
|
||||
flow_usage ? flow_usageVariable : 0,
|
||||
tscai_input_dl ? tscai_input_dl_local_nonprim : NULL,
|
||||
tscai_input_ul ? tscai_input_ul_local_nonprim : NULL
|
||||
);
|
||||
|
||||
return media_sub_component_rm_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_media_sub_component_rm_t *OpenAPI_media_sub_component_rm_copy(OpenAPI_media_sub_component_rm_t *dst, OpenAPI_media_sub_component_rm_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_media_sub_component_rm_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_media_sub_component_rm_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_sub_component_rm_free(dst);
|
||||
dst = OpenAPI_media_sub_component_rm_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue