mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 05:40:09 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
240
lib/sbi/openapi/model/problem_details_2.c
Normal file
240
lib/sbi/openapi/model/problem_details_2.c
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "problem_details_2.h"
|
||||
|
||||
OpenAPI_problem_details_2_t *OpenAPI_problem_details_2_create(
|
||||
char *type,
|
||||
char *title,
|
||||
int status,
|
||||
char *detail,
|
||||
char *instance,
|
||||
char *cause,
|
||||
OpenAPI_list_t *invalid_params,
|
||||
char *supported_features
|
||||
)
|
||||
{
|
||||
OpenAPI_problem_details_2_t *problem_details_2_local_var = OpenAPI_malloc(sizeof(OpenAPI_problem_details_2_t));
|
||||
if (!problem_details_2_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
problem_details_2_local_var->type = type;
|
||||
problem_details_2_local_var->title = title;
|
||||
problem_details_2_local_var->status = status;
|
||||
problem_details_2_local_var->detail = detail;
|
||||
problem_details_2_local_var->instance = instance;
|
||||
problem_details_2_local_var->cause = cause;
|
||||
problem_details_2_local_var->invalid_params = invalid_params;
|
||||
problem_details_2_local_var->supported_features = supported_features;
|
||||
|
||||
return problem_details_2_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_problem_details_2_free(OpenAPI_problem_details_2_t *problem_details_2)
|
||||
{
|
||||
if (NULL == problem_details_2) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
ogs_free(problem_details_2->type);
|
||||
ogs_free(problem_details_2->title);
|
||||
ogs_free(problem_details_2->detail);
|
||||
ogs_free(problem_details_2->instance);
|
||||
ogs_free(problem_details_2->cause);
|
||||
OpenAPI_list_for_each(problem_details_2->invalid_params, node) {
|
||||
OpenAPI_invalid_param_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(problem_details_2->invalid_params);
|
||||
ogs_free(problem_details_2->supported_features);
|
||||
ogs_free(problem_details_2);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_problem_details_2_convertToJSON(OpenAPI_problem_details_2_t *problem_details_2)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (problem_details_2 == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [ProblemDetails_2]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (problem_details_2->type) {
|
||||
if (cJSON_AddStringToObject(item, "type", problem_details_2->type) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [type]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->title) {
|
||||
if (cJSON_AddStringToObject(item, "title", problem_details_2->title) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [title]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->status) {
|
||||
if (cJSON_AddNumberToObject(item, "status", problem_details_2->status) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [status]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->detail) {
|
||||
if (cJSON_AddStringToObject(item, "detail", problem_details_2->detail) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [detail]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->instance) {
|
||||
if (cJSON_AddStringToObject(item, "instance", problem_details_2->instance) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [instance]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->cause) {
|
||||
if (cJSON_AddStringToObject(item, "cause", problem_details_2->cause) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [cause]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->invalid_params) {
|
||||
cJSON *invalid_paramsList = cJSON_AddArrayToObject(item, "invalidParams");
|
||||
if (invalid_paramsList == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [invalid_params]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *invalid_params_node;
|
||||
if (problem_details_2->invalid_params) {
|
||||
OpenAPI_list_for_each(problem_details_2->invalid_params, invalid_params_node) {
|
||||
cJSON *itemLocal = OpenAPI_invalid_param_convertToJSON(invalid_params_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [invalid_params]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(invalid_paramsList, itemLocal);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (problem_details_2->supported_features) {
|
||||
if (cJSON_AddStringToObject(item, "supportedFeatures", problem_details_2->supported_features) == NULL) {
|
||||
ogs_error("OpenAPI_problem_details_2_convertToJSON() failed [supported_features]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_problem_details_2_t *OpenAPI_problem_details_2_parseFromJSON(cJSON *problem_details_2JSON)
|
||||
{
|
||||
OpenAPI_problem_details_2_t *problem_details_2_local_var = NULL;
|
||||
cJSON *type = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "type");
|
||||
|
||||
if (type) {
|
||||
if (!cJSON_IsString(type)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [type]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *title = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "title");
|
||||
|
||||
if (title) {
|
||||
if (!cJSON_IsString(title)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [title]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *status = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "status");
|
||||
|
||||
if (status) {
|
||||
if (!cJSON_IsNumber(status)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [status]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *detail = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "detail");
|
||||
|
||||
if (detail) {
|
||||
if (!cJSON_IsString(detail)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [detail]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *instance = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "instance");
|
||||
|
||||
if (instance) {
|
||||
if (!cJSON_IsString(instance)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [instance]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *cause = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "cause");
|
||||
|
||||
if (cause) {
|
||||
if (!cJSON_IsString(cause)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [cause]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *invalid_params = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "invalidParams");
|
||||
|
||||
OpenAPI_list_t *invalid_paramsList;
|
||||
if (invalid_params) {
|
||||
cJSON *invalid_params_local_nonprimitive;
|
||||
if (!cJSON_IsArray(invalid_params)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [invalid_params]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
invalid_paramsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(invalid_params_local_nonprimitive, invalid_params ) {
|
||||
if (!cJSON_IsObject(invalid_params_local_nonprimitive)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [invalid_params]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_invalid_param_t *invalid_paramsItem = OpenAPI_invalid_param_parseFromJSON(invalid_params_local_nonprimitive);
|
||||
|
||||
OpenAPI_list_add(invalid_paramsList, invalid_paramsItem);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *supported_features = cJSON_GetObjectItemCaseSensitive(problem_details_2JSON, "supportedFeatures");
|
||||
|
||||
if (supported_features) {
|
||||
if (!cJSON_IsString(supported_features)) {
|
||||
ogs_error("OpenAPI_problem_details_2_parseFromJSON() failed [supported_features]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
problem_details_2_local_var = OpenAPI_problem_details_2_create (
|
||||
type ? ogs_strdup(type->valuestring) : NULL,
|
||||
title ? ogs_strdup(title->valuestring) : NULL,
|
||||
status ? status->valuedouble : 0,
|
||||
detail ? ogs_strdup(detail->valuestring) : NULL,
|
||||
instance ? ogs_strdup(instance->valuestring) : NULL,
|
||||
cause ? ogs_strdup(cause->valuestring) : NULL,
|
||||
invalid_params ? invalid_paramsList : NULL,
|
||||
supported_features ? ogs_strdup(supported_features->valuestring) : NULL
|
||||
);
|
||||
|
||||
return problem_details_2_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue