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

272 lines
11 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "authentication_info_request.h"
OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_create(
char *supported_features,
char *serving_network_name,
OpenAPI_resynchronization_info_t *resynchronization_info,
char *ausf_instance_id,
OpenAPI_list_t *cell_cag_info,
bool is_n5gc_ind,
int n5gc_ind
)
{
OpenAPI_authentication_info_request_t *authentication_info_request_local_var = ogs_malloc(sizeof(OpenAPI_authentication_info_request_t));
ogs_assert(authentication_info_request_local_var);
authentication_info_request_local_var->supported_features = supported_features;
authentication_info_request_local_var->serving_network_name = serving_network_name;
authentication_info_request_local_var->resynchronization_info = resynchronization_info;
authentication_info_request_local_var->ausf_instance_id = ausf_instance_id;
authentication_info_request_local_var->cell_cag_info = cell_cag_info;
authentication_info_request_local_var->is_n5gc_ind = is_n5gc_ind;
authentication_info_request_local_var->n5gc_ind = n5gc_ind;
return authentication_info_request_local_var;
}
void OpenAPI_authentication_info_request_free(OpenAPI_authentication_info_request_t *authentication_info_request)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == authentication_info_request) {
return;
}
if (authentication_info_request->supported_features) {
ogs_free(authentication_info_request->supported_features);
authentication_info_request->supported_features = NULL;
}
if (authentication_info_request->serving_network_name) {
ogs_free(authentication_info_request->serving_network_name);
authentication_info_request->serving_network_name = NULL;
}
if (authentication_info_request->resynchronization_info) {
OpenAPI_resynchronization_info_free(authentication_info_request->resynchronization_info);
authentication_info_request->resynchronization_info = NULL;
}
if (authentication_info_request->ausf_instance_id) {
ogs_free(authentication_info_request->ausf_instance_id);
authentication_info_request->ausf_instance_id = NULL;
}
if (authentication_info_request->cell_cag_info) {
OpenAPI_list_for_each(authentication_info_request->cell_cag_info, node) {
ogs_free(node->data);
}
OpenAPI_list_free(authentication_info_request->cell_cag_info);
authentication_info_request->cell_cag_info = NULL;
}
ogs_free(authentication_info_request);
}
cJSON *OpenAPI_authentication_info_request_convertToJSON(OpenAPI_authentication_info_request_t *authentication_info_request)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (authentication_info_request == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [AuthenticationInfoRequest]");
return NULL;
}
item = cJSON_CreateObject();
if (authentication_info_request->supported_features) {
if (cJSON_AddStringToObject(item, "supportedFeatures", authentication_info_request->supported_features) == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [supported_features]");
goto end;
}
}
if (!authentication_info_request->serving_network_name) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [serving_network_name]");
return NULL;
}
if (cJSON_AddStringToObject(item, "servingNetworkName", authentication_info_request->serving_network_name) == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [serving_network_name]");
goto end;
}
if (authentication_info_request->resynchronization_info) {
cJSON *resynchronization_info_local_JSON = OpenAPI_resynchronization_info_convertToJSON(authentication_info_request->resynchronization_info);
if (resynchronization_info_local_JSON == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [resynchronization_info]");
goto end;
}
cJSON_AddItemToObject(item, "resynchronizationInfo", resynchronization_info_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [resynchronization_info]");
goto end;
}
}
if (!authentication_info_request->ausf_instance_id) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [ausf_instance_id]");
return NULL;
}
if (cJSON_AddStringToObject(item, "ausfInstanceId", authentication_info_request->ausf_instance_id) == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [ausf_instance_id]");
goto end;
}
if (authentication_info_request->cell_cag_info) {
cJSON *cell_cag_infoList = cJSON_AddArrayToObject(item, "cellCagInfo");
if (cell_cag_infoList == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [cell_cag_info]");
goto end;
}
OpenAPI_list_for_each(authentication_info_request->cell_cag_info, node) {
if (cJSON_AddStringToObject(cell_cag_infoList, "", (char*)node->data) == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [cell_cag_info]");
goto end;
}
}
}
if (authentication_info_request->is_n5gc_ind) {
if (cJSON_AddBoolToObject(item, "n5gcInd", authentication_info_request->n5gc_ind) == NULL) {
ogs_error("OpenAPI_authentication_info_request_convertToJSON() failed [n5gc_ind]");
goto end;
}
}
end:
return item;
}
OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_parseFromJSON(cJSON *authentication_info_requestJSON)
{
OpenAPI_authentication_info_request_t *authentication_info_request_local_var = NULL;
OpenAPI_lnode_t *node = NULL;
cJSON *supported_features = NULL;
cJSON *serving_network_name = NULL;
cJSON *resynchronization_info = NULL;
OpenAPI_resynchronization_info_t *resynchronization_info_local_nonprim = NULL;
cJSON *ausf_instance_id = NULL;
cJSON *cell_cag_info = NULL;
OpenAPI_list_t *cell_cag_infoList = NULL;
cJSON *n5gc_ind = NULL;
supported_features = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "supportedFeatures");
if (supported_features) {
if (!cJSON_IsString(supported_features) && !cJSON_IsNull(supported_features)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [supported_features]");
goto end;
}
}
serving_network_name = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "servingNetworkName");
if (!serving_network_name) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [serving_network_name]");
goto end;
}
if (!cJSON_IsString(serving_network_name)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [serving_network_name]");
goto end;
}
resynchronization_info = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "resynchronizationInfo");
if (resynchronization_info) {
resynchronization_info_local_nonprim = OpenAPI_resynchronization_info_parseFromJSON(resynchronization_info);
}
ausf_instance_id = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "ausfInstanceId");
if (!ausf_instance_id) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [ausf_instance_id]");
goto end;
}
if (!cJSON_IsString(ausf_instance_id)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [ausf_instance_id]");
goto end;
}
cell_cag_info = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "cellCagInfo");
if (cell_cag_info) {
cJSON *cell_cag_info_local = NULL;
if (!cJSON_IsArray(cell_cag_info)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [cell_cag_info]");
goto end;
}
cell_cag_infoList = OpenAPI_list_create();
cJSON_ArrayForEach(cell_cag_info_local, cell_cag_info) {
double *localDouble = NULL;
int *localInt = NULL;
if (!cJSON_IsString(cell_cag_info_local)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [cell_cag_info]");
goto end;
}
OpenAPI_list_add(cell_cag_infoList, ogs_strdup(cell_cag_info_local->valuestring));
}
}
n5gc_ind = cJSON_GetObjectItemCaseSensitive(authentication_info_requestJSON, "n5gcInd");
if (n5gc_ind) {
if (!cJSON_IsBool(n5gc_ind)) {
ogs_error("OpenAPI_authentication_info_request_parseFromJSON() failed [n5gc_ind]");
goto end;
}
}
authentication_info_request_local_var = OpenAPI_authentication_info_request_create (
supported_features && !cJSON_IsNull(supported_features) ? ogs_strdup(supported_features->valuestring) : NULL,
ogs_strdup(serving_network_name->valuestring),
resynchronization_info ? resynchronization_info_local_nonprim : NULL,
ogs_strdup(ausf_instance_id->valuestring),
cell_cag_info ? cell_cag_infoList : NULL,
n5gc_ind ? true : false,
n5gc_ind ? n5gc_ind->valueint : 0
);
return authentication_info_request_local_var;
end:
if (resynchronization_info_local_nonprim) {
OpenAPI_resynchronization_info_free(resynchronization_info_local_nonprim);
resynchronization_info_local_nonprim = NULL;
}
if (cell_cag_infoList) {
OpenAPI_list_for_each(cell_cag_infoList, node) {
ogs_free(node->data);
}
OpenAPI_list_free(cell_cag_infoList);
cell_cag_infoList = NULL;
}
return NULL;
}
OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_copy(OpenAPI_authentication_info_request_t *dst, OpenAPI_authentication_info_request_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_authentication_info_request_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_authentication_info_request_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_authentication_info_request_free(dst);
dst = OpenAPI_authentication_info_request_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}