PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ integer_from_wkb_state()

static uint32_t integer_from_wkb_state ( wkb_parse_state s)
static

Int32 Read 4-byte integer and advance the parse state forward.

Definition at line 275 of file lwin_wkb.c.

276 {
277  uint32_t i = 0;
278 
280 
281  memcpy(&i, s->pos, WKB_INT_SIZE);
282 
283  /* Swap? Copy into a stack-allocated integer. */
284  if( s->swap_bytes )
285  {
286  int j = 0;
287  uint8_t tmp;
288 
289  for( j = 0; j < WKB_INT_SIZE/2; j++ )
290  {
291  tmp = ((uint8_t*)(&i))[j];
292  ((uint8_t*)(&i))[j] = ((uint8_t*)(&i))[WKB_INT_SIZE - j - 1];
293  ((uint8_t*)(&i))[WKB_INT_SIZE - j - 1] = tmp;
294  }
295  }
296 
297  s->pos += WKB_INT_SIZE;
298  return i;
299 }
char * s
Definition: cu_in_wkt.c:23
#define WKB_INT_SIZE
static void wkb_parse_state_check(wkb_parse_state *s, size_t next)
Check that we are not about to read off the end of the WKB array.
Definition: lwin_wkb.c:130
unsigned int uint32_t
Definition: uthash.h:78
unsigned char uint8_t
Definition: uthash.h:79

References s, WKB_INT_SIZE, and wkb_parse_state_check().

Referenced by lwcollection_from_wkb_state(), lwcurvepoly_from_wkb_state(), lwgeom_from_wkb_state(), lwpoly_from_wkb_state(), lwtriangle_from_wkb_state(), and ptarray_from_wkb_state().

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