aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/javacc/SelectParser.jj
blob: b6a7e21133c68bb2373805222af902328a795ebc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * @author Simon Thoresen Hult
 */
options {
    CACHE_TOKENS       = true;
    DEBUG_PARSER       = false;
    ERROR_REPORTING    = true;
    IGNORE_CASE        = true;
    STATIC             = false;
    UNICODE_INPUT      = true;
    USER_CHAR_STREAM   = true;
    USER_TOKEN_MANAGER = false;
}

PARSER_BEGIN(SelectParser)

package com.yahoo.document.select.parser;

import com.yahoo.document.select.rule.*;

import java.math.BigInteger;
import java.util.List;
import java.util.ArrayList;

public class SelectParser {


}

PARSER_END(SelectParser)

SKIP :
{
    " " | "\f" | "\n" | "\r" | "\t"
}

TOKEN :
{
    <INTEGER: <DECIMAL> (["l","L"])? | <HEX> (["l","L"])? | <OCTAL> (["l","L"])?> |
        <#DECIMAL: ["1"-"9"] (["0"-"9"])*> |
        <#HEX: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+> |
        <#OCTAL: "0" (["0"-"7"])*> |
    <FLOAT: (["0"-"9"])+ ("." (["0"-"9"])*)? (<EXPONENT>)? (["f","F","d","D"])?> |  
        <#EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+>
}

TOKEN :
{
    <LBRACE: "("> |
    <RBRACE: ")"> |
    <ADD: "+"> |
    <SUB: "-"> |
    <MUL: "*"> |
    <DIV: "/"> |
    <MOD: "%"> |
    <DOT: "."> |
    <COMMA: ","> |
    <NE: "!="> |
    <GE: ">="> |
    <LE: "<="> |
    <REGEX: "=~"> |
    <EQ: "=="> |
    <GLOB: "="> |
    <GT: ">"> |
    <LT: "<"> |
    <DOLLAR: "$"> |
    <STRING: ("\"" (~["\""] | "\\\"")* "\"") |
             ("'" (~["'"] | "\\'")* "'")> |
    <ID: "id"> |
    <ID_SCHEME: "scheme"> |
    <ID_TYPE: "type"> |
    <ID_NAMESPACE: "namespace"> |
    <ID_SPECIFIC: "specific"> |
    <ID_USER: "user"> |
    <ID_GROUP: "group"> |
    <ID_BUCKET: "bucket"> |
    <NULL: "null"> |
    <NOW: "now"> |
    <TRUE: "true"> |
    <FALSE: "false"> |
    <AND: "and"> |
    <OR: "or"> |
    <NOT: "not"> |
    <IDENTIFIER: ["a"-"z","A"-"Z", "_"] (["a"-"z","A"-"Z","0"-"9","_","-","@","$","[","]","{","}"])*>
}

ExpressionNode expression() :
{
    ExpressionNode ret = new LiteralNode(true);
}
{
    ( [ ret = logic() ] <EOF> )
    { return ret; }
}

ExpressionNode logic() :
{
    LogicNode lst = new LogicNode();
    String op = null;
    ExpressionNode node;
}
{
    ( node = negation() { lst.add(null, node); }
      ( ( <AND> | <OR> ) { op = token.image; }
        node = negation() { lst.add(op, node); } )* )
    { return op != null ? lst : node; }
}

ExpressionNode negation() :
{
    boolean not = false;
    ExpressionNode node;
}
{
    ( [ <NOT> { not = true; } ] node = relational() )
    { return not ? new NegationNode(node) : node; }
}

NowNode now() : { }
{
    ( <NOW> <LBRACE> <RBRACE> )
    { return new NowNode(); }
}

ExpressionNode relational() :
{
    ExpressionNode lhs, rhs = null;
    String op = null;
}
{
    ( lhs = arithmetic()
      [ ( <EQ> | <NE> | <LT> | <GT> | <LE> | <GE> | <REGEX> | <GLOB> ) { op = token.image; }
        rhs = arithmetic() ] )
    { return rhs != null ? new ComparisonNode(lhs, op, rhs) : lhs; }
}

