#include #include #include #include "point_uncertainty_circle.h" OpenAPI_point_uncertainty_circle_t *OpenAPI_point_uncertainty_circle_create( OpenAPI_supported_gad_shapes_t *shape, OpenAPI_geographical_coordinates_t *point, float uncertainty ) { OpenAPI_point_uncertainty_circle_t *point_uncertainty_circle_local_var = OpenAPI_malloc(sizeof(OpenAPI_point_uncertainty_circle_t)); if (!point_uncertainty_circle_local_var) { return NULL; } point_uncertainty_circle_local_var->shape = shape; point_uncertainty_circle_local_var->point = point; point_uncertainty_circle_local_var->uncertainty = uncertainty; return point_uncertainty_circle_local_var; } void OpenAPI_point_uncertainty_circle_free(OpenAPI_point_uncertainty_circle_t *point_uncertainty_circle) { if (NULL == point_uncertainty_circle) { return; } OpenAPI_lnode_t *node; OpenAPI_supported_gad_shapes_free(point_uncertainty_circle->shape); OpenAPI_geographical_coordinates_free(point_uncertainty_circle->point); ogs_free(point_uncertainty_circle); } cJSON *OpenAPI_point_uncertainty_circle_convertToJSON(OpenAPI_point_uncertainty_circle_t *point_uncertainty_circle) { cJSON *item = NULL; if (point_uncertainty_circle == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [PointUncertaintyCircle]"); return NULL; } item = cJSON_CreateObject(); cJSON *shape_local_JSON = OpenAPI_supported_gad_shapes_convertToJSON(point_uncertainty_circle->shape); if (shape_local_JSON == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [shape]"); goto end; } cJSON_AddItemToObject(item, "shape", shape_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [shape]"); goto end; } cJSON *point_local_JSON = OpenAPI_geographical_coordinates_convertToJSON(point_uncertainty_circle->point); if (point_local_JSON == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [point]"); goto end; } cJSON_AddItemToObject(item, "point", point_local_JSON); if (item->child == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [point]"); goto end; } if (cJSON_AddNumberToObject(item, "uncertainty", point_uncertainty_circle->uncertainty) == NULL) { ogs_error("OpenAPI_point_uncertainty_circle_convertToJSON() failed [uncertainty]"); goto end; } end: return item; } OpenAPI_point_uncertainty_circle_t *OpenAPI_point_uncertainty_circle_parseFromJSON(cJSON *point_uncertainty_circleJSON) { OpenAPI_point_uncertainty_circle_t *point_uncertainty_circle_local_var = NULL; cJSON *shape = cJSON_GetObjectItemCaseSensitive(point_uncertainty_circleJSON, "shape"); if (!shape) { ogs_error("OpenAPI_point_uncertainty_circle_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_uncertainty_circleJSON, "point"); if (!point) { ogs_error("OpenAPI_point_uncertainty_circle_parseFromJSON() failed [point]"); goto end; } OpenAPI_geographical_coordinates_t *point_local_nonprim = NULL; point_local_nonprim = OpenAPI_geographical_coordinates_parseFromJSON(point); cJSON *uncertainty = cJSON_GetObjectItemCaseSensitive(point_uncertainty_circleJSON, "uncertainty"); if (!uncertainty) { ogs_error("OpenAPI_point_uncertainty_circle_parseFromJSON() failed [uncertainty]"); goto end; } if (!cJSON_IsNumber(uncertainty)) { ogs_error("OpenAPI_point_uncertainty_circle_parseFromJSON() failed [uncertainty]"); goto end; } point_uncertainty_circle_local_var = OpenAPI_point_uncertainty_circle_create ( shape_local_nonprim, point_local_nonprim, uncertainty->valuedouble ); return point_uncertainty_circle_local_var; end: return NULL; } OpenAPI_point_uncertainty_circle_t *OpenAPI_point_uncertainty_circle_copy(OpenAPI_point_uncertainty_circle_t *dst, OpenAPI_point_uncertainty_circle_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_point_uncertainty_circle_convertToJSON(src); if (!item) { ogs_error("OpenAPI_point_uncertainty_circle_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_point_uncertainty_circle_free(dst); dst = OpenAPI_point_uncertainty_circle_parseFromJSON(item); cJSON_Delete(item); return dst; }