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

298 lines
9.5 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "trigger.h"
OpenAPI_trigger_t *OpenAPI_trigger_create(
OpenAPI_trigger_type_t *trigger_type,
OpenAPI_trigger_category_t *trigger_category,
bool is_time_limit,
int time_limit,
bool is_volume_limit,
int volume_limit,
bool is_volume_limit64,
int volume_limit64,
bool is_event_limit,
int event_limit,
bool is_max_number_ofccc,
int max_number_ofccc,
char *tariff_time_change
)
{
OpenAPI_trigger_t *trigger_local_var = ogs_malloc(sizeof(OpenAPI_trigger_t));
ogs_assert(trigger_local_var);
trigger_local_var->trigger_type = trigger_type;
trigger_local_var->trigger_category = trigger_category;
trigger_local_var->is_time_limit = is_time_limit;
trigger_local_var->time_limit = time_limit;
trigger_local_var->is_volume_limit = is_volume_limit;
trigger_local_var->volume_limit = volume_limit;
trigger_local_var->is_volume_limit64 = is_volume_limit64;
trigger_local_var->volume_limit64 = volume_limit64;
trigger_local_var->is_event_limit = is_event_limit;
trigger_local_var->event_limit = event_limit;
trigger_local_var->is_max_number_ofccc = is_max_number_ofccc;
trigger_local_var->max_number_ofccc = max_number_ofccc;
trigger_local_var->tariff_time_change = tariff_time_change;
return trigger_local_var;
}
void OpenAPI_trigger_free(OpenAPI_trigger_t *trigger)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == trigger) {
return;
}
if (trigger->trigger_type) {
OpenAPI_trigger_type_free(trigger->trigger_type);
trigger->trigger_type = NULL;
}
if (trigger->trigger_category) {
OpenAPI_trigger_category_free(trigger->trigger_category);
trigger->trigger_category = NULL;
}
if (trigger->tariff_time_change) {
ogs_free(trigger->tariff_time_change);
trigger->tariff_time_change = NULL;
}
ogs_free(trigger);
}
cJSON *OpenAPI_trigger_convertToJSON(OpenAPI_trigger_t *trigger)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (trigger == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [Trigger]");
return NULL;
}
item = cJSON_CreateObject();
if (!trigger->trigger_type) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_type]");
return NULL;
}
cJSON *trigger_type_local_JSON = OpenAPI_trigger_type_convertToJSON(trigger->trigger_type);
if (trigger_type_local_JSON == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_type]");
goto end;
}
cJSON_AddItemToObject(item, "triggerType", trigger_type_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_type]");
goto end;
}
if (!trigger->trigger_category) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_category]");
return NULL;
}
cJSON *trigger_category_local_JSON = OpenAPI_trigger_category_convertToJSON(trigger->trigger_category);
if (trigger_category_local_JSON == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_category]");
goto end;
}
cJSON_AddItemToObject(item, "triggerCategory", trigger_category_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [trigger_category]");
goto end;
}
if (trigger->is_time_limit) {
if (cJSON_AddNumberToObject(item, "timeLimit", trigger->time_limit) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [time_limit]");
goto end;
}
}
if (trigger->is_volume_limit) {
if (cJSON_AddNumberToObject(item, "volumeLimit", trigger->volume_limit) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [volume_limit]");
goto end;
}
}
if (trigger->is_volume_limit64) {
if (cJSON_AddNumberToObject(item, "volumeLimit64", trigger->volume_limit64) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [volume_limit64]");
goto end;
}
}
if (trigger->is_event_limit) {
if (cJSON_AddNumberToObject(item, "eventLimit", trigger->event_limit) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [event_limit]");
goto end;
}
}
if (trigger->is_max_number_ofccc) {
if (cJSON_AddNumberToObject(item, "maxNumberOfccc", trigger->max_number_ofccc) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [max_number_ofccc]");
goto end;
}
}
if (trigger->tariff_time_change) {
if (cJSON_AddStringToObject(item, "tariffTimeChange", trigger->tariff_time_change) == NULL) {
ogs_error("OpenAPI_trigger_convertToJSON() failed [tariff_time_change]");
goto end;
}
}
end:
return item;
}
OpenAPI_trigger_t *OpenAPI_trigger_parseFromJSON(cJSON *triggerJSON)
{
OpenAPI_trigger_t *trigger_local_var = NULL;
OpenAPI_lnode_t *node = NULL;
cJSON *trigger_type = NULL;
OpenAPI_trigger_type_t *trigger_type_local_nonprim = NULL;
cJSON *trigger_category = NULL;
OpenAPI_trigger_category_t *trigger_category_local_nonprim = NULL;
cJSON *time_limit = NULL;
cJSON *volume_limit = NULL;
cJSON *volume_limit64 = NULL;
cJSON *event_limit = NULL;
cJSON *max_number_ofccc = NULL;
cJSON *tariff_time_change = NULL;
trigger_type = cJSON_GetObjectItemCaseSensitive(triggerJSON, "triggerType");
if (!trigger_type) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [trigger_type]");
goto end;
}
trigger_type_local_nonprim = OpenAPI_trigger_type_parseFromJSON(trigger_type);
if (!trigger_type_local_nonprim) {
ogs_error("OpenAPI_trigger_type_parseFromJSON failed [trigger_type]");
goto end;
}
trigger_category = cJSON_GetObjectItemCaseSensitive(triggerJSON, "triggerCategory");
if (!trigger_category) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [trigger_category]");
goto end;
}
trigger_category_local_nonprim = OpenAPI_trigger_category_parseFromJSON(trigger_category);
if (!trigger_category_local_nonprim) {
ogs_error("OpenAPI_trigger_category_parseFromJSON failed [trigger_category]");
goto end;
}
time_limit = cJSON_GetObjectItemCaseSensitive(triggerJSON, "timeLimit");
if (time_limit) {
if (!cJSON_IsNumber(time_limit)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [time_limit]");
goto end;
}
}
volume_limit = cJSON_GetObjectItemCaseSensitive(triggerJSON, "volumeLimit");
if (volume_limit) {
if (!cJSON_IsNumber(volume_limit)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [volume_limit]");
goto end;
}
}
volume_limit64 = cJSON_GetObjectItemCaseSensitive(triggerJSON, "volumeLimit64");
if (volume_limit64) {
if (!cJSON_IsNumber(volume_limit64)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [volume_limit64]");
goto end;
}
}
event_limit = cJSON_GetObjectItemCaseSensitive(triggerJSON, "eventLimit");
if (event_limit) {
if (!cJSON_IsNumber(event_limit)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [event_limit]");
goto end;
}
}
max_number_ofccc = cJSON_GetObjectItemCaseSensitive(triggerJSON, "maxNumberOfccc");
if (max_number_ofccc) {
if (!cJSON_IsNumber(max_number_ofccc)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [max_number_ofccc]");
goto end;
}
}
tariff_time_change = cJSON_GetObjectItemCaseSensitive(triggerJSON, "tariffTimeChange");
if (tariff_time_change) {
if (!cJSON_IsString(tariff_time_change) && !cJSON_IsNull(tariff_time_change)) {
ogs_error("OpenAPI_trigger_parseFromJSON() failed [tariff_time_change]");
goto end;
}
}
trigger_local_var = OpenAPI_trigger_create (
trigger_type_local_nonprim,
trigger_category_local_nonprim,
time_limit ? true : false,
time_limit ? time_limit->valuedouble : 0,
volume_limit ? true : false,
volume_limit ? volume_limit->valuedouble : 0,
volume_limit64 ? true : false,
volume_limit64 ? volume_limit64->valuedouble : 0,
event_limit ? true : false,
event_limit ? event_limit->valuedouble : 0,
max_number_ofccc ? true : false,
max_number_ofccc ? max_number_ofccc->valuedouble : 0,
tariff_time_change && !cJSON_IsNull(tariff_time_change) ? ogs_strdup(tariff_time_change->valuestring) : NULL
);
return trigger_local_var;
end:
if (trigger_type_local_nonprim) {
OpenAPI_trigger_type_free(trigger_type_local_nonprim);
trigger_type_local_nonprim = NULL;
}
if (trigger_category_local_nonprim) {
OpenAPI_trigger_category_free(trigger_category_local_nonprim);
trigger_category_local_nonprim = NULL;
}
return NULL;
}
OpenAPI_trigger_t *OpenAPI_trigger_copy(OpenAPI_trigger_t *dst, OpenAPI_trigger_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_trigger_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_trigger_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_trigger_free(dst);
dst = OpenAPI_trigger_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}