MtasSpanPrecededByQuery.java.html
13.2 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<?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>MtasSpanPrecededByQuery.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">MtasSpanPrecededByQuery.java</span></div><h1>MtasSpanPrecededByQuery.java</h1><pre class="source lang-java linenums">package mtas.search.spans;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.lucene.index.IndexReader;
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.search.spans.util.MtasSpanQuery;
import mtas.search.spans.util.MtasSpanWeight;
import mtas.search.spans.util.MtasSpans;
/**
* The Class MtasSpanPrecededByQuery.
*/
public class MtasSpanPrecededByQuery extends MtasSpanQuery {
/** The field. */
private String field;
/** The q 1. */
private MtasSpanQuery q1;
/** The q 2. */
private MtasSpanQuery q2;
/**
* Instantiates a new mtas span preceded by query.
*
* @param q1 the q 1
* @param q2 the q 2
*/
public MtasSpanPrecededByQuery(MtasSpanQuery q1, MtasSpanQuery q2) {
<span class="pc bpc" id="L43" title="2 of 4 branches missed."> super(q1 != null ? q1.getMinimumWidth() : null,</span>
<span class="pc" id="L44"> q1 != null ? q1.getMaximumWidth() : null);</span>
<span class="pc bpc" id="L45" title="2 of 4 branches missed."> if (q1 != null && (field = q1.getField()) != null) {</span>
<span class="pc bpc" id="L46" title="3 of 6 branches missed."> if (q2 != null && q2.getField() != null && !q2.getField().equals(field)) {</span>
<span class="nc" id="L47"> throw new IllegalArgumentException("Clauses must have same field.");</span>
}
<span class="nc bnc" id="L49" title="All 2 branches missed."> } else if (q2 != null) {</span>
<span class="nc" id="L50"> field = q2.getField();</span>
} else {
<span class="nc" id="L52"> field = null;</span>
}
<span class="fc" id="L54"> this.q1 = q1;</span>
<span class="fc" id="L55"> this.q2 = q2;</span>
<span class="fc" id="L56"> }</span>
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="fc" id="L65"> return field;</span>
}
/*
* (non-Javadoc)
*
* @see
* mtas.search.spans.util.MtasSpanQuery#createWeight(org.apache.lucene.search.
* IndexSearcher, boolean)
*/
@Override
public MtasSpanWeight createWeight(IndexSearcher searcher,
boolean needsScores) throws IOException {
<span class="pc bpc" id="L78" title="2 of 4 branches missed."> if (q1 == null || q2 == null) {</span>
<span class="nc" id="L79"> return null;</span>
} else {
<span class="fc" id="L81"> MtasSpanPrecededByQueryWeight w1 = new MtasSpanPrecededByQueryWeight(</span>
<span class="fc" id="L82"> q1.createWeight(searcher, needsScores));</span>
<span class="fc" id="L83"> MtasSpanPrecededByQueryWeight w2 = new MtasSpanPrecededByQueryWeight(</span>
<span class="fc" id="L84"> q2.createWeight(searcher, needsScores));</span>
// subWeights
<span class="fc" id="L86"> List<MtasSpanPrecededByQueryWeight> subWeights = new ArrayList<>();</span>
<span class="fc" id="L87"> subWeights.add(w1);</span>
<span class="fc" id="L88"> subWeights.add(w2);</span>
// return
<span class="pc bpc" id="L90" title="1 of 2 branches missed."> return new SpanPrecededByWeight(w1, w2, searcher,</span>
<span class="pc" id="L91"> needsScores ? getTermContexts(subWeights) : null);</span>
}
}
/**
* Gets the term contexts.
*
* @param items the items
* @return the term contexts
*/
protected Map<Term, TermContext> getTermContexts(
List<MtasSpanPrecededByQueryWeight> items) {
<span class="nc" id="L103"> List<SpanWeight> weights = new ArrayList<>();</span>
<span class="nc bnc" id="L104" title="All 2 branches missed."> for (MtasSpanPrecededByQueryWeight item : items) {</span>
<span class="nc" id="L105"> weights.add(item.spanWeight);</span>
<span class="nc" id="L106"> }</span>
<span class="nc" id="L107"> return getTermContexts(weights);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L117"> StringBuilder buffer = new StringBuilder();</span>
<span class="nc" id="L118"> buffer.append(this.getClass().getSimpleName() + "([");</span>
<span class="nc bnc" id="L119" title="All 2 branches missed."> if (q1 != null) {</span>
<span class="nc" id="L120"> buffer.append(q1.toString(q1.getField()));</span>
} else {
<span class="nc" id="L122"> buffer.append("null");</span>
}
<span class="nc" id="L124"> buffer.append(",");</span>
<span class="nc bnc" id="L125" title="All 2 branches missed."> if (q2 != null) {</span>
<span class="nc" id="L126"> buffer.append(q2.toString(q2.getField()));</span>
} else {
<span class="nc" id="L128"> buffer.append("null");</span>
}
<span class="nc" id="L130"> buffer.append("])");</span>
<span class="nc" id="L131"> return buffer.toString();</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="fc bfc" id="L141" title="All 2 branches covered."> if (this == obj)</span>
<span class="fc" id="L142"> return true;</span>
<span class="pc bpc" id="L143" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L144"> return false;</span>
<span class="pc bpc" id="L145" title="1 of 2 branches missed."> if (getClass() != obj.getClass())</span>
<span class="nc" id="L146"> return false;</span>
<span class="fc" id="L147"> final MtasSpanPrecededByQuery other = (MtasSpanPrecededByQuery) obj;</span>
<span class="pc bpc" id="L148" title="1 of 4 branches missed."> return q1.equals(other.q1) && q2.equals(other.q2);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="nc" id="L158"> int h = Integer.rotateLeft(classHash(), 1);</span>
<span class="nc" id="L159"> h ^= q1.hashCode();</span>
<span class="nc" id="L160"> h = Integer.rotateLeft(h, 1);</span>
<span class="nc" id="L161"> h ^= q2.hashCode();</span>
<span class="nc" id="L162"> 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="L173"> MtasSpanQuery newQ1 = (MtasSpanQuery) q1.rewrite(reader);</span>
<span class="fc" id="L174"> MtasSpanQuery newQ2 = (MtasSpanQuery) q2.rewrite(reader);</span>
<span class="pc bpc" id="L175" title="4 of 8 branches missed."> if (newQ1 == null || newQ1 instanceof MtasSpanMatchNoneQuery</span>
|| newQ2 == null || newQ2 instanceof MtasSpanMatchNoneQuery) {
<span class="nc" id="L177"> return new MtasSpanMatchNoneQuery(field);</span>
<span class="pc bpc" id="L178" title="1 of 4 branches missed."> } else if (!newQ1.equals(q1) || !newQ2.equals(q2)) {</span>
<span class="fc" id="L179"> return new MtasSpanPrecededByQuery(newQ1, newQ2).rewrite(reader);</span>
} else {
<span class="fc" id="L181"> return super.rewrite(reader);</span>
}
}
/*
* (non-Javadoc)
*
* @see mtas.search.spans.util.MtasSpanQuery#disableTwoPhaseIterator()
*/
@Override
public void disableTwoPhaseIterator() {
<span class="fc" id="L192"> super.disableTwoPhaseIterator();</span>
<span class="fc" id="L193"> q1.disableTwoPhaseIterator();</span>
<span class="fc" id="L194"> q2.disableTwoPhaseIterator();</span>
<span class="fc" id="L195"> }</span>
/**
* The Class SpanPrecededByWeight.
*/
protected class SpanPrecededByWeight extends MtasSpanWeight {
/** The w 1. */
MtasSpanPrecededByQueryWeight w1;
/** The w 2. */
MtasSpanPrecededByQueryWeight w2;
/**
* Instantiates a new span preceded by weight.
*
* @param w1 the w 1
* @param w2 the w 2
* @param searcher the searcher
* @param terms the terms
* @throws IOException Signals that an I/O exception has occurred.
*/
public SpanPrecededByWeight(MtasSpanPrecededByQueryWeight w1,
MtasSpanPrecededByQueryWeight w2, IndexSearcher searcher,
<span class="fc" id="L219"> Map<Term, TermContext> terms) throws IOException {</span>
<span class="fc" id="L220"> super(MtasSpanPrecededByQuery.this, searcher, terms);</span>
<span class="fc" id="L221"> this.w1 = w1;</span>
<span class="fc" id="L222"> this.w2 = w2;</span>
<span class="fc" id="L223"> }</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="L234"> w1.spanWeight.extractTermContexts(contexts);</span>
<span class="nc" id="L235"> w2.spanWeight.extractTermContexts(contexts);</span>
<span class="nc" id="L236"> }</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 MtasSpans getSpans(LeafReaderContext context,
Postings requiredPostings) throws IOException {
<span class="fc" id="L249"> Terms terms = context.reader().terms(field);</span>
<span class="pc bpc" id="L250" title="1 of 2 branches missed."> if (terms == null) {</span>
<span class="nc" id="L251"> return null; // field does not exist</span>
}
<span class="fc" id="L253"> MtasSpanPrecededByQuerySpans s1 = new MtasSpanPrecededByQuerySpans(</span>
MtasSpanPrecededByQuery.this,
<span class="fc" id="L255"> w1.spanWeight.getSpans(context, requiredPostings));</span>
<span class="fc" id="L256"> MtasSpanPrecededByQuerySpans s2 = new MtasSpanPrecededByQuerySpans(</span>
MtasSpanPrecededByQuery.this,
<span class="fc" id="L258"> w2.spanWeight.getSpans(context, requiredPostings));</span>
<span class="fc" id="L259"> return new MtasSpanPrecededBySpans(MtasSpanPrecededByQuery.this, s1, s2);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Weight#extractTerms(java.util.Set)
*/
@Override
public void extractTerms(Set<Term> terms) {
<span class="nc" id="L269"> w1.spanWeight.extractTerms(terms);</span>
<span class="nc" id="L270"> w2.spanWeight.extractTerms(terms);</span>
<span class="nc" id="L271"> }</span>
}
/**
* The Class MtasSpanPrecededByQuerySpans.
*/
protected static class MtasSpanPrecededByQuerySpans {
/** The spans. */
public Spans spans;
/**
* Instantiates a new mtas span preceded by query spans.
*
* @param query the query
* @param spans the spans
*/
public MtasSpanPrecededByQuerySpans(MtasSpanPrecededByQuery query,
<span class="fc" id="L290"> Spans spans) {</span>
<span class="pc bpc" id="L291" title="1 of 2 branches missed."> this.spans = spans != null ? spans : new MtasSpanMatchNoneSpans(query);</span>
<span class="fc" id="L292"> }</span>
}
/**
* The Class MtasSpanPrecededByQueryWeight.
*/
private static class MtasSpanPrecededByQueryWeight {
/** The span weight. */
public SpanWeight spanWeight;
/**
* Instantiates a new mtas span preceded by query weight.
*
* @param spanWeight the span weight
*/
<span class="fc" id="L309"> public MtasSpanPrecededByQueryWeight(SpanWeight spanWeight) {</span>
<span class="fc" id="L310"> this.spanWeight = spanWeight;</span>
<span class="fc" id="L311"> }</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>