mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
250
lib/sbi/openapi/model/dn_perf_info.c
Normal file
250
lib/sbi/openapi/model/dn_perf_info.c
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "dn_perf_info.h"
|
||||
|
||||
OpenAPI_dn_perf_info_t *OpenAPI_dn_perf_info_create(
|
||||
char *app_id,
|
||||
char *dnn,
|
||||
OpenAPI_snssai_t *snssai,
|
||||
OpenAPI_list_t *dn_perf,
|
||||
bool is_confidence,
|
||||
int confidence
|
||||
)
|
||||
{
|
||||
OpenAPI_dn_perf_info_t *dn_perf_info_local_var = ogs_malloc(sizeof(OpenAPI_dn_perf_info_t));
|
||||
ogs_assert(dn_perf_info_local_var);
|
||||
|
||||
dn_perf_info_local_var->app_id = app_id;
|
||||
dn_perf_info_local_var->dnn = dnn;
|
||||
dn_perf_info_local_var->snssai = snssai;
|
||||
dn_perf_info_local_var->dn_perf = dn_perf;
|
||||
dn_perf_info_local_var->is_confidence = is_confidence;
|
||||
dn_perf_info_local_var->confidence = confidence;
|
||||
|
||||
return dn_perf_info_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_dn_perf_info_free(OpenAPI_dn_perf_info_t *dn_perf_info)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == dn_perf_info) {
|
||||
return;
|
||||
}
|
||||
if (dn_perf_info->app_id) {
|
||||
ogs_free(dn_perf_info->app_id);
|
||||
dn_perf_info->app_id = NULL;
|
||||
}
|
||||
if (dn_perf_info->dnn) {
|
||||
ogs_free(dn_perf_info->dnn);
|
||||
dn_perf_info->dnn = NULL;
|
||||
}
|
||||
if (dn_perf_info->snssai) {
|
||||
OpenAPI_snssai_free(dn_perf_info->snssai);
|
||||
dn_perf_info->snssai = NULL;
|
||||
}
|
||||
if (dn_perf_info->dn_perf) {
|
||||
OpenAPI_list_for_each(dn_perf_info->dn_perf, node) {
|
||||
OpenAPI_dn_perf_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(dn_perf_info->dn_perf);
|
||||
dn_perf_info->dn_perf = NULL;
|
||||
}
|
||||
ogs_free(dn_perf_info);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_dn_perf_info_convertToJSON(OpenAPI_dn_perf_info_t *dn_perf_info)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (dn_perf_info == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [DnPerfInfo]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (dn_perf_info->app_id) {
|
||||
if (cJSON_AddStringToObject(item, "appId", dn_perf_info->app_id) == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (dn_perf_info->dnn) {
|
||||
if (cJSON_AddStringToObject(item, "dnn", dn_perf_info->dnn) == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [dnn]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (dn_perf_info->snssai) {
|
||||
cJSON *snssai_local_JSON = OpenAPI_snssai_convertToJSON(dn_perf_info->snssai);
|
||||
if (snssai_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [snssai]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "snssai", snssai_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [snssai]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (!dn_perf_info->dn_perf) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [dn_perf]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *dn_perfList = cJSON_AddArrayToObject(item, "dnPerf");
|
||||
if (dn_perfList == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [dn_perf]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_for_each(dn_perf_info->dn_perf, node) {
|
||||
cJSON *itemLocal = OpenAPI_dn_perf_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [dn_perf]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(dn_perfList, itemLocal);
|
||||
}
|
||||
|
||||
if (dn_perf_info->is_confidence) {
|
||||
if (cJSON_AddNumberToObject(item, "confidence", dn_perf_info->confidence) == NULL) {
|
||||
ogs_error("OpenAPI_dn_perf_info_convertToJSON() failed [confidence]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_dn_perf_info_t *OpenAPI_dn_perf_info_parseFromJSON(cJSON *dn_perf_infoJSON)
|
||||
{
|
||||
OpenAPI_dn_perf_info_t *dn_perf_info_local_var = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *app_id = NULL;
|
||||
cJSON *dnn = NULL;
|
||||
cJSON *snssai = NULL;
|
||||
OpenAPI_snssai_t *snssai_local_nonprim = NULL;
|
||||
cJSON *dn_perf = NULL;
|
||||
OpenAPI_list_t *dn_perfList = NULL;
|
||||
cJSON *confidence = NULL;
|
||||
app_id = cJSON_GetObjectItemCaseSensitive(dn_perf_infoJSON, "appId");
|
||||
if (app_id) {
|
||||
if (!cJSON_IsString(app_id) && !cJSON_IsNull(app_id)) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [app_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
dnn = cJSON_GetObjectItemCaseSensitive(dn_perf_infoJSON, "dnn");
|
||||
if (dnn) {
|
||||
if (!cJSON_IsString(dnn) && !cJSON_IsNull(dnn)) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [dnn]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
snssai = cJSON_GetObjectItemCaseSensitive(dn_perf_infoJSON, "snssai");
|
||||
if (snssai) {
|
||||
snssai_local_nonprim = OpenAPI_snssai_parseFromJSON(snssai);
|
||||
}
|
||||
|
||||
dn_perf = cJSON_GetObjectItemCaseSensitive(dn_perf_infoJSON, "dnPerf");
|
||||
if (!dn_perf) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [dn_perf]");
|
||||
goto end;
|
||||
}
|
||||
cJSON *dn_perf_local = NULL;
|
||||
if (!cJSON_IsArray(dn_perf)) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [dn_perf]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
dn_perfList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(dn_perf_local, dn_perf) {
|
||||
if (!cJSON_IsObject(dn_perf_local)) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [dn_perf]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_dn_perf_t *dn_perfItem = OpenAPI_dn_perf_parseFromJSON(dn_perf_local);
|
||||
if (!dn_perfItem) {
|
||||
ogs_error("No dn_perfItem");
|
||||
OpenAPI_list_free(dn_perfList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(dn_perfList, dn_perfItem);
|
||||
}
|
||||
|
||||
confidence = cJSON_GetObjectItemCaseSensitive(dn_perf_infoJSON, "confidence");
|
||||
if (confidence) {
|
||||
if (!cJSON_IsNumber(confidence)) {
|
||||
ogs_error("OpenAPI_dn_perf_info_parseFromJSON() failed [confidence]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
dn_perf_info_local_var = OpenAPI_dn_perf_info_create (
|
||||
app_id && !cJSON_IsNull(app_id) ? ogs_strdup(app_id->valuestring) : NULL,
|
||||
dnn && !cJSON_IsNull(dnn) ? ogs_strdup(dnn->valuestring) : NULL,
|
||||
snssai ? snssai_local_nonprim : NULL,
|
||||
dn_perfList,
|
||||
confidence ? true : false,
|
||||
confidence ? confidence->valuedouble : 0
|
||||
);
|
||||
|
||||
return dn_perf_info_local_var;
|
||||
end:
|
||||
if (snssai_local_nonprim) {
|
||||
OpenAPI_snssai_free(snssai_local_nonprim);
|
||||
snssai_local_nonprim = NULL;
|
||||
}
|
||||
if (dn_perfList) {
|
||||
OpenAPI_list_for_each(dn_perfList, node) {
|
||||
OpenAPI_dn_perf_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(dn_perfList);
|
||||
dn_perfList = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_dn_perf_info_t *OpenAPI_dn_perf_info_copy(OpenAPI_dn_perf_info_t *dst, OpenAPI_dn_perf_info_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_dn_perf_info_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_dn_perf_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_dn_perf_info_free(dst);
|
||||
dst = OpenAPI_dn_perf_info_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue