mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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
209
lib/sbi/openapi/model/dn_performance_req.c
Normal file
209
lib/sbi/openapi/model/dn_performance_req.c
Normal file
|
|
@ -0,0 +1,209 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "dn_performance_req.h"
|
||||
|
||||
OpenAPI_dn_performance_req_t *OpenAPI_dn_performance_req_create(
|
||||
OpenAPI_dn_perf_ordering_criterion_t *dn_perf_order_criter,
|
||||
OpenAPI_matching_direction_t *order,
|
||||
OpenAPI_list_t *report_thresholds
|
||||
)
|
||||
{
|
||||
OpenAPI_dn_performance_req_t *dn_performance_req_local_var = ogs_malloc(sizeof(OpenAPI_dn_performance_req_t));
|
||||
ogs_assert(dn_performance_req_local_var);
|
||||
|
||||
dn_performance_req_local_var->dn_perf_order_criter = dn_perf_order_criter;
|
||||
dn_performance_req_local_var->order = order;
|
||||
dn_performance_req_local_var->report_thresholds = report_thresholds;
|
||||
|
||||
return dn_performance_req_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_dn_performance_req_free(OpenAPI_dn_performance_req_t *dn_performance_req)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == dn_performance_req) {
|
||||
return;
|
||||
}
|
||||
if (dn_performance_req->dn_perf_order_criter) {
|
||||
OpenAPI_dn_perf_ordering_criterion_free(dn_performance_req->dn_perf_order_criter);
|
||||
dn_performance_req->dn_perf_order_criter = NULL;
|
||||
}
|
||||
if (dn_performance_req->order) {
|
||||
OpenAPI_matching_direction_free(dn_performance_req->order);
|
||||
dn_performance_req->order = NULL;
|
||||
}
|
||||
if (dn_performance_req->report_thresholds) {
|
||||
OpenAPI_list_for_each(dn_performance_req->report_thresholds, node) {
|
||||
OpenAPI_threshold_level_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(dn_performance_req->report_thresholds);
|
||||
dn_performance_req->report_thresholds = NULL;
|
||||
}
|
||||
ogs_free(dn_performance_req);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_dn_performance_req_convertToJSON(OpenAPI_dn_performance_req_t *dn_performance_req)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (dn_performance_req == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [DnPerformanceReq]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (dn_performance_req->dn_perf_order_criter) {
|
||||
cJSON *dn_perf_order_criter_local_JSON = OpenAPI_dn_perf_ordering_criterion_convertToJSON(dn_performance_req->dn_perf_order_criter);
|
||||
if (dn_perf_order_criter_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [dn_perf_order_criter]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "dnPerfOrderCriter", dn_perf_order_criter_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [dn_perf_order_criter]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (dn_performance_req->order) {
|
||||
cJSON *order_local_JSON = OpenAPI_matching_direction_convertToJSON(dn_performance_req->order);
|
||||
if (order_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [order]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "order", order_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [order]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (dn_performance_req->report_thresholds) {
|
||||
cJSON *report_thresholdsList = cJSON_AddArrayToObject(item, "reportThresholds");
|
||||
if (report_thresholdsList == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [report_thresholds]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_for_each(dn_performance_req->report_thresholds, node) {
|
||||
cJSON *itemLocal = OpenAPI_threshold_level_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_dn_performance_req_convertToJSON() failed [report_thresholds]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(report_thresholdsList, itemLocal);
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_dn_performance_req_t *OpenAPI_dn_performance_req_parseFromJSON(cJSON *dn_performance_reqJSON)
|
||||
{
|
||||
OpenAPI_dn_performance_req_t *dn_performance_req_local_var = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *dn_perf_order_criter = NULL;
|
||||
OpenAPI_dn_perf_ordering_criterion_t *dn_perf_order_criter_local_nonprim = NULL;
|
||||
cJSON *order = NULL;
|
||||
OpenAPI_matching_direction_t *order_local_nonprim = NULL;
|
||||
cJSON *report_thresholds = NULL;
|
||||
OpenAPI_list_t *report_thresholdsList = NULL;
|
||||
dn_perf_order_criter = cJSON_GetObjectItemCaseSensitive(dn_performance_reqJSON, "dnPerfOrderCriter");
|
||||
if (dn_perf_order_criter) {
|
||||
dn_perf_order_criter_local_nonprim = OpenAPI_dn_perf_ordering_criterion_parseFromJSON(dn_perf_order_criter);
|
||||
}
|
||||
|
||||
order = cJSON_GetObjectItemCaseSensitive(dn_performance_reqJSON, "order");
|
||||
if (order) {
|
||||
order_local_nonprim = OpenAPI_matching_direction_parseFromJSON(order);
|
||||
}
|
||||
|
||||
report_thresholds = cJSON_GetObjectItemCaseSensitive(dn_performance_reqJSON, "reportThresholds");
|
||||
if (report_thresholds) {
|
||||
cJSON *report_thresholds_local = NULL;
|
||||
if (!cJSON_IsArray(report_thresholds)) {
|
||||
ogs_error("OpenAPI_dn_performance_req_parseFromJSON() failed [report_thresholds]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
report_thresholdsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(report_thresholds_local, report_thresholds) {
|
||||
if (!cJSON_IsObject(report_thresholds_local)) {
|
||||
ogs_error("OpenAPI_dn_performance_req_parseFromJSON() failed [report_thresholds]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_threshold_level_t *report_thresholdsItem = OpenAPI_threshold_level_parseFromJSON(report_thresholds_local);
|
||||
if (!report_thresholdsItem) {
|
||||
ogs_error("No report_thresholdsItem");
|
||||
OpenAPI_list_free(report_thresholdsList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(report_thresholdsList, report_thresholdsItem);
|
||||
}
|
||||
}
|
||||
|
||||
dn_performance_req_local_var = OpenAPI_dn_performance_req_create (
|
||||
dn_perf_order_criter ? dn_perf_order_criter_local_nonprim : NULL,
|
||||
order ? order_local_nonprim : NULL,
|
||||
report_thresholds ? report_thresholdsList : NULL
|
||||
);
|
||||
|
||||
return dn_performance_req_local_var;
|
||||
end:
|
||||
if (dn_perf_order_criter_local_nonprim) {
|
||||
OpenAPI_dn_perf_ordering_criterion_free(dn_perf_order_criter_local_nonprim);
|
||||
dn_perf_order_criter_local_nonprim = NULL;
|
||||
}
|
||||
if (order_local_nonprim) {
|
||||
OpenAPI_matching_direction_free(order_local_nonprim);
|
||||
order_local_nonprim = NULL;
|
||||
}
|
||||
if (report_thresholdsList) {
|
||||
OpenAPI_list_for_each(report_thresholdsList, node) {
|
||||
OpenAPI_threshold_level_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(report_thresholdsList);
|
||||
report_thresholdsList = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_dn_performance_req_t *OpenAPI_dn_performance_req_copy(OpenAPI_dn_performance_req_t *dst, OpenAPI_dn_performance_req_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_dn_performance_req_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_dn_performance_req_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_performance_req_free(dst);
|
||||
dst = OpenAPI_dn_performance_req_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue