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

399 lines
14 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "problem_details_1.h"
OpenAPI_problem_details_1_t *OpenAPI_problem_details_1_create(
char *type,
char *title,
bool is_status,
int status,
char *detail,
char *instance,
char *cause,
OpenAPI_list_t *invalid_params,
char *supported_features,
OpenAPI_access_token_err_t *access_token_error,
OpenAPI_access_token_req_t *access_token_request,
char *nrf_id
)
{
OpenAPI_problem_details_1_t *problem_details_1_local_var = ogs_malloc(sizeof(OpenAPI_problem_details_1_t));
ogs_assert(problem_details_1_local_var);
problem_details_1_local_var->type = type;
problem_details_1_local_var->title = title;
problem_details_1_local_var->is_status = is_status;
problem_details_1_local_var->status = status;
problem_details_1_local_var->detail = detail;
problem_details_1_local_var->instance = instance;
problem_details_1_local_var->cause = cause;
problem_details_1_local_var->invalid_params = invalid_params;
problem_details_1_local_var->supported_features = supported_features;
problem_details_1_local_var->access_token_error = access_token_error;
problem_details_1_local_var->access_token_request = access_token_request;
problem_details_1_local_var->nrf_id = nrf_id;
return problem_details_1_local_var;
}
void OpenAPI_problem_details_1_free(OpenAPI_problem_details_1_t *problem_details_1)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == problem_details_1) {
return;
}
if (problem_details_1->type) {
ogs_free(problem_details_1->type);
problem_details_1->type = NULL;
}
if (problem_details_1->title) {
ogs_free(problem_details_1->title);
problem_details_1->title = NULL;
}
if (problem_details_1->detail) {
ogs_free(problem_details_1->detail);
problem_details_1->detail = NULL;
}
if (problem_details_1->instance) {
ogs_free(problem_details_1->instance);
problem_details_1->instance = NULL;
}
if (problem_details_1->cause) {
ogs_free(problem_details_1->cause);
problem_details_1->cause = NULL;
}
if (problem_details_1->invalid_params) {
OpenAPI_list_for_each(problem_details_1->invalid_params, node) {
OpenAPI_invalid_param_free(node->data);
}
OpenAPI_list_free(problem_details_1->invalid_params);
problem_details_1->invalid_params = NULL;
}
if (problem_details_1->supported_features) {
ogs_free(problem_details_1->supported_features);
problem_details_1->supported_features = NULL;
}
if (problem_details_1->access_token_error) {
OpenAPI_access_token_err_free(problem_details_1->access_token_error);
problem_details_1->access_token_error = NULL;
}
if (problem_details_1->access_token_request) {
OpenAPI_access_token_req_free(problem_details_1->access_token_request);
problem_details_1->access_token_request = NULL;
}
if (problem_details_1->nrf_id) {
ogs_free(problem_details_1->nrf_id);
problem_details_1->nrf_id = NULL;
}
ogs_free(problem_details_1);
}
cJSON *OpenAPI_problem_details_1_convertToJSON(OpenAPI_problem_details_1_t *problem_details_1)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (problem_details_1 == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [ProblemDetails_1]");
return NULL;
}
item = cJSON_CreateObject();
if (problem_details_1->type) {
if (cJSON_AddStringToObject(item, "type", problem_details_1->type) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [type]");
goto end;
}
}
if (problem_details_1->title) {
if (cJSON_AddStringToObject(item, "title", problem_details_1->title) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [title]");
goto end;
}
}
if (problem_details_1->is_status) {
if (cJSON_AddNumberToObject(item, "status", problem_details_1->status) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [status]");
goto end;
}
}
if (problem_details_1->detail) {
if (cJSON_AddStringToObject(item, "detail", problem_details_1->detail) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [detail]");
goto end;
}
}
if (problem_details_1->instance) {
if (cJSON_AddStringToObject(item, "instance", problem_details_1->instance) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [instance]");
goto end;
}
}
if (problem_details_1->cause) {
if (cJSON_AddStringToObject(item, "cause", problem_details_1->cause) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [cause]");
goto end;
}
}
if (problem_details_1->invalid_params) {
cJSON *invalid_paramsList = cJSON_AddArrayToObject(item, "invalidParams");
if (invalid_paramsList == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [invalid_params]");
goto end;
}
OpenAPI_list_for_each(problem_details_1->invalid_params, node) {
cJSON *itemLocal = OpenAPI_invalid_param_convertToJSON(node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [invalid_params]");
goto end;
}
cJSON_AddItemToArray(invalid_paramsList, itemLocal);
}
}
if (problem_details_1->supported_features) {
if (cJSON_AddStringToObject(item, "supportedFeatures", problem_details_1->supported_features) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [supported_features]");
goto end;
}
}
if (problem_details_1->access_token_error) {
cJSON *access_token_error_local_JSON = OpenAPI_access_token_err_convertToJSON(problem_details_1->access_token_error);
if (access_token_error_local_JSON == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [access_token_error]");
goto end;
}
cJSON_AddItemToObject(item, "accessTokenError", access_token_error_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [access_token_error]");
goto end;
}
}
if (problem_details_1->access_token_request) {
cJSON *access_token_request_local_JSON = OpenAPI_access_token_req_convertToJSON(problem_details_1->access_token_request);
if (access_token_request_local_JSON == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [access_token_request]");
goto end;
}
cJSON_AddItemToObject(item, "accessTokenRequest", access_token_request_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [access_token_request]");
goto end;
}
}
if (problem_details_1->nrf_id) {
if (cJSON_AddStringToObject(item, "nrfId", problem_details_1->nrf_id) == NULL) {
ogs_error("OpenAPI_problem_details_1_convertToJSON() failed [nrf_id]");
goto end;
}
}
end:
return item;
}
OpenAPI_problem_details_1_t *OpenAPI_problem_details_1_parseFromJSON(cJSON *problem_details_1JSON)
{
OpenAPI_problem_details_1_t *problem_details_1_local_var = NULL;
OpenAPI_lnode_t *node = NULL;
cJSON *type = NULL;
cJSON *title = NULL;
cJSON *status = NULL;
cJSON *detail = NULL;
cJSON *instance = NULL;
cJSON *cause = NULL;
cJSON *invalid_params = NULL;
OpenAPI_list_t *invalid_paramsList = NULL;
cJSON *supported_features = NULL;
cJSON *access_token_error = NULL;
OpenAPI_access_token_err_t *access_token_error_local_nonprim = NULL;
cJSON *access_token_request = NULL;
OpenAPI_access_token_req_t *access_token_request_local_nonprim = NULL;
cJSON *nrf_id = NULL;
type = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "type");
if (type) {
if (!cJSON_IsString(type) && !cJSON_IsNull(type)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [type]");
goto end;
}
}
title = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "title");
if (title) {
if (!cJSON_IsString(title) && !cJSON_IsNull(title)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [title]");
goto end;
}
}
status = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "status");
if (status) {
if (!cJSON_IsNumber(status)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [status]");
goto end;
}
}
detail = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "detail");
if (detail) {
if (!cJSON_IsString(detail) && !cJSON_IsNull(detail)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [detail]");
goto end;
}
}
instance = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "instance");
if (instance) {
if (!cJSON_IsString(instance) && !cJSON_IsNull(instance)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [instance]");
goto end;
}
}
cause = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "cause");
if (cause) {
if (!cJSON_IsString(cause) && !cJSON_IsNull(cause)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [cause]");
goto end;
}
}
invalid_params = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "invalidParams");
if (invalid_params) {
cJSON *invalid_params_local = NULL;
if (!cJSON_IsArray(invalid_params)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [invalid_params]");
goto end;
}
invalid_paramsList = OpenAPI_list_create();
cJSON_ArrayForEach(invalid_params_local, invalid_params) {
if (!cJSON_IsObject(invalid_params_local)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [invalid_params]");
goto end;
}
OpenAPI_invalid_param_t *invalid_paramsItem = OpenAPI_invalid_param_parseFromJSON(invalid_params_local);
if (!invalid_paramsItem) {
ogs_error("No invalid_paramsItem");
goto end;
}
OpenAPI_list_add(invalid_paramsList, invalid_paramsItem);
}
}
supported_features = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "supportedFeatures");
if (supported_features) {
if (!cJSON_IsString(supported_features) && !cJSON_IsNull(supported_features)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [supported_features]");
goto end;
}
}
access_token_error = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "accessTokenError");
if (access_token_error) {
access_token_error_local_nonprim = OpenAPI_access_token_err_parseFromJSON(access_token_error);
if (!access_token_error_local_nonprim) {
ogs_error("OpenAPI_access_token_err_parseFromJSON failed [access_token_error]");
goto end;
}
}
access_token_request = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "accessTokenRequest");
if (access_token_request) {
access_token_request_local_nonprim = OpenAPI_access_token_req_parseFromJSON(access_token_request);
if (!access_token_request_local_nonprim) {
ogs_error("OpenAPI_access_token_req_parseFromJSON failed [access_token_request]");
goto end;
}
}
nrf_id = cJSON_GetObjectItemCaseSensitive(problem_details_1JSON, "nrfId");
if (nrf_id) {
if (!cJSON_IsString(nrf_id) && !cJSON_IsNull(nrf_id)) {
ogs_error("OpenAPI_problem_details_1_parseFromJSON() failed [nrf_id]");
goto end;
}
}
problem_details_1_local_var = OpenAPI_problem_details_1_create (
type && !cJSON_IsNull(type) ? ogs_strdup(type->valuestring) : NULL,
title && !cJSON_IsNull(title) ? ogs_strdup(title->valuestring) : NULL,
status ? true : false,
status ? status->valuedouble : 0,
detail && !cJSON_IsNull(detail) ? ogs_strdup(detail->valuestring) : NULL,
instance && !cJSON_IsNull(instance) ? ogs_strdup(instance->valuestring) : NULL,
cause && !cJSON_IsNull(cause) ? ogs_strdup(cause->valuestring) : NULL,
invalid_params ? invalid_paramsList : NULL,
supported_features && !cJSON_IsNull(supported_features) ? ogs_strdup(supported_features->valuestring) : NULL,
access_token_error ? access_token_error_local_nonprim : NULL,
access_token_request ? access_token_request_local_nonprim : NULL,
nrf_id && !cJSON_IsNull(nrf_id) ? ogs_strdup(nrf_id->valuestring) : NULL
);
return problem_details_1_local_var;
end:
if (invalid_paramsList) {
OpenAPI_list_for_each(invalid_paramsList, node) {
OpenAPI_invalid_param_free(node->data);
}
OpenAPI_list_free(invalid_paramsList);
invalid_paramsList = NULL;
}
if (access_token_error_local_nonprim) {
OpenAPI_access_token_err_free(access_token_error_local_nonprim);
access_token_error_local_nonprim = NULL;
}
if (access_token_request_local_nonprim) {
OpenAPI_access_token_req_free(access_token_request_local_nonprim);
access_token_request_local_nonprim = NULL;
}
return NULL;
}
OpenAPI_problem_details_1_t *OpenAPI_problem_details_1_copy(OpenAPI_problem_details_1_t *dst, OpenAPI_problem_details_1_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_problem_details_1_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_problem_details_1_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_problem_details_1_free(dst);
dst = OpenAPI_problem_details_1_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}