PostgreSQL Source Code  git master
command.h File Reference
Include dependency graph for command.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef enum _backslashResult backslashResult
 

Enumerations

enum  _backslashResult {
  PSQL_CMD_UNKNOWN = 0 , PSQL_CMD_SEND , PSQL_CMD_SKIP_LINE , PSQL_CMD_TERMINATE ,
  PSQL_CMD_NEWEDIT , PSQL_CMD_ERROR
}
 

Functions

backslashResult HandleSlashCmds (PsqlScanState scan_state, ConditionalStack cstack, PQExpBuffer query_buf, PQExpBuffer previous_buf)
 
int process_file (char *filename, bool use_relative_path)
 
bool do_pset (const char *param, const char *value, printQueryOpt *popt, bool quiet)
 
printQueryOptsavePsetInfo (const printQueryOpt *popt)
 
void restorePsetInfo (printQueryOpt *popt, printQueryOpt *save)
 
void connection_warnings (bool in_startup)
 
void SyncVariables (void)
 
void UnsyncVariables (void)
 

Typedef Documentation

◆ backslashResult

Enumeration Type Documentation

◆ _backslashResult

Enumerator
PSQL_CMD_UNKNOWN 
PSQL_CMD_SEND 
PSQL_CMD_SKIP_LINE 
PSQL_CMD_TERMINATE 
PSQL_CMD_NEWEDIT 
PSQL_CMD_ERROR 

Definition at line 15 of file command.h.

16 {
17  PSQL_CMD_UNKNOWN = 0, /* not done parsing yet (internal only) */
18  PSQL_CMD_SEND, /* query complete; send off */
19  PSQL_CMD_SKIP_LINE, /* keep building query */
20  PSQL_CMD_TERMINATE, /* quit program */
21  PSQL_CMD_NEWEDIT, /* query buffer was changed (e.g., via \e) */
22  PSQL_CMD_ERROR, /* the execution of the backslash command
23  * resulted in an error */
@ PSQL_CMD_TERMINATE
Definition: command.h:20
@ PSQL_CMD_UNKNOWN
Definition: command.h:17
@ PSQL_CMD_NEWEDIT
Definition: command.h:21
@ PSQL_CMD_ERROR
Definition: command.h:22
@ PSQL_CMD_SEND
Definition: command.h:18
@ PSQL_CMD_SKIP_LINE
Definition: command.h:19
enum _backslashResult backslashResult

Function Documentation

◆ connection_warnings()

void connection_warnings ( bool  in_startup)

Definition at line 3949 of file command.c.

3950 {
3951  if (!pset.quiet && !pset.notty)
3952  {
3953  int client_ver = PG_VERSION_NUM;
3954  char cverbuf[32];
3955  char sverbuf[32];
3956 
3957  if (pset.sversion != client_ver)
3958  {
3959  const char *server_version;
3960 
3961  /* Try to get full text form, might include "devel" etc */
3962  server_version = PQparameterStatus(pset.db, "server_version");
3963  /* Otherwise fall back on pset.sversion */
3964  if (!server_version)
3965  {
3967  sverbuf, sizeof(sverbuf));
3968  server_version = sverbuf;
3969  }
3970 
3971  printf(_("%s (%s, server %s)\n"),
3972  pset.progname, PG_VERSION, server_version);
3973  }
3974  /* For version match, only print psql banner on startup. */
3975  else if (in_startup)
3976  printf("%s (%s)\n", pset.progname, PG_VERSION);
3977 
3978  /*
3979  * Warn if server's major version is newer than ours, or if server
3980  * predates our support cutoff (currently 9.2).
3981  */
3982  if (pset.sversion / 100 > client_ver / 100 ||
3983  pset.sversion < 90200)
3984  printf(_("WARNING: %s major version %s, server major version %s.\n"
3985  " Some psql features might not work.\n"),
3986  pset.progname,
3987  formatPGVersionNumber(client_ver, false,
3988  cverbuf, sizeof(cverbuf)),
3990  sverbuf, sizeof(sverbuf)));
3991 
3992 #ifdef WIN32
3993  if (in_startup)
3994  checkWin32Codepage();
3995 #endif
3996  printSSLInfo();
3997  printGSSInfo();
3998  }
3999 }
static void printSSLInfo(void)
Definition: command.c:4008
static void printGSSInfo(void)
Definition: command.c:4036
#define _(x)
Definition: elog.c:90
const char * PQparameterStatus(const PGconn *conn, const char *paramName)
Definition: fe-connect.c:7137
static int server_version
Definition: pg_dumpall.c:110
#define printf(...)
Definition: port.h:244
PsqlSettings pset
Definition: startup.c:32
char * formatPGVersionNumber(int version_number, bool include_minor, char *buf, size_t buflen)
Definition: string_utils.c:177
PGconn * db
Definition: settings.h:91
const char * progname
Definition: settings.h:124

