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

171 lines
4.3 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "pfd_data.h"
OpenAPI_pfd_data_t *OpenAPI_pfd_data_create(
OpenAPI_list_t *app_ids,
OpenAPI_list_t *af_ids
)
{
OpenAPI_pfd_data_t *pfd_data_local_var = ogs_malloc(sizeof(OpenAPI_pfd_data_t));
ogs_assert(pfd_data_local_var);
pfd_data_local_var->app_ids = app_ids;
pfd_data_local_var->af_ids = af_ids;
return pfd_data_local_var;
}
void OpenAPI_pfd_data_free(OpenAPI_pfd_data_t *pfd_data)
{
if (NULL == pfd_data) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_list_for_each(pfd_data->app_ids, node) {
ogs_free(node->data);
}
OpenAPI_list_free(pfd_data->app_ids);
OpenAPI_list_for_each(pfd_data->af_ids, node) {
ogs_free(node->data);
}
OpenAPI_list_free(pfd_data->af_ids);
ogs_free(pfd_data);
}
cJSON *OpenAPI_pfd_data_convertToJSON(OpenAPI_pfd_data_t *pfd_data)
{
cJSON *item = NULL;
if (pfd_data == NULL) {
ogs_error("OpenAPI_pfd_data_convertToJSON() failed [PfdData]");
return NULL;
}
item = cJSON_CreateObject();
if (pfd_data->app_ids) {
cJSON *app_ids = cJSON_AddArrayToObject(item, "appIds");
if (app_ids == NULL) {
ogs_error("OpenAPI_pfd_data_convertToJSON() failed [app_ids]");
goto end;
}
OpenAPI_lnode_t *app_ids_node;
OpenAPI_list_for_each(pfd_data->app_ids, app_ids_node) {
if (cJSON_AddStringToObject(app_ids, "", (char*)app_ids_node->data) == NULL) {
ogs_error("OpenAPI_pfd_data_convertToJSON() failed [app_ids]");
goto end;
}
}
}
if (pfd_data->af_ids) {
cJSON *af_ids = cJSON_AddArrayToObject(item, "afIds");
if (af_ids == NULL) {
ogs_error("OpenAPI_pfd_data_convertToJSON() failed [af_ids]");
goto end;
}
OpenAPI_lnode_t *af_ids_node;
OpenAPI_list_for_each(pfd_data->af_ids, af_ids_node) {
if (cJSON_AddStringToObject(af_ids, "", (char*)af_ids_node->data) == NULL) {
ogs_error("OpenAPI_pfd_data_convertToJSON() failed [af_ids]");
goto end;
}
}
}
end:
return item;
}
OpenAPI_pfd_data_t *OpenAPI_pfd_data_parseFromJSON(cJSON *pfd_dataJSON)
{
OpenAPI_pfd_data_t *pfd_data_local_var = NULL;
cJSON *app_ids = cJSON_GetObjectItemCaseSensitive(pfd_dataJSON, "appIds");
OpenAPI_list_t *app_idsList;
if (app_ids) {
cJSON *app_ids_local;
if (!cJSON_IsArray(app_ids)) {
ogs_error("OpenAPI_pfd_data_parseFromJSON() failed [app_ids]");
goto end;
}
app_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(app_ids_local, app_ids) {
if (!cJSON_IsString(app_ids_local)) {
ogs_error("OpenAPI_pfd_data_parseFromJSON() failed [app_ids]");
goto end;
}
OpenAPI_list_add(app_idsList, ogs_strdup(app_ids_local->valuestring));
}
}
cJSON *af_ids = cJSON_GetObjectItemCaseSensitive(pfd_dataJSON, "afIds");
OpenAPI_list_t *af_idsList;
if (af_ids) {
cJSON *af_ids_local;
if (!cJSON_IsArray(af_ids)) {
ogs_error("OpenAPI_pfd_data_parseFromJSON() failed [af_ids]");
goto end;
}
af_idsList = OpenAPI_list_create();
cJSON_ArrayForEach(af_ids_local, af_ids) {
if (!cJSON_IsString(af_ids_local)) {
ogs_error("OpenAPI_pfd_data_parseFromJSON() failed [af_ids]");
goto end;
}
OpenAPI_list_add(af_idsList, ogs_strdup(af_ids_local->valuestring));
}
}
pfd_data_local_var = OpenAPI_pfd_data_create (
app_ids ? app_idsList : NULL,
af_ids ? af_idsList : NULL
);
return pfd_data_local_var;
end:
return NULL;
}
OpenAPI_pfd_data_t *OpenAPI_pfd_data_copy(OpenAPI_pfd_data_t *dst, OpenAPI_pfd_data_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_pfd_data_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_pfd_data_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_pfd_data_free(dst);
dst = OpenAPI_pfd_data_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}