PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_Equals()

Datum ST_Equals ( PG_FUNCTION_ARGS  )

Definition at line 2501 of file postgis/lwgeom_geos.c.

2502 {
2503  GSERIALIZED *geom1;
2504  GSERIALIZED *geom2;
2505  GEOSGeometry *g1, *g2;
2506  char result;
2507  GBOX box1, box2;
2508 
2509  geom1 = PG_GETARG_GSERIALIZED_P(0);
2510  geom2 = PG_GETARG_GSERIALIZED_P(1);
2511 
2512  errorIfGeometryCollection(geom1,geom2);
2514 
2515  /* Empty == Empty */
2516  if ( gserialized_is_empty(geom1) && gserialized_is_empty(geom2) )
2517  PG_RETURN_BOOL(true);
2518 
2519  /*
2520  * short-circuit: If geom1 and geom2 do not have the same bounding box
2521  * we can return FALSE.
2522  */
2523  if ( gserialized_get_gbox_p(geom1, &box1) &&
2524  gserialized_get_gbox_p(geom2, &box2) )
2525  {
2526  if ( gbox_same_2d_float(&box1, &box2) == LW_FALSE )
2527  {
2528  PG_RETURN_BOOL(false);
2529  }
2530  }
2531 
2532  /*
2533  * short-circuit: if geom1 and geom2 are binary-equivalent, we can return
2534  * TRUE. This is much faster than doing the comparison using GEOS.
2535  */
2536  if (VARSIZE(geom1) == VARSIZE(geom2) && !memcmp(geom1, geom2, VARSIZE(geom1))) {
2537  PG_RETURN_BOOL(true);
2538  }
2539 
2540  initGEOS(lwpgnotice, lwgeom_geos_error);
2541 
2542  g1 = POSTGIS2GEOS(geom1);
2543 
2544  if (!g1)
2545  HANDLE_GEOS_ERROR("First argument geometry could not be converted to GEOS");
2546 
2547  g2 = POSTGIS2GEOS(geom2);
2548 
2549  if (!g2)
2550  {
2551  GEOSGeom_destroy(g1);
2552  HANDLE_GEOS_ERROR("Second argument geometry could not be converted to GEOS");
2553  }
2554 
2555  result = GEOSEquals(g1,g2);
2556 
2557  GEOSGeom_destroy(g1);
2558  GEOSGeom_destroy(g2);
2559 
2560  if (result == 2) HANDLE_GEOS_ERROR("GEOSEquals");
2561 
2562  PG_FREE_IF_COPY(geom1, 0);
2563  PG_FREE_IF_COPY(geom2, 1);
2564 
2565  PG_RETURN_BOOL(result);
2566 }
int gbox_same_2d_float(const GBOX *g1, const GBOX *g2)
Check if two given GBOX are the same in x and y, or would round to the same GBOX in x and if serializ...
Definition: g_box.c:194
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
int gserialized_is_empty(const GSERIALIZED *g)
Check if a GSERIALIZED is empty without deserializing first.
Definition: g_serialized.c:179
int gserialized_get_gbox_p(const GSERIALIZED *g, GBOX *box)
Read the bounding box off a serialization and calculate one if it is not already there.
Definition: g_serialized.c:640
void lwgeom_geos_error(const char *fmt,...)
#define LW_FALSE
Definition: liblwgeom.h:77
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:338
#define HANDLE_GEOS_ERROR(label)
void errorIfGeometryCollection(GSERIALIZED *g1, GSERIALIZED *g2)
Throws an ereport ERROR if either geometry is a COLLECTIONTYPE.
GEOSGeometry * POSTGIS2GEOS(GSERIALIZED *pglwgeom)

References error_if_srid_mismatch(), errorIfGeometryCollection(), gbox_same_2d_float(), gserialized_get_gbox_p(), gserialized_get_srid(), gserialized_is_empty(), HANDLE_GEOS_ERROR, LW_FALSE, lwgeom_geos_error(), and POSTGIS2GEOS().

Here is the call graph for this function: