- Change the XCQL output to include the nasty and redundant
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLTermNode.java
1 // $Id: CQLTermNode.java,v 1.9 2002-11-20 01:15:15 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.util.Properties;
5 import java.util.Vector;
6
7
8 /**
9  * Represents a terminal node in a CQL parse-tree.
10  * A term node consists of the term String itself, together with,
11  * optionally, a qualifier string and a relation.  Neither or both of
12  * these must be provided - you can't have a qualifier without a
13  * relation or vice versa.
14  *
15  * @version     $Id: CQLTermNode.java,v 1.9 2002-11-20 01:15:15 mike Exp $
16  */
17 public class CQLTermNode extends CQLNode {
18     private String qualifier;
19     private CQLRelation relation;
20     private String term;
21
22     /**
23      * Creates a new term node with the specified <TT>qualifier</TT>,
24      * <TT>relation</TT> and <TT>term</TT>.  The first two may be
25      * <TT>null</TT>, but the <TT>term</TT> may not.
26      */
27     public CQLTermNode(String qualifier, CQLRelation relation, String term) {
28         this.qualifier = qualifier;
29         this.relation = relation;
30         this.term = term;
31     }
32
33     public String getQualifier() { return qualifier; }
34     public CQLRelation getRelation() { return relation; }
35     public String getTerm() { return term; }
36
37     public String toXCQL(int level, Vector prefixes) {
38         return (indent(level) + "<searchClause>\n" +
39                 renderPrefixes(level+1, prefixes) +
40                 indent(level+1) + "<index>" + xq(qualifier) + "</index>\n" +
41                 relation.toXCQL(level+1, new Vector()) +
42                 indent(level+2) + "<term>" + xq(term) + "</term>\n" +
43                 // ######### ^-- this should be "1"
44                 indent(level) + "</searchClause>\n");
45     }
46
47     public String toCQL() {
48         String quotedQualifier = maybeQuote(qualifier);
49         String quotedTerm = maybeQuote(term);
50         String res = quotedTerm;
51
52         if (!qualifier.equalsIgnoreCase("srw.serverChoice")) {
53             // ### We don't always need spaces around `relation'.
54             res = quotedQualifier + " " + relation.toCQL() + " " + quotedTerm;
55         }
56
57         return res;
58     }
59
60     public String toPQF(Properties config) throws PQFTranslationException {
61         Vector attrs = new Vector();
62
63         String attr;
64         attr = config.getProperty("qualifier." + qualifier);
65         if (attr == null)
66             throw new UnknownQualifierException(qualifier);
67         attrs.add(attr);
68
69         String rel = relation.getBase();
70         if (rel.equals("=")) {
71             rel = "eq";
72         } else if (rel.equals("<=")) {
73             rel = "le";
74         } else if (rel.equals(">=")) {
75             rel = "ge";
76         }
77         // ### Handling "any" and "all" properly would involve breaking
78         // the string down into a bunch of individual words and ORring
79         // or ANDing them together.  Another day.
80         attr = config.getProperty("relation." + rel);
81         if (attr == null)
82             throw new UnknownRelationException(rel);
83         attrs.add(attr);
84
85         String[] mods = relation.getModifiers();
86         for (int i = 0; i < mods.length; i++) {
87             attr = config.getProperty("relationModifier." + mods[i]);
88             if (attr == null)
89                 throw new UnknownRelationModifierException(mods[i]);
90             attrs.add(attr);
91         }
92
93         String pos = "unanchored";
94         String text = term;
95         if (text.length() > 0 && text.substring(0, 1).equals("^")) {
96             text = text.substring(1);
97             pos = "anchored";
98         }
99         attr = config.getProperty("position." + pos);
100         if (attr == null)
101             throw new UnknownPositionException(pos);
102         attrs.add(attr);
103
104         attr = config.getProperty("structure." + rel);
105         if (attr == null)
106             attr = config.getProperty("structure.*");
107         attrs.add(attr);
108
109         attr = config.getProperty("always");
110         if (attr != null)
111             attrs.add(attr);
112
113         String s = "";
114         for (int i = 0; i < attrs.size(); i++) {
115             attr = (String) attrs.get(i);
116             s += "@attr " + Utils.replaceString(attr, " ", " @attr ") + " ";
117         }
118
119         return s + maybeQuote(text);
120     }
121
122     static String maybeQuote(String str) {
123         // There _must_ be a better way to make this test ...
124         if (str.length() == 0 ||
125             str.indexOf('"') != -1 ||
126             str.indexOf(' ') != -1 ||
127             str.indexOf('\t') != -1 ||
128             str.indexOf('=') != -1 ||
129             str.indexOf('<') != -1 ||
130             str.indexOf('>') != -1 ||
131             str.indexOf('/') != -1 ||
132             str.indexOf('(') != -1 ||
133             str.indexOf(')') != -1) {
134             str = '"' + Utils.replaceString(str, "\"", "\\\"") + '"';
135         }
136
137         return str;
138     }
139 }