Revert "Added Netbeans project."
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLParser.java
1 // $Id: CQLParser.java,v 1.39 2007-08-06 15:54:48 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.io.IOException;
5 import java.util.Vector;
6 import java.util.Properties;
7 import java.io.InputStream;
8 import java.io.FileInputStream;
9 import java.io.FileNotFoundException;
10
11
12 /**
13  * Compiles CQL strings into parse trees of CQLNode subtypes.
14  *
15  * @version     $Id: CQLParser.java,v 1.39 2007-08-06 15:54:48 mike Exp $
16  * @see         <A href="http://zing.z3950.org/cql/index.html"
17  *                      >http://zing.z3950.org/cql/index.html</A>
18  */
19 public class CQLParser {
20     private CQLLexer lexer;
21     private int compat; // When false, implement CQL 1.2
22     public static int V1POINT1 = 12368;
23     public static int V1POINT2 = 12369;
24     public static int V1POINT1SORT = 12370;
25
26     static private boolean DEBUG = false;
27     static private boolean LEXDEBUG = false;
28
29     /**
30      * The new parser implements a dialect of CQL specified by the
31      * <tt>compat</tt> argument:
32      * <ul>
33      *  <li>V1POINT1 - CQL version 1.1
34      *  </li>
35      *  <li>V1POINT2 - CQL version 1.2
36      *  </li>
37      *  <li>V1POINT1SORT - CQL version 1.1 but including
38      *          <tt>sortby</tt> as specified for CQL 1.2.
39      *  </li>
40      * </ul>
41      */
42     public CQLParser(int compat) {
43         this.compat = compat;
44     }
45
46     /**
47      * The new parser implements CQL 1.2
48      */
49     public CQLParser() {
50         this.compat = V1POINT2;
51     }
52
53     private static void debug(String str) {
54         if (DEBUG)
55             System.err.println("PARSEDEBUG: " + str);
56     }
57
58     /**
59      * Compiles a CQL query.
60      * <P>
61      * The resulting parse tree may be further processed by hand (see
62      * the individual node-types' documentation for details on the
63      * data structure) or, more often, simply rendered out in the
64      * desired form using one of the back-ends.  <TT>toCQL()</TT>
65      * returns a decompiled CQL query equivalent to the one that was
66      * compiled in the first place; <TT>toXCQL()</TT> returns an
67      * XML snippet representing the query; and <TT>toPQF()</TT>
68      * returns the query rendered in Index Data's Prefix Query
69      * Format.
70      *
71      * @param cql       The query
72      * @return          A CQLNode object which is the root of a parse
73      * tree representing the query.  */
74     public CQLNode parse(String cql)
75         throws CQLParseException, IOException {
76         lexer = new CQLLexer(cql, LEXDEBUG);
77
78         lexer.nextToken();
79         debug("about to parseQuery()");
80         CQLNode root = parseTopLevelPrefixes("cql.serverChoice",
81                 new CQLRelation(compat == V1POINT2 ? "=" : "scr"));
82         if (lexer.ttype != lexer.TT_EOF)
83             throw new CQLParseException("junk after end: " + lexer.render());
84
85         return root;
86     }
87
88     private CQLNode parseTopLevelPrefixes(String index, CQLRelation relation)
89         throws CQLParseException, IOException {
90         debug("top-level prefix mapping");
91
92         if (lexer.ttype == '>') {
93             return parsePrefix(index, relation, true);
94         }
95
96         CQLNode node = parseQuery(index, relation);
97         if ((compat == V1POINT2 || compat == V1POINT1SORT) &&
98             lexer.ttype == lexer.TT_SORTBY) {
99             match(lexer.ttype);
100             debug("sortspec");
101
102             CQLSortNode sortnode = new CQLSortNode(node);
103             while (lexer.ttype != lexer.TT_EOF) {
104                 String sortindex = matchSymbol("sort index");
105                 ModifierSet ms = gatherModifiers(sortindex);
106                 sortnode.addSortIndex(ms);
107             }
108
109             if (sortnode.keys.size() == 0) {
110                 throw new CQLParseException("no sort keys");
111             }
112
113             node = sortnode;
114         }
115
116         return node;
117     }
118
119     private CQLNode parseQuery(String index, CQLRelation relation)
120         throws CQLParseException, IOException {
121         debug("in parseQuery()");
122
123         CQLNode term = parseTerm(index, relation);
124         while (lexer.ttype != lexer.TT_EOF &&
125                lexer.ttype != ')' &&
126                lexer.ttype != lexer.TT_SORTBY) {
127             if (lexer.ttype == lexer.TT_AND ||
128                 lexer.ttype == lexer.TT_OR ||
129                 lexer.ttype == lexer.TT_NOT ||
130                 lexer.ttype == lexer.TT_PROX) {
131                 int type = lexer.ttype;
132                 String val = lexer.sval;
133                 match(type);
134                 ModifierSet ms = gatherModifiers(val);
135                 CQLNode term2 = parseTerm(index, relation);
136                 term = ((type == lexer.TT_AND) ? new CQLAndNode(term, term2, ms) :
137                         (type == lexer.TT_OR)  ? new CQLOrNode (term, term2, ms) :
138                         (type == lexer.TT_NOT) ? new CQLNotNode(term, term2, ms) :
139                                                  new CQLProxNode(term, term2, ms));
140             } else {
141                 throw new CQLParseException("expected boolean, got " +
142                                             lexer.render());
143             }
144         }
145
146         debug("no more ops");
147         return term;
148     }
149
150     private ModifierSet gatherModifiers(String base)
151         throws CQLParseException, IOException {
152         debug("in gatherModifiers()");
153
154         ModifierSet ms = new ModifierSet(base);
155         while (lexer.ttype == '/') {
156             match('/');
157             if (lexer.ttype != lexer.TT_WORD)
158                 throw new CQLParseException("expected modifier, "
159                                             + "got " + lexer.render());
160             String type = lexer.sval.toLowerCase();
161             match(lexer.ttype);
162             if (!isRelation()) {
163                 // It's a simple modifier consisting of type only
164                 ms.addModifier(type);
165             } else {
166                 // It's a complex modifier of the form type=value
167                 String comparision = lexer.render(lexer.ttype, false);
168                 match(lexer.ttype);
169                 String value = matchSymbol("modifier value");
170                 ms.addModifier(type, comparision, value);
171             }
172         }
173
174         return ms;
175     }
176
177     private CQLNode parseTerm(String index, CQLRelation relation)
178         throws CQLParseException, IOException {
179         debug("in parseTerm()");
180
181         String word;
182         while (true) {
183             if (lexer.ttype == '(') {
184                 debug("parenthesised term");
185                 match('(');
186                 CQLNode expr = parseQuery(index, relation);
187                 match(')');
188                 return expr;
189             } else if (lexer.ttype == '>') {
190                 return parsePrefix(index, relation, false);
191             }
192
193             debug("non-parenthesised term");
194             word = matchSymbol("index or term");
195             if (!isRelation() && lexer.ttype != lexer.TT_WORD)
196                 break;
197
198             index = word;
199             String relstr = (lexer.ttype == lexer.TT_WORD ?
200                              lexer.sval : lexer.render(lexer.ttype, false));
201             relation = new CQLRelation(relstr);
202             match(lexer.ttype);
203             ModifierSet ms = gatherModifiers(relstr);
204             relation.setModifiers(ms);
205             debug("index='" + index + ", " +
206                   "relation='" + relation.toCQL() + "'");
207         }
208
209         CQLTermNode node = new CQLTermNode(index, relation, word);
210         debug("made term node " + node.toCQL());
211         return node;
212     }
213
214     private CQLNode parsePrefix(String index, CQLRelation relation,
215                                 boolean topLevel)
216         throws CQLParseException, IOException {
217         debug("prefix mapping");
218
219         match('>');
220         String name = null;
221         String identifier = matchSymbol("prefix-name");
222         if (lexer.ttype == '=') {
223             match('=');
224             name = identifier;
225             identifier = matchSymbol("prefix-identifer");
226         }
227         CQLNode node = topLevel ?
228             parseTopLevelPrefixes(index, relation) :
229             parseQuery(index, relation);
230
231         return new CQLPrefixNode(name, identifier, node);
232     }
233
234     // Checks for a relation
235     private boolean isRelation() {
236         debug("isRelation: checking ttype=" + lexer.ttype +
237               " (" + lexer.render() + ")");
238         return (lexer.ttype == '<' ||
239                 lexer.ttype == '>' ||
240                 lexer.ttype == '=' ||
241                 lexer.ttype == lexer.TT_LE ||
242                 lexer.ttype == lexer.TT_GE ||
243                 lexer.ttype == lexer.TT_NE ||
244                 lexer.ttype == lexer.TT_EQEQ);
245     }
246
247     private void match(int token)
248         throws CQLParseException, IOException {
249         debug("in match(" + lexer.render(token, true) + ")");
250         if (lexer.ttype != token)
251             throw new CQLParseException("expected " +
252                                         lexer.render(token, true) +
253                                         ", " + "got " + lexer.render());
254         int tmp = lexer.nextToken();
255         debug("match() got token=" + lexer.ttype + ", " +
256               "nval=" + lexer.nval + ", sval='" + lexer.sval + "'" +
257               " (tmp=" + tmp + ")");
258     }
259
260     private String matchSymbol(String expected)
261         throws CQLParseException, IOException {
262
263         debug("in matchSymbol()");
264         if (lexer.ttype == lexer.TT_WORD ||
265             lexer.ttype == lexer.TT_NUMBER ||
266             lexer.ttype == '"' ||
267             // The following is a complete list of keywords.  Because
268             // they're listed here, they can be used unquoted as
269             // indexes, terms, prefix names and prefix identifiers.
270             // ### Instead, we should ask the lexer whether what we
271             // have is a keyword, and let the knowledge reside there.
272             lexer.ttype == lexer.TT_AND ||
273             lexer.ttype == lexer.TT_OR ||
274             lexer.ttype == lexer.TT_NOT ||
275             lexer.ttype == lexer.TT_PROX ||
276             lexer.ttype == lexer.TT_SORTBY) {
277             String symbol = (lexer.ttype == lexer.TT_NUMBER) ?
278                 lexer.render() : lexer.sval;
279             match(lexer.ttype);
280             return symbol;
281         }
282
283         throw new CQLParseException("expected " + expected + ", " +
284                                     "got " + lexer.render());
285     }
286
287
288     /**
289      * Simple test-harness for the CQLParser class.
290      * <P>
291      * Reads a CQL query either from its command-line argument, if
292      * there is one, or standard input otherwise.  So these two
293      * invocations are equivalent:
294      * <PRE>
295      *  CQLParser 'au=(Kerninghan or Ritchie) and ti=Unix'
296      *  echo au=(Kerninghan or Ritchie) and ti=Unix | CQLParser
297      * </PRE>
298      * The test-harness parses the supplied query and renders is as
299      * XCQL, so that both of the invocations above produce the
300      * following output:
301      * <PRE>
302      *  &lt;triple&gt;
303      *    &lt;boolean&gt;
304      *      &lt;value&gt;and&lt;/value&gt;
305      *    &lt;/boolean&gt;
306      *    &lt;triple&gt;
307      *      &lt;boolean&gt;
308      *        &lt;value&gt;or&lt;/value&gt;
309      *      &lt;/boolean&gt;
310      *      &lt;searchClause&gt;
311      *        &lt;index&gt;au&lt;/index&gt;
312      *        &lt;relation&gt;
313      *          &lt;value&gt;=&lt;/value&gt;
314      *        &lt;/relation&gt;
315      *        &lt;term&gt;Kerninghan&lt;/term&gt;
316      *      &lt;/searchClause&gt;
317      *      &lt;searchClause&gt;
318      *        &lt;index&gt;au&lt;/index&gt;
319      *        &lt;relation&gt;
320      *          &lt;value&gt;=&lt;/value&gt;
321      *        &lt;/relation&gt;
322      *        &lt;term&gt;Ritchie&lt;/term&gt;
323      *      &lt;/searchClause&gt;
324      *    &lt;/triple&gt;
325      *    &lt;searchClause&gt;
326      *      &lt;index&gt;ti&lt;/index&gt;
327      *      &lt;relation&gt;
328      *        &lt;value&gt;=&lt;/value&gt;
329      *      &lt;/relation&gt;
330      *      &lt;term&gt;Unix&lt;/term&gt;
331      *    &lt;/searchClause&gt;
332      *  &lt;/triple&gt;
333      * </PRE>
334      * <P>
335      * @param -1
336      *  CQL version 1.1 (default version 1.2)
337      * @param -d
338      *  Debug mode: extra output written to stderr.
339      * @param -c
340      *  Causes the output to be written in CQL rather than XCQL - that
341      *  is, a query equivalent to that which was input, is output.  In
342      *  effect, the test harness acts as a query canonicaliser.
343      * @return
344      *  The input query, either as XCQL [default] or CQL [if the
345      *  <TT>-c</TT> option is supplied].
346      */
347     public static void main (String[] args) {
348         char mode = 'x';        // x=XCQL, c=CQL, p=PQF
349         String pfile = null;
350
351         Vector<String> argv = new Vector<String>();
352         for (int i = 0; i < args.length; i++) {
353             argv.add(args[i]);
354         }
355
356         int compat = V1POINT2;
357         if (argv.size() > 0 && argv.get(0).equals("-1")) {
358             compat = V1POINT1;
359             argv.remove(0);
360         }
361
362         if (argv.size() > 0 && argv.get(0).equals("-d")) {
363             DEBUG = true;
364             argv.remove(0);
365         }
366
367         if (argv.size() > 0 && argv.get(0).equals("-c")) {
368             mode = 'c';
369             argv.remove(0);
370         } else if (argv.size() > 1 && argv.get(0).equals("-p")) {
371             mode = 'p';
372             argv.remove(0);
373             pfile = (String) argv.get(0);
374             argv.remove(0);
375         }
376
377         if (argv.size() > 1) {
378             System.err.println("Usage: CQLParser [-1] [-d] [-c] " +
379                                "[-p <pqf-properties> [<CQL-query>]");
380             System.err.println("If unspecified, query is read from stdin");
381             System.exit(1);
382         }
383
384         String cql;
385         if (argv.size() == 1) {
386             cql = (String) argv.get(0);
387         } else {
388             byte[] bytes = new byte[10000];
389             try {
390                 // Read in the whole of standard input in one go
391                 int nbytes = System.in.read(bytes);
392             } catch (IOException ex) {
393                 System.err.println("Can't read query: " + ex.getMessage());
394                 System.exit(2);
395             }
396             cql = new String(bytes);
397         }
398
399         CQLParser parser = new CQLParser(compat);
400         CQLNode root = null;
401         try {
402             root = parser.parse(cql);
403         } catch (CQLParseException ex) {
404             System.err.println("Syntax error: " + ex.getMessage());
405             System.exit(3);
406         } catch (IOException ex) {
407             System.err.println("Can't compile query: " + ex.getMessage());
408             System.exit(4);
409         }
410
411         try {
412             if (mode == 'c') {
413                 System.out.println(root.toCQL());
414             } else if (mode == 'p') {
415                 InputStream f = new FileInputStream(pfile);
416                 if (f == null)
417                     throw new FileNotFoundException(pfile);
418
419                 Properties config = new Properties();
420                 config.load(f);
421                 f.close();
422                 System.out.println(root.toPQF(config));
423             } else {
424                 System.out.print(root.toXCQL(0));
425             }
426         } catch (IOException ex) {
427             System.err.println("Can't render query: " + ex.getMessage());
428             System.exit(5);
429         } catch (UnknownIndexException ex) {
430             System.err.println("Unknown index: " + ex.getMessage());
431             System.exit(6);
432         } catch (UnknownRelationException ex) {
433             System.err.println("Unknown relation: " + ex.getMessage());
434             System.exit(7);
435         } catch (UnknownRelationModifierException ex) {
436             System.err.println("Unknown relation modifier: " +
437                                ex.getMessage());
438             System.exit(8);
439         } catch (UnknownPositionException ex) {
440             System.err.println("Unknown position: " + ex.getMessage());
441             System.exit(9);
442         } catch (PQFTranslationException ex) {
443             // We catch all of this class's subclasses, so --
444             throw new Error("can't get a PQFTranslationException");
445         }
446     }
447 }