open5gs/lib/sbi/openapi/model/qos_notification_control_info.c
2021-05-29 15:56:12 +09:00

181 lines
6.2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "qos_notification_control_info.h"
OpenAPI_qos_notification_control_info_t *OpenAPI_qos_notification_control_info_create(
OpenAPI_qos_notif_type_t *notif_type,
OpenAPI_list_t *flows,
char *alt_ser_req
)
{
OpenAPI_qos_notification_control_info_t *qos_notification_control_info_local_var = OpenAPI_malloc(sizeof(OpenAPI_qos_notification_control_info_t));
if (!qos_notification_control_info_local_var) {
return NULL;
}
qos_notification_control_info_local_var->notif_type = notif_type;
qos_notification_control_info_local_var->flows = flows;
qos_notification_control_info_local_var->alt_ser_req = alt_ser_req;
return qos_notification_control_info_local_var;
}
void OpenAPI_qos_notification_control_info_free(OpenAPI_qos_notification_control_info_t *qos_notification_control_info)
{
if (NULL == qos_notification_control_info) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_qos_notif_type_free(qos_notification_control_info->notif_type);
OpenAPI_list_for_each(qos_notification_control_info->flows, node) {
OpenAPI_flows_free(node->data);
}
OpenAPI_list_free(qos_notification_control_info->flows);
ogs_free(qos_notification_control_info->alt_ser_req);
ogs_free(qos_notification_control_info);
}
cJSON *OpenAPI_qos_notification_control_info_convertToJSON(OpenAPI_qos_notification_control_info_t *qos_notification_control_info)
{
cJSON *item = NULL;
if (qos_notification_control_info == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [QosNotificationControlInfo]");
return NULL;
}
item = cJSON_CreateObject();
cJSON *notif_type_local_JSON = OpenAPI_qos_notif_type_convertToJSON(qos_notification_control_info->notif_type);
if (notif_type_local_JSON == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [notif_type]");
goto end;
}
cJSON_AddItemToObject(item, "notifType", notif_type_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [notif_type]");
goto end;
}
if (qos_notification_control_info->flows) {
cJSON *flowsList = cJSON_AddArrayToObject(item, "flows");
if (flowsList == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [flows]");
goto end;
}
OpenAPI_lnode_t *flows_node;
if (qos_notification_control_info->flows) {
OpenAPI_list_for_each(qos_notification_control_info->flows, flows_node) {
cJSON *itemLocal = OpenAPI_flows_convertToJSON(flows_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [flows]");
goto end;
}
cJSON_AddItemToArray(flowsList, itemLocal);
}
}
}
if (qos_notification_control_info->alt_ser_req) {
if (cJSON_AddStringToObject(item, "altSerReq", qos_notification_control_info->alt_ser_req) == NULL) {
ogs_error("OpenAPI_qos_notification_control_info_convertToJSON() failed [alt_ser_req]");
goto end;
}
}
end:
return item;
}
OpenAPI_qos_notification_control_info_t *OpenAPI_qos_notification_control_info_parseFromJSON(cJSON *qos_notification_control_infoJSON)
{
OpenAPI_qos_notification_control_info_t *qos_notification_control_info_local_var = NULL;
cJSON *notif_type = cJSON_GetObjectItemCaseSensitive(qos_notification_control_infoJSON, "notifType");
if (!notif_type) {
ogs_error("OpenAPI_qos_notification_control_info_parseFromJSON() failed [notif_type]");
goto end;
}
OpenAPI_qos_notif_type_t *notif_type_local_nonprim = NULL;
notif_type_local_nonprim = OpenAPI_qos_notif_type_parseFromJSON(notif_type);
cJSON *flows = cJSON_GetObjectItemCaseSensitive(qos_notification_control_infoJSON, "flows");
OpenAPI_list_t *flowsList;
if (flows) {
cJSON *flows_local_nonprimitive;
if (!cJSON_IsArray(flows)) {
ogs_error("OpenAPI_qos_notification_control_info_parseFromJSON() failed [flows]");
goto end;
}
flowsList = OpenAPI_list_create();
cJSON_ArrayForEach(flows_local_nonprimitive, flows ) {
if (!cJSON_IsObject(flows_local_nonprimitive)) {
ogs_error("OpenAPI_qos_notification_control_info_parseFromJSON() failed [flows]");
goto end;
}
OpenAPI_flows_t *flowsItem = OpenAPI_flows_parseFromJSON(flows_local_nonprimitive);
OpenAPI_list_add(flowsList, flowsItem);
}
}
cJSON *alt_ser_req = cJSON_GetObjectItemCaseSensitive(qos_notification_control_infoJSON, "altSerReq");
if (alt_ser_req) {
if (!cJSON_IsString(alt_ser_req)) {
ogs_error("OpenAPI_qos_notification_control_info_parseFromJSON() failed [alt_ser_req]");
goto end;
}
}
qos_notification_control_info_local_var = OpenAPI_qos_notification_control_info_create (
notif_type_local_nonprim,
flows ? flowsList : NULL,
alt_ser_req ? ogs_strdup(alt_ser_req->valuestring) : NULL
);
return qos_notification_control_info_local_var;
end:
return NULL;
}
OpenAPI_qos_notification_control_info_t *OpenAPI_qos_notification_control_info_copy(OpenAPI_qos_notification_control_info_t *dst, OpenAPI_qos_notification_control_info_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_qos_notification_control_info_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_qos_notification_control_info_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_notification_control_info_free(dst);
dst = OpenAPI_qos_notification_control_info_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}