PostgreSQL Source Code  git master
ltxtquery_op.c
Go to the documentation of this file.
1 /*
2  * txtquery operations with ltree
3  * Teodor Sigaev <teodor@stack.net>
4  * contrib/ltree/ltxtquery_op.c
5  */
6 #include "postgres.h"
7 
8 #include <ctype.h>
9 
10 #include "ltree.h"
11 #include "miscadmin.h"
12 
15 
16 /*
17  * check for boolean condition
18  */
19 bool
20 ltree_execute(ITEM *curitem, void *checkval, bool calcnot, bool (*chkcond) (void *checkval, ITEM *val))
21 {
22  /* since this function recurses, it could be driven to stack overflow */
24 
25  if (curitem->type == VAL)
26  return (*chkcond) (checkval, curitem);
27  else if (curitem->val == (int32) '!')
28  {
29  return calcnot ?
30  ((ltree_execute(curitem + 1, checkval, calcnot, chkcond)) ? false : true)
31  : true;
32  }
33  else if (curitem->val == (int32) '&')
34  {
35  if (ltree_execute(curitem + curitem->left, checkval, calcnot, chkcond))
36  return ltree_execute(curitem + 1, checkval, calcnot, chkcond);
37  else
38  return false;
39  }
40  else
41  { /* |-operator */
42  if (ltree_execute(curitem + curitem->left, checkval, calcnot, chkcond))
43  return true;
44  else
45  return ltree_execute(curitem + 1, checkval, calcnot, chkcond);
46  }
47 }
48 
49 typedef struct
50 {
52  char *operand;
53 } CHKVAL;
54 
55 static bool
56 checkcondition_str(void *checkval, ITEM *val)
57 {
58  ltree_level *level = LTREE_FIRST(((CHKVAL *) checkval)->node);
59  int tlen = ((CHKVAL *) checkval)->node->numlevel;
60  char *op = ((CHKVAL *) checkval)->operand + val->distance;
61  int (*cmpptr) (const char *, const char *, size_t);
62 
63  cmpptr = (val->flag & LVAR_INCASE) ? ltree_strncasecmp : strncmp;
64  while (tlen > 0)
65  {
66  if (val->flag & LVAR_SUBLEXEME)
67  {
68  if (compare_subnode(level, op, val->length, cmpptr, (val->flag & LVAR_ANYEND)))
69  return true;
70  }
71  else if ((val->length == level->len ||
72  (level->len > val->length && (val->flag & LVAR_ANYEND))) &&
73  (*cmpptr) (op, level->name, val->length) == 0)
74  return true;
75 
76  tlen--;
77  level = LEVEL_NEXT(level);
78  }
79 
80  return false;
81 }
82 
83 Datum
85 {
87  ltxtquery *query = PG_GETARG_LTXTQUERY_P(1);
88  CHKVAL chkval;
89  bool result;
90 
91  chkval.node = val;
92  chkval.operand = GETOPERAND(query);
93 
94  result = ltree_execute(GETQUERY(query),
95  &chkval,
96  true,
98 
99  PG_FREE_IF_COPY(val, 0);
100  PG_FREE_IF_COPY(query, 1);
101  PG_RETURN_BOOL(result);
102 }
103 
104 Datum
106 {
108  PG_GETARG_DATUM(1),
109  PG_GETARG_DATUM(0)
110  ));
111 }
#define VAL
Definition: _int.h:162
#define GETQUERY(x)
Definition: _int.h:157
signed int int32
Definition: c.h:481
#define PG_FREE_IF_COPY(ptr, n)
Definition: fmgr.h:260
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:644
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268
#define PG_RETURN_DATUM(x)
Definition: fmgr.h:353
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
long val
Definition: informix.c:670
bool compare_subnode(ltree_level *t, char *qn, int len, int(*cmpptr)(const char *, const char *, size_t), bool anyend)
Definition: lquery_op.c:44
int ltree_strncasecmp(const char *a, const char *b, size_t s)
Definition: lquery_op.c:78
#define PG_GETARG_LTXTQUERY_P(n)
Definition: ltree.h:228
#define LTREE_FIRST(x)
Definition: ltree.h:51
#define LVAR_INCASE
Definition: ltree.h:75
#define LEVEL_NEXT(x)
Definition: ltree.h:40
#define LVAR_ANYEND
Definition: ltree.h:74
#define GETOPERAND(x)
Definition: ltree.h:165
#define PG_GETARG_LTREE_P(n)
Definition: ltree.h:218
#define LVAR_SUBLEXEME
Definition: ltree.h:76
Datum ltxtq_rexec(PG_FUNCTION_ARGS)
Definition: ltxtquery_op.c:105
Datum ltxtq_exec(PG_FUNCTION_ARGS)
Definition: ltxtquery_op.c:84
bool ltree_execute(ITEM *curitem, void *checkval, bool calcnot, bool(*chkcond)(void *checkval, ITEM *val))
Definition: ltxtquery_op.c:20
PG_FUNCTION_INFO_V1(ltxtq_exec)
static bool checkcondition_str(void *checkval, ITEM *val)
Definition: ltxtquery_op.c:56
void check_stack_depth(void)
Definition: postgres.c:3531
uintptr_t Datum
Definition: postgres.h:64
char * operand
Definition: ltxtquery_op.c:52
ltree * node
Definition: ltxtquery_op.c:51
Definition: _int.h:141
int16 left
Definition: _int.h:143
int32 val
Definition: _int.h:144
int16 type
Definition: _int.h:142
char name[FLEXIBLE_ARRAY_MEMBER]
Definition: ltree.h:36
uint16 len
Definition: ltree.h:35
Definition: ltree.h:43