24a2d2746965ba0e32f6fff7e8ac572668c534ab
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLNode.java
1 // $Id: CQLNode.java,v 1.11 2002-11-06 00:05:58 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.util.Properties;
5
6
7 /**
8  * Represents a node in a CQL parse-tree.
9  *
10  * @version     $Id: CQLNode.java,v 1.11 2002-11-06 00:05:58 mike Exp $
11  */
12 public abstract class CQLNode {
13     CQLNode() {}                // prevent javadoc from documenting this
14
15     /**
16      * Translates a parse-tree into an XCQL document.
17      * <P>
18      * @param level
19      *  The number of levels to indent the top element of the XCQL
20      *  document.  This will typically be 0 when invoked by an
21      *  application; it takes higher values when this method is
22      *  invoked recursively for nodes further down the tree.
23      * @return
24      *  A String containing an XCQL document equivalent to the
25      *  parse-tree whose root is this node.
26      */
27     abstract public String toXCQL(int level);
28
29     /**
30      * Decompiles a parse-tree into a CQL query.
31      * <P>
32      * @return
33      *  A String containing a CQL query equivalent to the parse-tree
34      *  whose root is this node, so that compiling that query will
35      *  yield an identical tree.
36      */
37     abstract public String toCQL();
38
39     /**
40      * Renders a parse-tree into a Yaz-style PQF string.
41      * <P>
42      * @return
43      *  A String containing a PQF query equivalent to the parse-tree
44      *  whose root is this node.  This may be fed into the tool of
45      *  your choice to obtain a BER-encoded packet.
46      */
47     abstract public String toPQF(Properties config)
48         throws UnknownQualifierException, UnknownRelationException;
49
50     /**
51      * Returns a String of spaces for indenting to the specified level.
52      */
53     protected static String indent(int level) { return Utils.indent(level); }
54
55     /**
56      * Returns the argument String quoted for XML.
57      * For example, each occurrence of <TT>&lt;</TT> is translated to
58      * <TT>&amp;lt;</TT>.
59      */
60     protected static String xq(String str) { return Utils.xq(str); }
61 }