References _, _psqlSettings::db, formatPGVersionNumber(), _psqlSettings::notty, PQparameterStatus(), printf, printGSSInfo(), printSSLInfo(), _psqlSettings::progname, pset, _psqlSettings::quiet, server_version, and _psqlSettings::sversion.

Referenced by CheckConnection(), do_connect(), and main().

◆ do_pset()

bool do_pset ( const char *  param,
const char *  value,
printQueryOpt popt,
bool  quiet 
)

Definition at line 4568 of file command.c.

4569 {
4570  size_t vallen = 0;
4571 
4572  Assert(param != NULL);
4573 
4574  if (value)
4575  vallen = strlen(value);
4576 
4577  /* set format */
4578  if (strcmp(param, "format") == 0)
4579  {
4580  static const struct fmt
4581  {
4582  const char *name;
4583  enum printFormat number;
4584  } formats[] =
4585  {
4586  /* remember to update error message below when adding more */
4587  {"aligned", PRINT_ALIGNED},
4588  {"asciidoc", PRINT_ASCIIDOC},
4589  {"csv", PRINT_CSV},
4590  {"html", PRINT_HTML},
4591  {"latex", PRINT_LATEX},
4592  {"troff-ms", PRINT_TROFF_MS},
4593  {"unaligned", PRINT_UNALIGNED},
4594  {"wrapped", PRINT_WRAPPED}
4595  };
4596 
4597  if (!value)
4598  ;
4599  else
4600  {
4601  int match_pos = -1;
4602 
4603  for (int i = 0; i < lengthof(formats); i++)
4604  {
4605  if (pg_strncasecmp(formats[i].name, value, vallen) == 0)
4606  {
4607  if (match_pos < 0)
4608  match_pos = i;
4609  else
4610  {
4611  pg_log_error("\\pset: ambiguous abbreviation \"%s\" matches both \"%s\" and \"%s\"",
4612  value,
4613  formats[match_pos].name, formats[i].name);
4614  return false;
4615  }
4616  }
4617  }
4618  if (match_pos >= 0)
4619  popt->topt.format = formats[match_pos].number;
4620  else if (pg_strncasecmp("latex-longtable", value, vallen) == 0)
4621  {
4622  /*
4623  * We must treat latex-longtable specially because latex is a
4624  * prefix of it; if both were in the table above, we'd think
4625  * "latex" is ambiguous.
4626  */
4628  }
4629  else
4630  {
4631  pg_log_error("\\pset: allowed formats are aligned, asciidoc, csv, html, latex, latex-longtable, troff-ms, unaligned, wrapped");
4632  return false;
4633  }
4634  }
4635  }
4636 
4637  /* set table line style */
4638  else if (strcmp(param, "linestyle") == 0)
4639  {
4640  if (!value)
4641  ;
4642  else if (pg_strncasecmp("ascii", value, vallen) == 0)
4643  popt->topt.line_style = &pg_asciiformat;
4644  else if (pg_strncasecmp("old-ascii", value, vallen) == 0)
4646  else if (pg_strncasecmp("unicode", value, vallen) == 0)
4647  popt->topt.line_style = &pg_utf8format;
4648  else
4649  {
4650  pg_log_error("\\pset: allowed line styles are ascii, old-ascii, unicode");
4651  return false;
4652  }
4653  }
4654 
4655  /* set unicode border line style */
4656  else if (strcmp(param, "unicode_border_linestyle") == 0)
4657  {
4658  if (!value)
4659  ;
4660  else if (set_unicode_line_style(value, vallen,
4662  refresh_utf8format(&(popt->topt));
4663  else
4664  {
4665  pg_log_error("\\pset: allowed Unicode border line styles are single, double");
4666  return false;
4667  }
4668  }
4669 
4670  /* set unicode column line style */
4671  else if (strcmp(param, "unicode_column_linestyle") == 0)
4672  {
4673  if (!value)
4674  ;
4675  else if (set_unicode_line_style(value, vallen,
4677  refresh_utf8format(&(popt->topt));
4678  else
4679  {
4680  pg_log_error("\\pset: allowed Unicode column line styles are single, double");
4681  return false;
4682  }
4683  }
4684 
4685  /* set unicode header line style */
4686  else if (strcmp(param, "unicode_header_linestyle") == 0)
4687  {
4688  if (!value)
4689  ;
4690  else if (set_unicode_line_style(value, vallen,
4692  refresh_utf8format(&(popt->topt));
4693  else
4694  {
4695  pg_log_error("\\pset: allowed Unicode header line styles are single, double");
4696  return false;
4697  }
4698  }
4699 
4700  /* set border style/width */
4701  else if (strcmp(param, "border") == 0)
4702  {
4703  if (value)
4704  popt->topt.border = atoi(value);
4705  }
4706 
4707  /* set expanded/vertical mode */
4708  else if (strcmp(param, "x") == 0 ||
4709  strcmp(param, "expanded") == 0 ||
4710  strcmp(param, "vertical") == 0)
4711  {
4712  if (value && pg_strcasecmp(value, "auto") == 0)
4713  popt->topt.expanded = 2;
4714  else if (value)
4715  {
4716  bool on_off;
4717 
4718  if (ParseVariableBool(value, NULL, &on_off))
4719  popt->topt.expanded = on_off ? 1 : 0;
4720  else
4721  {
4722  PsqlVarEnumError(param, value, "on, off, auto");
4723  return false;
4724  }
4725  }
4726  else
4727  popt->topt.expanded = !popt->topt.expanded;
4728  }
4729 
4730  /* header line width in expanded mode */
4731  else if (strcmp(param, "xheader_width") == 0)
4732  {
4733  if (!value)
4734  ;
4735  else if (pg_strcasecmp(value, "full") == 0)
4737  else if (pg_strcasecmp(value, "column") == 0)
4739  else if (pg_strcasecmp(value, "page") == 0)
4741  else
4742  {
4743  int intval = atoi(value);
4744 
4745  if (intval == 0)
4746  {
4747  pg_log_error("\\pset: allowed xheader_width values are \"%s\" (default), \"%s\", \"%s\", or a number specifying the exact width", "full", "column", "page");
4748  return false;
4749  }
4750 
4752  popt->topt.expanded_header_exact_width = intval;
4753  }
4754  }
4755 
4756  /* field separator for CSV format */
4757  else if (strcmp(param, "csv_fieldsep") == 0)
4758  {
4759  if (value)
4760  {
4761  /* CSV separator has to be a one-byte character */
4762  if (strlen(value) != 1)
4763  {
4764  pg_log_error("\\pset: csv_fieldsep must be a single one-byte character");
4765  return false;
4766  }
4767  if (value[0] == '"' || value[0] == '\n' || value[0] == '\r')
4768  {
4769  pg_log_error("\\pset: csv_fieldsep cannot be a double quote, a newline, or a carriage return");
4770  return false;
4771  }
4772  popt->topt.csvFieldSep[0] = value[0];
4773  }
4774  }
4775 
4776  /* locale-aware numeric output */
4777  else if (strcmp(param, "numericlocale") == 0)
4778  {
4779  if (value)
4780  return ParseVariableBool(value, param, &popt->topt.numericLocale);
4781  else
4782  popt->topt.numericLocale = !popt->topt.numericLocale;
4783  }
4784 
4785  /* null display */
4786  else if (strcmp(param, "null") == 0)
4787  {
4788  if (value)
4789  {
4790  free(popt->nullPrint);
4791  popt->nullPrint = pg_strdup(value);
4792  }
4793  }
4794 
4795  /* field separator for unaligned text */
4796  else if (strcmp(param, "fieldsep") == 0)
4797  {
4798  if (value)
4799  {
4800  free(popt->topt.fieldSep.separator);
4802  popt->topt.fieldSep.separator_zero = false;
4803  }
4804  }
4805 
4806  else if (strcmp(param, "fieldsep_zero") == 0)
4807  {
4808  free(popt->topt.fieldSep.separator);
4809  popt->topt.fieldSep.separator = NULL;
4810  popt->topt.fieldSep.separator_zero = true;
4811  }
4812 
4813  /* record separator for unaligned text */
4814  else if (strcmp(param, "recordsep") == 0)
4815  {
4816  if (value)
4817  {
4818  free(popt->topt.recordSep.separator);
4820  popt->topt.recordSep.separator_zero = false;
4821  }
4822  }
4823 
4824  else if (strcmp(param, "recordsep_zero") == 0)
4825  {
4826  free(popt->topt.recordSep.separator);
4827  popt->topt.recordSep.separator = NULL;
4828  popt->topt.recordSep.separator_zero = true;
4829  }
4830 
4831  /* toggle between full and tuples-only format */
4832  else if (strcmp(param, "t") == 0 || strcmp(param, "tuples_only") == 0)
4833  {
4834  if (value)
4835  return ParseVariableBool(value, param, &popt->topt.tuples_only);
4836  else
4837  popt->topt.tuples_only = !popt->topt.tuples_only;
4838  }
4839 
4840  /* set title override */
4841  else if (strcmp(param, "C") == 0 || strcmp(param, "title") == 0)
4842  {
4843  free(popt->title);
4844  if (!value)
4845  popt->title = NULL;
4846  else
4847  popt->title = pg_strdup(value);
4848  }
4849 
4850  /* set HTML table tag options */
4851  else if (strcmp(param, "T") == 0 || strcmp(param, "tableattr") == 0)
4852  {
4853  free(popt->topt.tableAttr);
4854  if (!value)
4855  popt->topt.tableAttr = NULL;
4856  else
4857  popt->topt.tableAttr = pg_strdup(value);
4858  }
4859 
4860  /* toggle use of pager */
4861  else if (strcmp(param, "pager") == 0)
4862  {
4863  if (value && pg_strcasecmp(value, "always") == 0)
4864  popt->topt.pager = 2;
4865  else if (value)
4866  {
4867  bool on_off;
4868 
4869  if (!ParseVariableBool(value, NULL, &on_off))
4870  {
4871  PsqlVarEnumError(param, value, "on, off, always");
4872  return false;
4873  }
4874  popt->topt.pager = on_off ? 1 : 0;
4875  }
4876  else if (popt->topt.pager == 1)
4877  popt->topt.pager = 0;
4878  else
4879  popt->topt.pager = 1;
4880  }
4881 
4882  /* set minimum lines for pager use */
4883  else if (strcmp(param, "pager_min_lines") == 0)
4884  {
4885  if (value &&
4886  !ParseVariableNum(value, "pager_min_lines", &popt->topt.pager_min_lines))
4887  return false;
4888  }
4889 
4890  /* disable "(x rows)" footer */
4891  else if (strcmp(param, "footer") == 0)
4892  {
4893  if (value)
4894  return ParseVariableBool(value, param, &popt->topt.default_footer);
4895  else
4896  popt->topt.default_footer = !popt->topt.default_footer;
4897  }
4898 
4899  /* set border style/width */
4900  else if (strcmp(param, "columns") == 0)
4901  {
4902  if (value)
4903  popt->topt.columns = atoi(value);
4904  }
4905  else
4906  {
4907  pg_log_error("\\pset: unknown option: %s", param);
4908  return false;
4909  }
4910 
4911  if (!quiet)
4912  printPsetInfo(param, &pset.popt);
4913 
4914  return true;
4915 }
#define Assert(condition)
Definition: c.h:858
#define lengthof(array)
Definition: c.h:788
static bool set_unicode_line_style(const char *value, size_t vallen, unicode_linestyle *linestyle)
Definition: command.c:4525
static bool printPsetInfo(const char *param, printQueryOpt *popt)
Definition: command.c:4921
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
void refresh_utf8format(const printTableOpt *opt)
Definition: print.c:3691
const printTextFormat pg_asciiformat
Definition: print.c:56
const printTextFormat pg_asciiformat_old
Definition: print.c:77
printTextFormat pg_utf8format
Definition: print.c:99
@ PRINT_XHEADER_EXACT_WIDTH
Definition: print.h:78
@ PRINT_XHEADER_PAGE
Definition: print.h:76
@ PRINT_XHEADER_COLUMN
Definition: print.h:74
@ PRINT_XHEADER_FULL
Definition: print.h:72
printFormat
Definition: print.h:29
@ PRINT_LATEX_LONGTABLE
Definition: print.h:36
@ PRINT_CSV
Definition: print.h:33
@ PRINT_UNALIGNED
Definition: print.h:38
@ PRINT_ALIGNED
Definition: print.h:31
@ PRINT_TROFF_MS
Definition: print.h:37
@ PRINT_ASCIIDOC
Definition: print.h:32
@ PRINT_LATEX
Definition: print.h:35
@ PRINT_HTML
Definition: print.h:34
@ PRINT_WRAPPED
Definition: print.h:39
#define free(a)
Definition: header.h:65
static struct @157 value
int i
Definition: isn.c:73
static void const char * fmt
#define pg_log_error(...)
Definition: logging.h:106
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36
int pg_strncasecmp(const char *s1, const char *s2, size_t n)
Definition: pgstrcasecmp.c:69
printQueryOpt popt
Definition: settings.h:100
printTableOpt topt
Definition: print.h:185
char * nullPrint
Definition: print.h:186
char * title
Definition: print.h:187
unsigned short int expanded
Definition: print.h:114
unicode_linestyle unicode_border_linestyle
Definition: print.h:141
bool tuples_only
Definition: print.h:126
int columns
Definition: print.h:140
enum printFormat format
Definition: print.h:113
struct separator fieldSep
Definition: print.h:132
int expanded_header_exact_width
Definition: print.h:118
struct separator recordSep
Definition: print.h:133
printXheaderWidthType expanded_header_width_type
Definition: print.h:116
char csvFieldSep[2]
Definition: print.h:134
const printTextFormat * line_style
Definition: print.h:131
bool default_footer
Definition: print.h:129
int pager_min_lines
Definition: print.h:124
unsigned short int pager
Definition: print.h:122
char * tableAttr
Definition: print.h:137
bool numericLocale
Definition: print.h:135
unsigned short int border
Definition: print.h:120
unicode_linestyle unicode_header_linestyle
Definition: print.h:143
unicode_linestyle unicode_column_linestyle
Definition: print.h:142
bool separator_zero
Definition: print.h:108
char * separator
Definition: print.h:107
void PsqlVarEnumError(const char *name, const char *value, const char *suggestions)
Definition: variables.c:416
bool ParseVariableBool(const char *value, const char *name, bool *result)
Definition: variables.c:107
bool ParseVariableNum(const char *value, const char *name, int *result)
Definition: variables.c:156
const char * name

References Assert, printTableOpt::border, printTableOpt::columns, printTableOpt::csvFieldSep, printTableOpt::default_footer, printTableOpt::expanded, printTableOpt::expanded_header_exact_width, printTableOpt::expanded_header_width_type, printTableOpt::fieldSep, fmt, printTableOpt::format, free, i, lengthof, printTableOpt::line_style, name, printQueryOpt::nullPrint, printTableOpt::numericLocale, printTableOpt::pager, printTableOpt::pager_min_lines, ParseVariableBool(), ParseVariableNum(), pg_asciiformat, pg_asciiformat_old, pg_log_error, pg_strcasecmp(), pg_strdup(), pg_strncasecmp(), pg_utf8format, _psqlSettings::popt, PRINT_ALIGNED, PRINT_ASCIIDOC, PRINT_CSV, PRINT_HTML, PRINT_LATEX, PRINT_LATEX_LONGTABLE, PRINT_TROFF_MS, PRINT_UNALIGNED, PRINT_WRAPPED, PRINT_XHEADER_COLUMN, PRINT_XHEADER_EXACT_WIDTH, PRINT_XHEADER_FULL, PRINT_XHEADER_PAGE, printPsetInfo(), pset, PsqlVarEnumError(), printTableOpt::recordSep, refresh_utf8format(), separator::separator, separator::separator_zero, set_unicode_line_style(), printTableOpt::tableAttr, printQueryOpt::title, printQueryOpt::topt, printTableOpt::tuples_only, printTableOpt::unicode_border_linestyle, printTableOpt::unicode_column_linestyle, printTableOpt::unicode_header_linestyle, and value.

Referenced by exec_command_a(), exec_command_C(), exec_command_f(), exec_command_html(), exec_command_pset(), exec_command_t(), exec_command_T(), exec_command_x(), parse_psql_options(), and process_command_g_options().

◆ HandleSlashCmds()

backslashResult HandleSlashCmds ( PsqlScanState  scan_state,
ConditionalStack  cstack,
PQExpBuffer  query_buf,
PQExpBuffer  previous_buf 
)

Definition at line 221 of file command.c.

225 {
226  backslashResult status;
227  char *cmd;
228  char *arg;
229 
230  Assert(scan_state != NULL);
231  Assert(cstack != NULL);
232 
233  /* Parse off the command name */
234  cmd = psql_scan_slash_command(scan_state);
235 
236  /* And try to execute it */
237  status = exec_command(cmd, scan_state, cstack, query_buf, previous_buf);
238 
239  if (status == PSQL_CMD_UNKNOWN)
240  {
241  pg_log_error("invalid command \\%s", cmd);
243  pg_log_error_hint("Try \\? for help.");
244  status = PSQL_CMD_ERROR;
245  }
246 
247  if (status != PSQL_CMD_ERROR)
248  {
249  /*
250  * Eat any remaining arguments after a valid command. We want to
251  * suppress evaluation of backticks in this situation, so transiently
252  * push an inactive conditional-stack entry.
253  */
254  bool active_branch = conditional_active(cstack);
255 
257  while ((arg = psql_scan_slash_option(scan_state,
258  OT_NORMAL, NULL, false)))
259  {
260  if (active_branch)
261  pg_log_warning("\\%s: extra argument \"%s\" ignored", cmd, arg);
262  free(arg);
263  }
264  conditional_stack_pop(cstack);
265  }
266  else
267  {
268  /* silently throw away rest of line after an erroneous command */
269  while ((arg = psql_scan_slash_option(scan_state,
270  OT_WHOLE_LINE, NULL, false)))
271  free(arg);
272  }
273 
274  /* if there is a trailing \\, swallow it */
275  psql_scan_slash_command_end(scan_state);
276 
277  free(cmd);
278 
279  /* some commands write to queryFout, so make sure output is sent */
281 
282  return status;
283 }
static backslashResult exec_command(const char *cmd, PsqlScanState scan_state, ConditionalStack cstack, PQExpBuffer query_buf, PQExpBuffer previous_buf)
Definition: command.c:294
void conditional_stack_push(ConditionalStack cstack, ifState new_state)
Definition: conditional.c:53
bool conditional_stack_pop(ConditionalStack cstack)
Definition: conditional.c:69
bool conditional_active(ConditionalStack cstack)
Definition: conditional.c:140
@ IFSTATE_IGNORED
Definition: conditional.h:37
static void const char fflush(stdout)
#define pg_log_error_hint(...)
Definition: logging.h:112
void * arg
#define pg_log_warning(...)
Definition: pgfnames.c:24
char * psql_scan_slash_command(PsqlScanState state)
void psql_scan_slash_command_end(PsqlScanState state)
@ OT_NORMAL
Definition: psqlscanslash.h:17
@ OT_WHOLE_LINE
Definition: psqlscanslash.h:21
char * psql_scan_slash_option(PsqlScanState state, enum slash_option_type type, char *quote, bool semicolon)
FILE * queryFout
Definition: settings.h:93
bool cur_cmd_interactive
Definition: settings.h:122

References arg, Assert, conditional_active(), conditional_stack_pop(), conditional_stack_push(), _psqlSettings::cur_cmd_interactive, exec_command(), fflush(), free, IFSTATE_IGNORED, OT_NORMAL, OT_WHOLE_LINE, pg_log_error, pg_log_error_hint, pg_log_warning, pset, PSQL_CMD_ERROR, PSQL_CMD_UNKNOWN, psql_scan_slash_command(), psql_scan_slash_command_end(), psql_scan_slash_option(), and _psqlSettings::queryFout.

Referenced by main(), and MainLoop().

◆ process_file()

int process_file ( char *  filename,
bool  use_relative_path 
)

Definition at line 4415 of file command.c.

4416 {
4417  FILE *fd;
4418  int result;
4419  char *oldfilename;
4420  char relpath[MAXPGPATH];
4421 
4422  if (!filename)
4423  {
4424  fd = stdin;
4425  filename = NULL;
4426  }
4427  else if (strcmp(filename, "-") != 0)
4428  {
4430 
4431  /*
4432  * If we were asked to resolve the pathname relative to the location
4433  * of the currently executing script, and there is one, and this is a
4434  * relative pathname, then prepend all but the last pathname component
4435  * of the current script to this pathname.
4436  */
4437  if (use_relative_path && pset.inputfile &&
4439  {
4440  strlcpy(relpath, pset.inputfile, sizeof(relpath));
4444 
4445  filename = relpath;
4446  }
4447 
4448  fd = fopen(filename, PG_BINARY_R);
4449 
4450  if (!fd)
4451  {
4452  pg_log_error("%s: %m", filename);
4453  return EXIT_FAILURE;
4454  }
4455  }
4456  else
4457  {
4458  fd = stdin;
4459  filename = "<stdin>"; /* for future error messages */
4460  }
4461 
4462  oldfilename = pset.inputfile;
4464 
4466 
4467  result = MainLoop(fd);
4468 
4469  if (fd != stdin)
4470  fclose(fd);
4471 
4472  pset.inputfile = oldfilename;
4473 
4475 
4476  return result;
4477 }
#define PG_BINARY_R
Definition: c.h:1275
void pg_logging_config(int new_flags)
Definition: logging.c:165
#define PG_LOG_FLAG_TERSE
Definition: logging.h:86
int MainLoop(FILE *source)
Definition: mainloop.c:33
#define MAXPGPATH
static char * filename
Definition: pg_dumpall.c:119
void join_path_components(char *ret_path, const char *head, const char *tail)
Definition: path.c:220
#define is_absolute_path(filename)
Definition: port.h:103
void canonicalize_path(char *path)
Definition: path.c:265
void get_parent_directory(char *path)
Definition: path.c:991
bool has_drive_prefix(const char *path)
Definition: path.c:89
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45
static int fd(const char *x, int i)
Definition: preproc-init.c:105
#define relpath(rlocator, forknum)
Definition: relpath.h:102
#define EXIT_FAILURE
Definition: settings.h:178
char * inputfile
Definition: settings.h:125

References canonicalize_path(), EXIT_FAILURE, fd(), filename, get_parent_directory(), has_drive_prefix(), _psqlSettings::inputfile, is_absolute_path, join_path_components(), MainLoop(), MAXPGPATH, PG_BINARY_R, pg_log_error, PG_LOG_FLAG_TERSE, pg_logging_config(), pset, relpath, and strlcpy().

Referenced by exec_command_include().

◆ restorePsetInfo()

void restorePsetInfo ( printQueryOpt popt,
printQueryOpt save 
)

Definition at line 5157 of file command.c.

5158 {
5159  /* Free all the old data we're about to overwrite the pointers to. */
5160 
5161  /* topt.line_style points to const data that need not be duplicated */
5162  free(popt->topt.fieldSep.separator);
5163  free(popt->topt.recordSep.separator);
5164  free(popt->topt.tableAttr);
5165  free(popt->nullPrint);
5166  free(popt->title);
5167 
5168  /*
5169  * footers and translate_columns are never set in psql's print settings,
5170  * so we needn't write code to duplicate them.
5171  */
5172  Assert(popt->footers == NULL);
5173  Assert(popt->translate_columns == NULL);
5174 
5175  /* Now we may flat-copy all the fields, including pointers. */
5176  memcpy(popt, save, sizeof(printQueryOpt));
5177 
5178  /* Lastly, free "save" ... but its sub-structures now belong to popt. */
5179  free(save);
5180 }
const bool * translate_columns
Definition: print.h:190
char ** footers
Definition: print.h:188

References Assert, printTableOpt::fieldSep, printQueryOpt::footers, free, printQueryOpt::nullPrint, printTableOpt::recordSep, separator::separator, printTableOpt::tableAttr, printQueryOpt::title, printQueryOpt::topt, and printQueryOpt::translate_columns.

Referenced by process_command_g_options(), and SendQuery().

◆ savePsetInfo()

printQueryOpt* savePsetInfo ( const printQueryOpt popt)

Definition at line 5121 of file command.c.

5122 {
5123  printQueryOpt *save;
5124 
5125  save = (printQueryOpt *) pg_malloc(sizeof(printQueryOpt));
5126 
5127  /* Flat-copy all the scalar fields, then duplicate sub-structures. */
5128  memcpy(save, popt, sizeof(printQueryOpt));
5129 
5130  /* topt.line_style points to const data that need not be duplicated */
5131  if (popt->topt.fieldSep.separator)
5133  if (popt->topt.recordSep.separator)
5135  if (popt->topt.tableAttr)
5136  save->topt.tableAttr = pg_strdup(popt->topt.tableAttr);
5137  if (popt->nullPrint)
5138  save->nullPrint = pg_strdup(popt->nullPrint);
5139  if (popt->title)
5140  save->title = pg_strdup(popt->title);
5141 
5142  /*
5143  * footers and translate_columns are never set in psql's print settings,
5144  * so we needn't write code to duplicate them.
5145  */
5146  Assert(popt->footers == NULL);
5147  Assert(popt->translate_columns == NULL);
5148 
5149  return save;
5150 }
void * pg_malloc(size_t size)
Definition: fe_memutils.c:47

References Assert, printTableOpt::fieldSep, printQueryOpt::footers, printQueryOpt::nullPrint, pg_malloc(), pg_strdup(), printTableOpt::recordSep, separator::separator, printTableOpt::tableAttr, printQueryOpt::title, printQueryOpt::topt, and printQueryOpt::translate_columns.

Referenced by exec_command_g(), and process_command_g_options().

◆ SyncVariables()

void SyncVariables ( void  )

Definition at line 4077 of file command.c.

4078 {
4079  char vbuf[32];
4080  const char *server_version;
4081 
4082  /* get stuff from connection */
4086 
4087  SetVariable(pset.vars, "DBNAME", PQdb(pset.db));
4088  SetVariable(pset.vars, "USER", PQuser(pset.db));
4089  SetVariable(pset.vars, "HOST", PQhost(pset.db));
4090  SetVariable(pset.vars, "PORT", PQport(pset.db));
4092 
4093  /* this bit should match connection_warnings(): */
4094  /* Try to get full text form of version, might include "devel" etc */
4095  server_version = PQparameterStatus(pset.db, "server_version");
4096  /* Otherwise fall back on pset.sversion */
4097  if (!server_version)
4098  {
4099  formatPGVersionNumber(pset.sversion, true, vbuf, sizeof(vbuf));
4100  server_version = vbuf;
4101  }
4102  SetVariable(pset.vars, "SERVER_VERSION_NAME", server_version);
4103 
4104  snprintf(vbuf, sizeof(vbuf), "%d", pset.sversion);
4105  SetVariable(pset.vars, "SERVER_VERSION_NUM", vbuf);
4106 
4107  /* send stuff to it, too */
4110 }
int PQserverVersion(const PGconn *conn)
Definition: fe-connect.c:7172
char * PQhost(const PGconn *conn)
Definition: fe-connect.c:7051
char * PQdb(const PGconn *conn)
Definition: fe-connect.c:7018
int PQclientEncoding(const PGconn *conn)
Definition: fe-connect.c:7270
PGContextVisibility PQsetErrorContextVisibility(PGconn *conn, PGContextVisibility show_context)
Definition: fe-connect.c:7332
char * PQuser(const PGconn *conn)
Definition: fe-connect.c:7026
char * PQport(const PGconn *conn)
Definition: fe-connect.c:7087
PGVerbosity PQsetErrorVerbosity(PGconn *conn, PGVerbosity verbosity)
Definition: fe-connect.c:7320
#define pg_encoding_to_char
Definition: pg_wchar.h:630
#define snprintf
Definition: port.h:238
VariableSpace vars
Definition: settings.h:133
int encoding
Definition: settings.h:92
PGVerbosity verbosity
Definition: settings.h:165
PGContextVisibility show_context
Definition: settings.h:167
int encoding
Definition: print.h:138
bool SetVariable(VariableSpace space, const char *name, const char *value)
Definition: variables.c:211

References _psqlSettings::db, _psqlSettings::encoding, printTableOpt::encoding, formatPGVersionNumber(), pg_encoding_to_char, _psqlSettings::popt, PQclientEncoding(), PQdb(), PQhost(), PQparameterStatus(), PQport(), PQserverVersion(), PQsetErrorContextVisibility(), PQsetErrorVerbosity(), PQuser(), pset, server_version, SetVariable(), _psqlSettings::show_context, snprintf, _psqlSettings::sversion, printQueryOpt::topt, _psqlSettings::vars, and _psqlSettings::verbosity.

Referenced by CheckConnection(), do_connect(), and main().

◆ UnsyncVariables()

void UnsyncVariables ( void  )

Definition at line 4118 of file command.c.

4119 {
4120  SetVariable(pset.vars, "DBNAME", NULL);
4121  SetVariable(pset.vars, "USER", NULL);
4122  SetVariable(pset.vars, "HOST", NULL);
4123  SetVariable(pset.vars, "PORT", NULL);
4124  SetVariable(pset.vars, "ENCODING", NULL);
4125  SetVariable(pset.vars, "SERVER_VERSION_NAME", NULL);
4126  SetVariable(pset.vars, "SERVER_VERSION_NUM", NULL);
4127 }

References pset, SetVariable(), and _psqlSettings::vars.

Referenced by CheckConnection(), and do_connect().