Age Owner Branch data TLA Line data Source code
1 : : /*
2 : : * psql - the PostgreSQL interactive terminal
3 : : *
4 : : * Copyright (c) 2000-2024, PostgreSQL Global Development Group
5 : : *
6 : : * src/bin/psql/startup.c
7 : : */
8 : : #include "postgres_fe.h"
9 : :
10 : : #ifndef WIN32
11 : : #include <unistd.h>
12 : : #else /* WIN32 */
13 : : #include <io.h>
14 : : #include <win32.h>
15 : : #endif /* WIN32 */
16 : :
17 : : #include "command.h"
18 : : #include "common.h"
19 : : #include "common/logging.h"
20 : : #include "common/string.h"
21 : : #include "describe.h"
22 : : #include "fe_utils/print.h"
23 : : #include "getopt_long.h"
24 : : #include "help.h"
25 : : #include "input.h"
26 : : #include "mainloop.h"
27 : : #include "settings.h"
28 : :
29 : : /*
30 : : * Global psql options
31 : : */
32 : : PsqlSettings pset;
33 : :
34 : : #ifndef WIN32
35 : : #define SYSPSQLRC "psqlrc"
36 : : #define PSQLRC ".psqlrc"
37 : : #else
38 : : #define SYSPSQLRC "psqlrc"
39 : : #define PSQLRC "psqlrc.conf"
40 : : #endif
41 : :
42 : : /*
43 : : * Structures to pass information between the option parsing routine
44 : : * and the main function
45 : : */
46 : : enum _actions
47 : : {
48 : : ACT_SINGLE_QUERY,
49 : : ACT_SINGLE_SLASH,
50 : : ACT_FILE,
51 : : };
52 : :
53 : : typedef struct SimpleActionListCell
54 : : {
55 : : struct SimpleActionListCell *next;
56 : : enum _actions action;
57 : : char *val;
58 : : } SimpleActionListCell;
59 : :
60 : : typedef struct SimpleActionList
61 : : {
62 : : SimpleActionListCell *head;
63 : : SimpleActionListCell *tail;
64 : : } SimpleActionList;
65 : :
66 : : struct adhoc_opts
67 : : {
68 : : char *dbname;
69 : : char *host;
70 : : char *port;
71 : : char *username;
72 : : char *logfilename;
73 : : bool no_readline;
74 : : bool no_psqlrc;
75 : : bool single_txn;
76 : : bool list_dbs;
77 : : SimpleActionList actions;
78 : : };
79 : :
80 : : static void parse_psql_options(int argc, char *argv[],
81 : : struct adhoc_opts *options);
82 : : static void simple_action_list_append(SimpleActionList *list,
83 : : enum _actions action, const char *val);
84 : : static void process_psqlrc(char *argv0);
85 : : static void process_psqlrc_file(char *filename);
86 : : static void showVersion(void);
87 : : static void EstablishVariableSpace(void);
88 : :
89 : : #define NOPAGER 0
90 : :
91 : : static void
1840 peter@eisentraut.org 92 :CBC 96690 : log_pre_callback(void)
93 : : {
94 [ + - - + ]: 96690 : if (pset.queryFout && pset.queryFout != stdout)
1840 peter@eisentraut.org 95 :UBC 0 : fflush(pset.queryFout);
1840 peter@eisentraut.org 96 :CBC 96690 : }
97 : :
98 : : static void
99 : 96690 : log_locus_callback(const char **filename, uint64 *lineno)
100 : : {
101 [ + + ]: 96690 : if (pset.inputfile)
102 : : {
103 : 66673 : *filename = pset.inputfile;
1789 tgl@sss.pgh.pa.us 104 : 66673 : *lineno = pset.lineno;
105 : : }
106 : : else
107 : : {
1840 peter@eisentraut.org 108 : 30017 : *filename = NULL;
109 : 30017 : *lineno = 0;
110 : : }
111 : 96690 : }
112 : :
113 : : #ifndef WIN32
114 : : static void
1006 tmunro@postgresql.or 115 : 4 : empty_signal_handler(SIGNAL_ARGS)
116 : : {
117 : 4 : }
118 : : #endif
119 : :
120 : : /*
121 : : *
122 : : * main
123 : : *
124 : : */
125 : : int
8833 peter_e@gmx.net 126 : 8208 : main(int argc, char *argv[])
127 : : {
128 : : struct adhoc_opts options;
129 : : int successResult;
1319 tgl@sss.pgh.pa.us 130 : 8208 : char *password = NULL;
131 : : bool new_pass;
132 : :
1840 peter@eisentraut.org 133 : 8208 : pg_logging_init(argv[0]);
134 : 8208 : pg_logging_set_pre_callback(log_pre_callback);
135 : 8208 : pg_logging_set_locus_callback(log_locus_callback);
5603 peter_e@gmx.net 136 : 8208 : set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("psql"));
137 : :
8541 138 [ + - ]: 8208 : if (argc > 1)
139 : : {
3505 andres@anarazel.de 140 [ + - + + : 8208 : if ((strcmp(argv[1], "-?") == 0) || (argc == 2 && (strcmp(argv[1], "--help") == 0)))
+ + ]
141 : : {
142 : 1 : usage(NOPAGER);
8541 peter_e@gmx.net 143 : 1 : exit(EXIT_SUCCESS);
144 : : }
8424 bruce@momjian.us 145 [ + + + + ]: 8207 : if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
146 : : {
8541 peter_e@gmx.net 147 : 10 : showVersion();
148 : 10 : exit(EXIT_SUCCESS);
149 : : }
150 : : }
151 : :
6507 tgl@sss.pgh.pa.us 152 : 8197 : pset.progname = get_progname(argv[0]);
153 : :
6438 154 : 8197 : pset.db = NULL;
1269 155 : 8197 : pset.dead_conn = NULL;
6849 bruce@momjian.us 156 : 8197 : setDecimalLocale();
6438 tgl@sss.pgh.pa.us 157 : 8197 : pset.encoding = PQenv2encoding();
158 : 8197 : pset.queryFout = stdout;
159 : 8197 : pset.queryFoutPipe = false;
3688 160 : 8197 : pset.copyStream = NULL;
2933 161 : 8197 : pset.last_error_result = NULL;
8857 peter_e@gmx.net 162 : 8197 : pset.cur_cmd_source = stdin;
163 : 8197 : pset.cur_cmd_interactive = false;
164 : :
165 : : /* We rely on unmentioned fields of pset.popt to start out 0/false/NULL */
166 : 8197 : pset.popt.topt.format = PRINT_ALIGNED;
167 : 8197 : pset.popt.topt.border = 1;
7828 bruce@momjian.us 168 : 8197 : pset.popt.topt.pager = 1;
3305 andrew@dunslane.net 169 : 8197 : pset.popt.topt.pager_min_lines = 0;
6438 tgl@sss.pgh.pa.us 170 : 8197 : pset.popt.topt.start_table = true;
171 : 8197 : pset.popt.topt.stop_table = true;
4366 rhaas@postgresql.org 172 : 8197 : pset.popt.topt.default_footer = true;
173 : :
1966 tgl@sss.pgh.pa.us 174 : 8197 : pset.popt.topt.csvFieldSep[0] = DEFAULT_CSV_FIELD_SEP;
175 : 8197 : pset.popt.topt.csvFieldSep[1] = '\0';
176 : :
3502 sfrost@snowman.net 177 : 8197 : pset.popt.topt.unicode_border_linestyle = UNICODE_LINESTYLE_SINGLE;
178 : 8197 : pset.popt.topt.unicode_column_linestyle = UNICODE_LINESTYLE_SINGLE;
179 : 8197 : pset.popt.topt.unicode_header_linestyle = UNICODE_LINESTYLE_SINGLE;
180 : :
181 : 8197 : refresh_utf8format(&(pset.popt.topt));
182 : :
183 : : /* We must get COLUMNS here before readline() sets it */
5820 bruce@momjian.us 184 [ - + ]: 8197 : pset.popt.topt.env_columns = getenv("COLUMNS") ? atoi(getenv("COLUMNS")) : 0;
185 : :
8857 peter_e@gmx.net 186 [ + + + + ]: 8197 : pset.notty = (!isatty(fileno(stdin)) || !isatty(fileno(stdout)));
187 : :
5526 188 : 8197 : pset.getPassword = TRI_DEFAULT;
189 : :
6438 tgl@sss.pgh.pa.us 190 : 8197 : EstablishVariableSpace();
191 : :
192 : : /* Create variables showing psql version number */
193 : 8197 : SetVariable(pset.vars, "VERSION", PG_VERSION_STR);
2413 194 : 8197 : SetVariable(pset.vars, "VERSION_NAME", PG_VERSION);
195 : 8197 : SetVariable(pset.vars, "VERSION_NUM", CppAsString2(PG_VERSION_NUM));
196 : :
197 : : /* Initialize variables for last error */
2406 198 : 8197 : SetVariable(pset.vars, "LAST_ERROR_MESSAGE", "");
199 : 8197 : SetVariable(pset.vars, "LAST_ERROR_SQLSTATE", "00000");
200 : :
201 : : /* Default values for variables (that don't match the result of \unset) */
6438 202 : 8197 : SetVariableBool(pset.vars, "AUTOCOMMIT");
203 : 8197 : SetVariable(pset.vars, "PROMPT1", DEFAULT_PROMPT1);
204 : 8197 : SetVariable(pset.vars, "PROMPT2", DEFAULT_PROMPT2);
205 : 8197 : SetVariable(pset.vars, "PROMPT3", DEFAULT_PROMPT3);
741 peter@eisentraut.org 206 : 8197 : SetVariableBool(pset.vars, "SHOW_ALL_RESULTS");
207 : :
8820 peter_e@gmx.net 208 : 8197 : parse_psql_options(argc, argv, &options);
209 : :
210 : : /*
211 : : * If no action was specified and we're in non-interactive mode, treat it
212 : : * as if the user had specified "-f -". This lets single-transaction mode
213 : : * work in this case.
214 : : */
3050 rhaas@postgresql.org 215 [ + + + + ]: 8194 : if (options.actions.head == NULL && pset.notty)
216 : 2144 : simple_action_list_append(&options.actions, ACT_FILE, NULL);
217 : :
218 : : /* Bail out if -1 was specified but will be ignored. */
219 [ + + - + ]: 8194 : if (options.single_txn && options.actions.head == NULL)
737 tgl@sss.pgh.pa.us 220 :UBC 0 : pg_fatal("-1 can only be used in non-interactive mode");
221 : :
4448 peter_e@gmx.net 222 [ + + ]:CBC 8194 : if (!pset.popt.topt.fieldSep.separator &&
223 [ + - ]: 8192 : !pset.popt.topt.fieldSep.separator_zero)
224 : : {
225 : 8192 : pset.popt.topt.fieldSep.separator = pg_strdup(DEFAULT_FIELD_SEP);
226 : 8192 : pset.popt.topt.fieldSep.separator_zero = false;
227 : : }
228 [ + - ]: 8194 : if (!pset.popt.topt.recordSep.separator &&
229 [ + - ]: 8194 : !pset.popt.topt.recordSep.separator_zero)
230 : : {
231 : 8194 : pset.popt.topt.recordSep.separator = pg_strdup(DEFAULT_RECORD_SEP);
232 : 8194 : pset.popt.topt.recordSep.separator_zero = false;
233 : : }
234 : :
5526 235 [ - + ]: 8194 : if (pset.getPassword == TRI_YES)
236 : : {
237 : : /*
238 : : * We can't be sure yet of the username that will be used, so don't
239 : : * offer a potentially wrong one. Typical uses of this option are
240 : : * noninteractive anyway. (Note: since we've not yet set up our
241 : : * cancel handler, there's no need to use simple_prompt_extended.)
242 : : */
1319 tgl@sss.pgh.pa.us 243 :UBC 0 : password = simple_prompt("Password: ", false);
244 : : }
245 : :
246 : : /* loop until we have a password if requested by backend */
247 : : do
248 : : {
249 : : #define PARAMS_ARRAY_SIZE 8
580 peter@eisentraut.org 250 :CBC 8194 : const char **keywords = pg_malloc_array(const char *, PARAMS_ARRAY_SIZE);
251 : 8194 : const char **values = pg_malloc_array(const char *, PARAMS_ARRAY_SIZE);
252 : :
5161 bruce@momjian.us 253 : 8194 : keywords[0] = "host";
254 : 8194 : values[0] = options.host;
255 : 8194 : keywords[1] = "port";
256 : 8194 : values[1] = options.port;
257 : 8194 : keywords[2] = "user";
258 : 8194 : values[2] = options.username;
259 : 8194 : keywords[3] = "password";
1319 tgl@sss.pgh.pa.us 260 : 8194 : values[3] = password;
2806 noah@leadboat.com 261 : 8194 : keywords[4] = "dbname"; /* see do_connect() */
3050 rhaas@postgresql.org 262 [ # # ]:UBC 0 : values[4] = (options.list_dbs && options.dbname == NULL) ?
5161 bruce@momjian.us 263 [ - + ]:CBC 8194 : "postgres" : options.dbname;
264 : 8194 : keywords[5] = "fallback_application_name";
265 : 8194 : values[5] = pset.progname;
4803 peter_e@gmx.net 266 : 8194 : keywords[6] = "client_encoding";
267 [ + + + - ]: 8194 : values[6] = (pset.notty || getenv("PGCLIENTENCODING")) ? NULL : "auto";
268 : 8194 : keywords[7] = NULL;
269 : 8194 : values[7] = NULL;
270 : :
5182 mail@joeconway.com 271 : 8194 : new_pass = false;
272 : 8194 : pset.db = PQconnectdbParams(keywords, values, true);
273 : 8194 : free(keywords);
274 : 8194 : free(values);
275 : :
8857 peter_e@gmx.net 276 [ + + + + ]: 8429 : if (PQstatus(pset.db) == CONNECTION_BAD &&
5971 tgl@sss.pgh.pa.us 277 [ + - ]: 236 : PQconnectionNeedsPassword(pset.db) &&
1319 278 : 1 : !password &&
5526 peter_e@gmx.net 279 [ - + ]: 1 : pset.getPassword != TRI_NO)
280 : : {
281 : : /*
282 : : * Before closing the old PGconn, extract the user name that was
283 : : * actually connected with --- it might've come out of a URI or
284 : : * connstring "database name" rather than options.username.
285 : : */
2267 tgl@sss.pgh.pa.us 286 :UBC 0 : const char *realusername = PQuser(pset.db);
287 : : char *password_prompt;
288 : :
289 [ # # # # ]: 0 : if (realusername && realusername[0])
290 : 0 : password_prompt = psprintf(_("Password for user %s: "),
291 : : realusername);
292 : : else
293 : 0 : password_prompt = pg_strdup(_("Password: "));
8610 peter_e@gmx.net 294 : 0 : PQfinish(pset.db);
295 : :
1319 tgl@sss.pgh.pa.us 296 : 0 : password = simple_prompt(password_prompt, false);
2267 297 : 0 : free(password_prompt);
6125 298 : 0 : new_pass = true;
299 : : }
6125 tgl@sss.pgh.pa.us 300 [ - + ]:CBC 8194 : } while (new_pass);
301 : :
8857 peter_e@gmx.net 302 [ + + ]: 8194 : if (PQstatus(pset.db) == CONNECTION_BAD)
303 : : {
1254 peter@eisentraut.org 304 : 235 : pg_log_error("%s", PQerrorMessage(pset.db));
8857 peter_e@gmx.net 305 : 235 : PQfinish(pset.db);
8928 bruce@momjian.us 306 : 235 : exit(EXIT_BADCONN);
307 : : }
308 : :
1595 michael@paquier.xyz 309 : 7959 : psql_setup_cancel_handler();
310 : :
311 : : #ifndef WIN32
312 : :
313 : : /*
314 : : * do_watch() needs signal handlers installed (otherwise sigwait() will
315 : : * filter them out on some platforms), but doesn't need them to do
316 : : * anything, and they shouldn't ever run (unless perhaps a stray SIGALRM
317 : : * arrives due to a race when do_watch() cancels an itimer).
318 : : */
1006 tmunro@postgresql.or 319 : 7959 : pqsignal(SIGCHLD, empty_signal_handler);
320 : 7959 : pqsignal(SIGALRM, empty_signal_handler);
321 : : #endif
322 : :
8768 bruce@momjian.us 323 : 7959 : PQsetNoticeProcessor(pset.db, NoticeProcessor, NULL);
324 : :
7596 tgl@sss.pgh.pa.us 325 : 7959 : SyncVariables();
326 : :
3050 rhaas@postgresql.org 327 [ - + ]: 7959 : if (options.list_dbs)
328 : : {
329 : : int success;
330 : :
4806 peter_e@gmx.net 331 [ # # ]:UBC 0 : if (!options.no_psqlrc)
332 : 0 : process_psqlrc(argv[0]);
333 : :
4060 334 : 0 : success = listAllDbs(NULL, false);
8857 335 : 0 : PQfinish(pset.db);
8810 336 : 0 : exit(success ? EXIT_SUCCESS : EXIT_FAILURE);
337 : : }
338 : :
6879 bruce@momjian.us 339 [ - + ]:CBC 7959 : if (options.logfilename)
340 : : {
6879 bruce@momjian.us 341 :UBC 0 : pset.logfile = fopen(options.logfilename, "a");
342 [ # # ]: 0 : if (!pset.logfile)
737 tgl@sss.pgh.pa.us 343 : 0 : pg_fatal("could not open log file \"%s\": %m",
344 : : options.logfilename);
345 : : }
346 : :
3050 rhaas@postgresql.org 347 [ - + ]:CBC 7959 : if (!options.no_psqlrc)
3050 rhaas@postgresql.org 348 :UBC 0 : process_psqlrc(argv[0]);
349 : :
350 : : /*
351 : : * If any actions were given by user, process them in the order in which
352 : : * they were specified. Note single_txn is only effective in this mode.
353 : : */
3050 rhaas@postgresql.org 354 [ + + ]:CBC 7959 : if (options.actions.head != NULL)
355 : : {
356 : : PGresult *res;
357 : : SimpleActionListCell *cell;
358 : :
359 : 7957 : successResult = EXIT_SUCCESS; /* silence compiler */
360 : :
361 [ + + ]: 7957 : if (options.single_txn)
362 : : {
363 [ - + ]: 7 : if ((res = PSQLexec("BEGIN")) == NULL)
364 : : {
3050 rhaas@postgresql.org 365 [ # # ]:UBC 0 : if (pset.on_error_stop)
366 : : {
367 : 0 : successResult = EXIT_USER;
368 : 0 : goto error;
369 : : }
370 : : }
371 : : else
3050 rhaas@postgresql.org 372 :CBC 7 : PQclear(res);
373 : : }
374 : :
375 [ + + ]: 16221 : for (cell = options.actions.head; cell; cell = cell->next)
376 : : {
377 [ + + ]: 8336 : if (cell->action == ACT_SINGLE_QUERY)
378 : : {
1840 peter@eisentraut.org 379 : 610 : pg_logging_config(PG_LOG_FLAG_TERSE);
380 : :
3050 rhaas@postgresql.org 381 [ - + ]: 610 : if (pset.echo == PSQL_ECHO_ALL)
3050 rhaas@postgresql.org 382 :UBC 0 : puts(cell->val);
383 : :
3050 rhaas@postgresql.org 384 :CBC 610 : successResult = SendQuery(cell->val)
385 : 609 : ? EXIT_SUCCESS : EXIT_FAILURE;
386 : : }
387 [ + + ]: 7726 : else if (cell->action == ACT_SINGLE_SLASH)
388 : : {
389 : : PsqlScanState scan_state;
390 : : ConditionalStack cond_stack;
391 : :
1840 peter@eisentraut.org 392 : 2 : pg_logging_config(PG_LOG_FLAG_TERSE);
393 : :
3050 rhaas@postgresql.org 394 [ - + ]: 2 : if (pset.echo == PSQL_ECHO_ALL)
3050 rhaas@postgresql.org 395 :UBC 0 : puts(cell->val);
396 : :
2949 tgl@sss.pgh.pa.us 397 :CBC 2 : scan_state = psql_scan_create(&psqlscan_callbacks);
3050 rhaas@postgresql.org 398 : 2 : psql_scan_setup(scan_state,
2949 tgl@sss.pgh.pa.us 399 : 2 : cell->val, strlen(cell->val),
400 : 2 : pset.encoding, standard_strings());
2572 401 : 2 : cond_stack = conditional_stack_create();
402 : 2 : psql_scan_set_passthrough(scan_state, (void *) cond_stack);
403 : :
404 : 2 : successResult = HandleSlashCmds(scan_state,
405 : : cond_stack,
406 : : NULL,
407 : : NULL) != PSQL_CMD_ERROR
3050 rhaas@postgresql.org 408 : 2 : ? EXIT_SUCCESS : EXIT_FAILURE;
409 : :
410 : 2 : psql_scan_destroy(scan_state);
2572 tgl@sss.pgh.pa.us 411 : 2 : conditional_stack_destroy(cond_stack);
412 : : }
3050 rhaas@postgresql.org 413 [ + - ]: 7724 : else if (cell->action == ACT_FILE)
414 : : {
415 : 7724 : successResult = process_file(cell->val, false);
416 : : }
417 : : else
418 : : {
419 : : /* should never come here */
3045 tgl@sss.pgh.pa.us 420 :UBC 0 : Assert(false);
421 : : }
422 : :
3050 rhaas@postgresql.org 423 [ + + + + ]:CBC 8323 : if (successResult != EXIT_SUCCESS && pset.on_error_stop)
424 : 59 : break;
425 : : }
426 : :
427 [ + + ]: 7944 : if (options.single_txn)
428 : : {
429 : : /*
430 : : * Rollback the contents of the single transaction if the caller
431 : : * has set ON_ERROR_STOP and one of the steps has failed. This
432 : : * check needs to match the one done a couple of lines above.
433 : : */
669 michael@paquier.xyz 434 [ + + + + ]: 7 : res = PSQLexec((successResult != EXIT_SUCCESS && pset.on_error_stop) ?
435 : : "ROLLBACK" : "COMMIT");
678 436 [ - + ]: 7 : if (res == NULL)
437 : : {
3050 rhaas@postgresql.org 438 [ # # ]:UBC 0 : if (pset.on_error_stop)
439 : : {
440 : 0 : successResult = EXIT_USER;
441 : 0 : goto error;
442 : : }
443 : : }
444 : : else
3050 rhaas@postgresql.org 445 :CBC 7 : PQclear(res);
446 : : }
447 : :
448 : 7944 : error:
449 : : ;
450 : : }
451 : :
452 : : /*
453 : : * or otherwise enter interactive main loop
454 : : */
455 : : else
456 : : {
1744 peter@eisentraut.org 457 : 2 : pg_logging_config(PG_LOG_FLAG_TERSE);
5171 bruce@momjian.us 458 : 2 : connection_warnings(true);
4266 rhaas@postgresql.org 459 [ + - ]: 2 : if (!pset.quiet)
5747 bruce@momjian.us 460 : 2 : printf(_("Type \"help\" for help.\n\n"));
4266 rhaas@postgresql.org 461 : 2 : initializeInput(options.no_readline ? 0 : 1);
8853 peter_e@gmx.net 462 : 2 : successResult = MainLoop(stdin);
463 : : }
464 : :
465 : : /* clean up */
6879 bruce@momjian.us 466 [ - + ]: 7946 : if (pset.logfile)
6879 bruce@momjian.us 467 :UBC 0 : fclose(pset.logfile);
1269 tgl@sss.pgh.pa.us 468 [ + - ]:CBC 7946 : if (pset.db)
469 : 7946 : PQfinish(pset.db);
470 [ - + ]: 7946 : if (pset.dead_conn)
1269 tgl@sss.pgh.pa.us 471 :UBC 0 : PQfinish(pset.dead_conn);
8857 peter_e@gmx.net 472 :CBC 7946 : setQFout(NULL);
473 : :
8928 bruce@momjian.us 474 : 7946 : return successResult;
475 : : }
476 : :
477 : :
478 : : /*
479 : : * Parse command line options
480 : : */
481 : :
482 : : static void
2489 tgl@sss.pgh.pa.us 483 : 8197 : parse_psql_options(int argc, char *argv[], struct adhoc_opts *options)
484 : : {
485 : : static struct option long_options[] =
486 : : {
487 : : {"echo-all", no_argument, NULL, 'a'},
488 : : {"no-align", no_argument, NULL, 'A'},
489 : : {"command", required_argument, NULL, 'c'},
490 : : {"dbname", required_argument, NULL, 'd'},
491 : : {"echo-queries", no_argument, NULL, 'e'},
492 : : {"echo-errors", no_argument, NULL, 'b'},
493 : : {"echo-hidden", no_argument, NULL, 'E'},
494 : : {"file", required_argument, NULL, 'f'},
495 : : {"field-separator", required_argument, NULL, 'F'},
496 : : {"field-separator-zero", no_argument, NULL, 'z'},
497 : : {"host", required_argument, NULL, 'h'},
498 : : {"html", no_argument, NULL, 'H'},
499 : : {"list", no_argument, NULL, 'l'},
500 : : {"log-file", required_argument, NULL, 'L'},
501 : : {"no-readline", no_argument, NULL, 'n'},
502 : : {"single-transaction", no_argument, NULL, '1'},
503 : : {"output", required_argument, NULL, 'o'},
504 : : {"port", required_argument, NULL, 'p'},
505 : : {"pset", required_argument, NULL, 'P'},
506 : : {"quiet", no_argument, NULL, 'q'},
507 : : {"record-separator", required_argument, NULL, 'R'},
508 : : {"record-separator-zero", no_argument, NULL, '0'},
509 : : {"single-step", no_argument, NULL, 's'},
510 : : {"single-line", no_argument, NULL, 'S'},
511 : : {"tuples-only", no_argument, NULL, 't'},
512 : : {"table-attr", required_argument, NULL, 'T'},
513 : : {"username", required_argument, NULL, 'U'},
514 : : {"set", required_argument, NULL, 'v'},
515 : : {"variable", required_argument, NULL, 'v'},
516 : : {"version", no_argument, NULL, 'V'},
517 : : {"no-password", no_argument, NULL, 'w'},
518 : : {"password", no_argument, NULL, 'W'},
519 : : {"expanded", no_argument, NULL, 'x'},
520 : : {"no-psqlrc", no_argument, NULL, 'X'},
521 : : {"help", optional_argument, NULL, 1},
522 : : {"csv", no_argument, NULL, 2},
523 : : {NULL, 0, NULL, 0}
524 : : };
525 : :
526 : : int optindex;
527 : : int c;
528 : :
8906 bruce@momjian.us 529 : 8197 : memset(options, 0, sizeof *options);
530 : :
3566 fujii@postgresql.org 531 : 60829 : while ((c = getopt_long(argc, argv, "aAbc:d:eEf:F:h:HlL:no:p:P:qR:sStT:U:v:VwWxXz?01",
7769 peter_e@gmx.net 532 [ + + ]: 60829 : long_options, &optindex)) != -1)
533 : : {
8928 bruce@momjian.us 534 [ + + - + : 52635 : switch (c)
+ + - + +
+ - - - -
- + + + -
- - + - +
+ - + - -
+ - - + +
+ - - ]
535 : : {
8827 peter_e@gmx.net 536 : 955 : case 'a':
537 : 955 : SetVariable(pset.vars, "ECHO", "all");
538 : 955 : break;
8928 bruce@momjian.us 539 : 7014 : case 'A':
8857 peter_e@gmx.net 540 : 7014 : pset.popt.topt.format = PRINT_UNALIGNED;
8928 bruce@momjian.us 541 : 7014 : break;
3566 fujii@postgresql.org 542 :UBC 0 : case 'b':
543 : 0 : SetVariable(pset.vars, "ECHO", "errors");
544 : 0 : break;
8928 bruce@momjian.us 545 :CBC 719 : case 'c':
546 [ + + ]: 719 : if (optarg[0] == '\\')
3050 rhaas@postgresql.org 547 : 2 : simple_action_list_append(&options->actions,
548 : : ACT_SINGLE_SLASH,
3045 tgl@sss.pgh.pa.us 549 : 2 : optarg + 1);
550 : : else
3050 rhaas@postgresql.org 551 : 717 : simple_action_list_append(&options->actions,
552 : : ACT_SINGLE_QUERY,
553 : : optarg);
8928 bruce@momjian.us 554 : 719 : break;
555 : 8114 : case 'd':
4202 556 : 8114 : options->dbname = pg_strdup(optarg);
8928 557 : 8114 : break;
558 : 3 : case 'e':
8827 peter_e@gmx.net 559 : 3 : SetVariable(pset.vars, "ECHO", "queries");
8928 bruce@momjian.us 560 : 3 : break;
8928 bruce@momjian.us 561 :UBC 0 : case 'E':
8827 peter_e@gmx.net 562 : 0 : SetVariableBool(pset.vars, "ECHO_HIDDEN");
8928 bruce@momjian.us 563 : 0 : break;
8928 bruce@momjian.us 564 :CBC 5815 : case 'f':
3050 rhaas@postgresql.org 565 : 5815 : simple_action_list_append(&options->actions,
566 : : ACT_FILE,
567 : : optarg);
8928 bruce@momjian.us 568 : 5815 : break;
569 : 2 : case 'F':
4448 peter_e@gmx.net 570 : 2 : pset.popt.topt.fieldSep.separator = pg_strdup(optarg);
571 : 2 : pset.popt.topt.fieldSep.separator_zero = false;
8928 bruce@momjian.us 572 : 2 : break;
573 : 3 : case 'h':
4202 574 : 3 : options->host = pg_strdup(optarg);
8928 575 : 3 : break;
8928 bruce@momjian.us 576 :UBC 0 : case 'H':
8857 peter_e@gmx.net 577 : 0 : pset.popt.topt.format = PRINT_HTML;
8928 bruce@momjian.us 578 : 0 : break;
579 : 0 : case 'l':
3050 rhaas@postgresql.org 580 : 0 : options->list_dbs = true;
8928 bruce@momjian.us 581 : 0 : break;
6879 582 : 0 : case 'L':
4202 583 : 0 : options->logfilename = pg_strdup(optarg);
6879 584 : 0 : break;
8928 585 : 0 : case 'n':
586 : 0 : options->no_readline = true;
587 : 0 : break;
588 : 0 : case 'o':
3055 tgl@sss.pgh.pa.us 589 [ # # ]: 0 : if (!setQFout(optarg))
590 : 0 : exit(EXIT_FAILURE);
8928 bruce@momjian.us 591 : 0 : break;
8928 bruce@momjian.us 592 :CBC 4 : case 'p':
4202 593 : 4 : options->port = pg_strdup(optarg);
8928 594 : 4 : break;
595 : 2 : case 'P':
596 : : {
597 : : char *value;
598 : : char *equal_loc;
599 : : bool result;
600 : :
7385 neilc@samurai.com 601 : 2 : value = pg_strdup(optarg);
8928 bruce@momjian.us 602 : 2 : equal_loc = strchr(value, '=');
603 [ - + ]: 2 : if (!equal_loc)
8857 peter_e@gmx.net 604 :UBC 0 : result = do_pset(value, NULL, &pset.popt, true);
605 : : else
606 : : {
8928 bruce@momjian.us 607 :CBC 2 : *equal_loc = '\0';
8857 peter_e@gmx.net 608 : 2 : result = do_pset(value, equal_loc + 1, &pset.popt, true);
609 : : }
610 : :
8928 bruce@momjian.us 611 [ - + ]: 2 : if (!result)
737 tgl@sss.pgh.pa.us 612 :UBC 0 : pg_fatal("could not set printing parameter \"%s\"", value);
613 : :
8928 bruce@momjian.us 614 :CBC 2 : free(value);
615 : 2 : break;
616 : : }
617 : 6982 : case 'q':
8827 peter_e@gmx.net 618 : 6982 : SetVariableBool(pset.vars, "QUIET");
8928 bruce@momjian.us 619 : 6982 : break;
8768 bruce@momjian.us 620 :UBC 0 : case 'R':
4448 peter_e@gmx.net 621 : 0 : pset.popt.topt.recordSep.separator = pg_strdup(optarg);
622 : 0 : pset.popt.topt.recordSep.separator_zero = false;
8768 bruce@momjian.us 623 : 0 : break;
8928 624 : 0 : case 's':
8827 peter_e@gmx.net 625 : 0 : SetVariableBool(pset.vars, "SINGLESTEP");
8928 bruce@momjian.us 626 : 0 : break;
627 : 0 : case 'S':
8827 peter_e@gmx.net 628 : 0 : SetVariableBool(pset.vars, "SINGLELINE");
8928 bruce@momjian.us 629 : 0 : break;
8928 bruce@momjian.us 630 :CBC 7007 : case 't':
8857 peter_e@gmx.net 631 : 7007 : pset.popt.topt.tuples_only = true;
8928 bruce@momjian.us 632 : 7007 : break;
8928 bruce@momjian.us 633 :UBC 0 : case 'T':
7385 neilc@samurai.com 634 : 0 : pset.popt.topt.tableAttr = pg_strdup(optarg);
8928 bruce@momjian.us 635 : 0 : break;
8928 bruce@momjian.us 636 :CBC 5 : case 'U':
4202 637 : 5 : options->username = pg_strdup(optarg);
8928 638 : 5 : break;
639 : 7050 : case 'v':
640 : : {
641 : : char *value;
642 : : char *equal_loc;
643 : :
7385 neilc@samurai.com 644 : 7050 : value = pg_strdup(optarg);
8928 bruce@momjian.us 645 : 7050 : equal_loc = strchr(value, '=');
646 [ - + ]: 7050 : if (!equal_loc)
647 : : {
8857 peter_e@gmx.net 648 [ # # ]:UBC 0 : if (!DeleteVariable(pset.vars, value))
2629 tgl@sss.pgh.pa.us 649 : 0 : exit(EXIT_FAILURE); /* error already printed */
650 : : }
651 : : else
652 : : {
8928 bruce@momjian.us 653 :CBC 7050 : *equal_loc = '\0';
8857 peter_e@gmx.net 654 [ - + ]: 7050 : if (!SetVariable(pset.vars, value, equal_loc + 1))
2629 tgl@sss.pgh.pa.us 655 :UBC 0 : exit(EXIT_FAILURE); /* error already printed */
656 : : }
657 : :
8928 bruce@momjian.us 658 :CBC 7050 : free(value);
659 : 7050 : break;
660 : : }
8928 bruce@momjian.us 661 :UBC 0 : case 'V':
8859 peter_e@gmx.net 662 : 0 : showVersion();
663 : 0 : exit(EXIT_SUCCESS);
5526 peter_e@gmx.net 664 :CBC 756 : case 'w':
665 : 756 : pset.getPassword = TRI_NO;
666 : 756 : break;
8928 bruce@momjian.us 667 :UBC 0 : case 'W':
5526 peter_e@gmx.net 668 : 0 : pset.getPassword = TRI_YES;
8928 bruce@momjian.us 669 : 0 : break;
8810 peter_e@gmx.net 670 : 0 : case 'x':
671 : 0 : pset.popt.topt.expanded = true;
672 : 0 : break;
8768 bruce@momjian.us 673 :CBC 8194 : case 'X':
674 : 8194 : options->no_psqlrc = true;
675 : 8194 : break;
4448 peter_e@gmx.net 676 :UBC 0 : case 'z':
677 : 0 : pset.popt.topt.fieldSep.separator_zero = true;
678 : 0 : break;
679 : 0 : case '0':
680 : 0 : pset.popt.topt.recordSep.separator_zero = true;
681 : 0 : break;
6636 bruce@momjian.us 682 :CBC 7 : case '1':
683 : 7 : options->single_txn = true;
684 : 7 : break;
8928 685 : 1 : case '?':
1694 tgl@sss.pgh.pa.us 686 [ + - ]: 1 : if (optind <= argc &&
687 [ - + ]: 1 : strcmp(argv[optind - 1], "-?") == 0)
688 : : {
689 : : /* actual help option given */
3505 andres@anarazel.de 690 :UBC 0 : usage(NOPAGER);
8768 bruce@momjian.us 691 : 0 : exit(EXIT_SUCCESS);
692 : : }
693 : : else
694 : : {
695 : : /* getopt error (unknown option or missing argument) */
3505 andres@anarazel.de 696 :CBC 1 : goto unknown_option;
697 : : }
698 : : break;
699 : 2 : case 1:
700 : : {
701 [ + - - + ]: 2 : if (!optarg || strcmp(optarg, "options") == 0)
3505 andres@anarazel.de 702 :UBC 0 : usage(NOPAGER);
3505 andres@anarazel.de 703 [ + - + + ]:CBC 2 : else if (optarg && strcmp(optarg, "commands") == 0)
704 : 1 : slashUsage(NOPAGER);
705 [ + - + - ]: 1 : else if (optarg && strcmp(optarg, "variables") == 0)
706 : 1 : helpVariables(NOPAGER);
707 : : else
3505 andres@anarazel.de 708 :UBC 0 : goto unknown_option;
709 : :
3505 andres@anarazel.de 710 :CBC 2 : exit(EXIT_SUCCESS);
711 : : }
712 : : break;
1966 tgl@sss.pgh.pa.us 713 :UBC 0 : case 2:
714 : 0 : pset.popt.topt.format = PRINT_CSV;
715 : 0 : break;
716 : : default:
3249 bruce@momjian.us 717 :CBC 1 : unknown_option:
718 : : /* getopt_long already emitted a complaint */
737 tgl@sss.pgh.pa.us 719 : 1 : pg_log_error_hint("Try \"%s --help\" for more information.",
720 : : pset.progname);
8738 bruce@momjian.us 721 : 1 : exit(EXIT_FAILURE);
722 : : }
723 : : }
724 : :
725 : : /*
726 : : * if we still have arguments, use it as the database name and username
727 : : */
8928 728 [ + + ]: 8291 : while (argc - optind >= 1)
729 : : {
730 [ + - ]: 97 : if (!options->dbname)
731 : 97 : options->dbname = argv[optind];
8928 bruce@momjian.us 732 [ # # ]:UBC 0 : else if (!options->username)
733 : 0 : options->username = argv[optind];
6438 tgl@sss.pgh.pa.us 734 [ # # ]: 0 : else if (!pset.quiet)
1840 peter@eisentraut.org 735 : 0 : pg_log_warning("extra command-line argument \"%s\" ignored",
736 : : argv[optind]);
737 : :
8928 bruce@momjian.us 738 :CBC 97 : optind++;
739 : : }
740 : 8194 : }
741 : :
742 : :
743 : : /*
744 : : * Append a new item to the end of the SimpleActionList.
745 : : * Note that "val" is copied if it's not NULL.
746 : : */
747 : : static void
3045 tgl@sss.pgh.pa.us 748 : 8678 : simple_action_list_append(SimpleActionList *list,
749 : : enum _actions action, const char *val)
750 : : {
751 : : SimpleActionListCell *cell;
752 : :
580 peter@eisentraut.org 753 : 8678 : cell = pg_malloc_object(SimpleActionListCell);
754 : :
3045 tgl@sss.pgh.pa.us 755 : 8678 : cell->next = NULL;
756 : 8678 : cell->action = action;
757 [ + + ]: 8678 : if (val)
758 : 6534 : cell->val = pg_strdup(val);
759 : : else
760 : 2144 : cell->val = NULL;
761 : :
762 [ + + ]: 8678 : if (list->tail)
763 : 486 : list->tail->next = cell;
764 : : else
765 : 8192 : list->head = cell;
766 : 8678 : list->tail = cell;
767 : 8678 : }
768 : :
769 : :
770 : : /*
771 : : * Load .psqlrc file, if found.
772 : : */
773 : : static void
5152 magnus@hagander.net 774 :UBC 0 : process_psqlrc(char *argv0)
775 : : {
776 : : char home[MAXPGPATH];
777 : : char rc_file[MAXPGPATH];
778 : : char my_exec_path[MAXPGPATH];
779 : : char etc_path[MAXPGPATH];
4028 bruce@momjian.us 780 : 0 : char *envrc = getenv("PSQLRC");
781 : :
3697 sfrost@snowman.net 782 [ # # ]: 0 : if (find_my_exec(argv0, my_exec_path) < 0)
737 tgl@sss.pgh.pa.us 783 : 0 : pg_fatal("could not find own program executable");
784 : :
7272 bruce@momjian.us 785 : 0 : get_etc_path(my_exec_path, etc_path);
786 : :
7038 tgl@sss.pgh.pa.us 787 : 0 : snprintf(rc_file, MAXPGPATH, "%s/%s", etc_path, SYSPSQLRC);
788 : 0 : process_psqlrc_file(rc_file);
789 : :
4425 andrew@dunslane.net 790 [ # # # # ]: 0 : if (envrc != NULL && strlen(envrc) > 0)
791 : 0 : {
792 : : /* might need to free() this */
3973 bruce@momjian.us 793 : 0 : char *envrc_alloc = pstrdup(envrc);
794 : :
4028 795 : 0 : expand_tilde(&envrc_alloc);
796 : 0 : process_psqlrc_file(envrc_alloc);
797 : : }
4425 andrew@dunslane.net 798 [ # # ]: 0 : else if (get_home_path(home))
799 : : {
7038 tgl@sss.pgh.pa.us 800 : 0 : snprintf(rc_file, MAXPGPATH, "%s/%s", home, PSQLRC);
801 : 0 : process_psqlrc_file(rc_file);
802 : : }
7297 bruce@momjian.us 803 : 0 : }
804 : :
805 : :
806 : :
807 : : static void
808 : 0 : process_psqlrc_file(char *filename)
809 : : {
810 : : char *psqlrc_minor,
811 : : *psqlrc_major;
812 : :
813 : : #if defined(WIN32) && (!defined(__MINGW32__))
814 : : #define R_OK 4
815 : : #endif
816 : :
3827 tgl@sss.pgh.pa.us 817 : 0 : psqlrc_minor = psprintf("%s-%s", filename, PG_VERSION);
818 : 0 : psqlrc_major = psprintf("%s-%s", filename, PG_MAJORVERSION);
819 : :
820 : : /* check for minor version first, then major, then no version */
4566 bruce@momjian.us 821 [ # # ]: 0 : if (access(psqlrc_minor, R_OK) == 0)
3050 rhaas@postgresql.org 822 : 0 : (void) process_file(psqlrc_minor, false);
4566 bruce@momjian.us 823 [ # # ]: 0 : else if (access(psqlrc_major, R_OK) == 0)
3050 rhaas@postgresql.org 824 : 0 : (void) process_file(psqlrc_major, false);
7297 bruce@momjian.us 825 [ # # ]: 0 : else if (access(filename, R_OK) == 0)
3050 rhaas@postgresql.org 826 : 0 : (void) process_file(filename, false);
827 : :
4566 bruce@momjian.us 828 : 0 : free(psqlrc_minor);
829 : 0 : free(psqlrc_major);
8928 830 : 0 : }
831 : :
832 : :
833 : :
834 : : /* showVersion
835 : : *
836 : : * This output format is intended to match GNU standards.
837 : : */
838 : : static void
8859 peter_e@gmx.net 839 :CBC 10 : showVersion(void)
840 : : {
8687 841 : 10 : puts("psql (PostgreSQL) " PG_VERSION);
8928 bruce@momjian.us 842 : 10 : }
843 : :
844 : :
845 : :
846 : : /*
847 : : * Substitute hooks and assign hooks for psql variables.
848 : : *
849 : : * This isn't an amazingly good place for them, but neither is anywhere else.
850 : : *
851 : : * By policy, every special variable that controls any psql behavior should
852 : : * have one or both hooks, even if they're just no-ops. This ensures that
853 : : * the variable will remain present in variables.c's list even when unset,
854 : : * which ensures that it's known to tab completion.
855 : : */
856 : :
857 : : static char *
2629 tgl@sss.pgh.pa.us 858 : 112496 : bool_substitute_hook(char *newval)
859 : : {
860 [ + + ]: 112496 : if (newval == NULL)
861 : : {
862 : : /* "\unset FOO" becomes "\set FOO off" */
863 : 81973 : newval = pg_strdup("off");
864 : : }
865 [ + + ]: 30523 : else if (newval[0] == '\0')
866 : : {
867 : : /* "\set FOO" becomes "\set FOO on" */
868 : 3 : pg_free(newval);
869 : 3 : newval = pg_strdup("on");
870 : : }
871 : 112496 : return newval;
872 : : }
873 : :
874 : : static bool
6438 875 : 16415 : autocommit_hook(const char *newval)
876 : : {
2631 877 : 16415 : return ParseVariableBool(newval, "AUTOCOMMIT", &pset.autocommit);
878 : : }
879 : :
880 : : static bool
6438 881 : 13337 : on_error_stop_hook(const char *newval)
882 : : {
2631 883 : 13337 : return ParseVariableBool(newval, "ON_ERROR_STOP", &pset.on_error_stop);
884 : : }
885 : :
886 : : static bool
6438 887 : 15215 : quiet_hook(const char *newval)
888 : : {
2631 889 : 15215 : return ParseVariableBool(newval, "QUIET", &pset.quiet);
890 : : }
891 : :
892 : : static bool
6438 893 : 8197 : singleline_hook(const char *newval)
894 : : {
2631 895 : 8197 : return ParseVariableBool(newval, "SINGLELINE", &pset.singleline);
896 : : }
897 : :
898 : : static bool
6438 899 : 8197 : singlestep_hook(const char *newval)
900 : : {
2631 901 : 8197 : return ParseVariableBool(newval, "SINGLESTEP", &pset.singlestep);
902 : : }
903 : :
904 : : static char *
2628 905 : 8225 : fetch_count_substitute_hook(char *newval)
906 : : {
907 [ + + ]: 8225 : if (newval == NULL)
908 : 8209 : newval = pg_strdup("0");
909 : 8225 : return newval;
910 : : }
911 : :
912 : : static bool
6438 913 : 8225 : fetch_count_hook(const char *newval)
914 : : {
2628 915 : 8225 : return ParseVariableNum(newval, "FETCH_COUNT", &pset.fetch_count);
916 : : }
917 : :
918 : : static bool
919 : 8197 : histfile_hook(const char *newval)
920 : : {
921 : : /*
922 : : * Someday we might try to validate the filename, but for now, this is
923 : : * just a placeholder to ensure HISTFILE is known to tab completion.
924 : : */
2631 925 : 8197 : return true;
926 : : }
927 : :
928 : : static char *
2628 929 : 8197 : histsize_substitute_hook(char *newval)
930 : : {
931 [ + - ]: 8197 : if (newval == NULL)
932 : 8197 : newval = pg_strdup("500");
933 : 8197 : return newval;
934 : : }
935 : :
936 : : static bool
937 : 8197 : histsize_hook(const char *newval)
938 : : {
939 : 8197 : return ParseVariableNum(newval, "HISTSIZE", &pset.histsize);
940 : : }
941 : :
942 : : static char *
943 : 8197 : ignoreeof_substitute_hook(char *newval)
944 : : {
945 : : int dummy;
946 : :
947 : : /*
948 : : * This tries to mimic the behavior of bash, to wit "If set, the value is
949 : : * the number of consecutive EOF characters which must be typed as the
950 : : * first characters on an input line before bash exits. If the variable
951 : : * exists but does not have a numeric value, or has no value, the default
952 : : * value is 10. If it does not exist, EOF signifies the end of input to
953 : : * the shell." Unlike bash, however, we insist on the stored value
954 : : * actually being a valid integer.
955 : : */
956 [ + - ]: 8197 : if (newval == NULL)
957 : 8197 : newval = pg_strdup("0");
2628 tgl@sss.pgh.pa.us 958 [ # # ]:UBC 0 : else if (!ParseVariableNum(newval, NULL, &dummy))
959 : 0 : newval = pg_strdup("10");
2628 tgl@sss.pgh.pa.us 960 :CBC 8197 : return newval;
961 : : }
962 : :
963 : : static bool
964 : 8197 : ignoreeof_hook(const char *newval)
965 : : {
966 : 8197 : return ParseVariableNum(newval, "IGNOREEOF", &pset.ignoreeof);
967 : : }
968 : :
969 : : static char *
2629 970 : 9173 : echo_substitute_hook(char *newval)
971 : : {
972 [ + + ]: 9173 : if (newval == NULL)
973 : 8197 : newval = pg_strdup("none");
974 : 9173 : return newval;
975 : : }
976 : :
977 : : static bool
6438 978 : 9173 : echo_hook(const char *newval)
979 : : {
2629 980 [ - + ]: 9173 : Assert(newval != NULL); /* else substitute hook messed up */
981 [ + + ]: 9173 : if (pg_strcasecmp(newval, "queries") == 0)
6438 982 : 3 : pset.echo = PSQL_ECHO_QUERIES;
3392 983 [ + + ]: 9170 : else if (pg_strcasecmp(newval, "errors") == 0)
3566 fujii@postgresql.org 984 : 3 : pset.echo = PSQL_ECHO_ERRORS;
3392 tgl@sss.pgh.pa.us 985 [ + + ]: 9167 : else if (pg_strcasecmp(newval, "all") == 0)
6438 986 : 964 : pset.echo = PSQL_ECHO_ALL;
3392 987 [ + - ]: 8203 : else if (pg_strcasecmp(newval, "none") == 0)
988 : 8203 : pset.echo = PSQL_ECHO_NONE;
989 : : else
990 : : {
2631 tgl@sss.pgh.pa.us 991 :UBC 0 : PsqlVarEnumError("ECHO", newval, "none, errors, queries, all");
992 : 0 : return false;
993 : : }
2631 tgl@sss.pgh.pa.us 994 :CBC 9173 : return true;
995 : : }
996 : :
997 : : static bool
6438 998 : 8197 : echo_hidden_hook(const char *newval)
999 : : {
2629 1000 [ - + ]: 8197 : Assert(newval != NULL); /* else substitute hook messed up */
1001 [ - + ]: 8197 : if (pg_strcasecmp(newval, "noexec") == 0)
6438 tgl@sss.pgh.pa.us 1002 :UBC 0 : pset.echo_hidden = PSQL_ECHO_HIDDEN_NOEXEC;
1003 : : else
1004 : : {
1005 : : bool on_off;
1006 : :
2631 tgl@sss.pgh.pa.us 1007 [ + - ]:CBC 8197 : if (ParseVariableBool(newval, NULL, &on_off))
1008 : 8197 : pset.echo_hidden = on_off ? PSQL_ECHO_HIDDEN_ON : PSQL_ECHO_HIDDEN_OFF;
1009 : : else
1010 : : {
2631 tgl@sss.pgh.pa.us 1011 :UBC 0 : PsqlVarEnumError("ECHO_HIDDEN", newval, "on, off, noexec");
1012 : 0 : return false;
1013 : : }
1014 : : }
2631 tgl@sss.pgh.pa.us 1015 :CBC 8197 : return true;
1016 : : }
1017 : :
1018 : : static bool
6438 1019 : 8221 : on_error_rollback_hook(const char *newval)
1020 : : {
2629 1021 [ - + ]: 8221 : Assert(newval != NULL); /* else substitute hook messed up */
1022 [ - + ]: 8221 : if (pg_strcasecmp(newval, "interactive") == 0)
6438 tgl@sss.pgh.pa.us 1023 :UBC 0 : pset.on_error_rollback = PSQL_ERROR_ROLLBACK_INTERACTIVE;
1024 : : else
1025 : : {
1026 : : bool on_off;
1027 : :
2631 tgl@sss.pgh.pa.us 1028 [ + + ]:CBC 8221 : if (ParseVariableBool(newval, NULL, &on_off))
1029 [ + + ]: 8218 : pset.on_error_rollback = on_off ? PSQL_ERROR_ROLLBACK_ON : PSQL_ERROR_ROLLBACK_OFF;
1030 : : else
1031 : : {
1032 : 3 : PsqlVarEnumError("ON_ERROR_ROLLBACK", newval, "on, off, interactive");
1033 : 3 : return false;
1034 : : }
1035 : : }
1036 : 8218 : return true;
1037 : : }
1038 : :
1039 : : static char *
2629 1040 : 8201 : comp_keyword_case_substitute_hook(char *newval)
1041 : : {
1042 [ + + ]: 8201 : if (newval == NULL)
1043 : 8197 : newval = pg_strdup("preserve-upper");
1044 : 8201 : return newval;
1045 : : }
1046 : :
1047 : : static bool
3392 1048 : 8201 : comp_keyword_case_hook(const char *newval)
1049 : : {
2629 1050 [ - + ]: 8201 : Assert(newval != NULL); /* else substitute hook messed up */
1051 [ + + ]: 8201 : if (pg_strcasecmp(newval, "preserve-upper") == 0)
3392 1052 : 8198 : pset.comp_case = PSQL_COMP_CASE_PRESERVE_UPPER;
1053 [ + + ]: 3 : else if (pg_strcasecmp(newval, "preserve-lower") == 0)
1054 : 1 : pset.comp_case = PSQL_COMP_CASE_PRESERVE_LOWER;
1055 [ + + ]: 2 : else if (pg_strcasecmp(newval, "upper") == 0)
1056 : 1 : pset.comp_case = PSQL_COMP_CASE_UPPER;
1057 [ + - ]: 1 : else if (pg_strcasecmp(newval, "lower") == 0)
1058 : 1 : pset.comp_case = PSQL_COMP_CASE_LOWER;
1059 : : else
1060 : : {
2631 tgl@sss.pgh.pa.us 1061 :UBC 0 : PsqlVarEnumError("COMP_KEYWORD_CASE", newval,
1062 : : "lower, upper, preserve-lower, preserve-upper");
1063 : 0 : return false;
1064 : : }
2631 tgl@sss.pgh.pa.us 1065 :CBC 8201 : return true;
1066 : : }
1067 : :
1068 : : static char *
2629 1069 : 8197 : histcontrol_substitute_hook(char *newval)
1070 : : {
1071 [ + - ]: 8197 : if (newval == NULL)
1072 : 8197 : newval = pg_strdup("none");
1073 : 8197 : return newval;
1074 : : }
1075 : :
1076 : : static bool
6438 1077 : 8197 : histcontrol_hook(const char *newval)
1078 : : {
2629 1079 [ - + ]: 8197 : Assert(newval != NULL); /* else substitute hook messed up */
1080 [ - + ]: 8197 : if (pg_strcasecmp(newval, "ignorespace") == 0)
6438 tgl@sss.pgh.pa.us 1081 :UBC 0 : pset.histcontrol = hctl_ignorespace;
3392 tgl@sss.pgh.pa.us 1082 [ - + ]:CBC 8197 : else if (pg_strcasecmp(newval, "ignoredups") == 0)
6438 tgl@sss.pgh.pa.us 1083 :UBC 0 : pset.histcontrol = hctl_ignoredups;
3392 tgl@sss.pgh.pa.us 1084 [ - + ]:CBC 8197 : else if (pg_strcasecmp(newval, "ignoreboth") == 0)
6438 tgl@sss.pgh.pa.us 1085 :UBC 0 : pset.histcontrol = hctl_ignoreboth;
3392 tgl@sss.pgh.pa.us 1086 [ + - ]:CBC 8197 : else if (pg_strcasecmp(newval, "none") == 0)
1087 : 8197 : pset.histcontrol = hctl_none;
1088 : : else
1089 : : {
2631 tgl@sss.pgh.pa.us 1090 :UBC 0 : PsqlVarEnumError("HISTCONTROL", newval,
1091 : : "none, ignorespace, ignoredups, ignoreboth");
1092 : 0 : return false;
1093 : : }
2631 tgl@sss.pgh.pa.us 1094 :CBC 8197 : return true;
1095 : : }
1096 : :
1097 : : static bool
6438 1098 : 16394 : prompt1_hook(const char *newval)
1099 : : {
1100 [ + + ]: 16394 : pset.prompt1 = newval ? newval : "";
2631 1101 : 16394 : return true;
1102 : : }
1103 : :
1104 : : static bool
6438 1105 : 16394 : prompt2_hook(const char *newval)
1106 : : {
1107 [ + + ]: 16394 : pset.prompt2 = newval ? newval : "";
2631 1108 : 16394 : return true;
1109 : : }
1110 : :
1111 : : static bool
6438 1112 : 16394 : prompt3_hook(const char *newval)
1113 : : {
1114 [ + + ]: 16394 : pset.prompt3 = newval ? newval : "";
2631 1115 : 16394 : return true;
1116 : : }
1117 : :
1118 : : static char *
2629 1119 : 8290 : verbosity_substitute_hook(char *newval)
1120 : : {
1121 [ + + ]: 8290 : if (newval == NULL)
1122 : 8197 : newval = pg_strdup("default");
1123 : 8290 : return newval;
1124 : : }
1125 : :
1126 : : static bool
6438 1127 : 8290 : verbosity_hook(const char *newval)
1128 : : {
2629 1129 [ - + ]: 8290 : Assert(newval != NULL); /* else substitute hook messed up */
1130 [ + + ]: 8290 : if (pg_strcasecmp(newval, "default") == 0)
6438 1131 : 8237 : pset.verbosity = PQERRORS_DEFAULT;
3392 1132 [ - + ]: 53 : else if (pg_strcasecmp(newval, "verbose") == 0)
6438 tgl@sss.pgh.pa.us 1133 :UBC 0 : pset.verbosity = PQERRORS_VERBOSE;
1837 tgl@sss.pgh.pa.us 1134 [ + + ]:CBC 53 : else if (pg_strcasecmp(newval, "terse") == 0)
1135 : 33 : pset.verbosity = PQERRORS_TERSE;
1136 [ + - ]: 20 : else if (pg_strcasecmp(newval, "sqlstate") == 0)
1137 : 20 : pset.verbosity = PQERRORS_SQLSTATE;
1138 : : else
1139 : : {
1837 tgl@sss.pgh.pa.us 1140 :UBC 0 : PsqlVarEnumError("VERBOSITY", newval, "default, verbose, terse, sqlstate");
2631 1141 : 0 : return false;
1142 : : }
1143 : :
6438 tgl@sss.pgh.pa.us 1144 [ + + ]:CBC 8290 : if (pset.db)
1145 : 93 : PQsetErrorVerbosity(pset.db, pset.verbosity);
2631 1146 : 8290 : return true;
1147 : : }
1148 : :
1149 : : static bool
741 peter@eisentraut.org 1150 : 16401 : show_all_results_hook(const char *newval)
1151 : : {
1152 : 16401 : return ParseVariableBool(newval, "SHOW_ALL_RESULTS", &pset.show_all_results);
1153 : : }
1154 : :
1155 : : static char *
2629 tgl@sss.pgh.pa.us 1156 : 8224 : show_context_substitute_hook(char *newval)
1157 : : {
1158 [ + + ]: 8224 : if (newval == NULL)
1159 : 8198 : newval = pg_strdup("errors");
1160 : 8224 : return newval;
1161 : : }
1162 : :
1163 : : static bool
3144 1164 : 8224 : show_context_hook(const char *newval)
1165 : : {
2629 1166 [ - + ]: 8224 : Assert(newval != NULL); /* else substitute hook messed up */
1167 [ + + ]: 8224 : if (pg_strcasecmp(newval, "never") == 0)
3144 1168 : 8 : pset.show_context = PQSHOW_CONTEXT_NEVER;
1169 [ + + ]: 8216 : else if (pg_strcasecmp(newval, "errors") == 0)
1170 : 8208 : pset.show_context = PQSHOW_CONTEXT_ERRORS;
1171 [ + - ]: 8 : else if (pg_strcasecmp(newval, "always") == 0)
1172 : 8 : pset.show_context = PQSHOW_CONTEXT_ALWAYS;
1173 : : else
1174 : : {
2631 tgl@sss.pgh.pa.us 1175 :UBC 0 : PsqlVarEnumError("SHOW_CONTEXT", newval, "never, errors, always");
1176 : 0 : return false;
1177 : : }
1178 : :
3144 tgl@sss.pgh.pa.us 1179 [ + + ]:CBC 8224 : if (pset.db)
1180 : 27 : PQsetErrorContextVisibility(pset.db, pset.show_context);
2631 1181 : 8224 : return true;
1182 : : }
1183 : :
1184 : : static bool
1122 rhaas@postgresql.org 1185 : 9158 : hide_compression_hook(const char *newval)
1186 : : {
1187 : 9158 : return ParseVariableBool(newval, "HIDE_TOAST_COMPRESSION",
1188 : : &pset.hide_compression);
1189 : : }
1190 : :
1191 : : static bool
1866 andres@anarazel.de 1192 : 9158 : hide_tableam_hook(const char *newval)
1193 : : {
1194 : 9158 : return ParseVariableBool(newval, "HIDE_TABLEAM", &pset.hide_tableam);
1195 : : }
1196 : :
1197 : : static void
6438 tgl@sss.pgh.pa.us 1198 : 8197 : EstablishVariableSpace(void)
1199 : : {
1200 : 8197 : pset.vars = CreateVariableSpace();
1201 : :
2629 1202 : 8197 : SetVariableHooks(pset.vars, "AUTOCOMMIT",
1203 : : bool_substitute_hook,
1204 : : autocommit_hook);
1205 : 8197 : SetVariableHooks(pset.vars, "ON_ERROR_STOP",
1206 : : bool_substitute_hook,
1207 : : on_error_stop_hook);
1208 : 8197 : SetVariableHooks(pset.vars, "QUIET",
1209 : : bool_substitute_hook,
1210 : : quiet_hook);
1211 : 8197 : SetVariableHooks(pset.vars, "SINGLELINE",
1212 : : bool_substitute_hook,
1213 : : singleline_hook);
1214 : 8197 : SetVariableHooks(pset.vars, "SINGLESTEP",
1215 : : bool_substitute_hook,
1216 : : singlestep_hook);
1217 : 8197 : SetVariableHooks(pset.vars, "FETCH_COUNT",
1218 : : fetch_count_substitute_hook,
1219 : : fetch_count_hook);
2628 1220 : 8197 : SetVariableHooks(pset.vars, "HISTFILE",
1221 : : NULL,
1222 : : histfile_hook);
1223 : 8197 : SetVariableHooks(pset.vars, "HISTSIZE",
1224 : : histsize_substitute_hook,
1225 : : histsize_hook);
1226 : 8197 : SetVariableHooks(pset.vars, "IGNOREEOF",
1227 : : ignoreeof_substitute_hook,
1228 : : ignoreeof_hook);
2629 1229 : 8197 : SetVariableHooks(pset.vars, "ECHO",
1230 : : echo_substitute_hook,
1231 : : echo_hook);
1232 : 8197 : SetVariableHooks(pset.vars, "ECHO_HIDDEN",
1233 : : bool_substitute_hook,
1234 : : echo_hidden_hook);
1235 : 8197 : SetVariableHooks(pset.vars, "ON_ERROR_ROLLBACK",
1236 : : bool_substitute_hook,
1237 : : on_error_rollback_hook);
1238 : 8197 : SetVariableHooks(pset.vars, "COMP_KEYWORD_CASE",
1239 : : comp_keyword_case_substitute_hook,
1240 : : comp_keyword_case_hook);
1241 : 8197 : SetVariableHooks(pset.vars, "HISTCONTROL",
1242 : : histcontrol_substitute_hook,
1243 : : histcontrol_hook);
1244 : 8197 : SetVariableHooks(pset.vars, "PROMPT1",
1245 : : NULL,
1246 : : prompt1_hook);
1247 : 8197 : SetVariableHooks(pset.vars, "PROMPT2",
1248 : : NULL,
1249 : : prompt2_hook);
1250 : 8197 : SetVariableHooks(pset.vars, "PROMPT3",
1251 : : NULL,
1252 : : prompt3_hook);
1253 : 8197 : SetVariableHooks(pset.vars, "VERBOSITY",
1254 : : verbosity_substitute_hook,
1255 : : verbosity_hook);
741 peter@eisentraut.org 1256 : 8197 : SetVariableHooks(pset.vars, "SHOW_ALL_RESULTS",
1257 : : bool_substitute_hook,
1258 : : show_all_results_hook);
2629 tgl@sss.pgh.pa.us 1259 : 8197 : SetVariableHooks(pset.vars, "SHOW_CONTEXT",
1260 : : show_context_substitute_hook,
1261 : : show_context_hook);
1122 rhaas@postgresql.org 1262 : 8197 : SetVariableHooks(pset.vars, "HIDE_TOAST_COMPRESSION",
1263 : : bool_substitute_hook,
1264 : : hide_compression_hook);
1866 andres@anarazel.de 1265 : 8197 : SetVariableHooks(pset.vars, "HIDE_TABLEAM",
1266 : : bool_substitute_hook,
1267 : : hide_tableam_hook);
6438 tgl@sss.pgh.pa.us 1268 : 8197 : }
|