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

126 lines
3.2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "ipv6_prefix_range.h"
OpenAPI_ipv6_prefix_range_t *OpenAPI_ipv6_prefix_range_create(
char *start,
char *end
)
{
OpenAPI_ipv6_prefix_range_t *ipv6_prefix_range_local_var = OpenAPI_malloc(sizeof(OpenAPI_ipv6_prefix_range_t));
if (!ipv6_prefix_range_local_var) {
return NULL;
}
ipv6_prefix_range_local_var->start = start;
ipv6_prefix_range_local_var->end = end;
return ipv6_prefix_range_local_var;
}
void OpenAPI_ipv6_prefix_range_free(OpenAPI_ipv6_prefix_range_t *ipv6_prefix_range)
{
if (NULL == ipv6_prefix_range) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(ipv6_prefix_range->start);
ogs_free(ipv6_prefix_range->end);
ogs_free(ipv6_prefix_range);
}
cJSON *OpenAPI_ipv6_prefix_range_convertToJSON(OpenAPI_ipv6_prefix_range_t *ipv6_prefix_range)
{
cJSON *item = NULL;
if (ipv6_prefix_range == NULL) {
ogs_error("OpenAPI_ipv6_prefix_range_convertToJSON() failed [Ipv6PrefixRange]");
return NULL;
}
item = cJSON_CreateObject();
if (ipv6_prefix_range->start) {
if (cJSON_AddStringToObject(item, "start", ipv6_prefix_range->start) == NULL) {
ogs_error("OpenAPI_ipv6_prefix_range_convertToJSON() failed [start]");
goto end;
}
}
if (ipv6_prefix_range->end) {
if (cJSON_AddStringToObject(item, "end", ipv6_prefix_range->end) == NULL) {
ogs_error("OpenAPI_ipv6_prefix_range_convertToJSON() failed [end]");
goto end;
}
}
end:
return item;
}
OpenAPI_ipv6_prefix_range_t *OpenAPI_ipv6_prefix_range_parseFromJSON(cJSON *ipv6_prefix_rangeJSON)
{
OpenAPI_ipv6_prefix_range_t *ipv6_prefix_range_local_var = NULL;
cJSON *start = cJSON_GetObjectItemCaseSensitive(ipv6_prefix_rangeJSON, "start");
if (start) {
if (!cJSON_IsString(start)) {
ogs_error("OpenAPI_ipv6_prefix_range_parseFromJSON() failed [start]");
goto end;
}
}
cJSON *end = cJSON_GetObjectItemCaseSensitive(ipv6_prefix_rangeJSON, "end");
if (end) {
if (!cJSON_IsString(end)) {
ogs_error("OpenAPI_ipv6_prefix_range_parseFromJSON() failed [end]");
goto end;
}
}
ipv6_prefix_range_local_var = OpenAPI_ipv6_prefix_range_create (
start ? ogs_strdup_or_assert(start->valuestring) : NULL,
end ? ogs_strdup_or_assert(end->valuestring) : NULL
);
return ipv6_prefix_range_local_var;
end:
return NULL;
}
OpenAPI_ipv6_prefix_range_t *OpenAPI_ipv6_prefix_range_copy(OpenAPI_ipv6_prefix_range_t *dst, OpenAPI_ipv6_prefix_range_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_ipv6_prefix_range_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_ipv6_prefix_range_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_ipv6_prefix_range_free(dst);
dst = OpenAPI_ipv6_prefix_range_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}