MtasSpanEndQuery.java.html
7.62 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
<?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>MtasSpanEndQuery.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">MtasSpanEndQuery.java</span></div><h1>MtasSpanEndQuery.java</h1><pre class="source lang-java linenums">package mtas.search.spans;
import java.io.IOException;
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.search.IndexSearcher;
import org.apache.lucene.search.spans.SpanQuery;
import org.apache.lucene.search.spans.SpanWeight;
import mtas.search.spans.util.MtasSpanQuery;
import mtas.search.spans.util.MtasSpanWeight;
import mtas.search.spans.util.MtasSpans;
/**
* The Class MtasSpanEndQuery.
*/
public class MtasSpanEndQuery extends MtasSpanQuery {
/** The clause. */
private MtasSpanQuery clause;
/**
* Instantiates a new mtas span end query.
*
* @param query the query
*/
public MtasSpanEndQuery(MtasSpanQuery query) {
<span class="fc" id="L32"> super(0, 0);</span>
<span class="fc" id="L33"> clause = query;</span>
<span class="fc" id="L34"> }</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="L44"> MtasSpanQuery newClause = clause.rewrite(reader);</span>
<span class="fc bfc" id="L45" title="All 2 branches covered."> if (!newClause.equals(clause)) {</span>
<span class="fc" id="L46"> return new MtasSpanEndQuery(newClause).rewrite(reader);</span>
<span class="pc bpc" id="L47" title="1 of 2 branches missed."> } else if (newClause.getMaximumWidth() != null</span>
<span class="nc bnc" id="L48" title="All 2 branches missed."> && newClause.getMaximumWidth() == 0) {</span>
<span class="nc" id="L49"> return newClause;</span>
} else {
<span class="fc" id="L51"> return super.rewrite(reader);</span>
}
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.SpanTermQuery#toString(java.lang.String)
*/
@Override
public String toString(String field) {
<span class="nc" id="L63"> StringBuilder buffer = new StringBuilder();</span>
<span class="nc" id="L64"> buffer.append(this.getClass().getSimpleName() + "([");</span>
<span class="nc" id="L65"> buffer.append(clause.toString(field));</span>
<span class="nc" id="L66"> buffer.append("])");</span>
<span class="nc" id="L67"> return buffer.toString();</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.SpanQuery#getField()
*/
@Override
public String getField() {
<span class="fc" id="L77"> return clause.getField();</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 {
<span class="fc" id="L90"> SpanWeight spanWeight = ((SpanQuery) searcher.rewrite(clause))</span>
<span class="fc" id="L91"> .createWeight(searcher, needsScores);</span>
<span class="fc" id="L92"> return new SpanTermWeight(spanWeight, searcher);</span>
}
/**
* The Class SpanTermWeight.
*/
public class SpanTermWeight extends MtasSpanWeight {
/** The span weight. */
SpanWeight spanWeight;
/**
* Instantiates a new span term weight.
*
* @param spanWeight the span weight
* @param searcher the searcher
* @throws IOException Signals that an I/O exception has occurred.
*/
public SpanTermWeight(SpanWeight spanWeight, IndexSearcher searcher)
<span class="fc" id="L111"> throws IOException {</span>
<span class="fc" id="L112"> super(MtasSpanEndQuery.this, searcher, null);</span>
<span class="fc" id="L113"> this.spanWeight = spanWeight;</span>
<span class="fc" id="L114"> }</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="L125"> spanWeight.extractTermContexts(contexts);</span>
<span class="nc" id="L126"> }</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="L139"> return new MtasSpanEndSpans(MtasSpanEndQuery.this,</span>
<span class="fc" id="L140"> spanWeight.getSpans(context, requiredPostings));</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Weight#extractTerms(java.util.Set)
*/
@Override
public void extractTerms(Set<Term> terms) {
<span class="nc" id="L150"> spanWeight.extractTerms(terms);</span>
<span class="nc" id="L151"> }</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="fc bfc" id="L162" title="All 2 branches covered."> if (this == obj)</span>
<span class="fc" id="L163"> return true;</span>
<span class="pc bpc" id="L164" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L165"> return false;</span>
<span class="fc bfc" id="L166" title="All 2 branches covered."> if (getClass() != obj.getClass())</span>
<span class="fc" id="L167"> return false;</span>
<span class="fc" id="L168"> final MtasSpanEndQuery that = (MtasSpanEndQuery) obj;</span>
<span class="fc" id="L169"> return clause.equals(that.clause);</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.Query#hashCode()
*/
@Override
public int hashCode() {
<span class="nc" id="L179"> int h = this.getClass().getSimpleName().hashCode();</span>
<span class="nc" id="L180"> h = (h * 7) ^ clause.hashCode();</span>
<span class="nc" id="L181"> return h;</span>
}
/*
* (non-Javadoc)
*
* @see mtas.search.spans.util.MtasSpanQuery#disableTwoPhaseIterator()
*/
@Override
public void disableTwoPhaseIterator() {
<span class="fc" id="L191"> super.disableTwoPhaseIterator();</span>
<span class="fc" id="L192"> clause.disableTwoPhaseIterator();</span>
<span class="fc" id="L193"> }</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>