Returns a hash code for the srid/type/geometry information in the GSERIALIZED.
Ignores metadata like flags and optional boxes, etc.
Definition at line 268 of file gserialized2.c.
271 int32_t pb = 0, pc = 0;
274 uint8_t *b1 = (uint8_t *)g1 + hsz1;
277 size_t bsz1 = sz1 - hsz1;
280 size_t bsz2 = bsz1 +
sizeof(int);
283 memcpy(b2, &srid,
sizeof(
int));
285 memcpy(b2+
sizeof(
int), b1, bsz1);
287 hashlittle2(b2, bsz2, (uint32_t *)&pb, (uint32_t *)&pc);
static size_t gserialized2_header_size(const GSERIALIZED *g)
int32_t gserialized2_get_srid(const GSERIALIZED *g)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
void hashlittle2(const void *key, size_t length, uint32_t *pc, uint32_t *pb)
void * lwalloc(size_t size)
#define SIZE_GET(varsize)
Macro for reading the size from the GSERIALIZED size attribute.
References gserialized2_get_srid(), gserialized2_header_size(), hashlittle2(), lwalloc(), lwfree(), GSERIALIZED::size, and SIZE_GET.
Referenced by gserialized_hash().