mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +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
149
lib/sbi/openapi/model/redundant_transmission_exp_req.c
Normal file
149
lib/sbi/openapi/model/redundant_transmission_exp_req.c
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "redundant_transmission_exp_req.h"
|
||||
|
||||
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_create(
|
||||
OpenAPI_red_trans_exp_ordering_criterion_t *red_t_order_criter,
|
||||
OpenAPI_matching_direction_t *order
|
||||
)
|
||||
{
|
||||
OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req_local_var = ogs_malloc(sizeof(OpenAPI_redundant_transmission_exp_req_t));
|
||||
ogs_assert(redundant_transmission_exp_req_local_var);
|
||||
|
||||
redundant_transmission_exp_req_local_var->red_t_order_criter = red_t_order_criter;
|
||||
redundant_transmission_exp_req_local_var->order = order;
|
||||
|
||||
return redundant_transmission_exp_req_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_redundant_transmission_exp_req_free(OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == redundant_transmission_exp_req) {
|
||||
return;
|
||||
}
|
||||
if (redundant_transmission_exp_req->red_t_order_criter) {
|
||||
OpenAPI_red_trans_exp_ordering_criterion_free(redundant_transmission_exp_req->red_t_order_criter);
|
||||
redundant_transmission_exp_req->red_t_order_criter = NULL;
|
||||
}
|
||||
if (redundant_transmission_exp_req->order) {
|
||||
OpenAPI_matching_direction_free(redundant_transmission_exp_req->order);
|
||||
redundant_transmission_exp_req->order = NULL;
|
||||
}
|
||||
ogs_free(redundant_transmission_exp_req);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_redundant_transmission_exp_req_convertToJSON(OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (redundant_transmission_exp_req == NULL) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_req_convertToJSON() failed [RedundantTransmissionExpReq]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (redundant_transmission_exp_req->red_t_order_criter) {
|
||||
cJSON *red_t_order_criter_local_JSON = OpenAPI_red_trans_exp_ordering_criterion_convertToJSON(redundant_transmission_exp_req->red_t_order_criter);
|
||||
if (red_t_order_criter_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_req_convertToJSON() failed [red_t_order_criter]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "redTOrderCriter", red_t_order_criter_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_req_convertToJSON() failed [red_t_order_criter]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (redundant_transmission_exp_req->order) {
|
||||
cJSON *order_local_JSON = OpenAPI_matching_direction_convertToJSON(redundant_transmission_exp_req->order);
|
||||
if (order_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_req_convertToJSON() failed [order]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "order", order_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_req_convertToJSON() failed [order]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_parseFromJSON(cJSON *redundant_transmission_exp_reqJSON)
|
||||
{
|
||||
OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req_local_var = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *red_t_order_criter = NULL;
|
||||
OpenAPI_red_trans_exp_ordering_criterion_t *red_t_order_criter_local_nonprim = NULL;
|
||||
cJSON *order = NULL;
|
||||
OpenAPI_matching_direction_t *order_local_nonprim = NULL;
|
||||
red_t_order_criter = cJSON_GetObjectItemCaseSensitive(redundant_transmission_exp_reqJSON, "redTOrderCriter");
|
||||
if (red_t_order_criter) {
|
||||
red_t_order_criter_local_nonprim = OpenAPI_red_trans_exp_ordering_criterion_parseFromJSON(red_t_order_criter);
|
||||
}
|
||||
|
||||
order = cJSON_GetObjectItemCaseSensitive(redundant_transmission_exp_reqJSON, "order");
|
||||
if (order) {
|
||||
order_local_nonprim = OpenAPI_matching_direction_parseFromJSON(order);
|
||||
}
|
||||
|
||||
redundant_transmission_exp_req_local_var = OpenAPI_redundant_transmission_exp_req_create (
|
||||
red_t_order_criter ? red_t_order_criter_local_nonprim : NULL,
|
||||
order ? order_local_nonprim : NULL
|
||||
);
|
||||
|
||||
return redundant_transmission_exp_req_local_var;
|
||||
end:
|
||||
if (red_t_order_criter_local_nonprim) {
|
||||
OpenAPI_red_trans_exp_ordering_criterion_free(red_t_order_criter_local_nonprim);
|
||||
red_t_order_criter_local_nonprim = NULL;
|
||||
}
|
||||
if (order_local_nonprim) {
|
||||
OpenAPI_matching_direction_free(order_local_nonprim);
|
||||
order_local_nonprim = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_copy(OpenAPI_redundant_transmission_exp_req_t *dst, OpenAPI_redundant_transmission_exp_req_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_redundant_transmission_exp_req_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_redundant_transmission_exp_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_redundant_transmission_exp_req_free(dst);
|
||||
dst = OpenAPI_redundant_transmission_exp_req_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue