PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ contains()

Datum contains ( PG_FUNCTION_ARGS  )

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

1863 {
1864  SHARED_GSERIALIZED *shared_geom1 = ToastCacheGetGeometry(fcinfo, 0);
1865  SHARED_GSERIALIZED *shared_geom2 = ToastCacheGetGeometry(fcinfo, 1);
1866  const GSERIALIZED *geom1 = shared_gserialized_get(shared_geom1);
1867  const GSERIALIZED *geom2 = shared_gserialized_get(shared_geom2);
1868  int result;
1869  GEOSGeometry *g1, *g2;
1870  GBOX box1, box2;
1871  PrepGeomCache *prep_cache;
1872  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
1873 
1874  /* A.Contains(Empty) == FALSE */
1875  if (gserialized_is_empty(geom1) || gserialized_is_empty(geom2))
1876  PG_RETURN_BOOL(false);
1877 
1878  POSTGIS_DEBUG(3, "contains called.");
1879 
1880  /*
1881  ** short-circuit 1: if geom2 bounding box is not completely inside
1882  ** geom1 bounding box we can return FALSE.
1883  */
1884  if (gserialized_get_gbox_p(geom1, &box1) &&
1885  gserialized_get_gbox_p(geom2, &box2))
1886  {
1887  if (!gbox_contains_2d(&box1, &box2))
1888  PG_RETURN_BOOL(false);
1889  }
1890 
1891  /*
1892  ** short-circuit 2: if geom2 is a point and geom1 is a polygon
1893  ** call the point-in-polygon function.
1894  */
1895  if (is_poly(geom1) && is_point(geom2))
1896  {
1897  SHARED_GSERIALIZED *shared_gpoly = is_poly(geom1) ? shared_geom1 : shared_geom2;
1898  SHARED_GSERIALIZED *shared_gpoint = is_point(geom1) ? shared_geom1 : shared_geom2;
1899  const GSERIALIZED *gpoly = shared_gserialized_get(shared_gpoly);
1900  const GSERIALIZED *gpoint = shared_gserialized_get(shared_gpoint);
1901  RTREE_POLY_CACHE *cache = GetRtreeCache(fcinfo, shared_gpoly);
1902  int retval;
1903 
1904  POSTGIS_DEBUG(3, "Point in Polygon test requested...short-circuiting.");
1905  if (gserialized_get_type(gpoint) == POINTTYPE)
1906  {
1907  LWGEOM* point = lwgeom_from_gserialized(gpoint);
1908  int pip_result = pip_short_circuit(cache, lwgeom_as_lwpoint(point), gpoly);
1909  lwgeom_free(point);
1910 
1911  retval = (pip_result == 1); /* completely inside */
1912  }
1913  else if (gserialized_get_type(gpoint) == MULTIPOINTTYPE)
1914  {
1916  uint32_t i;
1917  int found_completely_inside = LW_FALSE;
1918 
1919  retval = LW_TRUE;
1920  for (i = 0; i < mpoint->ngeoms; i++)
1921  {
1922  /* We need to find at least one point that's completely inside the
1923  * polygons (pip_result == 1). As long as we have one point that's
1924  * completely inside, we can have as many as we want on the boundary
1925  * itself. (pip_result == 0)
1926  */
1927  int pip_result = pip_short_circuit(cache, mpoint->geoms[i], gpoly);
1928  if (pip_result == 1)
1929  found_completely_inside = LW_TRUE;
1930 
1931  if (pip_result == -1) /* completely outside */
1932  {
1933  retval = LW_FALSE;
1934  break;
1935  }
1936  }
1937 
1938  retval = retval && found_completely_inside;
1939  lwmpoint_free(mpoint);
1940  }
1941  else
1942  {
1943  /* Never get here */
1944  elog(ERROR,"Type isn't point or multipoint!");
1945  PG_RETURN_BOOL(false);
1946  }
1947 
1948  return retval > 0;
1949  }
1950  else
1951  {
1952  POSTGIS_DEBUGF(3, "Contains: type1: %d, type2: %d", gserialized_get_type(geom1), gserialized_get_type(geom2));
1953  }
1954 
1955  initGEOS(lwpgnotice, lwgeom_geos_error);
1956 
1957  prep_cache = GetPrepGeomCache(fcinfo, shared_geom1, NULL);
1958 
1959  if ( prep_cache && prep_cache->prepared_geom && prep_cache->gcache.argnum == 1 )
1960  {
1961  g1 = POSTGIS2GEOS(geom2);
1962  if (!g1)
1963  HANDLE_GEOS_ERROR("Geometry could not be converted to GEOS");
1964 
1965  POSTGIS_DEBUG(4, "containsPrepared: cache is live, running preparedcontains");
1966  result = GEOSPreparedContains( prep_cache->prepared_geom, g1);
1967  GEOSGeom_destroy(g1);
1968  }
1969  else
1970  {
1971  g1 = POSTGIS2GEOS(geom1);
1972  if (!g1) HANDLE_GEOS_ERROR("First argument geometry could not be converted to GEOS");
1973  g2 = POSTGIS2GEOS(geom2);
1974  if (!g2)
1975  {
1976  HANDLE_GEOS_ERROR("Second argument geometry could not be converted to GEOS");
1977  GEOSGeom_destroy(g1);
1978  }
1979  POSTGIS_DEBUG(4, "containsPrepared: cache is not ready, running standard contains");
1980  result = GEOSContains( g1, g2);
1981  GEOSGeom_destroy(g1);
1982  GEOSGeom_destroy(g2);
1983  }
1984 
1985  if (result == 2) HANDLE_GEOS_ERROR("GEOSContains");
1986 
1987  PG_RETURN_BOOL(result > 0);
1988 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:262
int gbox_contains_2d(const GBOX *g1, const GBOX *g2)
Return LW_TRUE if the first GBOX contains the second on the 2d plane, LW_FALSE otherwise.
Definition: gbox.c:339
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
Definition: gserialized.c:403
int gserialized_get_gbox_p(const GSERIALIZED *g, GBOX *gbox)
Read the box from the GSERIALIZED or calculate it if necessary.
Definition: gserialized.c:65
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
int gserialized_is_empty(const GSERIALIZED *g)
Check if a GSERIALIZED is empty without deserializing first.
Definition: gserialized.c:152
uint32_t gserialized_get_type(const GSERIALIZED *g)
Extract the geometry type from the serialized form (it hides in the anonymous data area,...
Definition: gserialized.c:89
void lwgeom_geos_error(const char *fmt,...)
#define LW_FALSE
Definition: liblwgeom.h:94
void lwmpoint_free(LWMPOINT *mpt)
Definition: lwmpoint.c:72
LWMPOINT * lwgeom_as_lwmpoint(const LWGEOM *lwgeom)
Definition: lwgeom.c:242
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1155
#define MULTIPOINTTYPE
Definition: liblwgeom.h:105
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:102
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
PrepGeomCache * GetPrepGeomCache(FunctionCallInfo fcinfo, SHARED_GSERIALIZED *g1, SHARED_GSERIALIZED *g2)
Given a couple potential geometries and a function call context, return a prepared structure for one ...
RTREE_POLY_CACHE * GetRtreeCache(FunctionCallInfo fcinfo, SHARED_GSERIALIZED *g1)
Checks for a cache hit against the provided geometry and returns a pre-built index structure (RTREE_P...
Definition: lwgeom_rtree.c:432
static LWPOINT * lwgeom_as_lwpoint(const LWGEOM *lwgeom)
Definition: lwinline.h:131
static char is_point(const GSERIALIZED *g)
static int pip_short_circuit(RTREE_POLY_CACHE *poly_cache, LWPOINT *point, const GSERIALIZED *gpoly)
static char is_poly(const GSERIALIZED *g)
GEOSGeometry * POSTGIS2GEOS(const GSERIALIZED *pglwgeom)
#define HANDLE_GEOS_ERROR(label)
uint32_t ngeoms
Definition: liblwgeom.h:538
LWPOINT ** geoms
Definition: liblwgeom.h:533
const GEOSPreparedGeometry * prepared_geom
The tree structure used for fast P-i-P tests by point_in_multipolygon_rtree()
Definition: lwgeom_rtree.h:59

References gbox_contains_2d(), PrepGeomCache::gcache, LWMPOINT::geoms, GetPrepGeomCache(), GetRtreeCache(), gserialized_error_if_srid_mismatch(), gserialized_get_gbox_p(), gserialized_get_type(), gserialized_is_empty(), HANDLE_GEOS_ERROR, is_point(), is_poly(), LW_FALSE, LW_TRUE, lwgeom_as_lwmpoint(), lwgeom_as_lwpoint(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_geos_error(), lwmpoint_free(), MULTIPOINTTYPE, LWMPOINT::ngeoms, pip_short_circuit(), POINTTYPE, POSTGIS2GEOS(), PrepGeomCache::prepared_geom, and result.

Referenced by _lwt_AddFaceSplit(), _lwt_AddPoint(), _lwt_CheckEdgeCrossing(), _lwt_FindFaceContainingRing(), lwpoly_split_by_line(), lwpoly_to_points(), rt_raster_contains(), rt_raster_contains_properly(), and within().

Here is the call graph for this function:
Here is the caller graph for this function: