PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ lwcollection_from_gserialized2_buffer()

static LWCOLLECTION* lwcollection_from_gserialized2_buffer ( uint8_t *  data_ptr,
lwflags_t  lwflags,
size_t *  size,
int32_t  srid 
)
static

Definition at line 1400 of file gserialized2.c.

1401 {
1402  uint32_t type;
1403  uint8_t *start_ptr = data_ptr;
1404  LWCOLLECTION *collection;
1405  uint32_t ngeoms = 0;
1406  uint32_t i = 0;
1407 
1408  assert(data_ptr);
1409 
1410  type = gserialized2_get_uint32_t(data_ptr);
1411  data_ptr += 4; /* Skip past the type. */
1412 
1413  collection = (LWCOLLECTION*)lwalloc(sizeof(LWCOLLECTION));
1414  collection->srid = srid;
1415  collection->bbox = NULL;
1416  collection->type = type;
1417  collection->flags = lwflags;
1418 
1419  ngeoms = gserialized2_get_uint32_t(data_ptr);
1420  collection->ngeoms = ngeoms; /* Zero => empty geometry */
1421  data_ptr += 4; /* Skip past the ngeoms. */
1422 
1423  if (ngeoms > 0)
1424  {
1425  collection->geoms = lwalloc(sizeof(LWGEOM*) * ngeoms);
1426  collection->maxgeoms = ngeoms;
1427  }
1428  else
1429  {
1430  collection->geoms = NULL;
1431  collection->maxgeoms = 0;
1432  }
1433 
1434  /* Sub-geometries are never de-serialized with boxes (#1254) */
1435  FLAGS_SET_BBOX(lwflags, 0);
1436 
1437  for (i = 0; i < ngeoms; i++)
1438  {
1439  uint32_t subtype = gserialized2_get_uint32_t(data_ptr);
1440  size_t subsize = 0;
1441 
1442  if (!lwcollection_allows_subtype(type, subtype))
1443  {
1444  lwerror("Invalid subtype (%s) for collection type (%s)", lwtype_name(subtype), lwtype_name(type));
1445  lwfree(collection);
1446  return NULL;
1447  }
1448  collection->geoms[i] = lwgeom_from_gserialized2_buffer(data_ptr, lwflags, &subsize, srid);
1449  data_ptr += subsize;
1450  }
1451 
1452  if (size)
1453  *size = data_ptr - start_ptr;
1454 
1455  return collection;
1456 }
static uint32_t gserialized2_get_uint32_t(const uint8_t *loc)
Definition: gserialized2.c:131
static LWGEOM * lwgeom_from_gserialized2_buffer(uint8_t *data_ptr, lwflags_t lwflags, size_t *size, int32_t srid)
#define FLAGS_SET_BBOX(flags, value)
Definition: liblwgeom.h:189
void lwfree(void *mem)
Definition: lwutil.c:242
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
void * lwalloc(size_t size)
Definition: lwutil.c:227
lwflags_t lwflags(int hasz, int hasm, int geodetic)
Construct a new flags bitmask.
Definition: lwutil.c:471
int lwcollection_allows_subtype(int collectiontype, int subtype)
Check if subtype is allowed in collectiontype.
Definition: lwcollection.c:513
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
type
Definition: ovdump.py:42
lwflags_t flags
Definition: liblwgeom.h:592
uint32_t ngeoms
Definition: liblwgeom.h:595
uint32_t maxgeoms
Definition: liblwgeom.h:596
uint8_t type
Definition: liblwgeom.h:593
GBOX * bbox
Definition: liblwgeom.h:589
LWGEOM ** geoms
Definition: liblwgeom.h:590
int32_t srid
Definition: liblwgeom.h:591

References LWCOLLECTION::bbox, LWCOLLECTION::flags, FLAGS_SET_BBOX, LWCOLLECTION::geoms, gserialized2_get_uint32_t(), lwalloc(), lwcollection_allows_subtype(), lwerror(), lwflags(), lwfree(), lwgeom_from_gserialized2_buffer(), lwtype_name(), LWCOLLECTION::maxgeoms, LWCOLLECTION::ngeoms, LWCOLLECTION::srid, LWCOLLECTION::type, and ovdump::type.

Referenced by lwgeom_from_gserialized2_buffer().

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