Files
open5gs/lib/sbi/openapi/model/search_result.c
Sukchan Lee d0673e3066 Added NRF
2020-05-18 17:00:37 -04:00

185 lines
6.2 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "search_result.h"
OpenAPI_search_result_t *OpenAPI_search_result_create(
int validity_period,
OpenAPI_list_t *nf_instances,
char *search_id,
int num_nf_inst_complete,
char *nrf_supported_features
)
{
OpenAPI_search_result_t *search_result_local_var = OpenAPI_malloc(sizeof(OpenAPI_search_result_t));
if (!search_result_local_var) {
return NULL;
}
search_result_local_var->validity_period = validity_period;
search_result_local_var->nf_instances = nf_instances;
search_result_local_var->search_id = search_id;
search_result_local_var->num_nf_inst_complete = num_nf_inst_complete;
search_result_local_var->nrf_supported_features = nrf_supported_features;
return search_result_local_var;
}
void OpenAPI_search_result_free(OpenAPI_search_result_t *search_result)
{
if (NULL == search_result) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_list_for_each(search_result->nf_instances, node) {
OpenAPI_nf_profile_free(node->data);
}
OpenAPI_list_free(search_result->nf_instances);
ogs_free(search_result->search_id);
ogs_free(search_result->nrf_supported_features);
ogs_free(search_result);
}
cJSON *OpenAPI_search_result_convertToJSON(OpenAPI_search_result_t *search_result)
{
cJSON *item = NULL;
if (search_result == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [SearchResult]");
return NULL;
}
item = cJSON_CreateObject();
if (search_result->validity_period) {
if (cJSON_AddNumberToObject(item, "validityPeriod", search_result->validity_period) == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [validity_period]");
goto end;
}
}
if (!search_result->nf_instances) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [nf_instances]");
goto end;
}
cJSON *nf_instancesList = cJSON_AddArrayToObject(item, "nfInstances");
if (nf_instancesList == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [nf_instances]");
goto end;
}
OpenAPI_lnode_t *nf_instances_node;
if (search_result->nf_instances) {
OpenAPI_list_for_each(search_result->nf_instances, nf_instances_node) {
cJSON *itemLocal = OpenAPI_nf_profile_convertToJSON(nf_instances_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [nf_instances]");
goto end;
}
cJSON_AddItemToArray(nf_instancesList, itemLocal);
}
}
if (search_result->search_id) {
if (cJSON_AddStringToObject(item, "searchId", search_result->search_id) == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [search_id]");
goto end;
}
}
if (search_result->num_nf_inst_complete) {
if (cJSON_AddNumberToObject(item, "numNfInstComplete", search_result->num_nf_inst_complete) == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [num_nf_inst_complete]");
goto end;
}
}
if (search_result->nrf_supported_features) {
if (cJSON_AddStringToObject(item, "nrfSupportedFeatures", search_result->nrf_supported_features) == NULL) {
ogs_error("OpenAPI_search_result_convertToJSON() failed [nrf_supported_features]");
goto end;
}
}
end:
return item;
}
OpenAPI_search_result_t *OpenAPI_search_result_parseFromJSON(cJSON *search_resultJSON)
{
OpenAPI_search_result_t *search_result_local_var = NULL;
cJSON *validity_period = cJSON_GetObjectItemCaseSensitive(search_resultJSON, "validityPeriod");
if (validity_period) {
if (!cJSON_IsNumber(validity_period)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [validity_period]");
goto end;
}
}
cJSON *nf_instances = cJSON_GetObjectItemCaseSensitive(search_resultJSON, "nfInstances");
if (!nf_instances) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [nf_instances]");
goto end;
}
OpenAPI_list_t *nf_instancesList;
cJSON *nf_instances_local_nonprimitive;
if (!cJSON_IsArray(nf_instances)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [nf_instances]");
goto end;
}
nf_instancesList = OpenAPI_list_create();
cJSON_ArrayForEach(nf_instances_local_nonprimitive, nf_instances ) {
if (!cJSON_IsObject(nf_instances_local_nonprimitive)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [nf_instances]");
goto end;
}
OpenAPI_nf_profile_t *nf_instancesItem = OpenAPI_nf_profile_parseFromJSON(nf_instances_local_nonprimitive);
OpenAPI_list_add(nf_instancesList, nf_instancesItem);
}
cJSON *search_id = cJSON_GetObjectItemCaseSensitive(search_resultJSON, "searchId");
if (search_id) {
if (!cJSON_IsString(search_id)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [search_id]");
goto end;
}
}
cJSON *num_nf_inst_complete = cJSON_GetObjectItemCaseSensitive(search_resultJSON, "numNfInstComplete");
if (num_nf_inst_complete) {
if (!cJSON_IsNumber(num_nf_inst_complete)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [num_nf_inst_complete]");
goto end;
}
}
cJSON *nrf_supported_features = cJSON_GetObjectItemCaseSensitive(search_resultJSON, "nrfSupportedFeatures");
if (nrf_supported_features) {
if (!cJSON_IsString(nrf_supported_features)) {
ogs_error("OpenAPI_search_result_parseFromJSON() failed [nrf_supported_features]");
goto end;
}
}
search_result_local_var = OpenAPI_search_result_create (
validity_period ? validity_period->valuedouble : 0,
nf_instancesList,
search_id ? ogs_strdup(search_id->valuestring) : NULL,
num_nf_inst_complete ? num_nf_inst_complete->valuedouble : 0,
nrf_supported_features ? ogs_strdup(nrf_supported_features->valuestring) : NULL
);
return search_result_local_var;
end:
return NULL;
}