PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_recv()

Datum LWGEOM_recv ( PG_FUNCTION_ARGS  )

Definition at line 756 of file lwgeom_inout.c.

757 {
758  StringInfo buf = (StringInfo) PG_GETARG_POINTER(0);
759  int32 geom_typmod = -1;
760  GSERIALIZED *geom;
761  LWGEOM *lwgeom;
762 
763  if ( (PG_NARGS()>2) && (!PG_ARGISNULL(2)) ) {
764  geom_typmod = PG_GETARG_INT32(2);
765  }
766 
767  lwgeom = lwgeom_from_wkb((uint8_t*)buf->data, buf->len, LW_PARSER_CHECK_ALL);
768 
769  if ( lwgeom_needs_bbox(lwgeom) )
770  lwgeom_add_bbox(lwgeom);
771 
772  /* Set cursor to the end of buffer (so the backend is happy) */
773  buf->cursor = buf->len;
774 
775  geom = geometry_serialize(lwgeom);
776  lwgeom_free(lwgeom);
777 
778  if ( geom_typmod >= 0 )
779  {
780  geom = postgis_valid_typmod(geom, geom_typmod);
781  POSTGIS_DEBUG(3, "typmod and geometry were consistent");
782  }
783  else
784  {
785  POSTGIS_DEBUG(3, "typmod was -1");
786  }
787 
788 
789  PG_RETURN_POINTER(geom);
790 }
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...
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2006
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
int lwgeom_needs_bbox(const LWGEOM *geom)
Check whether or not a lwgeom is big enough to warrant a bounding box.
Definition: lwgeom.c:1197
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:789
void lwgeom_add_bbox(LWGEOM *lwgeom)
Compute a bbox if not already computed.
Definition: lwgeom.c:686
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
unsigned int int32
Definition: shpopen.c:273
unsigned char uint8_t
Definition: uthash.h:79

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

Here is the call graph for this function: