PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ nd_stats_to_json()

static char* nd_stats_to_json ( const ND_STATS nd_stats)
static

Convert an ND_STATS to a JSON representation for external use.

Definition at line 474 of file gserialized_estimate.c.

475 {
476  char *json_extent, *str;
477  int d;
479  int ndims = (int)roundf(nd_stats->ndims);
480 
481  stringbuffer_append(sb, "{");
482  stringbuffer_aprintf(sb, "\"ndims\":%d,", ndims);
483 
484  /* Size */
485  stringbuffer_append(sb, "\"size\":[");
486  for ( d = 0; d < ndims; d++ )
487  {
488  if ( d ) stringbuffer_append(sb, ",");
489  stringbuffer_aprintf(sb, "%d", (int)roundf(nd_stats->size[d]));
490  }
491  stringbuffer_append(sb, "],");
492 
493  /* Extent */
494  json_extent = nd_box_to_json(&(nd_stats->extent), ndims);
495  stringbuffer_aprintf(sb, "\"extent\":%s,", json_extent);
496  pfree(json_extent);
497 
498  stringbuffer_aprintf(sb, "\"table_features\":%d,", (int)roundf(nd_stats->table_features));
499  stringbuffer_aprintf(sb, "\"sample_features\":%d,", (int)roundf(nd_stats->sample_features));
500  stringbuffer_aprintf(sb, "\"not_null_features\":%d,", (int)roundf(nd_stats->not_null_features));
501  stringbuffer_aprintf(sb, "\"histogram_features\":%d,", (int)roundf(nd_stats->histogram_features));
502  stringbuffer_aprintf(sb, "\"histogram_cells\":%d,", (int)roundf(nd_stats->histogram_cells));
503  stringbuffer_aprintf(sb, "\"cells_covered\":%d", (int)roundf(nd_stats->cells_covered));
504  stringbuffer_append(sb, "}");
505 
506  str = stringbuffer_getstringcopy(sb);
508  return str;
509 }
static char * nd_box_to_json(const ND_BOX *nd_box, int ndims)
Convert an ND_BOX to a JSON string for printing.
int stringbuffer_aprintf(stringbuffer_t *s, const char *fmt,...)
Appends a formatted string to the current string buffer, using the format and argument list provided.
Definition: stringbuffer.c:253
stringbuffer_t * stringbuffer_create(void)
Allocate a new stringbuffer_t.
Definition: stringbuffer.c:35
void stringbuffer_append(stringbuffer_t *s, const char *a)
Append the specified string to the stringbuffer_t.
Definition: stringbuffer.c:134
void stringbuffer_destroy(stringbuffer_t *s)
Free the stringbuffer_t and all memory managed within it.
Definition: stringbuffer.c:78
char * stringbuffer_getstringcopy(stringbuffer_t *s)
Returns a newly allocated string large enough to contain the current state of the string.
Definition: stringbuffer.c:160
float4 size[ND_DIMS]

References ND_STATS_T::cells_covered, ND_STATS_T::extent, ND_STATS_T::histogram_cells, ND_STATS_T::histogram_features, nd_box_to_json(), ND_STATS_T::ndims, ND_STATS_T::not_null_features, ND_STATS_T::sample_features, ND_STATS_T::size, stringbuffer_append(), stringbuffer_aprintf(), stringbuffer_create(), stringbuffer_destroy(), stringbuffer_getstringcopy(), and ND_STATS_T::table_features.

Referenced by _postgis_gserialized_stats(), compute_gserialized_stats_mode(), estimate_join_selectivity(), and gserialized_gist_sel().

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