PostGIS  2.4.9dev-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 568 of file lwout_twkb.c.

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().

571 {
572  LWDEBUGF(2, "Entered %s", __func__);
573  LWDEBUGF(2, "variant value %x", variant);
574 
575  TWKB_GLOBALS tg;
576  TWKB_STATE ts;
577  bytebuffer_t geom_bytebuffer;
578 
579  uint8_t *twkb;
580 
581  memset(&ts, 0, sizeof(TWKB_STATE));
582  memset(&tg, 0, sizeof(TWKB_GLOBALS));
583 
584  tg.variant = variant;
585  tg.prec_xy = precision_xy;
586  tg.prec_z = precision_z;
587  tg.prec_m = precision_m;
588 
589  if ( idlist && ! lwgeom_is_collection(geom) )
590  {
591  lwerror("Only collections can support ID lists");
592  return NULL;
593  }
594 
595  if ( ! geom )
596  {
597  LWDEBUG(4,"Cannot convert NULL into TWKB.");
598  lwerror("Cannot convert NULL into TWKB");
599  return NULL;
600  }
601 
602  ts.idlist = idlist;
603  ts.header_buf = NULL;
604  ts.geom_buf = &geom_bytebuffer;
606  lwgeom_write_to_buffer(geom, &tg, &ts);
607 
608  twkb = bytebuffer_get_buffer_copy(ts.geom_buf, twkb_size);
610  return twkb;
611 }
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:1040
uint8_t variant
Definition: lwout_twkb.h:78
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
int8_t prec_z
Definition: lwout_twkb.h:80
bytebuffer_t * header_buf
Definition: lwout_twkb.h:88
const int64_t * idlist
Definition: lwout_twkb.h:92
int8_t prec_xy
Definition: lwout_twkb.h:79
int8_t prec_m
Definition: lwout_twkb.h:81
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
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
static int lwgeom_write_to_buffer(const LWGEOM *geom, TWKB_GLOBALS *globals, TWKB_STATE *parent_state)
Definition: lwout_twkb.c:411
bytebuffer_t * geom_buf
Definition: lwout_twkb.h:89
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
unsigned char uint8_t
Definition: uthash.h:79
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
void bytebuffer_destroy_buffer(bytebuffer_t *s)
Free the bytebuffer_t and all memory managed within it.
Definition: bytebuffer.c:104
Here is the call graph for this function:
Here is the caller graph for this function: