open5gs/lib/sbi/openapi/model/tsn_qos_container_rm.c

143 lines
4.3 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "tsn_qos_container_rm.h"
OpenAPI_tsn_qos_container_rm_t *OpenAPI_tsn_qos_container_rm_create(
int max_tsc_burst_size,
int tsc_pack_delay,
int tsc_prio_level
)
{
OpenAPI_tsn_qos_container_rm_t *tsn_qos_container_rm_local_var = OpenAPI_malloc(sizeof(OpenAPI_tsn_qos_container_rm_t));
if (!tsn_qos_container_rm_local_var) {
return NULL;
}
tsn_qos_container_rm_local_var->max_tsc_burst_size = max_tsc_burst_size;
tsn_qos_container_rm_local_var->tsc_pack_delay = tsc_pack_delay;
tsn_qos_container_rm_local_var->tsc_prio_level = tsc_prio_level;
return tsn_qos_container_rm_local_var;
}
void OpenAPI_tsn_qos_container_rm_free(OpenAPI_tsn_qos_container_rm_t *tsn_qos_container_rm)
{
if (NULL == tsn_qos_container_rm) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(tsn_qos_container_rm);
}
cJSON *OpenAPI_tsn_qos_container_rm_convertToJSON(OpenAPI_tsn_qos_container_rm_t *tsn_qos_container_rm)
{
cJSON *item = NULL;
if (tsn_qos_container_rm == NULL) {
ogs_error("OpenAPI_tsn_qos_container_rm_convertToJSON() failed [TsnQosContainerRm]");
return NULL;
}
item = cJSON_CreateObject();
if (tsn_qos_container_rm->max_tsc_burst_size) {
if (cJSON_AddNumberToObject(item, "maxTscBurstSize", tsn_qos_container_rm->max_tsc_burst_size) == NULL) {
ogs_error("OpenAPI_tsn_qos_container_rm_convertToJSON() failed [max_tsc_burst_size]");
goto end;
}
}
if (tsn_qos_container_rm->tsc_pack_delay) {
if (cJSON_AddNumberToObject(item, "tscPackDelay", tsn_qos_container_rm->tsc_pack_delay) == NULL) {
ogs_error("OpenAPI_tsn_qos_container_rm_convertToJSON() failed [tsc_pack_delay]");
goto end;
}
}
if (tsn_qos_container_rm->tsc_prio_level) {
if (cJSON_AddNumberToObject(item, "tscPrioLevel", tsn_qos_container_rm->tsc_prio_level) == NULL) {
ogs_error("OpenAPI_tsn_qos_container_rm_convertToJSON() failed [tsc_prio_level]");
goto end;
}
}
end:
return item;
}
OpenAPI_tsn_qos_container_rm_t *OpenAPI_tsn_qos_container_rm_parseFromJSON(cJSON *tsn_qos_container_rmJSON)
{
OpenAPI_tsn_qos_container_rm_t *tsn_qos_container_rm_local_var = NULL;
cJSON *max_tsc_burst_size = cJSON_GetObjectItemCaseSensitive(tsn_qos_container_rmJSON, "maxTscBurstSize");
if (max_tsc_burst_size) {
if (!cJSON_IsNumber(max_tsc_burst_size)) {
ogs_error("OpenAPI_tsn_qos_container_rm_parseFromJSON() failed [max_tsc_burst_size]");
goto end;
}
}
cJSON *tsc_pack_delay = cJSON_GetObjectItemCaseSensitive(tsn_qos_container_rmJSON, "tscPackDelay");
if (tsc_pack_delay) {
if (!cJSON_IsNumber(tsc_pack_delay)) {
ogs_error("OpenAPI_tsn_qos_container_rm_parseFromJSON() failed [tsc_pack_delay]");
goto end;
}
}
cJSON *tsc_prio_level = cJSON_GetObjectItemCaseSensitive(tsn_qos_container_rmJSON, "tscPrioLevel");
if (tsc_prio_level) {
if (!cJSON_IsNumber(tsc_prio_level)) {
ogs_error("OpenAPI_tsn_qos_container_rm_parseFromJSON() failed [tsc_prio_level]");
goto end;
}
}
tsn_qos_container_rm_local_var = OpenAPI_tsn_qos_container_rm_create (
max_tsc_burst_size ? max_tsc_burst_size->valuedouble : 0,
tsc_pack_delay ? tsc_pack_delay->valuedouble : 0,
tsc_prio_level ? tsc_prio_level->valuedouble : 0
);
return tsn_qos_container_rm_local_var;
end:
return NULL;
}
OpenAPI_tsn_qos_container_rm_t *OpenAPI_tsn_qos_container_rm_copy(OpenAPI_tsn_qos_container_rm_t *dst, OpenAPI_tsn_qos_container_rm_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_tsn_qos_container_rm_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_tsn_qos_container_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_tsn_qos_container_rm_free(dst);
dst = OpenAPI_tsn_qos_container_rm_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}