PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_recv()

Datum LWGEOM_recv ( PG_FUNCTION_ARGS  )

Definition at line 755 of file lwgeom_inout.c.

References geometry_serialize(), LW_PARSER_CHECK_ALL, lwgeom_add_bbox(), lwgeom_free(), lwgeom_from_wkb(), lwgeom_needs_bbox(), LWGEOM_send(), PG_FUNCTION_INFO_V1(), and postgis_valid_typmod().

Referenced by parse_WKT_lwgeom().

756 {
757  StringInfo buf = (StringInfo) PG_GETARG_POINTER(0);
758  int32 geom_typmod = -1;
759  GSERIALIZED *geom;
760  LWGEOM *lwgeom;
761 
762  if ( (PG_NARGS()>2) && (!PG_ARGISNULL(2)) ) {
763  geom_typmod = PG_GETARG_INT32(2);
764  }
765 
766  lwgeom = lwgeom_from_wkb((uint8_t*)buf->data, buf->len, LW_PARSER_CHECK_ALL);
767 
768  if ( lwgeom_needs_bbox(lwgeom) )
769  lwgeom_add_bbox(lwgeom);
770 
771  /* Set cursor to the end of buffer (so the backend is happy) */
772  buf->cursor = buf->len;
773 
774  geom = geometry_serialize(lwgeom);
775  lwgeom_free(lwgeom);
776 
777  if ( geom_typmod >= 0 )
778  {
779  geom = postgis_valid_typmod(geom, geom_typmod);
780  POSTGIS_DEBUG(3, "typmod and geometry were consistent");
781  }
782  else
783  {
784  POSTGIS_DEBUG(3, "typmod was -1");
785  }
786 
787 
788  PG_RETURN_POINTER(geom);
789 }
unsigned int int32
Definition: shpopen.c:273
GSERIALIZED * postgis_valid_typmod(GSERIALIZED *gser, int32_t typmod)
Check the consistency of the metadata we want to enforce in the typmod: srid, type and dimensionality...
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
void lwgeom_add_bbox(LWGEOM *lwgeom)
Compute a bbox if not already computed.
Definition: lwgeom.c:648
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2014
LWGEOM * lwgeom_from_wkb(const uint8_t *wkb, const size_t wkb_size, const char check)
WKB inputs must have a declared size, to prevent malformed WKB from reading off the end of the memory...
Definition: lwin_wkb.c:772
unsigned char uint8_t
Definition: uthash.h:79
int lwgeom_needs_bbox(const LWGEOM *geom)
Check whether or not a lwgeom is big enough to warrant a bounding box.
Definition: lwgeom.c:1152
Here is the call graph for this function:
Here is the caller graph for this function: