Hide some memebers as private, add getters
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / CQLPrefixNode.java
1 // $Id: CQLPrefixNode.java,v 1.10 2007-07-03 16:40:11 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.lang.String;
5 import java.util.Properties;
6 import java.util.Vector;
7
8
9 /**
10  * Represents a prefix node in a CQL parse-tree.
11  *
12  * @version     $Id: CQLPrefixNode.java,v 1.10 2007-07-03 16:40:11 mike Exp $
13  */
14 public class CQLPrefixNode extends CQLNode {
15     /**
16      * The prefix definition that governs the subtree.
17      */
18     private CQLPrefix prefix;
19
20     public CQLPrefix getPrefix() {
21         return prefix;
22     }
23
24     /**
25      * The root of a parse-tree representing the part of the query
26      * that is governed by this prefix definition.
27      */ 
28     private CQLNode subtree;
29
30     public CQLNode getSubtree() {
31       return subtree;
32     }
33
34     /**
35      * Creates a new CQLPrefixNode inducing a mapping from the
36      * specified index-set name to the specified identifier across
37      * the specified subtree.
38      */
39     public CQLPrefixNode(String name, String identifier, CQLNode subtree) {
40         this.prefix = new CQLPrefix(name, identifier);
41         this.subtree = subtree;
42     }
43
44     public String toXCQL(int level, Vector<CQLPrefix> prefixes,
45                          Vector<ModifierSet> sortkeys) {
46         Vector<CQLPrefix> tmp = (prefixes == null ?
47                                  new Vector<CQLPrefix>() :
48                                  new Vector<CQLPrefix>(prefixes));
49         tmp.add(prefix);
50         return subtree.toXCQL(level, tmp, sortkeys);
51     }
52
53     public String toCQL() {
54         // ### We don't always need parens around the subtree
55         if (prefix.name == null) {
56             return ">\"" + prefix.identifier + "\" " +
57                 "(" + subtree.toCQL() + ")";
58         } else {
59             return ">" + prefix.name + "=\"" + prefix.identifier + "\" " +
60                 "(" + subtree.toCQL() + ")";
61         }
62     }
63
64     public String toPQF(Properties config) throws PQFTranslationException {
65         // Prefixes and their identifiers don't actually play any role
66         // in PQF translation, since the meanings of the indexes,
67         // including their prefixes if any, are instead wired into
68         // `config'.
69         return subtree.toPQF(config);
70     }
71
72     public byte[] toType1BER(Properties config) throws PQFTranslationException {
73         // See comment on toPQF()
74         return subtree.toType1BER(config);
75     }
76 }