Returns a hash code for the srid/type/geometry information in the GSERIALIZED.
Ignores metadata like flags and optional boxes, etc.
Definition at line 226 of file gserialized1.c.
229 int32_t pb = 0, pc = 0;
232 uint8_t *b1 = (uint8_t*)g1 + hsz1;
235 size_t bsz1 = sz1 - hsz1;
238 size_t bsz2 = bsz1 +
sizeof(int);
241 memcpy(b2, &srid,
sizeof(
int));
243 memcpy(b2+
sizeof(
int), b1, bsz1);
245 hashlittle2(b2, bsz2, (uint32_t *)&pb, (uint32_t *)&pc);
void hashlittle2(const void *key, size_t length, uint32_t *pc, uint32_t *pb)
int32_t gserialized1_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
static uint32_t gserialized1_header_size(const GSERIALIZED *gser)
void * lwalloc(size_t size)
#define SIZE_GET(varsize)
Macro for reading the size from the GSERIALIZED size attribute.
References gserialized1_get_srid(), gserialized1_header_size(), hashlittle2(), lwalloc(), lwfree(), GSERIALIZED::size, and SIZE_GET.
Referenced by gserialized_hash().