MtasSpanMatchAllQuery.java.html
9.54 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
<?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>MtasSpanMatchAllQuery.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">MtasSpanMatchAllQuery.java</span></div><h1>MtasSpanMatchAllQuery.java</h1><pre class="source lang-java linenums">package mtas.search.spans;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Set;
import mtas.codec.util.CodecInfo;
import mtas.search.similarities.MtasSimScorer;
import mtas.search.spans.util.MtasSpanQuery;
import mtas.search.spans.util.MtasSpanWeight;
import mtas.search.spans.util.MtasSpans;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.lucene.codecs.FieldsProducer;
import org.apache.lucene.index.IndexReaderContext;
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.similarities.Similarity.SimScorer;
/**
* The Class MtasSpanMatchAllQuery.
*/
public class MtasSpanMatchAllQuery extends MtasSpanQuery {
/** The log. */
<span class="fc" id="L32"> private static Log log = LogFactory.getLog(MtasSpanMatchAllQuery.class);</span>
/** The field. */
private String field;
/**
* Instantiates a new mtas span match all query.
*
* @param field the field
*/
public MtasSpanMatchAllQuery(String field) {
<span class="fc" id="L43"> super(1, 1);</span>
<span class="fc" id="L44"> this.field = field;</span>
<span class="fc" id="L45"> }</span>
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="fc" id="L54"> return field;</span>
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanQuery#createWeight(org.apache.lucene.
* search.IndexSearcher, boolean)
*/
@Override
public MtasSpanWeight createWeight(IndexSearcher searcher,
boolean needsScores) throws IOException {
// keep things simple
<span class="fc" id="L68"> return new SpanAllWeight(searcher, null);</span>
}
/**
* The Class SpanAllWeight.
*/
protected class SpanAllWeight 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 searcher. */
IndexSearcher searcher;
/**
* Instantiates a new span all weight.
*
* @param searcher the searcher
* @param termContexts the term contexts
* @throws IOException Signals that an I/O exception has occurred.
*/
public SpanAllWeight(IndexSearcher searcher,
<span class="fc" id="L93"> Map<Term, TermContext> termContexts) throws IOException {</span>
<span class="fc" id="L94"> super(MtasSpanMatchAllQuery.this, searcher, termContexts);</span>
<span class="fc" id="L95"> this.searcher = searcher;</span>
<span class="fc" id="L96"> }</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="L107"> Term term = new Term(field);</span>
<span class="nc bnc" id="L108" title="All 2 branches missed."> if (!contexts.containsKey(term)) {</span>
<span class="nc" id="L109"> IndexReaderContext topContext = searcher.getTopReaderContext();</span>
try {
<span class="nc" id="L111"> contexts.put(term, TermContext.build(topContext, term));</span>
<span class="nc" id="L112"> } catch (IOException e) {</span>
<span class="nc" id="L113"> log.debug(e);</span>
// fail
<span class="nc" id="L115"> }</span>
}
<span class="nc" id="L117"> }</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 {
try {
// get leafreader
<span class="fc" id="L132"> LeafReader r = context.reader();</span>
// get delegate
<span class="fc" id="L134"> Boolean hasMethod = true;</span>
<span class="fc bfc" id="L135" title="All 2 branches covered."> while (hasMethod) {</span>
<span class="fc" id="L136"> hasMethod = false;</span>
<span class="fc" id="L137"> Method[] methods = r.getClass().getMethods();</span>
<span class="fc bfc" id="L138" title="All 2 branches covered."> for (Method m : methods) {</span>
<span class="fc bfc" id="L139" title="All 2 branches covered."> if (m.getName().equals(METHOD_GET_DELEGATE)) {</span>
<span class="fc" id="L140"> hasMethod = true;</span>
<span class="fc" id="L141"> r = (LeafReader) m.invoke(r, (Object[]) null);</span>
<span class="fc" id="L142"> break;</span>
}
}
<span class="fc" id="L145"> }</span>
// get fieldsproducer
<span class="fc" id="L147"> Method fpm = r.getClass().getMethod(METHOD_GET_POSTINGS_READER,</span>
(Class<?>[]) null);
<span class="fc" id="L149"> FieldsProducer fp = (FieldsProducer) fpm.invoke(r, (Object[]) null);</span>
// get MtasFieldsProducer using terms
<span class="fc" id="L151"> Terms t = fp.terms(field);</span>
<span class="pc bpc" id="L152" title="1 of 2 branches missed."> if (t == null) {</span>
<span class="nc" id="L153"> return new MtasSpanMatchNoneSpans(MtasSpanMatchAllQuery.this);</span>
} else {
<span class="fc" id="L155"> CodecInfo mtasCodecInfo = CodecInfo.getCodecInfoFromTerms(t);</span>
<span class="fc" id="L156"> return new MtasSpanMatchAllSpans(MtasSpanMatchAllQuery.this,</span>
mtasCodecInfo, field);
}
<span class="nc" id="L159"> } catch (InvocationTargetException | IllegalAccessException</span>
| NoSuchMethodException e) {
<span class="nc" id="L161"> 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) {
// don't do anything
<span class="nc" id="L174"> }</span>
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanWeight#getSimScorer(org.apache.lucene.
* index.LeafReaderContext)
*/
@Override
public SimScorer getSimScorer(LeafReaderContext context) {
<span class="nc" id="L185"> return new MtasSimScorer();</span>
}
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanTermQuery#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L198"> StringBuilder buffer = new StringBuilder();</span>
<span class="nc" id="L199"> buffer.append(this.getClass().getSimpleName() + "([])");</span>
<span class="nc" id="L200"> 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="L210" title="All 2 branches covered."> if (this == obj)</span>
<span class="fc" id="L211"> return true;</span>
<span class="pc bpc" id="L212" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L213"> return false;</span>
<span class="fc bfc" id="L214" title="All 2 branches covered."> if (getClass() != obj.getClass())</span>
<span class="fc" id="L215"> return false;</span>
<span class="fc" id="L216"> final MtasSpanMatchAllQuery that = (MtasSpanMatchAllQuery) obj;</span>
<span class="fc" id="L217"> return field.equals(that.field);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="fc" id="L227"> int h = this.getClass().getSimpleName().hashCode();</span>
<span class="fc" id="L228"> h = (h * 7) ^ field.hashCode();</span>
<span class="fc" id="L229"> 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>