PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwcircstring_from_wkb_state()

static LWCIRCSTRING* lwcircstring_from_wkb_state ( wkb_parse_state s)
static

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

Advance the parse state forward appropriately. There is only one pointarray in a linestring. Optionally check for minimal following of rules (three point minimum, odd number of points).

Definition at line 493 of file lwin_wkb.c.

494 {
496  if (s->error)
497  return NULL;
498 
499  if( pa == NULL || pa->npoints == 0 )
500  {
501  if (pa)
502  ptarray_free(pa);
503  return lwcircstring_construct_empty(s->srid, s->has_z, s->has_m);
504  }
505 
506  if( s->check & LW_PARSER_CHECK_MINPOINTS && pa->npoints < 3 )
507  {
508  lwerror("%s must have at least three points", lwtype_name(s->lwtype));
509  return NULL;
510  }
511 
512  if( s->check & LW_PARSER_CHECK_ODD && ! (pa->npoints % 2) )
513  {
514  lwerror("%s must have an odd number of points", lwtype_name(s->lwtype));
515  return NULL;
516  }
517 
518  return lwcircstring_construct(s->srid, NULL, pa);
519 }
char * s
Definition: cu_in_wkt.c:23
#define LW_PARSER_CHECK_ODD
Definition: liblwgeom.h:2056
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
#define LW_PARSER_CHECK_MINPOINTS
Parser check flags.
Definition: liblwgeom.h:2055
void ptarray_free(POINTARRAY *pa)
Definition: ptarray.c:319
LWCIRCSTRING * lwcircstring_construct_empty(int32_t srid, char hasz, char hasm)
Definition: lwcircstring.c:79
LWCIRCSTRING * lwcircstring_construct(int32_t srid, GBOX *bbox, POINTARRAY *points)
Definition: lwcircstring.c:50
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static POINTARRAY * ptarray_from_wkb_state(wkb_parse_state *s)
POINTARRAY Read a dynamically sized point array and advance the parse state forward.
Definition: lwin_wkb.c:340
uint32_t npoints
Definition: liblwgeom.h:413

References LW_PARSER_CHECK_MINPOINTS, LW_PARSER_CHECK_ODD, lwcircstring_construct(), lwcircstring_construct_empty(), lwerror(), lwtype_name(), POINTARRAY::npoints, ptarray_free(), ptarray_from_wkb_state(), and s.

Referenced by lwgeom_from_wkb_state().

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