mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
262 lines
8.9 KiB
C
262 lines
8.9 KiB
C
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "user_location.h"
|
|
|
|
OpenAPI_user_location_t *OpenAPI_user_location_create(
|
|
OpenAPI_eutra_location_t *eutra_location,
|
|
OpenAPI_nr_location_t *nr_location,
|
|
OpenAPI_n3ga_location_t *n3ga_location,
|
|
OpenAPI_utra_location_t *utra_location,
|
|
OpenAPI_gera_location_t *gera_location
|
|
)
|
|
{
|
|
OpenAPI_user_location_t *user_location_local_var = ogs_malloc(sizeof(OpenAPI_user_location_t));
|
|
ogs_assert(user_location_local_var);
|
|
|
|
user_location_local_var->eutra_location = eutra_location;
|
|
user_location_local_var->nr_location = nr_location;
|
|
user_location_local_var->n3ga_location = n3ga_location;
|
|
user_location_local_var->utra_location = utra_location;
|
|
user_location_local_var->gera_location = gera_location;
|
|
|
|
return user_location_local_var;
|
|
}
|
|
|
|
void OpenAPI_user_location_free(OpenAPI_user_location_t *user_location)
|
|
{
|
|
OpenAPI_lnode_t *node = NULL;
|
|
|
|
if (NULL == user_location) {
|
|
return;
|
|
}
|
|
if (user_location->eutra_location) {
|
|
OpenAPI_eutra_location_free(user_location->eutra_location);
|
|
user_location->eutra_location = NULL;
|
|
}
|
|
if (user_location->nr_location) {
|
|
OpenAPI_nr_location_free(user_location->nr_location);
|
|
user_location->nr_location = NULL;
|
|
}
|
|
if (user_location->n3ga_location) {
|
|
OpenAPI_n3ga_location_free(user_location->n3ga_location);
|
|
user_location->n3ga_location = NULL;
|
|
}
|
|
if (user_location->utra_location) {
|
|
OpenAPI_utra_location_free(user_location->utra_location);
|
|
user_location->utra_location = NULL;
|
|
}
|
|
if (user_location->gera_location) {
|
|
OpenAPI_gera_location_free(user_location->gera_location);
|
|
user_location->gera_location = NULL;
|
|
}
|
|
ogs_free(user_location);
|
|
}
|
|
|
|
cJSON *OpenAPI_user_location_convertToJSON(OpenAPI_user_location_t *user_location)
|
|
{
|
|
cJSON *item = NULL;
|
|
OpenAPI_lnode_t *node = NULL;
|
|
|
|
if (user_location == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [UserLocation]");
|
|
return NULL;
|
|
}
|
|
|
|
item = cJSON_CreateObject();
|
|
if (user_location->eutra_location) {
|
|
cJSON *eutra_location_local_JSON = OpenAPI_eutra_location_convertToJSON(user_location->eutra_location);
|
|
if (eutra_location_local_JSON == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [eutra_location]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToObject(item, "eutraLocation", eutra_location_local_JSON);
|
|
if (item->child == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [eutra_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (user_location->nr_location) {
|
|
cJSON *nr_location_local_JSON = OpenAPI_nr_location_convertToJSON(user_location->nr_location);
|
|
if (nr_location_local_JSON == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [nr_location]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToObject(item, "nrLocation", nr_location_local_JSON);
|
|
if (item->child == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [nr_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (user_location->n3ga_location) {
|
|
cJSON *n3ga_location_local_JSON = OpenAPI_n3ga_location_convertToJSON(user_location->n3ga_location);
|
|
if (n3ga_location_local_JSON == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [n3ga_location]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToObject(item, "n3gaLocation", n3ga_location_local_JSON);
|
|
if (item->child == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [n3ga_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (user_location->utra_location) {
|
|
cJSON *utra_location_local_JSON = OpenAPI_utra_location_convertToJSON(user_location->utra_location);
|
|
if (utra_location_local_JSON == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [utra_location]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToObject(item, "utraLocation", utra_location_local_JSON);
|
|
if (item->child == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [utra_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (user_location->gera_location) {
|
|
cJSON *gera_location_local_JSON = OpenAPI_gera_location_convertToJSON(user_location->gera_location);
|
|
if (gera_location_local_JSON == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [gera_location]");
|
|
goto end;
|
|
}
|
|
cJSON_AddItemToObject(item, "geraLocation", gera_location_local_JSON);
|
|
if (item->child == NULL) {
|
|
ogs_error("OpenAPI_user_location_convertToJSON() failed [gera_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
end:
|
|
return item;
|
|
}
|
|
|
|
OpenAPI_user_location_t *OpenAPI_user_location_parseFromJSON(cJSON *user_locationJSON)
|
|
{
|
|
OpenAPI_user_location_t *user_location_local_var = NULL;
|
|
OpenAPI_lnode_t *node = NULL;
|
|
cJSON *eutra_location = NULL;
|
|
OpenAPI_eutra_location_t *eutra_location_local_nonprim = NULL;
|
|
cJSON *nr_location = NULL;
|
|
OpenAPI_nr_location_t *nr_location_local_nonprim = NULL;
|
|
cJSON *n3ga_location = NULL;
|
|
OpenAPI_n3ga_location_t *n3ga_location_local_nonprim = NULL;
|
|
cJSON *utra_location = NULL;
|
|
OpenAPI_utra_location_t *utra_location_local_nonprim = NULL;
|
|
cJSON *gera_location = NULL;
|
|
OpenAPI_gera_location_t *gera_location_local_nonprim = NULL;
|
|
eutra_location = cJSON_GetObjectItemCaseSensitive(user_locationJSON, "eutraLocation");
|
|
if (eutra_location) {
|
|
eutra_location_local_nonprim = OpenAPI_eutra_location_parseFromJSON(eutra_location);
|
|
if (!eutra_location_local_nonprim) {
|
|
ogs_error("OpenAPI_eutra_location_parseFromJSON failed [eutra_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
nr_location = cJSON_GetObjectItemCaseSensitive(user_locationJSON, "nrLocation");
|
|
if (nr_location) {
|
|
nr_location_local_nonprim = OpenAPI_nr_location_parseFromJSON(nr_location);
|
|
if (!nr_location_local_nonprim) {
|
|
ogs_error("OpenAPI_nr_location_parseFromJSON failed [nr_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
n3ga_location = cJSON_GetObjectItemCaseSensitive(user_locationJSON, "n3gaLocation");
|
|
if (n3ga_location) {
|
|
n3ga_location_local_nonprim = OpenAPI_n3ga_location_parseFromJSON(n3ga_location);
|
|
if (!n3ga_location_local_nonprim) {
|
|
ogs_error("OpenAPI_n3ga_location_parseFromJSON failed [n3ga_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
utra_location = cJSON_GetObjectItemCaseSensitive(user_locationJSON, "utraLocation");
|
|
if (utra_location) {
|
|
utra_location_local_nonprim = OpenAPI_utra_location_parseFromJSON(utra_location);
|
|
if (!utra_location_local_nonprim) {
|
|
ogs_error("OpenAPI_utra_location_parseFromJSON failed [utra_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
gera_location = cJSON_GetObjectItemCaseSensitive(user_locationJSON, "geraLocation");
|
|
if (gera_location) {
|
|
gera_location_local_nonprim = OpenAPI_gera_location_parseFromJSON(gera_location);
|
|
if (!gera_location_local_nonprim) {
|
|
ogs_error("OpenAPI_gera_location_parseFromJSON failed [gera_location]");
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
user_location_local_var = OpenAPI_user_location_create (
|
|
eutra_location ? eutra_location_local_nonprim : NULL,
|
|
nr_location ? nr_location_local_nonprim : NULL,
|
|
n3ga_location ? n3ga_location_local_nonprim : NULL,
|
|
utra_location ? utra_location_local_nonprim : NULL,
|
|
gera_location ? gera_location_local_nonprim : NULL
|
|
);
|
|
|
|
return user_location_local_var;
|
|
end:
|
|
if (eutra_location_local_nonprim) {
|
|
OpenAPI_eutra_location_free(eutra_location_local_nonprim);
|
|
eutra_location_local_nonprim = NULL;
|
|
}
|
|
if (nr_location_local_nonprim) {
|
|
OpenAPI_nr_location_free(nr_location_local_nonprim);
|
|
nr_location_local_nonprim = NULL;
|
|
}
|
|
if (n3ga_location_local_nonprim) {
|
|
OpenAPI_n3ga_location_free(n3ga_location_local_nonprim);
|
|
n3ga_location_local_nonprim = NULL;
|
|
}
|
|
if (utra_location_local_nonprim) {
|
|
OpenAPI_utra_location_free(utra_location_local_nonprim);
|
|
utra_location_local_nonprim = NULL;
|
|
}
|
|
if (gera_location_local_nonprim) {
|
|
OpenAPI_gera_location_free(gera_location_local_nonprim);
|
|
gera_location_local_nonprim = NULL;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
OpenAPI_user_location_t *OpenAPI_user_location_copy(OpenAPI_user_location_t *dst, OpenAPI_user_location_t *src)
|
|
{
|
|
cJSON *item = NULL;
|
|
char *content = NULL;
|
|
|
|
ogs_assert(src);
|
|
item = OpenAPI_user_location_convertToJSON(src);
|
|
if (!item) {
|
|
ogs_error("OpenAPI_user_location_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_user_location_free(dst);
|
|
dst = OpenAPI_user_location_parseFromJSON(item);
|
|
cJSON_Delete(item);
|
|
|
|
return dst;
|
|
}
|
|
|