MtasSpanWildcardQuery.java.html
8.36 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
<?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>MtasSpanWildcardQuery.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.search.spans</a> > <span class="el_source">MtasSpanWildcardQuery.java</span></div><h1>MtasSpanWildcardQuery.java</h1><pre class="source lang-java linenums">package mtas.search.spans;
import java.io.IOException;
import mtas.analysis.token.MtasToken;
import mtas.codec.util.CodecUtil;
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.Query;
import org.apache.lucene.search.WildcardQuery;
import org.apache.lucene.search.spans.SpanMultiTermQueryWrapper;
import org.apache.lucene.search.spans.SpanOrQuery;
import org.apache.lucene.search.spans.SpanQuery;
import org.apache.lucene.search.spans.SpanTermQuery;
import org.apache.lucene.search.spans.SpanWeight;
/**
* The Class MtasSpanWildcardQuery.
*/
public class MtasSpanWildcardQuery extends MtasSpanQuery {
/** The Constant MTAS_WILDCARD_EXPAND_BOUNDARY. */
private static final int MTAS_WILDCARD_EXPAND_BOUNDARY = 1000000;
/** The prefix. */
private String prefix;
/** The value. */
private String value;
/** The single position. */
private boolean singlePosition;
/** The term. */
private Term term;
/** The query. */
private SpanMultiTermQueryWrapper<WildcardQuery> query;
/**
* Instantiates a new mtas span wildcard query.
*
* @param term the term
*/
public MtasSpanWildcardQuery(Term term) {
<span class="nc" id="L49"> this(term, true);</span>
<span class="nc" id="L50"> }</span>
/**
* Instantiates a new mtas span wildcard query.
*
* @param term the term
* @param singlePosition the single position
*/
public MtasSpanWildcardQuery(Term term, boolean singlePosition) {
<span class="nc bnc" id="L59" title="All 4 branches missed."> super(singlePosition?1:null, singlePosition?1:null);</span>
<span class="nc" id="L60"> WildcardQuery wcq = new WildcardQuery(term);</span>
<span class="nc" id="L61"> query = new SpanMultiTermQueryWrapper<WildcardQuery>(wcq);</span>
<span class="nc" id="L62"> this.term = term;</span>
<span class="nc" id="L63"> this.singlePosition = singlePosition;</span>
<span class="nc" id="L64"> int i = term.text().indexOf(MtasToken.DELIMITER);</span>
<span class="nc bnc" id="L65" title="All 2 branches missed."> if (i >= 0) {</span>
<span class="nc" id="L66"> prefix = term.text().substring(0, i);</span>
<span class="nc" id="L67"> value = term.text().substring((i + MtasToken.DELIMITER.length()));</span>
<span class="nc bnc" id="L68" title="All 2 branches missed."> value = (value.length() > 0) ? value : null;</span>
} else {
<span class="nc" id="L70"> prefix = term.text();</span>
<span class="nc" id="L71"> value = null;</span>
}
<span class="nc" id="L73"> }</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="nc" id="L83"> Query q = query.rewrite(reader);</span>
<span class="nc bnc" id="L84" title="All 2 branches missed."> if (q instanceof SpanOrQuery) {</span>
<span class="nc" id="L85"> SpanQuery[] clauses = ((SpanOrQuery) q).getClauses();</span>
<span class="nc bnc" id="L86" title="All 2 branches missed."> if (clauses.length > MTAS_WILDCARD_EXPAND_BOUNDARY) {</span>
// forward index solution ?
<span class="nc" id="L88"> throw new IOException("Wildcard expression \""</span>
<span class="nc" id="L89"> + CodecUtil.termValue(term.text()) + "\" expands to "</span>
+ clauses.length + " terms, too many (boundary "
+ MTAS_WILDCARD_EXPAND_BOUNDARY + ")!");
}
<span class="nc" id="L93"> MtasSpanQuery[] newClauses = new MtasSpanQuery[clauses.length];</span>
<span class="nc bnc" id="L94" title="All 2 branches missed."> for (int i = 0; i < clauses.length; i++) {</span>
<span class="nc bnc" id="L95" title="All 2 branches missed."> if (clauses[i] instanceof SpanTermQuery) {</span>
<span class="nc" id="L96"> newClauses[i] = new MtasSpanTermQuery((SpanTermQuery) clauses[i],</span>
singlePosition);
} else {
<span class="nc" id="L99"> throw new IOException("no SpanTermQuery after rewrite");</span>
}
}
<span class="nc" id="L102"> return new MtasSpanOrQuery(newClauses).rewrite(reader);</span>
} else {
<span class="nc" id="L104"> throw new IOException("no SpanOrQuery after rewrite");</span>
}
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanTermQuery#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L116"> StringBuilder buffer = new StringBuilder();</span>
<span class="nc" id="L117"> buffer.append(this.getClass().getSimpleName() + "([");</span>
<span class="nc bnc" id="L118" title="All 2 branches missed."> if (value == null) {</span>
<span class="nc" id="L119"> buffer.append(this.query.getField() + ":" + prefix);</span>
} else {
<span class="nc" id="L121"> buffer.append(this.query.getField() + ":" + prefix + "=" + value);</span>
}
<span class="nc" id="L123"> buffer.append("])");</span>
<span class="nc" id="L124"> return buffer.toString();</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="nc" id="L134"> return term.field();</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="L147"> return ((SpanQuery) searcher.rewrite(query)).createWeight(searcher,</span>
needsScores);
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="nc bnc" id="L158" title="All 2 branches missed."> if (this == obj)</span>
<span class="nc" id="L159"> return true;</span>
<span class="nc bnc" id="L160" title="All 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L161"> return false;</span>
<span class="nc bnc" id="L162" title="All 2 branches missed."> if (getClass() != obj.getClass())</span>
<span class="nc" id="L163"> return false;</span>
<span class="nc" id="L164"> final MtasSpanWildcardQuery that = (MtasSpanWildcardQuery) obj;</span>
<span class="nc bnc" id="L165" title="All 4 branches missed."> return term.equals(that.term) && singlePosition == that.singlePosition;</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="nc" id="L175"> int h = this.getClass().getSimpleName().hashCode();</span>
<span class="nc" id="L176"> h = (h * 7) ^ term.hashCode();</span>
<span class="nc bnc" id="L177" title="All 2 branches missed."> h += (singlePosition ? 1 : 0);</span>
<span class="nc" id="L178"> 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>