mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-22 15:31:16 +00:00
[5GC] Added BSF(Binding Support Function)
This commit is contained in:
139
lib/sbi/openapi/model/spatial_validity.c
Normal file
139
lib/sbi/openapi/model/spatial_validity.c
Normal file
@@ -0,0 +1,139 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "spatial_validity.h"
|
||||
|
||||
OpenAPI_spatial_validity_t *OpenAPI_spatial_validity_create(
|
||||
OpenAPI_list_t* presence_info_list
|
||||
)
|
||||
{
|
||||
OpenAPI_spatial_validity_t *spatial_validity_local_var = OpenAPI_malloc(sizeof(OpenAPI_spatial_validity_t));
|
||||
if (!spatial_validity_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
spatial_validity_local_var->presence_info_list = presence_info_list;
|
||||
|
||||
return spatial_validity_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_spatial_validity_free(OpenAPI_spatial_validity_t *spatial_validity)
|
||||
{
|
||||
if (NULL == spatial_validity) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(spatial_validity->presence_info_list, node) {
|
||||
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)node->data;
|
||||
OpenAPI_presence_info_free(localKeyValue->value);
|
||||
ogs_free(localKeyValue);
|
||||
}
|
||||
OpenAPI_list_free(spatial_validity->presence_info_list);
|
||||
ogs_free(spatial_validity);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_spatial_validity_convertToJSON(OpenAPI_spatial_validity_t *spatial_validity)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (spatial_validity == NULL) {
|
||||
ogs_error("OpenAPI_spatial_validity_convertToJSON() failed [SpatialValidity]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
cJSON *presence_info_list = cJSON_AddObjectToObject(item, "presenceInfoList");
|
||||
if (presence_info_list == NULL) {
|
||||
ogs_error("OpenAPI_spatial_validity_convertToJSON() failed [presence_info_list]");
|
||||
goto end;
|
||||
}
|
||||
cJSON *localMapObject = presence_info_list;
|
||||
OpenAPI_lnode_t *presence_info_list_node;
|
||||
if (spatial_validity->presence_info_list) {
|
||||
OpenAPI_list_for_each(spatial_validity->presence_info_list, presence_info_list_node) {
|
||||
OpenAPI_map_t *localKeyValue = (OpenAPI_map_t*)presence_info_list_node->data;
|
||||
cJSON *itemLocal = OpenAPI_presence_info_convertToJSON(localKeyValue->value);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_spatial_validity_convertToJSON() failed [presence_info_list]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(presence_info_list, localKeyValue->key, itemLocal);
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_spatial_validity_t *OpenAPI_spatial_validity_parseFromJSON(cJSON *spatial_validityJSON)
|
||||
{
|
||||
OpenAPI_spatial_validity_t *spatial_validity_local_var = NULL;
|
||||
cJSON *presence_info_list = cJSON_GetObjectItemCaseSensitive(spatial_validityJSON, "presenceInfoList");
|
||||
if (!presence_info_list) {
|
||||
ogs_error("OpenAPI_spatial_validity_parseFromJSON() failed [presence_info_list]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_list_t *presence_info_listList;
|
||||
|
||||
cJSON *presence_info_list_local_map;
|
||||
if (!cJSON_IsObject(presence_info_list)) {
|
||||
ogs_error("OpenAPI_spatial_validity_parseFromJSON() failed [presence_info_list]");
|
||||
goto end;
|
||||
}
|
||||
presence_info_listList = OpenAPI_list_create();
|
||||
OpenAPI_map_t *localMapKeyPair = NULL;
|
||||
cJSON_ArrayForEach(presence_info_list_local_map, presence_info_list) {
|
||||
cJSON *localMapObject = presence_info_list_local_map;
|
||||
if (!cJSON_IsObject(presence_info_list_local_map)) {
|
||||
ogs_error("OpenAPI_spatial_validity_parseFromJSON() failed [presence_info_list]");
|
||||
goto end;
|
||||
}
|
||||
localMapKeyPair = OpenAPI_map_create(
|
||||
localMapObject->string, OpenAPI_presence_info_parseFromJSON(localMapObject));
|
||||
OpenAPI_list_add(presence_info_listList, localMapKeyPair);
|
||||
}
|
||||
|
||||
spatial_validity_local_var = OpenAPI_spatial_validity_create (
|
||||
presence_info_listList
|
||||
);
|
||||
|
||||
return spatial_validity_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_spatial_validity_t *OpenAPI_spatial_validity_copy(OpenAPI_spatial_validity_t *dst, OpenAPI_spatial_validity_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_spatial_validity_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_spatial_validity_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_spatial_validity_free(dst);
|
||||
dst = OpenAPI_spatial_validity_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user