#include #include #include #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 = ogs_malloc(sizeof(OpenAPI_ipv6_prefix_range_t)); ogs_assert(ipv6_prefix_range_local_var); 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) { OpenAPI_lnode_t *node = NULL; if (NULL == ipv6_prefix_range) { return; } if (ipv6_prefix_range->start) { ogs_free(ipv6_prefix_range->start); ipv6_prefix_range->start = NULL; } if (ipv6_prefix_range->end) { ogs_free(ipv6_prefix_range->end); ipv6_prefix_range->end = NULL; } ogs_free(ipv6_prefix_range); } cJSON *OpenAPI_ipv6_prefix_range_convertToJSON(OpenAPI_ipv6_prefix_range_t *ipv6_prefix_range) { cJSON *item = NULL; OpenAPI_lnode_t *node = 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; OpenAPI_lnode_t *node = NULL; cJSON *start = NULL; cJSON *end = NULL; start = cJSON_GetObjectItemCaseSensitive(ipv6_prefix_rangeJSON, "start"); if (start) { if (!cJSON_IsString(start) && !cJSON_IsNull(start)) { ogs_error("OpenAPI_ipv6_prefix_range_parseFromJSON() failed [start]"); goto end; } } end = cJSON_GetObjectItemCaseSensitive(ipv6_prefix_rangeJSON, "end"); if (end) { if (!cJSON_IsString(end) && !cJSON_IsNull(end)) { ogs_error("OpenAPI_ipv6_prefix_range_parseFromJSON() failed [end]"); goto end; } } ipv6_prefix_range_local_var = OpenAPI_ipv6_prefix_range_create ( start && !cJSON_IsNull(start) ? ogs_strdup(start->valuestring) : NULL, end && !cJSON_IsNull(end) ? ogs_strdup(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; }