PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ gserialized_from_lwgeom_size()

size_t gserialized_from_lwgeom_size ( const LWGEOM geom)

Calculate required memory segment to contain a serialized form of the LWGEOM.

Primarily used internally by the serialization code. Exposed to allow the cunit tests to exercise it.

Definition at line 808 of file g_serialized.c.

809 {
810  size_t size = 8; /* Header overhead. */
811  assert(geom);
812 
813  if ( geom->bbox )
814  size += gbox_serialized_size(geom->flags);
815 
816  size += gserialized_from_any_size(geom);
817  LWDEBUGF(3, "g_serialize size = %d", size);
818 
819  return size;
820 }
size_t gbox_serialized_size(uint8_t flags)
Return the number of bytes necessary to hold a GBOX of this dimension in serialized form.
Definition: g_box.c:446
static size_t gserialized_from_any_size(const LWGEOM *geom)
Definition: g_serialized.c:773
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
GBOX * bbox
Definition: liblwgeom.h:401
uint8_t flags
Definition: liblwgeom.h:400

References LWGEOM::bbox, LWGEOM::flags, gbox_serialized_size(), gserialized_from_any_size(), and LWDEBUGF.

Referenced by gserialized_from_lwgeom(), test_gserialized_from_lwgeom_size(), and test_gserialized_peek_gbox_p_fails_for_unsupported_cases().

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