ExpressionNode arithmetic() :
{
    ArithmeticNode lst = new ArithmeticNode();
    String op = null;
    ExpressionNode node;
}
{
    ( node = attribute() { lst.add(null, node); }
      ( ( <ADD> | <SUB> | <DIV> | <MUL> | <MOD> ) { op = token.image; }
        node = attribute() { lst.add(op, node); } )* )
    { return op != null ? lst : node; }
}

VariableNode variable() :
{
    VariableNode ret;
}
{
    ( <DOLLAR> identifier() { ret = new VariableNode(token.image); } )
    { return ret; }
}

ExpressionNode attribute() :
{
    ExpressionNode value;
    AttributeNode.Item item;
    List items = new ArrayList();
}
{
    ( value = value() ( <DOT> identifier()  { item = new AttributeNode.Item(token.image); }
                        [ <LBRACE> <RBRACE> { item.setType(AttributeNode.Item.FUNCTION); } ]
                                            { items.add(item); } )* )
    {
        if ( ! items.isEmpty()) // A value followed by dotted access/method call
            return new AttributeNode(value, items);

        if (value instanceof DocumentNode) // A standalone document type access: Convert to exact type matching
            return new DocumentTypeNode(((DocumentNode)value).getType());

        return value;
     }
}

ExpressionNode value() :
{
    ExpressionNode ret;
}
{
    ( LOOKAHEAD(2)
      ( ret = id() |
        ret = literal() |
        ret = variable() |
        ret = now() |
        <LBRACE> ret = logic() <RBRACE> { ret = new EmbracedNode(ret); } ) |
     ( ret = document() ) )
    { return ret; }
}

DocumentNode document() :
{
    DocumentNode ret;
}
{
    ( identifier() { ret = new DocumentNode(token.image); } )
    { return ret; }
}

                                                                                                                                                                                                                                             
void identifier() : { }
{                                                                                                                                                                                                                                            
    (  <ID> |
       <ID_SCHEME> |
       <ID_TYPE> |
       <ID_NAMESPACE> |
       <ID_SPECIFIC> |
       <ID_USER> |
       <ID_GROUP> |
       <ID_BUCKET> |
       <NULL> |
       <NOW> |
       <TRUE> |
       <FALSE> |
       <AND> |
       <OR> |
       // <NOT> |  Causes a choice conflict, but it is not such a good name anyway ...
       <IDENTIFIER> )
}  

IdNode id() :
{
    IdNode ret = new IdNode();
}
{
    ( <ID> [ LOOKAHEAD(2) <DOT>
             ( <ID_SCHEME>     { ret.setField(token.image); } | 
               <ID_TYPE>       { ret.setField(token.image); } |
               <ID_NAMESPACE>  { ret.setField(token.image); } |
               <ID_SPECIFIC>   { ret.setField(token.image); } |
               <ID_USER>       { ret.setField(token.image); } | 
               <ID_GROUP>      { ret.setField(token.image); } | 
               <ID_BUCKET>     { ret.setField(token.image); } )
              ] )
    { return ret; }
}

LiteralNode literal() :
{
    String sign = "";
    Object ret = null;
}
{
    ( ( [ <SUB>       { sign = "-"; } ]
        ( <FLOAT>     { ret = Double.parseDouble(sign + token.image); } |
          <INTEGER>   { ret = SelectParserUtils.decodeLong(sign + token.image); } ) ) |
      ( <ADD> <FLOAT> { ret = Double.parseDouble(token.image); } ) |
      ( <STRING>      { ret = SelectParserUtils.unquote(token.image); } ) |
      ( <TRUE>        { ret = true; } ) |
      ( <FALSE>       { ret = false; } ) |
      ( <NULL>        { ret = null; } ) )
    { return new LiteralNode(ret); }
}