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

217 lines
6.8 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "scp_domain_info.h"
OpenAPI_scp_domain_info_t *OpenAPI_scp_domain_info_create(
char *scp_fqdn,
OpenAPI_list_t *scp_ip_end_points,
char *scp_prefix,
OpenAPI_list_t* scp_ports
)
{
OpenAPI_scp_domain_info_t *scp_domain_info_local_var = ogs_malloc(sizeof(OpenAPI_scp_domain_info_t));
ogs_assert(scp_domain_info_local_var);
scp_domain_info_local_var->scp_fqdn = scp_fqdn;
scp_domain_info_local_var->scp_ip_end_points = scp_ip_end_points;
scp_domain_info_local_var->scp_prefix = scp_prefix;
scp_domain_info_local_var->scp_ports = scp_ports;
return scp_domain_info_local_var;
}
void OpenAPI_scp_domain_info_free(OpenAPI_scp_domain_info_t *scp_domain_info)
{
if (NULL == scp_domain_info) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(scp_domain_info->scp_fqdn);
OpenAPI_list_for_each(scp_domain_info->scp_ip_end_points, node) {
OpenAPI_ip_end_point_free(node->data);
}
OpenAPI_list_free(scp_domain_info->scp_ip_end_points);
ogs_free(scp_domain_info->scp_prefix);
OpenAPI_list_for_each(scp_domain_info->scp_ports, node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)node->data;
ogs_free(localKeyValue->key);
ogs_free(localKeyValue->value);
ogs_free(localKeyValue);
}
OpenAPI_list_free(scp_domain_info->scp_ports);
ogs_free(scp_domain_info);
}
cJSON *OpenAPI_scp_domain_info_convertToJSON(OpenAPI_scp_domain_info_t *scp_domain_info)
{
cJSON *item = NULL;
if (scp_domain_info == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [ScpDomainInfo]");
return NULL;
}
item = cJSON_CreateObject();
if (scp_domain_info->scp_fqdn) {
if (cJSON_AddStringToObject(item, "scpFqdn", scp_domain_info->scp_fqdn) == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [scp_fqdn]");
goto end;
}
}
if (scp_domain_info->scp_ip_end_points) {
cJSON *scp_ip_end_pointsList = cJSON_AddArrayToObject(item, "scpIpEndPoints");
if (scp_ip_end_pointsList == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [scp_ip_end_points]");
goto end;
}
OpenAPI_lnode_t *scp_ip_end_points_node;
if (scp_domain_info->scp_ip_end_points) {
OpenAPI_list_for_each(scp_domain_info->scp_ip_end_points, scp_ip_end_points_node) {
cJSON *itemLocal = OpenAPI_ip_end_point_convertToJSON(scp_ip_end_points_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [scp_ip_end_points]");
goto end;
}
cJSON_AddItemToArray(scp_ip_end_pointsList, itemLocal);
}
}
}
if (scp_domain_info->scp_prefix) {
if (cJSON_AddStringToObject(item, "scpPrefix", scp_domain_info->scp_prefix) == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [scp_prefix]");
goto end;
}
}
if (scp_domain_info->scp_ports) {
cJSON *scp_ports = cJSON_AddObjectToObject(item, "scpPorts");
if (scp_ports == NULL) {
ogs_error("OpenAPI_scp_domain_info_convertToJSON() failed [scp_ports]");
goto end;
}
cJSON *localMapObject = scp_ports;
OpenAPI_lnode_t *scp_ports_node;
if (scp_domain_info->scp_ports) {
OpenAPI_list_for_each(scp_domain_info->scp_ports, scp_ports_node) {
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)scp_ports_node->data;
}
}
}
end:
return item;
}
OpenAPI_scp_domain_info_t *OpenAPI_scp_domain_info_parseFromJSON(cJSON *scp_domain_infoJSON)
{
OpenAPI_scp_domain_info_t *scp_domain_info_local_var = NULL;
cJSON *scp_fqdn = cJSON_GetObjectItemCaseSensitive(scp_domain_infoJSON, "scpFqdn");
if (scp_fqdn) {
if (!cJSON_IsString(scp_fqdn)) {
ogs_error("OpenAPI_scp_domain_info_parseFromJSON() failed [scp_fqdn]");
goto end;
}
}
cJSON *scp_ip_end_points = cJSON_GetObjectItemCaseSensitive(scp_domain_infoJSON, "scpIpEndPoints");
OpenAPI_list_t *scp_ip_end_pointsList;
if (scp_ip_end_points) {
cJSON *scp_ip_end_points_local_nonprimitive;
if (!cJSON_IsArray(scp_ip_end_points)){
ogs_error("OpenAPI_scp_domain_info_parseFromJSON() failed [scp_ip_end_points]");
goto end;
}
scp_ip_end_pointsList = OpenAPI_list_create();
cJSON_ArrayForEach(scp_ip_end_points_local_nonprimitive, scp_ip_end_points ) {
if (!cJSON_IsObject(scp_ip_end_points_local_nonprimitive)) {
ogs_error("OpenAPI_scp_domain_info_parseFromJSON() failed [scp_ip_end_points]");
goto end;
}
OpenAPI_ip_end_point_t *scp_ip_end_pointsItem = OpenAPI_ip_end_point_parseFromJSON(scp_ip_end_points_local_nonprimitive);
OpenAPI_list_add(scp_ip_end_pointsList, scp_ip_end_pointsItem);
}
}
cJSON *scp_prefix = cJSON_GetObjectItemCaseSensitive(scp_domain_infoJSON, "scpPrefix");
if (scp_prefix) {
if (!cJSON_IsString(scp_prefix)) {
ogs_error("OpenAPI_scp_domain_info_parseFromJSON() failed [scp_prefix]");
goto end;
}
}
cJSON *scp_ports = cJSON_GetObjectItemCaseSensitive(scp_domain_infoJSON, "scpPorts");
OpenAPI_list_t *scp_portsList;
if (scp_ports) {
cJSON *scp_ports_local_map;
if (!cJSON_IsObject(scp_ports)) {
ogs_error("OpenAPI_scp_domain_info_parseFromJSON() failed [scp_ports]");
goto end;
}
scp_portsList = OpenAPI_list_create();
OpenAPI_map_t *localMapKeyPair = NULL;
cJSON_ArrayForEach(scp_ports_local_map, scp_ports) {
cJSON *localMapObject = scp_ports_local_map;
OpenAPI_list_add(scp_portsList , localMapKeyPair);
}
}
scp_domain_info_local_var = OpenAPI_scp_domain_info_create (
scp_fqdn ? ogs_strdup(scp_fqdn->valuestring) : NULL,
scp_ip_end_points ? scp_ip_end_pointsList : NULL,
scp_prefix ? ogs_strdup(scp_prefix->valuestring) : NULL,
scp_ports ? scp_portsList : NULL
);
return scp_domain_info_local_var;
end:
return NULL;
}
OpenAPI_scp_domain_info_t *OpenAPI_scp_domain_info_copy(OpenAPI_scp_domain_info_t *dst, OpenAPI_scp_domain_info_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_scp_domain_info_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_scp_domain_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_scp_domain_info_free(dst);
dst = OpenAPI_scp_domain_info_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}