open5gs/lib/sbi/custom/patch_item.c

188 lines
5.2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "patch_item.h"
OpenAPI_patch_item_t *OpenAPI_patch_item_create(
OpenAPI_patch_operation_e op,
char *path,
char *from,
OpenAPI_any_type_t *value
)
{
OpenAPI_patch_item_t *patch_item_local_var = ogs_malloc(sizeof(OpenAPI_patch_item_t));
ogs_assert(patch_item_local_var);
patch_item_local_var->op = op;
patch_item_local_var->path = path;
patch_item_local_var->from = from;
patch_item_local_var->value = value;
return patch_item_local_var;
}
void OpenAPI_patch_item_free(OpenAPI_patch_item_t *patch_item)
{
if (NULL == patch_item) {
return;
}
ogs_free(patch_item->path);
ogs_free(patch_item->from);
OpenAPI_any_type_free(patch_item->value);
ogs_free(patch_item);
}
cJSON *OpenAPI_patch_item_convertToJSON(OpenAPI_patch_item_t *patch_item)
{
cJSON *item = NULL;
if (patch_item == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [PatchItem]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "op", OpenAPI_patch_operation_ToString(patch_item->op)) == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [op]");
goto end;
}
if (cJSON_AddStringToObject(item, "path", patch_item->path) == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [path]");
goto end;
}
if (patch_item->from) {
if (cJSON_AddStringToObject(item, "from", patch_item->from) == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [from]");
goto end;
}
}
if (patch_item->value) {
if (OpenAPI_IsString(patch_item->value)) {
ogs_assert(patch_item->value->valuestring);
if (cJSON_AddStringToObject(
item, "value", patch_item->value->valuestring) == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [value]");
goto end;
}
} else if (OpenAPI_IsNumber(patch_item->value)) {
if (cJSON_AddNumberToObject(
item, "value", patch_item->value->valuedouble) == NULL) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [value]");
goto end;
}
} else if (OpenAPI_IsBool(patch_item->value)) {
if (cJSON_AddBoolToObject(
item, "value", OpenAPI_IsTrue(patch_item->value))) {
ogs_error("OpenAPI_patch_item_convertToJSON() failed [value]");
goto end;
}
}
}
end:
return item;
}
OpenAPI_patch_item_t *OpenAPI_patch_item_parseFromJSON(cJSON *patch_itemJSON)
{
OpenAPI_patch_item_t *patch_item_local_var = NULL;
cJSON *op = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "op");
if (!op) {
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [op]");
goto end;
}
OpenAPI_patch_operation_e opVariable;
if (!cJSON_IsString(op)) {
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [op]");
goto end;
}
opVariable = OpenAPI_patch_operation_FromString(op->valuestring);
cJSON *path = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "path");
if (!path) {
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [path]");
goto end;
}
if (!cJSON_IsString(path)) {
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [path]");
goto end;
}
cJSON *from = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "from");
if (from) {
if (!cJSON_IsString(from)) {
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [from]");
goto end;
}
}
cJSON *value = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "value");
OpenAPI_any_type_t *any_type_value = NULL;
if (value) {
if (cJSON_IsString(value))
any_type_value = OpenAPI_any_type_create_string(value->valuestring);
if (cJSON_IsNumber(value))
any_type_value = OpenAPI_any_type_create_number(value->valuedouble);
if (cJSON_IsTrue(value))
any_type_value = OpenAPI_any_type_create_true();
if (cJSON_IsFalse(value))
any_type_value = OpenAPI_any_type_create_false();
}
patch_item_local_var = OpenAPI_patch_item_create (
opVariable,
ogs_strdup(path->valuestring),
from ? ogs_strdup(from->valuestring) : NULL,
any_type_value
);
return patch_item_local_var;
end:
return NULL;
}
OpenAPI_patch_item_t *OpenAPI_patch_item_copy(OpenAPI_patch_item_t *dst, OpenAPI_patch_item_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_patch_item_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_patch_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_patch_item_free(dst);
dst = OpenAPI_patch_item_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}