Line data Source code
1 : /*
2 : * psql - the PostgreSQL interactive terminal
3 : *
4 : * Copyright (c) 2000-2021, PostgreSQL Global Development Group
5 : *
6 : * src/bin/psql/prompt.c
7 : */
8 : #include "postgres_fe.h"
9 :
10 : #ifdef WIN32
11 : #include <io.h>
12 : #include <win32.h>
13 : #endif
14 :
15 : #include "common.h"
16 : #include "common/string.h"
17 : #include "input.h"
18 : #include "libpq/pqcomm.h"
19 : #include "prompt.h"
20 : #include "settings.h"
21 :
22 : /*--------------------------
23 : * get_prompt
24 : *
25 : * Returns a statically allocated prompt made by interpolating certain
26 : * tcsh style escape sequences into pset.vars "PROMPT1|2|3".
27 : * (might not be completely multibyte safe)
28 : *
29 : * Defined interpolations are:
30 : * %M - database server "hostname.domainname", "[local]" for AF_UNIX
31 : * sockets, "[local:/dir/name]" if not default
32 : * %m - like %M, but hostname only (before first dot), or always "[local]"
33 : * %p - backend pid
34 : * %> - database server port number
35 : * %n - database user name
36 : * %/ - current database
37 : * %~ - like %/ but "~" when database name equals user name
38 : * %w - whitespace of the same width as the most recent output of PROMPT1
39 : * %# - "#" if superuser, ">" otherwise
40 : * %R - in prompt1 normally =, or ^ if single line mode,
41 : * or a ! if session is not connected to a database;
42 : * in prompt2 -, *, ', or ";
43 : * in prompt3 nothing
44 : * %x - transaction status: empty, *, !, ? (unknown or no connection)
45 : * %l - The line number inside the current statement, starting from 1.
46 : * %? - the error code of the last query (not yet implemented)
47 : * %% - a percent sign
48 : *
49 : * %[0-9] - the character with the given decimal code
50 : * %0[0-7] - the character with the given octal code
51 : * %0x[0-9A-Fa-f] - the character with the given hexadecimal code
52 : *
53 : * %`command` - The result of executing command in /bin/sh with trailing
54 : * newline stripped.
55 : * %:name: - The value of the psql variable 'name'
56 : * (those will not be rescanned for more escape sequences!)
57 : *
58 : * %[ ... %] - tell readline that the contained text is invisible
59 : *
60 : * If the application-wide prompts become NULL somehow, the returned string
61 : * will be empty (not NULL!).
62 : *--------------------------
63 : */
64 :
65 : char *
66 18 : get_prompt(promptStatus_t status, ConditionalStack cstack)
67 : {
68 : #define MAX_PROMPT_SIZE 256
69 : static char destination[MAX_PROMPT_SIZE + 1];
70 : char buf[MAX_PROMPT_SIZE + 1];
71 18 : bool esc = false;
72 : const char *p;
73 18 : const char *prompt_string = "? ";
74 : static size_t last_prompt1_width = 0;
75 :
76 18 : switch (status)
77 : {
78 18 : case PROMPT_READY:
79 18 : prompt_string = pset.prompt1;
80 18 : break;
81 :
82 0 : case PROMPT_CONTINUE:
83 : case PROMPT_SINGLEQUOTE:
84 : case PROMPT_DOUBLEQUOTE:
85 : case PROMPT_DOLLARQUOTE:
86 : case PROMPT_COMMENT:
87 : case PROMPT_PAREN:
88 0 : prompt_string = pset.prompt2;
89 0 : break;
90 :
91 0 : case PROMPT_COPY:
92 0 : prompt_string = pset.prompt3;
93 0 : break;
94 : }
95 :
96 18 : destination[0] = '\0';
97 :
98 18 : for (p = prompt_string;
99 180 : *p && strlen(destination) < sizeof(destination) - 1;
100 162 : p++)
101 : {
102 162 : memset(buf, 0, sizeof(buf));
103 162 : if (esc)
104 : {
105 72 : switch (*p)
106 : {
107 : /* Current database */
108 18 : case '/':
109 18 : if (pset.db)
110 18 : strlcpy(buf, PQdb(pset.db), sizeof(buf));
111 18 : break;
112 0 : case '~':
113 0 : if (pset.db)
114 : {
115 : const char *var;
116 :
117 0 : if (strcmp(PQdb(pset.db), PQuser(pset.db)) == 0 ||
118 0 : ((var = getenv("PGDATABASE")) && strcmp(var, PQdb(pset.db)) == 0))
119 0 : strlcpy(buf, "~", sizeof(buf));
120 : else
121 0 : strlcpy(buf, PQdb(pset.db), sizeof(buf));
122 : }
123 0 : break;
124 :
125 : /* Whitespace of the same width as the last PROMPT1 */
126 0 : case 'w':
127 0 : if (pset.db)
128 0 : memset(buf, ' ',
129 0 : Min(last_prompt1_width, sizeof(buf) - 1));
130 0 : break;
131 :
132 : /* DB server hostname (long/short) */
133 0 : case 'M':
134 : case 'm':
135 0 : if (pset.db)
136 : {
137 0 : const char *host = PQhost(pset.db);
138 :
139 : /* INET socket */
140 0 : if (host && host[0] && !is_unixsock_path(host))
141 : {
142 0 : strlcpy(buf, host, sizeof(buf));
143 0 : if (*p == 'm')
144 0 : buf[strcspn(buf, ".")] = '\0';
145 : }
146 : /* UNIX socket */
147 : else
148 : {
149 0 : if (!host
150 0 : || strcmp(host, DEFAULT_PGSOCKET_DIR) == 0
151 0 : || *p == 'm')
152 0 : strlcpy(buf, "[local]", sizeof(buf));
153 : else
154 0 : snprintf(buf, sizeof(buf), "[local:%s]", host);
155 : }
156 : }
157 0 : break;
158 : /* DB server port number */
159 0 : case '>':
160 0 : if (pset.db && PQport(pset.db))
161 0 : strlcpy(buf, PQport(pset.db), sizeof(buf));
162 0 : break;
163 : /* DB server user name */
164 0 : case 'n':
165 0 : if (pset.db)
166 0 : strlcpy(buf, session_username(), sizeof(buf));
167 0 : break;
168 : /* backend pid */
169 0 : case 'p':
170 0 : if (pset.db)
171 : {
172 0 : int pid = PQbackendPID(pset.db);
173 :
174 0 : if (pid)
175 0 : snprintf(buf, sizeof(buf), "%d", pid);
176 : }
177 0 : break;
178 :
179 0 : case '0':
180 : case '1':
181 : case '2':
182 : case '3':
183 : case '4':
184 : case '5':
185 : case '6':
186 : case '7':
187 0 : *buf = (char) strtol(p, unconstify(char **, &p), 8);
188 0 : --p;
189 0 : break;
190 18 : case 'R':
191 : switch (status)
192 : {
193 18 : case PROMPT_READY:
194 18 : if (cstack != NULL && !conditional_active(cstack))
195 0 : buf[0] = '@';
196 18 : else if (!pset.db)
197 0 : buf[0] = '!';
198 18 : else if (!pset.singleline)
199 18 : buf[0] = '=';
200 : else
201 0 : buf[0] = '^';
202 18 : break;
203 0 : case PROMPT_CONTINUE:
204 0 : buf[0] = '-';
205 0 : break;
206 0 : case PROMPT_SINGLEQUOTE:
207 0 : buf[0] = '\'';
208 0 : break;
209 0 : case PROMPT_DOUBLEQUOTE:
210 0 : buf[0] = '"';
211 0 : break;
212 0 : case PROMPT_DOLLARQUOTE:
213 0 : buf[0] = '$';
214 0 : break;
215 0 : case PROMPT_COMMENT:
216 0 : buf[0] = '*';
217 0 : break;
218 0 : case PROMPT_PAREN:
219 0 : buf[0] = '(';
220 0 : break;
221 0 : default:
222 0 : buf[0] = '\0';
223 0 : break;
224 : }
225 18 : break;
226 :
227 18 : case 'x':
228 18 : if (!pset.db)
229 0 : buf[0] = '?';
230 : else
231 18 : switch (PQtransactionStatus(pset.db))
232 : {
233 18 : case PQTRANS_IDLE:
234 18 : buf[0] = '\0';
235 18 : break;
236 0 : case PQTRANS_ACTIVE:
237 : case PQTRANS_INTRANS:
238 0 : buf[0] = '*';
239 0 : break;
240 0 : case PQTRANS_INERROR:
241 0 : buf[0] = '!';
242 0 : break;
243 0 : default:
244 0 : buf[0] = '?';
245 0 : break;
246 : }
247 18 : break;
248 :
249 0 : case 'l':
250 0 : snprintf(buf, sizeof(buf), UINT64_FORMAT, pset.stmt_lineno);
251 0 : break;
252 :
253 0 : case '?':
254 : /* not here yet */
255 0 : break;
256 :
257 18 : case '#':
258 18 : if (is_superuser())
259 18 : buf[0] = '#';
260 : else
261 0 : buf[0] = '>';
262 18 : break;
263 :
264 : /* execute command */
265 0 : case '`':
266 : {
267 0 : int cmdend = strcspn(p + 1, "`");
268 0 : char *file = pnstrdup(p + 1, cmdend);
269 0 : FILE *fd = popen(file, "r");
270 :
271 0 : if (fd)
272 : {
273 0 : if (fgets(buf, sizeof(buf), fd) == NULL)
274 0 : buf[0] = '\0';
275 0 : pclose(fd);
276 : }
277 :
278 : /* strip trailing newline and carriage return */
279 0 : (void) pg_strip_crlf(buf);
280 :
281 0 : free(file);
282 0 : p += cmdend + 1;
283 0 : break;
284 : }
285 :
286 : /* interpolate variable */
287 0 : case ':':
288 : {
289 0 : int nameend = strcspn(p + 1, ":");
290 0 : char *name = pnstrdup(p + 1, nameend);
291 : const char *val;
292 :
293 0 : val = GetVariable(pset.vars, name);
294 0 : if (val)
295 0 : strlcpy(buf, val, sizeof(buf));
296 0 : free(name);
297 0 : p += nameend + 1;
298 0 : break;
299 : }
300 :
301 0 : case '[':
302 : case ']':
303 : #if defined(USE_READLINE) && defined(RL_PROMPT_START_IGNORE)
304 :
305 : /*
306 : * readline >=4.0 undocumented feature: non-printing
307 : * characters in prompt strings must be marked as such, in
308 : * order to properly display the line during editing.
309 : */
310 0 : buf[0] = (*p == '[') ? RL_PROMPT_START_IGNORE : RL_PROMPT_END_IGNORE;
311 0 : buf[1] = '\0';
312 : #endif /* USE_READLINE */
313 0 : break;
314 :
315 0 : default:
316 0 : buf[0] = *p;
317 0 : buf[1] = '\0';
318 0 : break;
319 :
320 : }
321 72 : esc = false;
322 : }
323 90 : else if (*p == '%')
324 72 : esc = true;
325 : else
326 : {
327 18 : buf[0] = *p;
328 18 : buf[1] = '\0';
329 18 : esc = false;
330 : }
331 :
332 162 : if (!esc)
333 90 : strlcat(destination, buf, sizeof(destination));
334 : }
335 :
336 : /* Compute the visible width of PROMPT1, for PROMPT2's %w */
337 18 : if (prompt_string == pset.prompt1)
338 : {
339 18 : char *p = destination;
340 18 : char *end = p + strlen(p);
341 18 : bool visible = true;
342 :
343 18 : last_prompt1_width = 0;
344 216 : while (*p)
345 : {
346 : #if defined(USE_READLINE) && defined(RL_PROMPT_START_IGNORE)
347 198 : if (*p == RL_PROMPT_START_IGNORE)
348 : {
349 0 : visible = false;
350 0 : ++p;
351 : }
352 198 : else if (*p == RL_PROMPT_END_IGNORE)
353 : {
354 0 : visible = true;
355 0 : ++p;
356 : }
357 : else
358 : #endif
359 : {
360 : int chlen,
361 : chwidth;
362 :
363 198 : chlen = PQmblen(p, pset.encoding);
364 198 : if (p + chlen > end)
365 0 : break; /* Invalid string */
366 :
367 198 : if (visible)
368 : {
369 198 : chwidth = PQdsplen(p, pset.encoding);
370 :
371 198 : if (*p == '\n')
372 0 : last_prompt1_width = 0;
373 198 : else if (chwidth > 0)
374 198 : last_prompt1_width += chwidth;
375 : }
376 :
377 198 : p += chlen;
378 : }
379 : }
380 : }
381 :
382 18 : return destination;
383 : }
|