MtasCQLParserWordQuery.java.html
9.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MtasCQLParserWordQuery.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">MTAS</a> > <a href="index.source.html" class="el_package">mtas.parser.cql.util</a> > <span class="el_source">MtasCQLParserWordQuery.java</span></div><h1>MtasCQLParserWordQuery.java</h1><pre class="source lang-java linenums">package mtas.parser.cql.util;
import java.io.IOException;
import java.util.HashMap;
import java.util.HashSet;
import mtas.analysis.token.MtasToken;
import mtas.parser.cql.ParseException;
import mtas.search.spans.MtasSpanMatchNoneQuery;
import mtas.search.spans.MtasSpanOrQuery;
import mtas.search.spans.MtasSpanPrefixQuery;
import mtas.search.spans.MtasSpanRegexpQuery;
import mtas.search.spans.MtasSpanTermQuery;
import mtas.search.spans.MtasSpanWildcardQuery;
import mtas.search.spans.util.MtasSpanQuery;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.spans.SpanWeight;
/**
* The Class MtasCQLParserWordQuery.
*/
public class MtasCQLParserWordQuery extends MtasSpanQuery {
/** The query. */
MtasSpanQuery query;
/** The term. */
Term term;
/** The Constant MTAS_CQL_TERM_QUERY. */
public static final String MTAS_CQL_TERM_QUERY = "term";
/** The Constant MTAS_CQL_REGEXP_QUERY. */
public static final String MTAS_CQL_REGEXP_QUERY = "regexp";
/** The Constant MTAS_CQL_WILDCARD_QUERY. */
public static final String MTAS_CQL_WILDCARD_QUERY = "wildcard";
/** The Constant MTAS_CQL_VARIABLE_QUERY. */
public static final String MTAS_CQL_VARIABLE_QUERY = "variable";
/**
* Instantiates a new mtas CQL parser word query.
*
* @param field the field
* @param prefix the prefix
* @param variables the variables
*/
public MtasCQLParserWordQuery(String field, String prefix,
HashMap<String, String[]> variables) {
<span class="nc" id="L53"> super(1,1);</span>
<span class="nc" id="L54"> term = new Term(field, prefix + MtasToken.DELIMITER);</span>
<span class="nc" id="L55"> query = new MtasSpanPrefixQuery(term, true);</span>
<span class="nc" id="L56"> }</span>
/**
* Instantiates a new mtas CQL parser word query.
*
* @param field the field
* @param prefix the prefix
* @param value the value
* @param variables the variables
* @param usedVariables the used variables
* @throws ParseException the parse exception
*/
public MtasCQLParserWordQuery(String field, String prefix, String value,
HashMap<String, String[]> variables, HashSet<String> usedVariables)
throws ParseException {
<span class="fc" id="L71"> this(field, prefix, value, MTAS_CQL_REGEXP_QUERY, variables, usedVariables);</span>
<span class="fc" id="L72"> }</span>
/**
* Instantiates a new mtas CQL parser word query.
*
* @param field the field
* @param prefix the prefix
* @param value the value
* @param type the type
* @param variables the variables
* @param usedVariables the used variables
* @throws ParseException the parse exception
*/
public MtasCQLParserWordQuery(String field, String prefix, String value,
String type, HashMap<String, String[]> variables,
HashSet<String> usedVariables) throws ParseException {
<span class="fc" id="L88"> super(1,1);</span>
<span class="fc" id="L89"> String termBase = prefix + MtasToken.DELIMITER + value;</span>
<span class="fc bfc" id="L90" title="All 2 branches covered."> if (type.equals(MTAS_CQL_REGEXP_QUERY)) {</span>
<span class="fc" id="L91"> term = new Term(field, termBase + "\u0000*");</span>
<span class="fc" id="L92"> query = new MtasSpanRegexpQuery(term, true);</span>
<span class="pc bpc" id="L93" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_WILDCARD_QUERY)) {</span>
<span class="nc" id="L94"> term = new Term(field, termBase);</span>
<span class="nc" id="L95"> query = new MtasSpanWildcardQuery(term, true);</span>
<span class="pc bpc" id="L96" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_TERM_QUERY)) {</span>
<span class="nc" id="L97"> term = new Term(field, "\"" + termBase.replace("\"", "\"\\\"\"") + "\"\u0000*");</span>
<span class="nc" id="L98"> query = new MtasSpanRegexpQuery(term, true);</span>
<span class="pc bpc" id="L99" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_VARIABLE_QUERY)) {</span>
<span class="pc bpc" id="L100" title="3 of 6 branches missed."> if (value != null && variables != null && variables.containsKey(value)</span>
<span class="pc bpc" id="L101" title="1 of 2 branches missed."> && variables.get(value) != null) {</span>
<span class="pc bpc" id="L102" title="1 of 2 branches missed."> if (usedVariables.contains(value)) {</span>
<span class="nc" id="L103"> throw new ParseException(</span>
"variable $" + value + " should be used exactly one time");
} else {
<span class="fc" id="L106"> usedVariables.add(value);</span>
}
<span class="fc" id="L108"> String[] list = variables.get(value);</span>
<span class="fc" id="L109"> MtasSpanQuery[] queries = new MtasSpanQuery[list.length];</span>
<span class="fc" id="L110"> term = new Term(field, prefix + MtasToken.DELIMITER);</span>
<span class="fc bfc" id="L111" title="All 2 branches covered."> for (int i = 0; i < list.length; i++) {</span>
<span class="fc" id="L112"> termBase = prefix + MtasToken.DELIMITER + list[i];</span>
<span class="fc" id="L113"> term = new Term(field, "\"" + termBase + "\"\u0000*");</span>
<span class="fc" id="L114"> queries[i] = new MtasSpanRegexpQuery(term, true);</span>
}
<span class="pc bpc" id="L116" title="1 of 2 branches missed."> if (queries.length == 0) {</span>
<span class="nc" id="L117"> query = new MtasSpanMatchNoneQuery(field);</span>
<span class="pc bpc" id="L118" title="1 of 2 branches missed."> } else if (queries.length > 1) {</span>
<span class="fc" id="L119"> query = new MtasSpanOrQuery(queries);</span>
} else {
<span class="nc" id="L121"> query = queries[0];</span>
}
<span class="fc" id="L123"> } else {</span>
<span class="nc" id="L124"> throw new ParseException("variable $" + value + " not defined");</span>
}
} else {
<span class="nc" id="L127"> term = new Term(field, prefix + MtasToken.DELIMITER + value);</span>
<span class="nc" id="L128"> query = new MtasSpanTermQuery(term, true);</span>
}
<span class="fc" id="L130"> }</span>
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="fc" id="L139"> return term.field();</span>
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.Query#rewrite(org.apache.lucene.index.IndexReader)
*/
@Override
public MtasSpanQuery rewrite(IndexReader reader) throws IOException {
<span class="fc" id="L150"> return query.rewrite(reader);</span>
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanQuery#createWeight(org.apache.lucene.
* search.IndexSearcher, boolean)
*/
@Override
public SpanWeight createWeight(IndexSearcher searcher, boolean needsScores)
throws IOException {
<span class="nc" id="L163"> return query.createWeight(searcher, needsScores);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L173"> return query.toString(term.field());</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="pc bpc" id="L183" title="1 of 2 branches missed."> if (this == obj)</span>
<span class="nc" id="L184"> return true;</span>
<span class="pc bpc" id="L185" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L186"> return false;</span>
<span class="fc bfc" id="L187" title="All 2 branches covered."> if (getClass() != obj.getClass())</span>
<span class="fc" id="L188"> return false;</span>
<span class="fc" id="L189"> final MtasCQLParserWordQuery that = (MtasCQLParserWordQuery) obj;</span>
<span class="fc" id="L190"> return query.equals(that.query);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="fc" id="L200"> int h = this.getClass().getSimpleName().hashCode();</span>
<span class="fc" id="L201"> h = (h * 5) ^ term.hashCode();</span>
<span class="fc" id="L202"> h = (h * 7) ^ query.hashCode();</span>
<span class="fc" id="L203"> return h;</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>