#include #include #include #include "twif_info.h" OpenAPI_twif_info_t *OpenAPI_twif_info_create( OpenAPI_list_t *ipv4_endpoint_addresses, OpenAPI_list_t *ipv6_endpoint_addresses, char *endpoint_fqdn ) { OpenAPI_twif_info_t *twif_info_local_var = ogs_malloc(sizeof(OpenAPI_twif_info_t)); ogs_assert(twif_info_local_var); twif_info_local_var->ipv4_endpoint_addresses = ipv4_endpoint_addresses; twif_info_local_var->ipv6_endpoint_addresses = ipv6_endpoint_addresses; twif_info_local_var->endpoint_fqdn = endpoint_fqdn; return twif_info_local_var; } void OpenAPI_twif_info_free(OpenAPI_twif_info_t *twif_info) { OpenAPI_lnode_t *node = NULL; if (NULL == twif_info) { return; } if (twif_info->ipv4_endpoint_addresses) { OpenAPI_list_for_each(twif_info->ipv4_endpoint_addresses, node) { ogs_free(node->data); } OpenAPI_list_free(twif_info->ipv4_endpoint_addresses); twif_info->ipv4_endpoint_addresses = NULL; } if (twif_info->ipv6_endpoint_addresses) { OpenAPI_list_for_each(twif_info->ipv6_endpoint_addresses, node) { ogs_free(node->data); } OpenAPI_list_free(twif_info->ipv6_endpoint_addresses); twif_info->ipv6_endpoint_addresses = NULL; } if (twif_info->endpoint_fqdn) { ogs_free(twif_info->endpoint_fqdn); twif_info->endpoint_fqdn = NULL; } ogs_free(twif_info); } cJSON *OpenAPI_twif_info_convertToJSON(OpenAPI_twif_info_t *twif_info) { cJSON *item = NULL; OpenAPI_lnode_t *node = NULL; if (twif_info == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [TwifInfo]"); return NULL; } item = cJSON_CreateObject(); if (twif_info->ipv4_endpoint_addresses) { cJSON *ipv4_endpoint_addressesList = cJSON_AddArrayToObject(item, "ipv4EndpointAddresses"); if (ipv4_endpoint_addressesList == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [ipv4_endpoint_addresses]"); goto end; } OpenAPI_list_for_each(twif_info->ipv4_endpoint_addresses, node) { if (cJSON_AddStringToObject(ipv4_endpoint_addressesList, "", (char*)node->data) == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [ipv4_endpoint_addresses]"); goto end; } } } if (twif_info->ipv6_endpoint_addresses) { cJSON *ipv6_endpoint_addressesList = cJSON_AddArrayToObject(item, "ipv6EndpointAddresses"); if (ipv6_endpoint_addressesList == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [ipv6_endpoint_addresses]"); goto end; } OpenAPI_list_for_each(twif_info->ipv6_endpoint_addresses, node) { if (cJSON_AddStringToObject(ipv6_endpoint_addressesList, "", (char*)node->data) == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [ipv6_endpoint_addresses]"); goto end; } } } if (twif_info->endpoint_fqdn) { if (cJSON_AddStringToObject(item, "endpointFqdn", twif_info->endpoint_fqdn) == NULL) { ogs_error("OpenAPI_twif_info_convertToJSON() failed [endpoint_fqdn]"); goto end; } } end: return item; } OpenAPI_twif_info_t *OpenAPI_twif_info_parseFromJSON(cJSON *twif_infoJSON) { OpenAPI_twif_info_t *twif_info_local_var = NULL; OpenAPI_lnode_t *node = NULL; cJSON *ipv4_endpoint_addresses = NULL; OpenAPI_list_t *ipv4_endpoint_addressesList = NULL; cJSON *ipv6_endpoint_addresses = NULL; OpenAPI_list_t *ipv6_endpoint_addressesList = NULL; cJSON *endpoint_fqdn = NULL; ipv4_endpoint_addresses = cJSON_GetObjectItemCaseSensitive(twif_infoJSON, "ipv4EndpointAddresses"); if (ipv4_endpoint_addresses) { cJSON *ipv4_endpoint_addresses_local = NULL; if (!cJSON_IsArray(ipv4_endpoint_addresses)) { ogs_error("OpenAPI_twif_info_parseFromJSON() failed [ipv4_endpoint_addresses]"); goto end; } ipv4_endpoint_addressesList = OpenAPI_list_create(); cJSON_ArrayForEach(ipv4_endpoint_addresses_local, ipv4_endpoint_addresses) { double *localDouble = NULL; int *localInt = NULL; if (!cJSON_IsString(ipv4_endpoint_addresses_local)) { ogs_error("OpenAPI_twif_info_parseFromJSON() failed [ipv4_endpoint_addresses]"); goto end; } OpenAPI_list_add(ipv4_endpoint_addressesList, ogs_strdup(ipv4_endpoint_addresses_local->valuestring)); } } ipv6_endpoint_addresses = cJSON_GetObjectItemCaseSensitive(twif_infoJSON, "ipv6EndpointAddresses"); if (ipv6_endpoint_addresses) { cJSON *ipv6_endpoint_addresses_local = NULL; if (!cJSON_IsArray(ipv6_endpoint_addresses)) { ogs_error("OpenAPI_twif_info_parseFromJSON() failed [ipv6_endpoint_addresses]"); goto end; } ipv6_endpoint_addressesList = OpenAPI_list_create(); cJSON_ArrayForEach(ipv6_endpoint_addresses_local, ipv6_endpoint_addresses) { double *localDouble = NULL; int *localInt = NULL; if (!cJSON_IsString(ipv6_endpoint_addresses_local)) { ogs_error("OpenAPI_twif_info_parseFromJSON() failed [ipv6_endpoint_addresses]"); goto end; } OpenAPI_list_add(ipv6_endpoint_addressesList, ogs_strdup(ipv6_endpoint_addresses_local->valuestring)); } } endpoint_fqdn = cJSON_GetObjectItemCaseSensitive(twif_infoJSON, "endpointFqdn"); if (endpoint_fqdn) { if (!cJSON_IsString(endpoint_fqdn) && !cJSON_IsNull(endpoint_fqdn)) { ogs_error("OpenAPI_twif_info_parseFromJSON() failed [endpoint_fqdn]"); goto end; } } twif_info_local_var = OpenAPI_twif_info_create ( ipv4_endpoint_addresses ? ipv4_endpoint_addressesList : NULL, ipv6_endpoint_addresses ? ipv6_endpoint_addressesList : NULL, endpoint_fqdn && !cJSON_IsNull(endpoint_fqdn) ? ogs_strdup(endpoint_fqdn->valuestring) : NULL ); return twif_info_local_var; end: if (ipv4_endpoint_addressesList) { OpenAPI_list_for_each(ipv4_endpoint_addressesList, node) { ogs_free(node->data); } OpenAPI_list_free(ipv4_endpoint_addressesList); ipv4_endpoint_addressesList = NULL; } if (ipv6_endpoint_addressesList) { OpenAPI_list_for_each(ipv6_endpoint_addressesList, node) { ogs_free(node->data); } OpenAPI_list_free(ipv6_endpoint_addressesList); ipv6_endpoint_addressesList = NULL; } return NULL; } OpenAPI_twif_info_t *OpenAPI_twif_info_copy(OpenAPI_twif_info_t *dst, OpenAPI_twif_info_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_twif_info_convertToJSON(src); if (!item) { ogs_error("OpenAPI_twif_info_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_twif_info_free(dst); dst = OpenAPI_twif_info_parseFromJSON(item); cJSON_Delete(item); return dst; }