PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_to_twkb_with_idlist()

uint8_t* lwgeom_to_twkb_with_idlist ( const LWGEOM geom,
int64_t *  idlist,
uint8_t  variant,
int8_t  precision_xy,
int8_t  precision_z,
int8_t  precision_m,
size_t *  twkb_size 
)

Convert LWGEOM to a char* in TWKB format.

Caller is responsible for freeing the returned array.

Definition at line 571 of file lwout_twkb.c.

574 {
575  LWDEBUGF(2, "Entered %s", __func__);
576  LWDEBUGF(2, "variant value %x", variant);
577 
578  TWKB_GLOBALS tg;
579  TWKB_STATE ts;
580  bytebuffer_t geom_bytebuffer;
581 
582  uint8_t *twkb;
583 
584  memset(&ts, 0, sizeof(TWKB_STATE));
585  memset(&tg, 0, sizeof(TWKB_GLOBALS));
586 
587  tg.variant = variant;
588  tg.prec_xy = precision_xy;
589  tg.prec_z = precision_z;
590  tg.prec_m = precision_m;
591 
592  if ( idlist && ! lwgeom_is_collection(geom) )
593  {
594  lwerror("Only collections can support ID lists");
595  return NULL;
596  }
597 
598  if ( ! geom )
599  {
600  LWDEBUG(4,"Cannot convert NULL into TWKB.");
601  lwerror("Cannot convert NULL into TWKB");
602  return NULL;
603  }
604 
605  ts.idlist = idlist;
606  ts.header_buf = NULL;
607  ts.geom_buf = &geom_bytebuffer;
609  lwgeom_write_to_buffer(geom, &tg, &ts);
610 
611  twkb = bytebuffer_get_buffer_copy(ts.geom_buf, twkb_size);
613  return twkb;
614 }
void bytebuffer_destroy_buffer(bytebuffer_t *s)
Free the bytebuffer_t and all memory managed within it.
Definition: bytebuffer.c:104
uint8_t * bytebuffer_get_buffer_copy(const bytebuffer_t *s, size_t *buffer_length)
Returns a copy of the internal buffer.
Definition: bytebuffer.c:173
void bytebuffer_init_with_size(bytebuffer_t *s, size_t size)
Allocate just the internal buffer of an existing bytebuffer_t struct.
Definition: bytebuffer.c:71
static uint8_t variant
Definition: cu_in_twkb.c:26
int lwgeom_is_collection(const LWGEOM *lwgeom)
Determine whether a LWGEOM can contain sub-geometries or not.
Definition: lwgeom.c:1085
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static int lwgeom_write_to_buffer(const LWGEOM *geom, TWKB_GLOBALS *globals, TWKB_STATE *parent_state)
Definition: lwout_twkb.c:411
int8_t prec_xy
Definition: lwout_twkb.h:79
uint8_t variant
Definition: lwout_twkb.h:78
int8_t prec_z
Definition: lwout_twkb.h:80
int8_t prec_m
Definition: lwout_twkb.h:81
const int64_t * idlist
Definition: lwout_twkb.h:92
bytebuffer_t * header_buf
Definition: lwout_twkb.h:88
bytebuffer_t * geom_buf
Definition: lwout_twkb.h:89
unsigned char uint8_t
Definition: uthash.h:79

References bytebuffer_destroy_buffer(), bytebuffer_get_buffer_copy(), bytebuffer_init_with_size(), TWKB_STATE::geom_buf, TWKB_STATE::header_buf, TWKB_STATE::idlist, LWDEBUG, LWDEBUGF, lwerror(), lwgeom_is_collection(), lwgeom_write_to_buffer(), TWKB_GLOBALS::prec_m, TWKB_GLOBALS::prec_xy, TWKB_GLOBALS::prec_z, variant, and TWKB_GLOBALS::variant.

Referenced by cu_twkb_idlist(), lwgeom_to_twkb(), and TWKBFromLWGEOMArray().

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