sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2008 August 16
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
** This file contains routines used for walking the parser tree for
|
sl@0
|
13 |
** an SQL statement.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** $Id: walker.c,v 1.1 2008/08/20 16:35:10 drh Exp $
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
#include "sqliteInt.h"
|
sl@0
|
18 |
#include <stdlib.h>
|
sl@0
|
19 |
#include <string.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/*
|
sl@0
|
23 |
** Walk an expression tree. Invoke the callback once for each node
|
sl@0
|
24 |
** of the expression, while decending. (In other words, the callback
|
sl@0
|
25 |
** is invoked before visiting children.)
|
sl@0
|
26 |
**
|
sl@0
|
27 |
** The return value from the callback should be one of the WRC_*
|
sl@0
|
28 |
** constants to specify how to proceed with the walk.
|
sl@0
|
29 |
**
|
sl@0
|
30 |
** WRC_Continue Continue descending down the tree.
|
sl@0
|
31 |
**
|
sl@0
|
32 |
** WRC_Prune Do not descend into child nodes. But allow
|
sl@0
|
33 |
** the walk to continue with sibling nodes.
|
sl@0
|
34 |
**
|
sl@0
|
35 |
** WRC_Abort Do no more callbacks. Unwind the stack and
|
sl@0
|
36 |
** return the top-level walk call.
|
sl@0
|
37 |
**
|
sl@0
|
38 |
** The return value from this routine is WRC_Abort to abandon the tree walk
|
sl@0
|
39 |
** and WRC_Continue to continue.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
int sqlite3WalkExpr(Walker *pWalker, Expr *pExpr){
|
sl@0
|
42 |
int rc;
|
sl@0
|
43 |
if( pExpr==0 ) return WRC_Continue;
|
sl@0
|
44 |
rc = pWalker->xExprCallback(pWalker, pExpr);
|
sl@0
|
45 |
if( rc==WRC_Continue ){
|
sl@0
|
46 |
if( sqlite3WalkExpr(pWalker, pExpr->pLeft) ) return WRC_Abort;
|
sl@0
|
47 |
if( sqlite3WalkExpr(pWalker, pExpr->pRight) ) return WRC_Abort;
|
sl@0
|
48 |
if( sqlite3WalkExprList(pWalker, pExpr->pList) ) return WRC_Abort;
|
sl@0
|
49 |
if( sqlite3WalkSelect(pWalker, pExpr->pSelect) ){
|
sl@0
|
50 |
return WRC_Abort;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
}
|
sl@0
|
53 |
return rc & WRC_Abort;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
** Call sqlite3WalkExpr() for every expression in list p or until
|
sl@0
|
58 |
** an abort request is seen.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
int sqlite3WalkExprList(Walker *pWalker, ExprList *p){
|
sl@0
|
61 |
int i, rc = WRC_Continue;
|
sl@0
|
62 |
struct ExprList_item *pItem;
|
sl@0
|
63 |
if( p ){
|
sl@0
|
64 |
for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
|
sl@0
|
65 |
if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
}
|
sl@0
|
68 |
return rc & WRC_Continue;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/*
|
sl@0
|
72 |
** Walk all expressions associated with SELECT statement p. Do
|
sl@0
|
73 |
** not invoke the SELECT callback on p, but do (of course) invoke
|
sl@0
|
74 |
** any expr callbacks and SELECT callbacks that come from subqueries.
|
sl@0
|
75 |
** Return WRC_Abort or WRC_Continue.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){
|
sl@0
|
78 |
if( sqlite3WalkExprList(pWalker, p->pEList) ) return WRC_Abort;
|
sl@0
|
79 |
if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort;
|
sl@0
|
80 |
if( sqlite3WalkExprList(pWalker, p->pGroupBy) ) return WRC_Abort;
|
sl@0
|
81 |
if( sqlite3WalkExpr(pWalker, p->pHaving) ) return WRC_Abort;
|
sl@0
|
82 |
if( sqlite3WalkExprList(pWalker, p->pOrderBy) ) return WRC_Abort;
|
sl@0
|
83 |
if( sqlite3WalkExpr(pWalker, p->pLimit) ) return WRC_Abort;
|
sl@0
|
84 |
if( sqlite3WalkExpr(pWalker, p->pOffset) ) return WRC_Abort;
|
sl@0
|
85 |
return WRC_Continue;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
/*
|
sl@0
|
89 |
** Walk the parse trees associated with all subqueries in the
|
sl@0
|
90 |
** FROM clause of SELECT statement p. Do not invoke the select
|
sl@0
|
91 |
** callback on p, but do invoke it on each FROM clause subquery
|
sl@0
|
92 |
** and on any subqueries further down in the tree. Return
|
sl@0
|
93 |
** WRC_Abort or WRC_Continue;
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){
|
sl@0
|
96 |
SrcList *pSrc;
|
sl@0
|
97 |
int i;
|
sl@0
|
98 |
struct SrcList_item *pItem;
|
sl@0
|
99 |
|
sl@0
|
100 |
pSrc = p->pSrc;
|
sl@0
|
101 |
if( pSrc ){
|
sl@0
|
102 |
for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
|
sl@0
|
103 |
if( sqlite3WalkSelect(pWalker, pItem->pSelect) ){
|
sl@0
|
104 |
return WRC_Abort;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
}
|
sl@0
|
107 |
}
|
sl@0
|
108 |
return WRC_Continue;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/*
|
sl@0
|
112 |
** Call sqlite3WalkExpr() for every expression in Select statement p.
|
sl@0
|
113 |
** Invoke sqlite3WalkSelect() for subqueries in the FROM clause and
|
sl@0
|
114 |
** on the compound select chain, p->pPrior.
|
sl@0
|
115 |
**
|
sl@0
|
116 |
** Return WRC_Continue under normal conditions. Return WRC_Abort if
|
sl@0
|
117 |
** there is an abort request.
|
sl@0
|
118 |
**
|
sl@0
|
119 |
** If the Walker does not have an xSelectCallback() then this routine
|
sl@0
|
120 |
** is a no-op returning WRC_Continue.
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
int sqlite3WalkSelect(Walker *pWalker, Select *p){
|
sl@0
|
123 |
int rc;
|
sl@0
|
124 |
if( p==0 || pWalker->xSelectCallback==0 ) return WRC_Continue;
|
sl@0
|
125 |
rc = WRC_Continue;
|
sl@0
|
126 |
while( p ){
|
sl@0
|
127 |
rc = pWalker->xSelectCallback(pWalker, p);
|
sl@0
|
128 |
if( rc ) break;
|
sl@0
|
129 |
if( sqlite3WalkSelectExpr(pWalker, p) ) return WRC_Abort;
|
sl@0
|
130 |
if( sqlite3WalkSelectFrom(pWalker, p) ) return WRC_Abort;
|
sl@0
|
131 |
p = p->pPrior;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
return rc & WRC_Abort;
|
sl@0
|
134 |
}
|