MtasMaximumExpandSpanQuery.java.html
12.9 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?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>MtasMaximumExpandSpanQuery.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.util</a> > <span class="el_source">MtasMaximumExpandSpanQuery.java</span></div><h1>MtasMaximumExpandSpanQuery.java</h1><pre class="source lang-java linenums">package mtas.search.spans.util;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Set;
import org.apache.lucene.codecs.FieldsProducer;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.TermContext;
import org.apache.lucene.index.Terms;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.spans.SpanWeight;
import org.apache.lucene.search.spans.Spans;
import mtas.codec.util.CodecInfo;
import mtas.search.spans.MtasSpanMatchNoneSpans;
/**
* The Class MtasMaximumExpandSpanQuery.
*/
public class MtasMaximumExpandSpanQuery extends MtasSpanQuery {
/** The query. */
MtasSpanQuery query;
/** The minimum left. */
int minimumLeft;
/** The maximum left. */
int maximumLeft;
/** The minimum right. */
int minimumRight;
/** The maximum right. */
int maximumRight;
/**
* Instantiates a new mtas maximum expand span query.
*
* @param query the query
* @param minimumLeft the minimum left
* @param maximumLeft the maximum left
* @param minimumRight the minimum right
* @param maximumRight the maximum right
*/
public MtasMaximumExpandSpanQuery(MtasSpanQuery query, int minimumLeft,
int maximumLeft, int minimumRight, int maximumRight) {
<span class="fc" id="L53"> super(null, null);</span>
<span class="fc" id="L54"> this.query = query;</span>
<span class="pc bpc" id="L55" title="4 of 8 branches missed."> if (minimumLeft > maximumLeft || minimumRight > maximumRight</span>
|| minimumLeft < 0 || minimumRight < 0) {
<span class="nc" id="L57"> throw new IllegalArgumentException();</span>
}
<span class="fc" id="L59"> this.minimumLeft = minimumLeft;</span>
<span class="fc" id="L60"> this.maximumLeft = maximumLeft;</span>
<span class="fc" id="L61"> this.minimumRight = minimumRight;</span>
<span class="fc" id="L62"> this.maximumRight = maximumRight;</span>
<span class="fc" id="L63"> Integer minimum = query.getMinimumWidth();</span>
<span class="fc" id="L64"> Integer maximum = query.getMaximumWidth();</span>
<span class="fc bfc" id="L65" title="All 2 branches covered."> if (minimum != null) {</span>
<span class="fc" id="L66"> minimum += minimumLeft + minimumRight;</span>
}
<span class="fc bfc" id="L68" title="All 2 branches covered."> if (maximum != null) {</span>
<span class="fc" id="L69"> maximum += maximumLeft + maximumRight;</span>
}
<span class="fc" id="L71"> setWidth(minimum, maximum);</span>
<span class="fc" id="L72"> }</span>
/*
* (non-Javadoc)
*
* @see
* mtas.search.spans.util.MtasSpanQuery#createWeight(org.apache.lucene.search.
* IndexSearcher, boolean)
*/
@Override
public SpanWeight createWeight(IndexSearcher searcher, boolean needsScores)
throws IOException {
<span class="fc" id="L84"> SpanWeight subWeight = query.createWeight(searcher, needsScores);</span>
<span class="pc bpc" id="L85" title="3 of 4 branches missed."> if (maximumLeft == 0 && maximumRight == 0) {</span>
<span class="nc" id="L86"> return subWeight;</span>
} else {
<span class="fc" id="L88"> return new MtasMaximumExpandWeight(subWeight, searcher, needsScores);</span>
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="fc" id="L99"> return query.getField();</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L109"> StringBuilder buffer = new StringBuilder();</span>
<span class="nc" id="L110"> buffer.append(this.getClass().getSimpleName() + "([");</span>
<span class="nc" id="L111"> buffer.append(query.toString(field) + "][" + minimumLeft + "," + maximumLeft</span>
+ "][" + minimumRight + "," + maximumRight + "])");
<span class="nc" id="L113"> return buffer.toString();</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="pc bpc" id="L123" title="1 of 2 branches missed."> if (this == obj)</span>
<span class="nc" id="L124"> return true;</span>
<span class="pc bpc" id="L125" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L126"> return false;</span>
<span class="pc bpc" id="L127" title="1 of 2 branches missed."> if (getClass() != obj.getClass())</span>
<span class="nc" id="L128"> return false;</span>
<span class="fc" id="L129"> final MtasMaximumExpandSpanQuery that = (MtasMaximumExpandSpanQuery) obj;</span>
boolean isEqual;
<span class="fc" id="L131"> isEqual = query.equals(that.query);</span>
<span class="pc bpc" id="L132" title="1 of 2 branches missed."> isEqual &= minimumLeft == that.minimumLeft;</span>
<span class="fc bfc" id="L133" title="All 2 branches covered."> isEqual &= maximumLeft == that.maximumLeft;</span>
<span class="fc bfc" id="L134" title="All 2 branches covered."> isEqual &= minimumRight == that.minimumRight;</span>
<span class="fc bfc" id="L135" title="All 2 branches covered."> isEqual &= maximumRight == that.maximumRight;</span>
<span class="fc" id="L136"> return isEqual;</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="nc" id="L146"> int h = Integer.rotateLeft(classHash(), 1);</span>
<span class="nc" id="L147"> h ^= query.hashCode();</span>
<span class="nc" id="L148"> h = Integer.rotateLeft(h, minimumLeft) + minimumLeft;</span>
<span class="nc" id="L149"> h ^= 2;</span>
<span class="nc" id="L150"> h = Integer.rotateLeft(h, maximumLeft) + maximumLeft;</span>
<span class="nc" id="L151"> h ^= 3;</span>
<span class="nc" id="L152"> h = Integer.rotateLeft(h, minimumRight) + minimumRight;</span>
<span class="nc" id="L153"> h ^= 5;</span>
<span class="nc" id="L154"> h = Integer.rotateLeft(h, maximumRight) + maximumRight;</span>
<span class="nc" id="L155"> return h;</span>
}
/*
* (non-Javadoc)
*
* @see mtas.search.spans.util.MtasSpanQuery#rewrite(org.apache.lucene.index.
* IndexReader)
*/
@Override
public MtasSpanQuery rewrite(IndexReader reader) throws IOException {
<span class="fc" id="L166"> MtasSpanQuery newQuery = query.rewrite(reader);</span>
<span class="pc bpc" id="L167" title="1 of 4 branches missed."> if (maximumLeft == 0 && maximumRight == 0) {</span>
<span class="fc" id="L168"> return newQuery;</span>
<span class="pc bpc" id="L169" title="1 of 2 branches missed."> } else if (!query.equals(newQuery)) {</span>
<span class="nc" id="L170"> return new MtasMaximumExpandSpanQuery(newQuery, minimumLeft, maximumLeft,</span>
minimumRight, maximumRight);
} else {
<span class="fc" id="L173"> return super.rewrite(reader);</span>
}
}
/**
* The Class MtasMaximumExpandWeight.
*/
private class MtasMaximumExpandWeight extends MtasSpanWeight {
/** The Constant METHOD_GET_DELEGATE. */
private static final String METHOD_GET_DELEGATE = "getDelegate";
/** The Constant METHOD_GET_POSTINGS_READER. */
private static final String METHOD_GET_POSTINGS_READER = "getPostingsReader";
/** The sub weight. */
SpanWeight subWeight;
/**
* Instantiates a new mtas maximum expand weight.
*
* @param subWeight the sub weight
* @param searcher the searcher
* @param needsScores the needs scores
* @throws IOException Signals that an I/O exception has occurred.
*/
public MtasMaximumExpandWeight(SpanWeight subWeight, IndexSearcher searcher,
<span class="fc" id="L200"> boolean needsScores) throws IOException {</span>
<span class="pc bpc" id="L201" title="1 of 2 branches missed."> super(MtasMaximumExpandSpanQuery.this, searcher,</span>
<span class="pc" id="L202"> needsScores ? getTermContexts(subWeight) : null);</span>
<span class="fc" id="L203"> this.subWeight = subWeight;</span>
<span class="fc" id="L204"> }</span>
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanWeight#extractTermContexts(java.util.
* Map)
*/
@Override
public void extractTermContexts(Map<Term, TermContext> contexts) {
<span class="nc" id="L215"> subWeight.extractTermContexts(contexts);</span>
<span class="nc" id="L216"> }</span>
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanWeight#getSpans(org.apache.lucene.
* index.LeafReaderContext,
* org.apache.lucene.search.spans.SpanWeight.Postings)
*/
@Override
public Spans getSpans(LeafReaderContext ctx, Postings requiredPostings)
throws IOException {
<span class="fc" id="L229"> Spans spans = subWeight.getSpans(ctx, requiredPostings);</span>
<span class="pc bpc" id="L230" title="3 of 4 branches missed."> if (maximumLeft == 0 && maximumRight == 0) {</span>
<span class="nc" id="L231"> return spans;</span>
} else {
try {
// get leafreader
<span class="fc" id="L235"> LeafReader r = ctx.reader();</span>
// get delegate
<span class="fc" id="L237"> Boolean hasMethod = true;</span>
<span class="fc bfc" id="L238" title="All 2 branches covered."> while (hasMethod) {</span>
<span class="fc" id="L239"> hasMethod = false;</span>
<span class="fc" id="L240"> Method[] methods = r.getClass().getMethods();</span>
<span class="fc bfc" id="L241" title="All 2 branches covered."> for (Method m : methods) {</span>
<span class="pc bpc" id="L242" title="1 of 2 branches missed."> if (m.getName().equals(METHOD_GET_DELEGATE)) {</span>
<span class="nc" id="L243"> hasMethod = true;</span>
<span class="nc" id="L244"> r = (LeafReader) m.invoke(r, (Object[]) null);</span>
<span class="nc" id="L245"> break;</span>
}
}
<span class="fc" id="L248"> } // get fieldsproducer</span>
<span class="fc" id="L249"> Method fpm = r.getClass().getMethod(METHOD_GET_POSTINGS_READER,</span>
(Class<?>[]) null);
<span class="fc" id="L251"> FieldsProducer fp = (FieldsProducer) fpm.invoke(r, (Object[]) null);</span>
// get MtasFieldsProducer using terms
<span class="fc" id="L253"> Terms t = fp.terms(field);</span>
<span class="pc bpc" id="L254" title="1 of 2 branches missed."> if (t == null) {</span>
<span class="nc" id="L255"> return new MtasSpanMatchNoneSpans();</span>
} else {
<span class="fc" id="L257"> CodecInfo mtasCodecInfo = CodecInfo.getCodecInfoFromTerms(t);</span>
<span class="fc" id="L258"> return new MtasMaximumExpandSpans(MtasMaximumExpandSpanQuery.this,</span>
<span class="fc" id="L259"> mtasCodecInfo, query.getField(), spans);</span>
}
<span class="nc" id="L261"> } catch (Exception e) {</span>
<span class="nc" id="L262"> throw new IOException("Can't get reader", e);</span>
}
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Weight#extractTerms(java.util.Set)
*/
@Override
public void extractTerms(Set<Term> terms) {
<span class="nc" id="L275"> subWeight.extractTerms(terms);</span>
<span class="nc" id="L276"> }</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>