Comment.
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLTermNode.java
index 4890737..841c139 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: CQLTermNode.java,v 1.15 2002-12-09 17:01:03 mike Exp $
+// $Id: CQLTermNode.java,v 1.23 2007-06-06 12:22:01 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.Properties;
@@ -12,7 +12,7 @@ import java.util.Vector;
  * these must be provided - you can't have a qualifier without a
  * relation or vice versa.
  *
- * @version    $Id: CQLTermNode.java,v 1.15 2002-12-09 17:01:03 mike Exp $
+ * @version    $Id: CQLTermNode.java,v 1.23 2007-06-06 12:22:01 mike Exp $
  */
 public class CQLTermNode extends CQLNode {
     private String qualifier;
@@ -34,11 +34,24 @@ public class CQLTermNode extends CQLNode {
     public CQLRelation getRelation() { return relation; }
     public String getTerm() { return term; }
 
+    private static boolean isResultSetQualifier(String qual) {
+       return (qual.equals("srw.resultSet") ||
+               qual.equals("srw.resultSetId") ||
+               qual.equals("srw.resultSetName"));
+    }
+
+    public String getResultSetName() {
+       if (isResultSetQualifier(qualifier))
+           return term;
+       else
+           return null;
+    }
+
     public String toXCQL(int level, Vector prefixes) {
        return (indent(level) + "<searchClause>\n" +
                renderPrefixes(level+1, prefixes) +
                indent(level+1) + "<index>" + xq(qualifier) + "</index>\n" +
-               relation.toXCQL(level+1, new Vector()) +
+               relation.toXCQL(level+1, new Vector<String>()) +
                indent(level+1) + "<term>" + xq(term) + "</term>\n" +
                indent(level) + "</searchClause>\n");
     }
@@ -48,7 +61,8 @@ public class CQLTermNode extends CQLNode {
        String quotedTerm = maybeQuote(term);
        String res = quotedTerm;
 
-       if (!qualifier.equalsIgnoreCase("srw.serverChoice")) {
+       if (qualifier != null &&
+           !qualifier.equalsIgnoreCase("srw.serverChoice")) {
            // ### We don't always need spaces around `relation'.
            res = quotedQualifier + " " + relation.toCQL() + " " + quotedTerm;
        }
@@ -60,7 +74,7 @@ public class CQLTermNode extends CQLNode {
     // regards truncation of the term and generation of truncation
     // attributes.  Change the interface to fix this.
     private Vector getAttrs(Properties config) throws PQFTranslationException {
-       Vector attrs = new Vector();
+       Vector<String> attrs = new Vector<String>();
 
        // Do this first so that if any other truncation or
        // completeness attributes are generated, they "overwrite"
@@ -134,9 +148,9 @@ public class CQLTermNode extends CQLNode {
     }
 
     public String toPQF(Properties config) throws PQFTranslationException {
-       if (qualifier.equals("srw.resultSet")) {
+       if (isResultSetQualifier(qualifier)) {
            // Special case: ignore relation, modifiers, wildcards, etc.
-           // ### Parallel code is required in toType1()
+           // There's parallel code in toType1BER()
            return "@set " + maybeQuote(term);
        }
 
@@ -159,6 +173,9 @@ public class CQLTermNode extends CQLNode {
     }
 
     static String maybeQuote(String str) {
+       if (str == null)
+          return null;
+
        // There _must_ be a better way to make this test ...
        if (str.length() == 0 ||
            str.indexOf('"') != -1 ||
@@ -176,7 +193,26 @@ public class CQLTermNode extends CQLNode {
        return str;
     }
 
-    public byte[] toType1(Properties config) throws PQFTranslationException {
+    public byte[] toType1BER(Properties config) throws PQFTranslationException {
+       if (isResultSetQualifier(qualifier)) {
+           // Special case: ignore relation, modifiers, wildcards, etc.
+           // There's parallel code in toPQF()
+           byte[] operand = new byte[term.length()+100];
+           int offset;
+           offset = putTag(CONTEXT, 0, CONSTRUCTED, operand, 0); // op
+           operand[offset++] = (byte)(0x80&0xff); // indefinite length
+           offset = putTag(CONTEXT, 31, PRIMITIVE, operand, offset); // ResultSetId
+           byte[] t = term.getBytes();
+           offset = putLen(t.length, operand, offset);
+           System.arraycopy(t, 0, operand, offset, t.length);
+           offset += t.length;
+           operand[offset++] = 0x00; // end of Operand
+           operand[offset++] = 0x00;
+           byte[] o = new byte[offset];
+           System.arraycopy(operand, 0, o, 0, offset);
+           return o;
+       }
+
        String text = term;
        if (text.length() > 0 && text.substring(0, 1).equals("^"))
            text = text.substring(1);
@@ -184,8 +220,7 @@ public class CQLTermNode extends CQLNode {
        if (len > 0 && text.substring(len-1, len).equals("^"))
            text = text.substring(0, len-1);
 
-       String attr, attrList, term = maybeQuote(text);
-       System.out.println("in CQLTermNode.toType101(): PQF=" + toPQF(config));
+       String attr, attrList, term = text;
        byte[] operand = new byte[text.length()+100];
        int i, j, offset, type, value;
        offset = putTag(CONTEXT, 0, CONSTRUCTED, operand, 0); // op
@@ -194,8 +229,6 @@ public class CQLTermNode extends CQLNode {
        operand[offset++] = (byte)(0x80&0xff); // indefinite length
        offset = putTag(CONTEXT, 44, CONSTRUCTED, operand, offset); // AttributeList
        operand[offset++] = (byte)(0x80&0xff); // indefinite length
-       offset = putTag(UNIVERSAL, SEQUENCE, CONSTRUCTED, operand, offset);
-       operand[offset++] = (byte)(0x80&0xff);
 
        Vector attrs = getAttrs(config);
        for(i = 0; i < attrs.size(); i++) {
@@ -205,6 +238,8 @@ public class CQLTermNode extends CQLNode {
            while (st.hasMoreTokens()) {
                attr = st.nextToken();
                j = attr.indexOf('=');
+               offset = putTag(UNIVERSAL, SEQUENCE, CONSTRUCTED, operand, offset);
+               operand[offset++] = (byte)(0x80&0xff);
                offset = putTag(CONTEXT, 120, PRIMITIVE, operand, offset);
                type = Integer.parseInt(attr.substring(0, j));
                offset = putLen(numLen(type), operand, offset);
@@ -214,10 +249,10 @@ public class CQLTermNode extends CQLNode {
                value = Integer.parseInt(attr.substring(j+1));
                offset = putLen(numLen(value), operand, offset);
                offset = putNum(value, operand, offset);
+               operand[offset++] = 0x00; // end of SEQUENCE
+               operand[offset++] = 0x00;
            }
        }
-       operand[offset++] = 0x00; // end of SEQUENCE
-       operand[offset++] = 0x00;
        operand[offset++] = 0x00; // end of AttributeList
        operand[offset++] = 0x00;