PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ errorIfGeometryCollection()

void errorIfGeometryCollection ( GSERIALIZED g1,
GSERIALIZED g2 
)

Throws an ereport ERROR if either geometry is a COLLECTIONTYPE.

Additionally displays a HINT of the first 80 characters of the WKT representation of the problematic geometry so a user knows which parameter and which geometry is causing the problem.

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

References COLLECTIONTYPE, gserialized_get_type(), isvalid(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_to_wkt(), lwmessage_truncate(), PG_FUNCTION_INFO_V1(), and WKT_SFSQL.

Referenced by contains(), containsproperly(), coveredby(), covers(), crosses(), disjoint(), geos_intersects(), overlaps(), relate_full(), relate_pattern(), ST_Equals(), and touches().

1503 {
1504  int t1 = gserialized_get_type(g1);
1505  int t2 = gserialized_get_type(g2);
1506 
1507  char *hintmsg;
1508  char *hintwkt;
1509  size_t hintsz;
1510  LWGEOM *lwgeom;
1511 
1512  if ( t1 == COLLECTIONTYPE)
1513  {
1514  lwgeom = lwgeom_from_gserialized(g1);
1515  hintwkt = lwgeom_to_wkt(lwgeom, WKT_SFSQL, DBL_DIG, &hintsz);
1516  lwgeom_free(lwgeom);
1517  hintmsg = lwmessage_truncate(hintwkt, 0, hintsz-1, 80, 1);
1518  ereport(ERROR,
1519  (errmsg("Relate Operation called with a LWGEOMCOLLECTION type. This is unsupported."),
1520  errhint("Change argument 1: '%s'", hintmsg))
1521  );
1522  pfree(hintwkt);
1523  pfree(hintmsg);
1524  }
1525  else if (t2 == COLLECTIONTYPE)
1526  {
1527  lwgeom = lwgeom_from_gserialized(g2);
1528  hintwkt = lwgeom_to_wkt(lwgeom, WKT_SFSQL, DBL_DIG, &hintsz);
1529  hintmsg = lwmessage_truncate(hintwkt, 0, hintsz-1, 80, 1);
1530  lwgeom_free(lwgeom);
1531  ereport(ERROR,
1532  (errmsg("Relate Operation called with a LWGEOMCOLLECTION type. This is unsupported."),
1533  errhint("Change argument 2: '%s'", hintmsg))
1534  );
1535  pfree(hintwkt);
1536  pfree(hintmsg);
1537  }
1538 }
uint32_t gserialized_get_type(const GSERIALIZED *s)
Extract the geometry type from the serialized form (it hides in the anonymous data area...
Definition: g_serialized.c:86
char * lwgeom_to_wkt(const LWGEOM *geom, uint8_t variant, int precision, size_t *size_out)
WKT emitter function.
Definition: lwout_wkt.c:669
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
char * lwmessage_truncate(char *str, int startpos, int endpos, int maxlength, int truncdirection)
Definition: lwutil.c:294
#define WKT_SFSQL
Definition: liblwgeom.h:2084
#define COLLECTIONTYPE
Definition: liblwgeom.h:91
Here is the call graph for this function:
Here is the caller graph for this function: