mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +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
185
lib/sbi/openapi/model/circumstance_description.c
Normal file
185
lib/sbi/openapi/model/circumstance_description.c
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "circumstance_description.h"
|
||||
|
||||
OpenAPI_circumstance_description_t *OpenAPI_circumstance_description_create(
|
||||
bool is_freq,
|
||||
float freq,
|
||||
char *tm,
|
||||
OpenAPI_network_area_info_t *loc_area,
|
||||
bool is_vol,
|
||||
long vol
|
||||
)
|
||||
{
|
||||
OpenAPI_circumstance_description_t *circumstance_description_local_var = ogs_malloc(sizeof(OpenAPI_circumstance_description_t));
|
||||
ogs_assert(circumstance_description_local_var);
|
||||
|
||||
circumstance_description_local_var->is_freq = is_freq;
|
||||
circumstance_description_local_var->freq = freq;
|
||||
circumstance_description_local_var->tm = tm;
|
||||
circumstance_description_local_var->loc_area = loc_area;
|
||||
circumstance_description_local_var->is_vol = is_vol;
|
||||
circumstance_description_local_var->vol = vol;
|
||||
|
||||
return circumstance_description_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_circumstance_description_free(OpenAPI_circumstance_description_t *circumstance_description)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == circumstance_description) {
|
||||
return;
|
||||
}
|
||||
if (circumstance_description->tm) {
|
||||
ogs_free(circumstance_description->tm);
|
||||
circumstance_description->tm = NULL;
|
||||
}
|
||||
if (circumstance_description->loc_area) {
|
||||
OpenAPI_network_area_info_free(circumstance_description->loc_area);
|
||||
circumstance_description->loc_area = NULL;
|
||||
}
|
||||
ogs_free(circumstance_description);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_circumstance_description_convertToJSON(OpenAPI_circumstance_description_t *circumstance_description)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (circumstance_description == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [CircumstanceDescription]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (circumstance_description->is_freq) {
|
||||
if (cJSON_AddNumberToObject(item, "freq", circumstance_description->freq) == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [freq]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (circumstance_description->tm) {
|
||||
if (cJSON_AddStringToObject(item, "tm", circumstance_description->tm) == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [tm]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (circumstance_description->loc_area) {
|
||||
cJSON *loc_area_local_JSON = OpenAPI_network_area_info_convertToJSON(circumstance_description->loc_area);
|
||||
if (loc_area_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [loc_area]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "locArea", loc_area_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [loc_area]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (circumstance_description->is_vol) {
|
||||
if (cJSON_AddNumberToObject(item, "vol", circumstance_description->vol) == NULL) {
|
||||
ogs_error("OpenAPI_circumstance_description_convertToJSON() failed [vol]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_circumstance_description_t *OpenAPI_circumstance_description_parseFromJSON(cJSON *circumstance_descriptionJSON)
|
||||
{
|
||||
OpenAPI_circumstance_description_t *circumstance_description_local_var = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *freq = NULL;
|
||||
cJSON *tm = NULL;
|
||||
cJSON *loc_area = NULL;
|
||||
OpenAPI_network_area_info_t *loc_area_local_nonprim = NULL;
|
||||
cJSON *vol = NULL;
|
||||
freq = cJSON_GetObjectItemCaseSensitive(circumstance_descriptionJSON, "freq");
|
||||
if (freq) {
|
||||
if (!cJSON_IsNumber(freq)) {
|
||||
ogs_error("OpenAPI_circumstance_description_parseFromJSON() failed [freq]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
tm = cJSON_GetObjectItemCaseSensitive(circumstance_descriptionJSON, "tm");
|
||||
if (tm) {
|
||||
if (!cJSON_IsString(tm) && !cJSON_IsNull(tm)) {
|
||||
ogs_error("OpenAPI_circumstance_description_parseFromJSON() failed [tm]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
loc_area = cJSON_GetObjectItemCaseSensitive(circumstance_descriptionJSON, "locArea");
|
||||
if (loc_area) {
|
||||
loc_area_local_nonprim = OpenAPI_network_area_info_parseFromJSON(loc_area);
|
||||
}
|
||||
|
||||
vol = cJSON_GetObjectItemCaseSensitive(circumstance_descriptionJSON, "vol");
|
||||
if (vol) {
|
||||
if (!cJSON_IsNumber(vol)) {
|
||||
ogs_error("OpenAPI_circumstance_description_parseFromJSON() failed [vol]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
circumstance_description_local_var = OpenAPI_circumstance_description_create (
|
||||
freq ? true : false,
|
||||
freq ? freq->valuedouble : 0,
|
||||
tm && !cJSON_IsNull(tm) ? ogs_strdup(tm->valuestring) : NULL,
|
||||
loc_area ? loc_area_local_nonprim : NULL,
|
||||
vol ? true : false,
|
||||
vol ? vol->valuedouble : 0
|
||||
);
|
||||
|
||||
return circumstance_description_local_var;
|
||||
end:
|
||||
if (loc_area_local_nonprim) {
|
||||
OpenAPI_network_area_info_free(loc_area_local_nonprim);
|
||||
loc_area_local_nonprim = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_circumstance_description_t *OpenAPI_circumstance_description_copy(OpenAPI_circumstance_description_t *dst, OpenAPI_circumstance_description_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_circumstance_description_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_circumstance_description_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_circumstance_description_free(dst);
|
||||
dst = OpenAPI_circumstance_description_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue