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

127 lines
3.5 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "confirmation_data.h"
OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_create(
char *res_star,
char *supported_features
)
{
OpenAPI_confirmation_data_t *confirmation_data_local_var = OpenAPI_malloc(sizeof(OpenAPI_confirmation_data_t));
if (!confirmation_data_local_var) {
return NULL;
}
confirmation_data_local_var->res_star = res_star;
confirmation_data_local_var->supported_features = supported_features;
return confirmation_data_local_var;
}
void OpenAPI_confirmation_data_free(OpenAPI_confirmation_data_t *confirmation_data)
{
if (NULL == confirmation_data) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(confirmation_data->res_star);
ogs_free(confirmation_data->supported_features);
ogs_free(confirmation_data);
}
cJSON *OpenAPI_confirmation_data_convertToJSON(OpenAPI_confirmation_data_t *confirmation_data)
{
cJSON *item = NULL;
if (confirmation_data == NULL) {
ogs_error("OpenAPI_confirmation_data_convertToJSON() failed [ConfirmationData]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "resStar", confirmation_data->res_star) == NULL) {
ogs_error("OpenAPI_confirmation_data_convertToJSON() failed [res_star]");
goto end;
}
if (confirmation_data->supported_features) {
if (cJSON_AddStringToObject(item, "supportedFeatures", confirmation_data->supported_features) == NULL) {
ogs_error("OpenAPI_confirmation_data_convertToJSON() failed [supported_features]");
goto end;
}
}
end:
return item;
}
OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_parseFromJSON(cJSON *confirmation_dataJSON)
{
OpenAPI_confirmation_data_t *confirmation_data_local_var = NULL;
cJSON *res_star = cJSON_GetObjectItemCaseSensitive(confirmation_dataJSON, "resStar");
if (!res_star) {
ogs_error("OpenAPI_confirmation_data_parseFromJSON() failed [res_star]");
goto end;
}
if (!cJSON_IsString(res_star)) {
ogs_error("OpenAPI_confirmation_data_parseFromJSON() failed [res_star]");
goto end;
}
cJSON *supported_features = cJSON_GetObjectItemCaseSensitive(confirmation_dataJSON, "supportedFeatures");
if (supported_features) {
if (!cJSON_IsString(supported_features)) {
ogs_error("OpenAPI_confirmation_data_parseFromJSON() failed [supported_features]");
goto end;
}
}
confirmation_data_local_var = OpenAPI_confirmation_data_create (
ogs_strdup_or_assert(res_star->valuestring),
supported_features ? ogs_strdup_or_assert(supported_features->valuestring) : NULL
);
return confirmation_data_local_var;
end:
return NULL;
}
OpenAPI_confirmation_data_t *OpenAPI_confirmation_data_copy(OpenAPI_confirmation_data_t *dst, OpenAPI_confirmation_data_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_confirmation_data_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_confirmation_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_confirmation_data_free(dst);
dst = OpenAPI_confirmation_data_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}