PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_from_gserialized_buffer()

static LWPOLY* lwpoly_from_gserialized_buffer ( uint8_t data_ptr,
uint8_t  g_flags,
size_t *  g_size 
)
static

Definition at line 1315 of file g_serialized.c.

References LWPOLY::bbox, LWPOLY::flags, FLAGS_GET_M, FLAGS_GET_Z, FLAGS_NDIMS, gserialized_get_uint32_t(), lwalloc(), LWDEBUGF, LWPOLY::nrings, POLYGONTYPE, ptarray_construct_reference_data(), LWPOLY::rings, LWPOLY::srid, SRID_UNKNOWN, and LWPOLY::type.

Referenced by lwgeom_from_gserialized_buffer().

1316 {
1317  uint8_t *start_ptr = data_ptr;
1318  LWPOLY *poly;
1319  uint8_t *ordinate_ptr;
1320  uint32_t nrings = 0;
1321  int i = 0;
1322 
1323  assert(data_ptr);
1324 
1325  poly = (LWPOLY*)lwalloc(sizeof(LWPOLY));
1326  poly->srid = SRID_UNKNOWN; /* Default */
1327  poly->bbox = NULL;
1328  poly->type = POLYGONTYPE;
1329  poly->flags = g_flags;
1330 
1331  data_ptr += 4; /* Skip past the polygontype. */
1332  nrings = gserialized_get_uint32_t(data_ptr); /* Zero => empty geometry */
1333  poly->nrings = nrings;
1334  LWDEBUGF(4, "nrings = %d", nrings);
1335  data_ptr += 4; /* Skip past the nrings. */
1336 
1337  ordinate_ptr = data_ptr; /* Start the ordinate pointer. */
1338  if ( nrings > 0)
1339  {
1340  poly->rings = (POINTARRAY**)lwalloc( sizeof(POINTARRAY*) * nrings );
1341  ordinate_ptr += nrings * 4; /* Move past all the npoints values. */
1342  if ( nrings % 2 ) /* If there is padding, move past that too. */
1343  ordinate_ptr += 4;
1344  }
1345  else /* Empty polygon */
1346  {
1347  poly->rings = NULL;
1348  }
1349 
1350  for ( i = 0; i < nrings; i++ )
1351  {
1352  uint32_t npoints = 0;
1353 
1354  /* Read in the number of points. */
1355  npoints = gserialized_get_uint32_t(data_ptr);
1356  data_ptr += 4;
1357 
1358  /* Make a point array for the ring, and move the ordinate pointer past the ring ordinates. */
1359  poly->rings[i] = ptarray_construct_reference_data(FLAGS_GET_Z(g_flags), FLAGS_GET_M(g_flags), npoints, ordinate_ptr);
1360 
1361  ordinate_ptr += sizeof(double) * FLAGS_NDIMS(g_flags) * npoints;
1362  }
1363 
1364  if ( g_size )
1365  *g_size = ordinate_ptr - start_ptr;
1366 
1367  return poly;
1368 }
#define POLYGONTYPE
Definition: liblwgeom.h:87
GBOX * bbox
Definition: liblwgeom.h:453
unsigned int uint32_t
Definition: uthash.h:78
uint8_t type
Definition: liblwgeom.h:451
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:188
POINTARRAY * ptarray_construct_reference_data(char hasz, char hasm, uint32_t npoints, uint8_t *ptlist)
Construct a new POINTARRAY, referencing to the data from ptlist.
Definition: ptarray.c:295
POINTARRAY ** rings
Definition: liblwgeom.h:457
int nrings
Definition: liblwgeom.h:455
#define FLAGS_GET_Z(flags)
Macros for manipulating the &#39;flags&#39; byte.
Definition: liblwgeom.h:140
int32_t srid
Definition: liblwgeom.h:454
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
tuple g_size
Definition: genraster.py:41
uint8_t flags
Definition: liblwgeom.h:452
void * lwalloc(size_t size)
Definition: lwutil.c:229
static uint32_t gserialized_get_uint32_t(const uint8_t *loc)
Definition: g_serialized.c:35
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:152
unsigned char uint8_t
Definition: uthash.h:79
Here is the call graph for this function:
Here is the caller graph for this function: