static bool reporting_enabled; /* true to enable GUC_REPORT */
+static bool report_needed; /* true if any GUC_REPORT reports are needed */
+
static int GUCNestLevel = 0; /* 1 when in main transaction */
gconf->reset_scontext = PGC_INTERNAL;
gconf->stack = NULL;
gconf->extra = NULL;
+ gconf->last_reported = NULL;
gconf->sourcefile = NULL;
gconf->sourceline = 0;
gconf->scontext = gconf->reset_scontext;
if (gconf->flags & GUC_REPORT)
- ReportGUCOption(gconf);
+ {
+ gconf->status |= GUC_NEEDS_REPORT;
+ report_needed = true;
+ }
}
}
/* Report new value if we changed it */
if (changed && (gconf->flags & GUC_REPORT))
- ReportGUCOption(gconf);
+ {
+ gconf->status |= GUC_NEEDS_REPORT;
+ report_needed = true;
+ }
} /* end of stack-popping loop */
if (stack != NULL)
if (conf->flags & GUC_REPORT)
ReportGUCOption(conf);
}
+
+ report_needed = false;
+}
+
+/*
+ * ReportChangedGUCOptions: report recently-changed GUC_REPORT variables
+ *
+ * This is called just before we wait for a new client query.
+ *
+ * By handling things this way, we ensure that a ParameterStatus message
+ * is sent at most once per variable per query, even if the variable
+ * changed multiple times within the query. That's quite possible when
+ * using features such as function SET clauses. Function SET clauses
+ * also tend to cause values to change intraquery but eventually revert
+ * to their prevailing values; ReportGUCOption is responsible for avoiding
+ * redundant reports in such cases.
+ */
+void
+ReportChangedGUCOptions(void)
+{
+ /* Quick exit if not (yet) enabled */
+ if (!reporting_enabled)
+ return;
+
+ /* Quick exit if no values have been changed */
+ if (!report_needed)
+ return;
+
+ /* Transmit new values of interesting variables */
+ for (int i = 0; i < num_guc_variables; i++)
+ {
+ struct config_generic *conf = guc_variables[i];
+
+ if ((conf->flags & GUC_REPORT) && (conf->status & GUC_NEEDS_REPORT))
+ ReportGUCOption(conf);
+ }
+
+ report_needed = false;
}
/*
* ReportGUCOption: if appropriate, transmit option value to frontend
+ *
+ * We need not transmit the value if it's the same as what we last
+ * transmitted. However, clear the NEEDS_REPORT flag in any case.
*/
static void
ReportGUCOption(struct config_generic *record)
{
- if (reporting_enabled && (record->flags & GUC_REPORT))
+ char *val = _ShowOption(record, false);
+
+ if (record->last_reported == NULL ||
+ strcmp(val, record->last_reported) != 0)
{
- char *val = _ShowOption(record, false);
StringInfoData msgbuf;
pq_beginmessage(&msgbuf, 'S');
pq_sendstring(&msgbuf, val);
pq_endmessage(&msgbuf);
- pfree(val);
+ /*
+ * We need a long-lifespan copy. If strdup() fails due to OOM, we'll
+ * set last_reported to NULL and thereby possibly make a duplicate
+ * report later.
+ */
+ if (record->last_reported)
+ free(record->last_reported);
+ record->last_reported = strdup(val);
}
+
+ pfree(val);
+
+ record->status &= ~GUC_NEEDS_REPORT;
}
/*
}
if (changeVal && (record->flags & GUC_REPORT))
- ReportGUCOption(record);
+ {
+ record->status |= GUC_NEEDS_REPORT;
+ report_needed = true;
+ }
return changeVal ? 1 : -1;
}
GucContext reset_scontext; /* context that set the reset value */
GucStack *stack; /* stacked prior values */
void *extra; /* "extra" pointer for current actual value */
+ char *last_reported; /* if variable is GUC_REPORT, value last sent
+ * to client (NULL if not yet sent) */
char *sourcefile; /* file current setting is from (NULL if not
* set in config file) */
int sourceline; /* line in source file */
* Caution: the GUC_IS_IN_FILE bit is transient state for ProcessConfigFile.
* Do not assume that its value represents useful information elsewhere.
*/
-#define GUC_PENDING_RESTART 0x0002
+#define GUC_PENDING_RESTART 0x0002 /* changed value cannot be applied yet */
+#define GUC_NEEDS_REPORT 0x0004 /* new value must be reported to client */
/* GUC records for specific variable types */