mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
219
lib/sbi/openapi/model/qos_flow_setup_item.c
Normal file
219
lib/sbi/openapi/model/qos_flow_setup_item.c
Normal file
|
|
@ -0,0 +1,219 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "qos_flow_setup_item.h"
|
||||
|
||||
OpenAPI_qos_flow_setup_item_t *OpenAPI_qos_flow_setup_item_create(
|
||||
int qfi,
|
||||
char qos_rules,
|
||||
int ebi,
|
||||
char qos_flow_description,
|
||||
OpenAPI_qos_flow_profile_t *qos_flow_profile,
|
||||
OpenAPI_qos_flow_access_type_t *associated_an_type
|
||||
)
|
||||
{
|
||||
OpenAPI_qos_flow_setup_item_t *qos_flow_setup_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_qos_flow_setup_item_t));
|
||||
if (!qos_flow_setup_item_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
qos_flow_setup_item_local_var->qfi = qfi;
|
||||
qos_flow_setup_item_local_var->qos_rules = qos_rules;
|
||||
qos_flow_setup_item_local_var->ebi = ebi;
|
||||
qos_flow_setup_item_local_var->qos_flow_description = qos_flow_description;
|
||||
qos_flow_setup_item_local_var->qos_flow_profile = qos_flow_profile;
|
||||
qos_flow_setup_item_local_var->associated_an_type = associated_an_type;
|
||||
|
||||
return qos_flow_setup_item_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_qos_flow_setup_item_free(OpenAPI_qos_flow_setup_item_t *qos_flow_setup_item)
|
||||
{
|
||||
if (NULL == qos_flow_setup_item) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_qos_flow_profile_free(qos_flow_setup_item->qos_flow_profile);
|
||||
OpenAPI_qos_flow_access_type_free(qos_flow_setup_item->associated_an_type);
|
||||
ogs_free(qos_flow_setup_item);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_qos_flow_setup_item_convertToJSON(OpenAPI_qos_flow_setup_item_t *qos_flow_setup_item)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (qos_flow_setup_item == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [QosFlowSetupItem]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!qos_flow_setup_item->qfi) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qfi]");
|
||||
goto end;
|
||||
}
|
||||
if (cJSON_AddNumberToObject(item, "qfi", qos_flow_setup_item->qfi) == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qfi]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!qos_flow_setup_item->qos_rules) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qos_rules]");
|
||||
goto end;
|
||||
}
|
||||
if (cJSON_AddNumberToObject(item, "qosRules", qos_flow_setup_item->qos_rules) == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qos_rules]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (qos_flow_setup_item->ebi) {
|
||||
if (cJSON_AddNumberToObject(item, "ebi", qos_flow_setup_item->ebi) == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [ebi]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (qos_flow_setup_item->qos_flow_description) {
|
||||
if (cJSON_AddNumberToObject(item, "qosFlowDescription", qos_flow_setup_item->qos_flow_description) == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qos_flow_description]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (qos_flow_setup_item->qos_flow_profile) {
|
||||
cJSON *qos_flow_profile_local_JSON = OpenAPI_qos_flow_profile_convertToJSON(qos_flow_setup_item->qos_flow_profile);
|
||||
if (qos_flow_profile_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qos_flow_profile]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "qosFlowProfile", qos_flow_profile_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [qos_flow_profile]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (qos_flow_setup_item->associated_an_type) {
|
||||
cJSON *associated_an_type_local_JSON = OpenAPI_qos_flow_access_type_convertToJSON(qos_flow_setup_item->associated_an_type);
|
||||
if (associated_an_type_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [associated_an_type]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "associatedAnType", associated_an_type_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_convertToJSON() failed [associated_an_type]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_qos_flow_setup_item_t *OpenAPI_qos_flow_setup_item_parseFromJSON(cJSON *qos_flow_setup_itemJSON)
|
||||
{
|
||||
OpenAPI_qos_flow_setup_item_t *qos_flow_setup_item_local_var = NULL;
|
||||
cJSON *qfi = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "qfi");
|
||||
if (!qfi) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [qfi]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsNumber(qfi)) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [qfi]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *qos_rules = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "qosRules");
|
||||
if (!qos_rules) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [qos_rules]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsNumber(qos_rules)) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [qos_rules]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *ebi = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "ebi");
|
||||
|
||||
if (ebi) {
|
||||
if (!cJSON_IsNumber(ebi)) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [ebi]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *qos_flow_description = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "qosFlowDescription");
|
||||
|
||||
if (qos_flow_description) {
|
||||
if (!cJSON_IsNumber(qos_flow_description)) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_parseFromJSON() failed [qos_flow_description]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *qos_flow_profile = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "qosFlowProfile");
|
||||
|
||||
OpenAPI_qos_flow_profile_t *qos_flow_profile_local_nonprim = NULL;
|
||||
if (qos_flow_profile) {
|
||||
qos_flow_profile_local_nonprim = OpenAPI_qos_flow_profile_parseFromJSON(qos_flow_profile);
|
||||
}
|
||||
|
||||
cJSON *associated_an_type = cJSON_GetObjectItemCaseSensitive(qos_flow_setup_itemJSON, "associatedAnType");
|
||||
|
||||
OpenAPI_qos_flow_access_type_t *associated_an_type_local_nonprim = NULL;
|
||||
if (associated_an_type) {
|
||||
associated_an_type_local_nonprim = OpenAPI_qos_flow_access_type_parseFromJSON(associated_an_type);
|
||||
}
|
||||
|
||||
qos_flow_setup_item_local_var = OpenAPI_qos_flow_setup_item_create (
|
||||
qfi->valuedouble,
|
||||
qos_rules->valueint,
|
||||
ebi ? ebi->valuedouble : 0,
|
||||
qos_flow_description ? qos_flow_description->valueint : 0,
|
||||
qos_flow_profile ? qos_flow_profile_local_nonprim : NULL,
|
||||
associated_an_type ? associated_an_type_local_nonprim : NULL
|
||||
);
|
||||
|
||||
return qos_flow_setup_item_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_qos_flow_setup_item_t *OpenAPI_qos_flow_setup_item_copy(OpenAPI_qos_flow_setup_item_t *dst, OpenAPI_qos_flow_setup_item_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_qos_flow_setup_item_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_qos_flow_setup_item_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_qos_flow_setup_item_free(dst);
|
||||
dst = OpenAPI_qos_flow_setup_item_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue