PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ TWKBFromLWGEOMArray()

Datum TWKBFromLWGEOMArray ( PG_FUNCTION_ARGS  )

Definition at line 529 of file lwgeom_inout.c.

530 {
531  ArrayType *arr_geoms = NULL;
532  ArrayType *arr_ids = NULL;
533  int num_geoms, num_ids, i = 0;
534 
535  ArrayIterator iter_geoms, iter_ids;
536  bool null_geom, null_id;
537  Datum val_geom, val_id;
538 
539  int is_homogeneous = true;
540  uint32_t subtype = 0;
541  int has_z = 0;
542  int has_m = 0;
543  LWCOLLECTION *col = NULL;
544  int64_t *idlist = NULL;
545  uint8_t variant = 0;
546 
547  srs_precision sp;
548  uint8_t *twkb;
549  size_t twkb_size;
550  bytea *result;
551 
552  /* The first two arguments are required */
553  if ( PG_NARGS() < 2 || PG_ARGISNULL(0) || PG_ARGISNULL(1) )
554  PG_RETURN_NULL();
555 
556  arr_geoms = PG_GETARG_ARRAYTYPE_P(0);
557  arr_ids = PG_GETARG_ARRAYTYPE_P(1);
558 
559  num_geoms = ArrayGetNItems(ARR_NDIM(arr_geoms), ARR_DIMS(arr_geoms));
560  num_ids = ArrayGetNItems(ARR_NDIM(arr_ids), ARR_DIMS(arr_ids));
561 
562  if ( num_geoms != num_ids )
563  {
564  elog(ERROR, "size of geometry[] and integer[] arrays must match");
565  PG_RETURN_NULL();
566  }
567 
568  /* Loop through array and build a collection of geometry and */
569  /* a simple array of ids. If either side is NULL, skip it */
570 
571  iter_geoms = array_create_iterator(arr_geoms, 0, NULL);
572  iter_ids = array_create_iterator(arr_ids, 0, NULL);
573 
574  while( array_iterate(iter_geoms, &val_geom, &null_geom) &&
575  array_iterate(iter_ids, &val_id, &null_id) )
576  {
577  LWGEOM *geom;
578  int32_t uid;
579 
580  if ( null_geom || null_id )
581  {
582  elog(NOTICE, "ST_AsTWKB skipping NULL entry at position %d", i);
583  continue;
584  }
585 
586  geom = lwgeom_from_gserialized((GSERIALIZED*)DatumGetPointer(val_geom));
587  uid = DatumGetInt64(val_id);
588 
589  /* Construct collection/idlist first time through */
590  if ( ! col )
591  {
592  has_z = lwgeom_has_z(geom);
593  has_m = lwgeom_has_m(geom);
594  col = lwcollection_construct_empty(COLLECTIONTYPE, lwgeom_get_srid(geom), has_z, has_m);
595  }
596  if ( ! idlist )
597  idlist = palloc0(num_geoms * sizeof(int64_t));
598 
599 
600  /* Check if there is differences in dimensionality*/
601  if( lwgeom_has_z(geom)!=has_z || lwgeom_has_m(geom)!=has_m)
602  {
603  elog(ERROR, "Geometries have different dimensionality");
604  PG_FREE_IF_COPY(arr_geoms, 0);
605  PG_FREE_IF_COPY(arr_ids, 1);
606  PG_RETURN_NULL();
607  }
608  /* Store the values */
609  lwcollection_add_lwgeom(col, geom);
610  idlist[i++] = uid;
611 
612  /* Grab the geometry type and note if all geometries share it */
613  /* If so, we can make this a homogeneous collection and save some space */
614  if ( lwgeom_get_type(geom) != subtype && subtype )
615  {
616  is_homogeneous = false;
617  }
618  else
619  {
620  subtype = lwgeom_get_type(geom);
621  }
622 
623  }
624  array_free_iterator(iter_geoms);
625  array_free_iterator(iter_ids);
626 
627  if(i==0)
628  {
629  elog(NOTICE, "No valid geometry - id pairs found");
630  PG_FREE_IF_COPY(arr_geoms, 0);
631  PG_FREE_IF_COPY(arr_ids, 1);
632  PG_RETURN_NULL();
633  }
634  if ( is_homogeneous )
635  {
636  col->type = lwtype_get_collectiontype(subtype);
637  }
638 
639  /* Read sensible precision defaults (about one meter) given the srs */
640  sp = srid_axis_precision(fcinfo, lwgeom_get_srid(lwcollection_as_lwgeom(col)), TWKB_DEFAULT_PRECISION);
641 
642  /* If user specified XY precision, use it */
643  if ( PG_NARGS() > 2 && ! PG_ARGISNULL(2) )
644  sp.precision_xy = PG_GETARG_INT32(2);
645 
646  /* If user specified Z precision, use it */
647  if ( PG_NARGS() > 3 && ! PG_ARGISNULL(3) )
648  sp.precision_z = PG_GETARG_INT32(3);
649 
650  /* If user specified M precision, use it */
651  if ( PG_NARGS() > 4 && ! PG_ARGISNULL(4) )
652  sp.precision_m = PG_GETARG_INT32(4);
653 
654  /* We are building an ID'ed output */
655  variant = TWKB_ID;
656 
657  /* If user wants registered twkb sizes */
658  if ( PG_NARGS() > 5 && ! PG_ARGISNULL(5) && PG_GETARG_BOOL(5) )
659  variant |= TWKB_SIZE;
660 
661  /* If user wants bounding boxes */
662  if ( PG_NARGS() > 6 && ! PG_ARGISNULL(6) && PG_GETARG_BOOL(6) )
663  variant |= TWKB_BBOX;
664 
665  /* Write out the TWKB */
667  idlist, variant,
668  sp.precision_xy, sp.precision_z, sp.precision_m,
669  &twkb_size);
670 
671  /* Convert to a bytea return type */
672  result = palloc(twkb_size + VARHDRSZ);
673  memcpy(VARDATA(result), twkb, twkb_size);
674  SET_VARSIZE(result, twkb_size + VARHDRSZ);
675 
676  /* Clean up */
677  pfree(twkb);
678  pfree(idlist);
679  lwcollection_free(col);
680  PG_FREE_IF_COPY(arr_geoms, 0);
681  PG_FREE_IF_COPY(arr_ids, 1);
682 
683  PG_RETURN_BYTEA_P(result);
684 }
static uint8_t variant
Definition: cu_in_twkb.c:26
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
LWGEOM * lwcollection_as_lwgeom(const LWCOLLECTION *obj)
Definition: lwgeom.c:291
uint32_t lwtype_get_collectiontype(uint8_t type)
Given an lwtype number, what homogeneous collection can hold it?
Definition: lwgeom.c:1114
#define COLLECTIONTYPE
Definition: liblwgeom.h:122
int32_t lwgeom_get_srid(const LWGEOM *geom)
Return SRID number.
Definition: lwgeom.c:909
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.
Definition: lwout_twkb.c:589
int lwgeom_has_z(const LWGEOM *geom)
Return LW_TRUE if geometry has Z ordinates.
Definition: lwgeom.c:916
#define TWKB_ID
Definition: liblwgeom.h:2140
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
Definition: lwcollection.c:92
void lwcollection_free(LWCOLLECTION *col)
Definition: lwcollection.c:357
#define TWKB_DEFAULT_PRECISION
Definition: liblwgeom.h:2143
#define TWKB_SIZE
Definition: liblwgeom.h:2139
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
Definition: lwcollection.c:188
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition: lwgeom.c:923
#define TWKB_BBOX
Definition: liblwgeom.h:2138
static uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwinline.h:135
uint8_t type
Definition: liblwgeom.h:564

References COLLECTIONTYPE, lwcollection_add_lwgeom(), lwcollection_as_lwgeom(), lwcollection_construct_empty(), lwcollection_free(), lwgeom_from_gserialized(), lwgeom_get_srid(), lwgeom_get_type(), lwgeom_has_m(), lwgeom_has_z(), lwgeom_to_twkb_with_idlist(), lwtype_get_collectiontype(), TWKB_BBOX, TWKB_DEFAULT_PRECISION, TWKB_ID, TWKB_SIZE, LWCOLLECTION::type, and variant.

Here is the call graph for this function: