psql: Improve tab-completion for MERGE.
[pgsql.git] / contrib / ltree / ltxtquery_io.c
blob3eca5cb8ff30359a0cdca12e460657849f8725a8
1 /*
2 * txtquery io
3 * Teodor Sigaev <teodor@stack.net>
4 * contrib/ltree/ltxtquery_io.c
5 */
6 #include "postgres.h"
8 #include <ctype.h>
10 #include "crc32.h"
11 #include "libpq/pqformat.h"
12 #include "ltree.h"
13 #include "miscadmin.h"
16 /* parser's states */
17 #define WAITOPERAND 1
18 #define INOPERAND 2
19 #define WAITOPERATOR 3
22 * node of query tree, also used
23 * for storing polish notation in parser
25 typedef struct NODE
27 int32 type;
28 int32 val;
29 int16 distance;
30 int16 length;
31 uint16 flag;
32 struct NODE *next;
33 } NODE;
35 typedef struct
37 char *buf;
38 int32 state;
39 int32 count;
40 /* reverse polish notation in list (for temporary usage) */
41 NODE *str;
42 /* number in str */
43 int32 num;
45 /* user-friendly operand */
46 int32 lenop;
47 int32 sumlen;
48 char *op;
49 char *curop;
50 } QPRS_STATE;
53 * get token from query string
55 static int32
56 gettoken_query(QPRS_STATE *state, int32 *val, int32 *lenval, char **strval, uint16 *flag)
58 int charlen;
60 for (;;)
62 charlen = pg_mblen(state->buf);
64 switch (state->state)
66 case WAITOPERAND:
67 if (charlen == 1 && t_iseq(state->buf, '!'))
69 (state->buf)++;
70 *val = (int32) '!';
71 return OPR;
73 else if (charlen == 1 && t_iseq(state->buf, '('))
75 state->count++;
76 (state->buf)++;
77 return OPEN;
79 else if (ISALNUM(state->buf))
81 state->state = INOPERAND;
82 *strval = state->buf;
83 *lenval = charlen;
84 *flag = 0;
86 else if (!t_isspace(state->buf))
87 ereport(ERROR,
88 (errcode(ERRCODE_SYNTAX_ERROR),
89 errmsg("operand syntax error")));
90 break;
91 case INOPERAND:
92 if (ISALNUM(state->buf))
94 if (*flag)
95 ereport(ERROR,
96 (errcode(ERRCODE_SYNTAX_ERROR),
97 errmsg("modifiers syntax error")));
98 *lenval += charlen;
100 else if (charlen == 1 && t_iseq(state->buf, '%'))
101 *flag |= LVAR_SUBLEXEME;
102 else if (charlen == 1 && t_iseq(state->buf, '@'))
103 *flag |= LVAR_INCASE;
104 else if (charlen == 1 && t_iseq(state->buf, '*'))
105 *flag |= LVAR_ANYEND;
106 else
108 state->state = WAITOPERATOR;
109 return VAL;
111 break;
112 case WAITOPERATOR:
113 if (charlen == 1 && (t_iseq(state->buf, '&') || t_iseq(state->buf, '|')))
115 state->state = WAITOPERAND;
116 *val = (int32) *(state->buf);
117 (state->buf)++;
118 return OPR;
120 else if (charlen == 1 && t_iseq(state->buf, ')'))
122 (state->buf)++;
123 state->count--;
124 return (state->count < 0) ? ERR : CLOSE;
126 else if (*(state->buf) == '\0')
127 return (state->count) ? ERR : END;
128 else if (charlen == 1 && !t_iseq(state->buf, ' '))
129 return ERR;
130 break;
131 default:
132 return ERR;
133 break;
136 state->buf += charlen;
141 * push new one in polish notation reverse view
143 static void
144 pushquery(QPRS_STATE *state, int32 type, int32 val, int32 distance, int32 lenval, uint16 flag)
146 NODE *tmp = (NODE *) palloc(sizeof(NODE));
148 tmp->type = type;
149 tmp->val = val;
150 tmp->flag = flag;
151 if (distance > 0xffff)
152 ereport(ERROR,
153 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
154 errmsg("value is too big")));
155 if (lenval > 0xff)
156 ereport(ERROR,
157 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
158 errmsg("operand is too long")));
159 tmp->distance = distance;
160 tmp->length = lenval;
161 tmp->next = state->str;
162 state->str = tmp;
163 state->num++;
167 * This function is used for query text parsing
169 static void
170 pushval_asis(QPRS_STATE *state, int type, char *strval, int lenval, uint16 flag)
172 if (lenval > 0xffff)
173 ereport(ERROR,
174 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
175 errmsg("word is too long")));
177 pushquery(state, type, ltree_crc32_sz(strval, lenval),
178 state->curop - state->op, lenval, flag);
180 while (state->curop - state->op + lenval + 1 >= state->lenop)
182 int32 tmp = state->curop - state->op;
184 state->lenop *= 2;
185 state->op = (char *) repalloc((void *) state->op, state->lenop);
186 state->curop = state->op + tmp;
188 memcpy((void *) state->curop, (void *) strval, lenval);
189 state->curop += lenval;
190 *(state->curop) = '\0';
191 state->curop++;
192 state->sumlen += lenval + 1;
195 #define STACKDEPTH 32
197 * make polish notation of query
199 static int32
200 makepol(QPRS_STATE *state)
202 int32 val = 0,
203 type;
204 int32 lenval = 0;
205 char *strval = NULL;
206 int32 stack[STACKDEPTH];
207 int32 lenstack = 0;
208 uint16 flag = 0;
210 /* since this function recurses, it could be driven to stack overflow */
211 check_stack_depth();
213 while ((type = gettoken_query(state, &val, &lenval, &strval, &flag)) != END)
215 switch (type)
217 case VAL:
218 pushval_asis(state, VAL, strval, lenval, flag);
219 while (lenstack && (stack[lenstack - 1] == (int32) '&' ||
220 stack[lenstack - 1] == (int32) '!'))
222 lenstack--;
223 pushquery(state, OPR, stack[lenstack], 0, 0, 0);
225 break;
226 case OPR:
227 if (lenstack && val == (int32) '|')
228 pushquery(state, OPR, val, 0, 0, 0);
229 else
231 if (lenstack == STACKDEPTH)
232 /* internal error */
233 elog(ERROR, "stack too short");
234 stack[lenstack] = val;
235 lenstack++;
237 break;
238 case OPEN:
239 if (makepol(state) == ERR)
240 return ERR;
241 while (lenstack && (stack[lenstack - 1] == (int32) '&' ||
242 stack[lenstack - 1] == (int32) '!'))
244 lenstack--;
245 pushquery(state, OPR, stack[lenstack], 0, 0, 0);
247 break;
248 case CLOSE:
249 while (lenstack)
251 lenstack--;
252 pushquery(state, OPR, stack[lenstack], 0, 0, 0);
254 return END;
255 break;
256 case ERR:
257 default:
258 ereport(ERROR,
259 (errcode(ERRCODE_SYNTAX_ERROR),
260 errmsg("syntax error")));
262 return ERR;
265 while (lenstack)
267 lenstack--;
268 pushquery(state, OPR, stack[lenstack], 0, 0, 0);
270 return END;
273 static void
274 findoprnd(ITEM *ptr, int32 *pos)
276 /* since this function recurses, it could be driven to stack overflow. */
277 check_stack_depth();
279 if (ptr[*pos].type == VAL || ptr[*pos].type == VALTRUE)
281 ptr[*pos].left = 0;
282 (*pos)++;
284 else if (ptr[*pos].val == (int32) '!')
286 ptr[*pos].left = 1;
287 (*pos)++;
288 findoprnd(ptr, pos);
290 else
292 ITEM *curitem = &ptr[*pos];
293 int32 tmp = *pos;
295 (*pos)++;
296 findoprnd(ptr, pos);
297 curitem->left = *pos - tmp;
298 findoprnd(ptr, pos);
304 * input
306 static ltxtquery *
307 queryin(char *buf)
309 QPRS_STATE state;
310 int32 i;
311 ltxtquery *query;
312 int32 commonlen;
313 ITEM *ptr;
314 NODE *tmp;
315 int32 pos = 0;
317 #ifdef BS_DEBUG
318 char pbuf[16384],
319 *cur;
320 #endif
322 /* init state */
323 state.buf = buf;
324 state.state = WAITOPERAND;
325 state.count = 0;
326 state.num = 0;
327 state.str = NULL;
329 /* init list of operand */
330 state.sumlen = 0;
331 state.lenop = 64;
332 state.curop = state.op = (char *) palloc(state.lenop);
333 *(state.curop) = '\0';
335 /* parse query & make polish notation (postfix, but in reverse order) */
336 makepol(&state);
337 if (!state.num)
338 ereport(ERROR,
339 (errcode(ERRCODE_SYNTAX_ERROR),
340 errmsg("syntax error"),
341 errdetail("Empty query.")));
343 if (LTXTQUERY_TOO_BIG(state.num, state.sumlen))
344 ereport(ERROR,
345 (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
346 errmsg("ltxtquery is too large")));
347 commonlen = COMPUTESIZE(state.num, state.sumlen);
349 query = (ltxtquery *) palloc0(commonlen);
350 SET_VARSIZE(query, commonlen);
351 query->size = state.num;
352 ptr = GETQUERY(query);
354 /* set item in polish notation */
355 for (i = 0; i < state.num; i++)
357 ptr[i].type = state.str->type;
358 ptr[i].val = state.str->val;
359 ptr[i].distance = state.str->distance;
360 ptr[i].length = state.str->length;
361 ptr[i].flag = state.str->flag;
362 tmp = state.str->next;
363 pfree(state.str);
364 state.str = tmp;
367 /* set user-friendly operand view */
368 memcpy((void *) GETOPERAND(query), (void *) state.op, state.sumlen);
369 pfree(state.op);
371 /* set left operand's position for every operator */
372 pos = 0;
373 findoprnd(ptr, &pos);
375 return query;
379 * in without morphology
381 PG_FUNCTION_INFO_V1(ltxtq_in);
382 Datum
383 ltxtq_in(PG_FUNCTION_ARGS)
385 PG_RETURN_POINTER(queryin((char *) PG_GETARG_POINTER(0)));
389 * ltxtquery type recv function
391 * The type is sent as text in binary mode, so this is almost the same
392 * as the input function, but it's prefixed with a version number so we
393 * can change the binary format sent in future if necessary. For now,
394 * only version 1 is supported.
396 PG_FUNCTION_INFO_V1(ltxtq_recv);
397 Datum
398 ltxtq_recv(PG_FUNCTION_ARGS)
400 StringInfo buf = (StringInfo) PG_GETARG_POINTER(0);
401 int version = pq_getmsgint(buf, 1);
402 char *str;
403 int nbytes;
404 ltxtquery *res;
406 if (version != 1)
407 elog(ERROR, "unsupported ltxtquery version number %d", version);
409 str = pq_getmsgtext(buf, buf->len - buf->cursor, &nbytes);
410 res = queryin(str);
411 pfree(str);
413 PG_RETURN_POINTER(res);
417 * out function
419 typedef struct
421 ITEM *curpol;
422 char *buf;
423 char *cur;
424 char *op;
425 int32 buflen;
426 } INFIX;
428 #define RESIZEBUF(inf,addsize) \
429 while( ( (inf)->cur - (inf)->buf ) + (addsize) + 1 >= (inf)->buflen ) \
431 int32 len = (inf)->cur - (inf)->buf; \
432 (inf)->buflen *= 2; \
433 (inf)->buf = (char*) repalloc( (void*)(inf)->buf, (inf)->buflen ); \
434 (inf)->cur = (inf)->buf + len; \
438 * recursive walk on tree and print it in
439 * infix (human-readable) view
441 static void
442 infix(INFIX *in, bool first)
444 /* since this function recurses, it could be driven to stack overflow. */
445 check_stack_depth();
447 if (in->curpol->type == VAL)
449 char *op = in->op + in->curpol->distance;
451 RESIZEBUF(in, in->curpol->length * 2 + 5);
452 while (*op)
454 *(in->cur) = *op;
455 op++;
456 in->cur++;
458 if (in->curpol->flag & LVAR_SUBLEXEME)
460 *(in->cur) = '%';
461 in->cur++;
463 if (in->curpol->flag & LVAR_INCASE)
465 *(in->cur) = '@';
466 in->cur++;
468 if (in->curpol->flag & LVAR_ANYEND)
470 *(in->cur) = '*';
471 in->cur++;
473 *(in->cur) = '\0';
474 in->curpol++;
476 else if (in->curpol->val == (int32) '!')
478 bool isopr = false;
480 RESIZEBUF(in, 1);
481 *(in->cur) = '!';
482 in->cur++;
483 *(in->cur) = '\0';
484 in->curpol++;
485 if (in->curpol->type == OPR)
487 isopr = true;
488 RESIZEBUF(in, 2);
489 sprintf(in->cur, "( ");
490 in->cur = strchr(in->cur, '\0');
492 infix(in, isopr);
493 if (isopr)
495 RESIZEBUF(in, 2);
496 sprintf(in->cur, " )");
497 in->cur = strchr(in->cur, '\0');
500 else
502 int32 op = in->curpol->val;
503 INFIX nrm;
505 in->curpol++;
506 if (op == (int32) '|' && !first)
508 RESIZEBUF(in, 2);
509 sprintf(in->cur, "( ");
510 in->cur = strchr(in->cur, '\0');
513 nrm.curpol = in->curpol;
514 nrm.op = in->op;
515 nrm.buflen = 16;
516 nrm.cur = nrm.buf = (char *) palloc(sizeof(char) * nrm.buflen);
518 /* get right operand */
519 infix(&nrm, false);
521 /* get & print left operand */
522 in->curpol = nrm.curpol;
523 infix(in, false);
525 /* print operator & right operand */
526 RESIZEBUF(in, 3 + (nrm.cur - nrm.buf));
527 sprintf(in->cur, " %c %s", op, nrm.buf);
528 in->cur = strchr(in->cur, '\0');
529 pfree(nrm.buf);
531 if (op == (int32) '|' && !first)
533 RESIZEBUF(in, 2);
534 sprintf(in->cur, " )");
535 in->cur = strchr(in->cur, '\0');
540 PG_FUNCTION_INFO_V1(ltxtq_out);
541 Datum
542 ltxtq_out(PG_FUNCTION_ARGS)
544 ltxtquery *query = PG_GETARG_LTXTQUERY_P(0);
545 INFIX nrm;
547 if (query->size == 0)
548 ereport(ERROR,
549 (errcode(ERRCODE_SYNTAX_ERROR),
550 errmsg("syntax error"),
551 errdetail("Empty query.")));
553 nrm.curpol = GETQUERY(query);
554 nrm.buflen = 32;
555 nrm.cur = nrm.buf = (char *) palloc(sizeof(char) * nrm.buflen);
556 *(nrm.cur) = '\0';
557 nrm.op = GETOPERAND(query);
558 infix(&nrm, true);
560 PG_RETURN_POINTER(nrm.buf);
564 * ltxtquery type send function
566 * The type is sent as text in binary mode, so this is almost the same
567 * as the output function, but it's prefixed with a version number so we
568 * can change the binary format sent in future if necessary. For now,
569 * only version 1 is supported.
571 PG_FUNCTION_INFO_V1(ltxtq_send);
572 Datum
573 ltxtq_send(PG_FUNCTION_ARGS)
575 ltxtquery *query = PG_GETARG_LTXTQUERY_P(0);
576 StringInfoData buf;
577 int version = 1;
578 INFIX nrm;
580 if (query->size == 0)
581 ereport(ERROR,
582 (errcode(ERRCODE_SYNTAX_ERROR),
583 errmsg("syntax error"),
584 errdetail("Empty query.")));
586 nrm.curpol = GETQUERY(query);
587 nrm.buflen = 32;
588 nrm.cur = nrm.buf = (char *) palloc(sizeof(char) * nrm.buflen);
589 *(nrm.cur) = '\0';
590 nrm.op = GETOPERAND(query);
591 infix(&nrm, true);
593 pq_begintypsend(&buf);
594 pq_sendint8(&buf, version);
595 pq_sendtext(&buf, nrm.buf, strlen(nrm.buf));
596 pfree(nrm.buf);
598 PG_RETURN_BYTEA_P(pq_endtypsend(&buf));