PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwpoint_from_wkb_state()

static LWPOINT* lwpoint_from_wkb_state ( wkb_parse_state s)
static

POINT Read a WKB point, starting just after the endian byte, type number and optional srid number.

Advance the parse state forward appropriately. WKB point has just a set of doubles, with the quantity depending on the dimension of the point, so this looks like a special case of the above with only one point.

Definition at line 413 of file lwin_wkb.c.

414 {
415  static uint32_t npoints = 1;
416  POINTARRAY *pa = NULL;
417  size_t pa_size;
418  uint32_t ndims = 2;
419  const POINT2D *pt;
420 
421  /* Count the dimensions. */
422  if( s->has_z ) ndims++;
423  if( s->has_m ) ndims++;
424  pa_size = ndims * WKB_DOUBLE_SIZE;
425 
426  /* Does the data we want to read exist? */
427  wkb_parse_state_check(s, pa_size);
428  if (s->error)
429  return NULL;
430 
431  /* If we're in a native endianness, we can just copy the data directly! */
432  if( ! s->swap_bytes )
433  {
434  pa = ptarray_construct_copy_data(s->has_z, s->has_m, npoints, (uint8_t*)s->pos);
435  s->pos += pa_size;
436  }
437  /* Otherwise we have to read each double, separately */
438  else
439  {
440  uint32_t i = 0;
441  double *dlist;
442  pa = ptarray_construct(s->has_z, s->has_m, npoints);
443  dlist = (double*)(pa->serialized_pointlist);
444  for( i = 0; i < ndims; i++ )
445  {
446  dlist[i] = double_from_wkb_state(s);
447  }
448  }
449 
450  /* Check for POINT(NaN NaN) ==> POINT EMPTY */
451  pt = getPoint2d_cp(pa, 0);
452  if ( isnan(pt->x) && isnan(pt->y) )
453  {
454  ptarray_free(pa);
455  return lwpoint_construct_empty(s->srid, s->has_z, s->has_m);
456  }
457  else
458  {
459  return lwpoint_construct(s->srid, NULL, pa);
460  }
461 }
char * s
Definition: cu_in_wkt.c:23
LWPOINT * lwpoint_construct_empty(int32_t srid, char hasz, char hasm)
Definition: lwpoint.c:151
POINTARRAY * ptarray_construct_copy_data(char hasz, char hasm, uint32_t npoints, const uint8_t *ptlist)
Construct a new POINTARRAY, copying in the data from ptlist.
Definition: ptarray.c:297
POINTARRAY * ptarray_construct(char hasz, char hasm, uint32_t npoints)
Construct an empty pointarray, allocating storage and setting the npoints, but not filling in any inf...
Definition: ptarray.c:51
LWPOINT * lwpoint_construct(int32_t srid, GBOX *bbox, POINTARRAY *point)
Definition: lwpoint.c:129
void ptarray_free(POINTARRAY *pa)
Definition: ptarray.c:319
#define WKB_DOUBLE_SIZE
Well-Known Binary (WKB) Output Variant Types.
static void wkb_parse_state_check(wkb_parse_state *s, size_t next)
Check that we are not about to read off the end of the WKB array.
Definition: lwin_wkb.c:131
static double double_from_wkb_state(wkb_parse_state *s)
Double Read an 8-byte double and advance the parse state forward.
Definition: lwin_wkb.c:317
static const POINT2D * getPoint2d_cp(const POINTARRAY *pa, uint32_t n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from.
Definition: lwinline.h:101
double y
Definition: liblwgeom.h:390
double x
Definition: liblwgeom.h:390
uint8_t * serialized_pointlist
Definition: liblwgeom.h:434

References double_from_wkb_state(), getPoint2d_cp(), lwpoint_construct(), lwpoint_construct_empty(), ptarray_construct(), ptarray_construct_copy_data(), ptarray_free(), s, POINTARRAY::serialized_pointlist, WKB_DOUBLE_SIZE, wkb_parse_state_check(), POINT2D::x, and POINT2D::y.

Referenced by lwgeom_from_wkb_state().

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