PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ mvt_agg_transfn()

void mvt_agg_transfn ( mvt_agg_context ctx)

Aggregation step.

Expands features array if needed by a factor of 2. Allocates a new feature, increment feature counter and encode geometry and properties into it.  

Definition at line 1005 of file mvt.c.

1006 {
1007  bool isnull = false;
1008  Datum datum;
1009  GSERIALIZED *gs;
1010  LWGEOM *lwgeom;
1011  VectorTile__Tile__Feature *feature;
1012  VectorTile__Tile__Layer *layer = ctx->layer;
1013 /* VectorTile__Tile__Feature **features = layer->features; */
1014  POSTGIS_DEBUG(2, "mvt_agg_transfn called");
1015 
1016  if (layer->n_features >= ctx->features_capacity)
1017  {
1018  size_t new_capacity = ctx->features_capacity * 2;
1019  layer->features = repalloc(layer->features, new_capacity *
1020  sizeof(*layer->features));
1021  ctx->features_capacity = new_capacity;
1022  POSTGIS_DEBUGF(3, "mvt_agg_transfn new_capacity: %zd", new_capacity);
1023  }
1024 
1025  if (ctx->geom_index == UINT32_MAX)
1026  parse_column_keys(ctx);
1027 
1028  datum = GetAttributeByNum(ctx->row, ctx->geom_index + 1, &isnull);
1029  POSTGIS_DEBUGF(3, "mvt_agg_transfn ctx->geom_index: %d", ctx->geom_index);
1030  POSTGIS_DEBUGF(3, "mvt_agg_transfn isnull: %u", isnull);
1031  POSTGIS_DEBUGF(3, "mvt_agg_transfn datum: %lu", datum);
1032  if (isnull) /* Skip rows that have null geometry */
1033  {
1034  POSTGIS_DEBUG(3, "mvt_agg_transfn got null geom");
1035  return;
1036  }
1037 
1038  feature = palloc(sizeof(*feature));
1039  vector_tile__tile__feature__init(feature);
1040 
1041  ctx->feature = feature;
1042 
1043  gs = (GSERIALIZED *) PG_DETOAST_DATUM(datum);
1044  lwgeom = lwgeom_from_gserialized(gs);
1045 
1046  POSTGIS_DEBUGF(3, "mvt_agg_transfn encoded feature count: %zd", layer->n_features);
1047  layer->features[layer->n_features++] = feature;
1048 
1049  encode_geometry(ctx, lwgeom);
1050  lwgeom_free(lwgeom);
1051  // TODO: free detoasted datum?
1052  parse_values(ctx);
1053 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
#define UINT32_MAX
Definition: lwin_wkt_lex.c:343
static void encode_geometry(mvt_agg_context *ctx, LWGEOM *lwgeom)
Definition: mvt.c:237
static void parse_column_keys(mvt_agg_context *ctx)
Definition: mvt.c:288
static void parse_values(mvt_agg_context *ctx)
Definition: mvt.c:632
uint32_t geom_index
Definition: mvt.h:72
size_t features_capacity
Definition: mvt.h:78
VectorTile__Tile__Layer * layer
Definition: mvt.h:76
VectorTile__Tile__Feature * feature
Definition: mvt.h:75
HeapTupleHeader row
Definition: mvt.h:74

References encode_geometry(), mvt_agg_context::feature, mvt_agg_context::features_capacity, mvt_agg_context::geom_index, mvt_agg_context::layer, lwgeom_free(), lwgeom_from_gserialized(), parse_column_keys(), parse_values(), mvt_agg_context::row, and UINT32_MAX.

Referenced by pgis_asmvt_transfn().

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