mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
[SBI] Crash occurs when ENUM in the MAP (#2103)
This commit is contained in:
parent
ce668c556c
commit
969c116e77
1097 changed files with 266728 additions and 42047 deletions
|
|
@ -28,19 +28,30 @@ OpenAPI_point_altitude_uncertainty_t *OpenAPI_point_altitude_uncertainty_create(
|
|||
|
||||
void OpenAPI_point_altitude_uncertainty_free(OpenAPI_point_altitude_uncertainty_t *point_altitude_uncertainty)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == point_altitude_uncertainty) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_supported_gad_shapes_free(point_altitude_uncertainty->shape);
|
||||
OpenAPI_geographical_coordinates_free(point_altitude_uncertainty->point);
|
||||
OpenAPI_uncertainty_ellipse_free(point_altitude_uncertainty->uncertainty_ellipse);
|
||||
if (point_altitude_uncertainty->shape) {
|
||||
OpenAPI_supported_gad_shapes_free(point_altitude_uncertainty->shape);
|
||||
point_altitude_uncertainty->shape = NULL;
|
||||
}
|
||||
if (point_altitude_uncertainty->point) {
|
||||
OpenAPI_geographical_coordinates_free(point_altitude_uncertainty->point);
|
||||
point_altitude_uncertainty->point = NULL;
|
||||
}
|
||||
if (point_altitude_uncertainty->uncertainty_ellipse) {
|
||||
OpenAPI_uncertainty_ellipse_free(point_altitude_uncertainty->uncertainty_ellipse);
|
||||
point_altitude_uncertainty->uncertainty_ellipse = NULL;
|
||||
}
|
||||
ogs_free(point_altitude_uncertainty);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_point_altitude_uncertainty_convertToJSON(OpenAPI_point_altitude_uncertainty_t *point_altitude_uncertainty)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (point_altitude_uncertainty == NULL) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [PointAltitudeUncertainty]");
|
||||
|
|
@ -48,6 +59,10 @@ cJSON *OpenAPI_point_altitude_uncertainty_convertToJSON(OpenAPI_point_altitude_u
|
|||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!point_altitude_uncertainty->shape) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [shape]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *shape_local_JSON = OpenAPI_supported_gad_shapes_convertToJSON(point_altitude_uncertainty->shape);
|
||||
if (shape_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [shape]");
|
||||
|
|
@ -59,6 +74,10 @@ cJSON *OpenAPI_point_altitude_uncertainty_convertToJSON(OpenAPI_point_altitude_u
|
|||
goto end;
|
||||
}
|
||||
|
||||
if (!point_altitude_uncertainty->point) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [point]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *point_local_JSON = OpenAPI_geographical_coordinates_convertToJSON(point_altitude_uncertainty->point);
|
||||
if (point_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [point]");
|
||||
|
|
@ -75,6 +94,10 @@ cJSON *OpenAPI_point_altitude_uncertainty_convertToJSON(OpenAPI_point_altitude_u
|
|||
goto end;
|
||||
}
|
||||
|
||||
if (!point_altitude_uncertainty->uncertainty_ellipse) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [uncertainty_ellipse]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *uncertainty_ellipse_local_JSON = OpenAPI_uncertainty_ellipse_convertToJSON(point_altitude_uncertainty->uncertainty_ellipse);
|
||||
if (uncertainty_ellipse_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_convertToJSON() failed [uncertainty_ellipse]");
|
||||
|
|
@ -103,61 +126,62 @@ end:
|
|||
OpenAPI_point_altitude_uncertainty_t *OpenAPI_point_altitude_uncertainty_parseFromJSON(cJSON *point_altitude_uncertaintyJSON)
|
||||
{
|
||||
OpenAPI_point_altitude_uncertainty_t *point_altitude_uncertainty_local_var = NULL;
|
||||
cJSON *shape = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "shape");
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *shape = NULL;
|
||||
OpenAPI_supported_gad_shapes_t *shape_local_nonprim = NULL;
|
||||
cJSON *point = NULL;
|
||||
OpenAPI_geographical_coordinates_t *point_local_nonprim = NULL;
|
||||
cJSON *altitude = NULL;
|
||||
cJSON *uncertainty_ellipse = NULL;
|
||||
OpenAPI_uncertainty_ellipse_t *uncertainty_ellipse_local_nonprim = NULL;
|
||||
cJSON *uncertainty_altitude = NULL;
|
||||
cJSON *confidence = NULL;
|
||||
shape = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "shape");
|
||||
if (!shape) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [shape]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_supported_gad_shapes_t *shape_local_nonprim = NULL;
|
||||
shape_local_nonprim = OpenAPI_supported_gad_shapes_parseFromJSON(shape);
|
||||
|
||||
cJSON *point = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "point");
|
||||
point = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "point");
|
||||
if (!point) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [point]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_geographical_coordinates_t *point_local_nonprim = NULL;
|
||||
point_local_nonprim = OpenAPI_geographical_coordinates_parseFromJSON(point);
|
||||
|
||||
cJSON *altitude = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "altitude");
|
||||
altitude = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "altitude");
|
||||
if (!altitude) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [altitude]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsNumber(altitude)) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [altitude]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *uncertainty_ellipse = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "uncertaintyEllipse");
|
||||
uncertainty_ellipse = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "uncertaintyEllipse");
|
||||
if (!uncertainty_ellipse) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [uncertainty_ellipse]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_uncertainty_ellipse_t *uncertainty_ellipse_local_nonprim = NULL;
|
||||
uncertainty_ellipse_local_nonprim = OpenAPI_uncertainty_ellipse_parseFromJSON(uncertainty_ellipse);
|
||||
|
||||
cJSON *uncertainty_altitude = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "uncertaintyAltitude");
|
||||
uncertainty_altitude = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "uncertaintyAltitude");
|
||||
if (!uncertainty_altitude) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [uncertainty_altitude]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsNumber(uncertainty_altitude)) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [uncertainty_altitude]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *confidence = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "confidence");
|
||||
confidence = cJSON_GetObjectItemCaseSensitive(point_altitude_uncertaintyJSON, "confidence");
|
||||
if (!confidence) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [confidence]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsNumber(confidence)) {
|
||||
ogs_error("OpenAPI_point_altitude_uncertainty_parseFromJSON() failed [confidence]");
|
||||
goto end;
|
||||
|
|
@ -177,6 +201,18 @@ OpenAPI_point_altitude_uncertainty_t *OpenAPI_point_altitude_uncertainty_parseFr
|
|||
|
||||
return point_altitude_uncertainty_local_var;
|
||||
end:
|
||||
if (shape_local_nonprim) {
|
||||
OpenAPI_supported_gad_shapes_free(shape_local_nonprim);
|
||||
shape_local_nonprim = NULL;
|
||||
}
|
||||
if (point_local_nonprim) {
|
||||
OpenAPI_geographical_coordinates_free(point_local_nonprim);
|
||||
point_local_nonprim = NULL;
|
||||
}
|
||||
if (uncertainty_ellipse_local_nonprim) {
|
||||
OpenAPI_uncertainty_ellipse_free(uncertainty_ellipse_local_nonprim);
|
||||
uncertainty_ellipse_local_nonprim = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue