MtasSpanSequenceSpans.java.html
49.4 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
<?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>MtasSpanSequenceSpans.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">MtasSpanSequenceSpans.java</span></div><h1>MtasSpanSequenceSpans.java</h1><pre class="source lang-java linenums">package mtas.search.spans;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Set;
import mtas.search.spans.MtasSpanSequenceQuery.MtasSpanSequenceQuerySpans;
import mtas.search.spans.util.MtasIgnoreItem;
import mtas.search.spans.util.MtasSpans;
import org.apache.lucene.search.spans.SpanCollector;
import org.apache.lucene.search.spans.Spans;
/**
* The Class MtasSpanSequenceSpans.
*/
<span class="pc bpc" id="L19" title="1 of 2 branches missed.">public class MtasSpanSequenceSpans extends MtasSpans {</span>
/** The queue spans. */
private List<QueueItem> queueSpans;
/** The ignore item. */
private MtasIgnoreItem ignoreItem;
/** The queue matches. */
private List<Match> queueMatches;
/** The doc id. */
private int docId;
/** The current position. */
private int currentPosition;
/** The cost. */
private long cost;
/** The current match. */
Match currentMatch;
/**
* Instantiates a new mtas span sequence spans.
*
* @param setSequenceSpans the set sequence spans
* @param ignoreSpans the ignore spans
* @param maximumIgnoreLength the maximum ignore length
*/
public MtasSpanSequenceSpans(
List<MtasSpanSequenceQuerySpans> setSequenceSpans, Spans ignoreSpans,
Integer maximumIgnoreLength) {
<span class="fc" id="L52"> super();</span>
<span class="fc" id="L53"> docId = -1;</span>
<span class="fc" id="L54"> queueSpans = new ArrayList<>();</span>
<span class="fc" id="L55"> queueMatches = new ArrayList<>();</span>
<span class="fc bfc" id="L56" title="All 2 branches covered."> for (MtasSpanSequenceQuerySpans sequenceSpans : setSequenceSpans) {</span>
<span class="fc" id="L57"> queueSpans.add(new QueueItem(sequenceSpans));</span>
<span class="fc" id="L58"> }</span>
<span class="fc" id="L59"> ignoreItem = new MtasIgnoreItem(ignoreSpans, maximumIgnoreLength);</span>
<span class="fc" id="L60"> resetQueue();</span>
<span class="fc" id="L61"> computeCosts();</span>
<span class="fc" id="L62"> }</span>
/**
* Compute costs.
*/
private void computeCosts() {
<span class="fc" id="L68"> cost = Long.MAX_VALUE;</span>
<span class="fc bfc" id="L69" title="All 2 branches covered."> for (QueueItem item : queueSpans) {</span>
<span class="fc" id="L70"> cost = Math.min(cost, item.sequenceSpans.spans.cost());</span>
<span class="fc" id="L71"> }</span>
<span class="fc" id="L72"> }</span>
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.Spans#nextStartPosition()
*/
@Override
public int nextStartPosition() throws IOException {
<span class="fc bfc" id="L81" title="All 2 branches covered."> if (findMatches()) {</span>
<span class="fc" id="L82"> currentMatch = queueMatches.get(0);</span>
<span class="fc" id="L83"> currentPosition = currentMatch.startPosition();</span>
<span class="fc" id="L84"> queueMatches.remove(0);</span>
<span class="fc" id="L85"> return currentMatch.startPosition();</span>
} else {
<span class="fc" id="L87"> currentMatch = new Match(NO_MORE_POSITIONS, NO_MORE_POSITIONS);</span>
<span class="fc" id="L88"> currentPosition = NO_MORE_POSITIONS;</span>
<span class="fc" id="L89"> return NO_MORE_POSITIONS;</span>
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.Spans#startPosition()
*/
@Override
public int startPosition() {
<span class="fc bfc" id="L100" title="All 2 branches covered."> if (currentMatch == null) {</span>
<span class="fc" id="L101"> return -1;</span>
} else {
<span class="fc" id="L103"> return currentMatch.startPosition();</span>
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.Spans#endPosition()
*/
@Override
public int endPosition() {
<span class="fc bfc" id="L114" title="All 2 branches covered."> if (currentMatch == null) {</span>
<span class="fc" id="L115"> return -1;</span>
} else {
<span class="fc" id="L117"> return currentMatch.endPosition();</span>
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.Spans#width()
*/
@Override
public int width() {
<span class="nc" id="L128"> return 0;</span>
}
/*
* (non-Javadoc)
*
* @see
* org.apache.lucene.search.spans.Spans#collect(org.apache.lucene.search.spans
* .SpanCollector)
*/
@Override
public void collect(SpanCollector collector) throws IOException {
<span class="nc bnc" id="L140" title="All 2 branches missed."> for (QueueItem item : queueSpans) {</span>
<span class="nc" id="L141"> item.sequenceSpans.spans.collect(collector);</span>
<span class="nc" id="L142"> }</span>
<span class="nc" id="L143"> }</span>
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.DocIdSetIterator#docID()
*/
@Override
public int docID() {
<span class="fc" id="L152"> return docId;</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.DocIdSetIterator#nextDoc()
*/
@Override
public int nextDoc() throws IOException {
<span class="fc" id="L162"> resetQueue();</span>
<span class="fc bfc" id="L163" title="All 2 branches covered."> while (!goToNextDoc())</span>
<span class="fc" id="L164"> ;</span>
<span class="fc" id="L165"> return docId;</span>
}
/**
* Go to next doc.
*
* @return true, if successful
* @throws IOException Signals that an I/O exception has occurred.
*/
private boolean goToNextDoc() throws IOException {
<span class="pc bpc" id="L175" title="1 of 2 branches missed."> if (docId == NO_MORE_DOCS) {</span>
<span class="nc" id="L176"> return true;</span>
} else {
// try to find docId with match for all items from sequence
Integer spanDocId;
<span class="fc" id="L180"> Integer newDocId = null;</span>
<span class="fc" id="L181"> Integer minOptionalDocId = null;</span>
<span class="fc" id="L182"> boolean allItemsOptional = true;</span>
<span class="fc bfc" id="L183" title="All 2 branches covered."> for (QueueItem item : queueSpans) {</span>
<span class="fc bfc" id="L184" title="All 2 branches covered."> if (!item.sequenceSpans.optional) {</span>
<span class="fc" id="L185"> allItemsOptional = false;</span>
}
<span class="pc bpc" id="L187" title="1 of 2 branches missed."> if (!item.noMoreDocs) {</span>
<span class="pc bpc" id="L188" title="1 of 2 branches missed."> if (item.sequenceSpans.spans == null) {</span>
<span class="nc" id="L189"> spanDocId = NO_MORE_DOCS;</span>
<span class="fc bfc" id="L190" title="All 2 branches covered."> } else if (newDocId == null) {</span>
<span class="fc" id="L191"> spanDocId = item.sequenceSpans.spans.nextDoc();</span>
} else {
<span class="fc bfc" id="L193" title="All 2 branches covered."> if (!item.sequenceSpans.optional) {</span>
<span class="fc" id="L194"> spanDocId = item.sequenceSpans.spans.advance(newDocId);</span>
} else {
<span class="fc bfc" id="L196" title="All 2 branches covered."> if (item.sequenceSpans.spans.docID() == -1</span>
<span class="pc bpc" id="L197" title="1 of 2 branches missed."> || newDocId > item.sequenceSpans.spans.docID()) {</span>
<span class="fc" id="L198"> spanDocId = item.sequenceSpans.spans.advance(newDocId);</span>
} else {
<span class="nc" id="L200"> spanDocId = item.sequenceSpans.spans.docID();</span>
}
}
}
<span class="fc bfc" id="L204" title="All 2 branches covered."> if (spanDocId.equals(NO_MORE_DOCS)) {</span>
<span class="fc" id="L205"> item.noMoreDocs = true;</span>
<span class="fc bfc" id="L206" title="All 2 branches covered."> if (!item.sequenceSpans.optional) {</span>
// a not optional span has NO_MORE_DOCS: stop
<span class="fc" id="L208"> docId = NO_MORE_DOCS;</span>
<span class="fc" id="L209"> return true;</span>
}
<span class="fc bfc" id="L211" title="All 2 branches covered."> } else if (!spanDocId.equals(newDocId)) {</span>
// last found spanDocId not equal to potential new docId
<span class="pc bpc" id="L213" title="1 of 2 branches missed."> if (newDocId != null) {</span>
<span class="nc bnc" id="L214" title="All 2 branches missed."> if (!item.sequenceSpans.optional) {</span>
// move also previous spans to at least spanDocId
<span class="nc" id="L216"> advance(spanDocId);</span>
<span class="nc" id="L217"> return true;</span>
}
// define potential new docId
} else {
<span class="fc bfc" id="L221" title="All 2 branches covered."> if (!item.sequenceSpans.optional) {</span>
// previous optional span with lower docId
<span class="fc bfc" id="L223" title="All 2 branches covered."> if ((minOptionalDocId != null)</span>
<span class="pc bpc" id="L224" title="1 of 2 branches missed."> && (minOptionalDocId < spanDocId)) {</span>
<span class="nc" id="L225"> advance(spanDocId);</span>
<span class="nc" id="L226"> return true;</span>
} else {
// use spanDocId as potential newDocId
<span class="fc" id="L229"> newDocId = spanDocId;</span>
}
} else {
// remember minimum docId optional spans
<span class="pc bpc" id="L233" title="1 of 2 branches missed."> minOptionalDocId = (minOptionalDocId == null) ? spanDocId</span>
<span class="nc" id="L234"> : Math.min(minOptionalDocId, spanDocId);</span>
}
}
}
}
<span class="fc" id="L239"> }</span>
// if all items are optional
<span class="pc bpc" id="L241" title="5 of 6 branches missed."> if (allItemsOptional && newDocId == null && minOptionalDocId != null) {</span>
<span class="nc" id="L242"> newDocId = minOptionalDocId;</span>
}
// nothing found
<span class="pc bpc" id="L245" title="1 of 2 branches missed."> if (newDocId == null) {</span>
<span class="nc" id="L246"> docId = NO_MORE_DOCS;</span>
<span class="nc" id="L247"> return true;</span>
} else {
<span class="fc" id="L249"> docId = newDocId;</span>
<span class="fc" id="L250"> ignoreItem.advanceToDoc(docId);</span>
// try and glue together
<span class="fc bfc" id="L252" title="All 2 branches covered."> if (findMatches()) {</span>
<span class="fc" id="L253"> return true;</span>
// no matches
} else {
<span class="fc" id="L256"> resetQueue();</span>
<span class="fc" id="L257"> return false;</span>
}
}
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.DocIdSetIterator#advance(int)
*/
@Override
public int advance(int target) throws IOException {
<span class="fc" id="L270"> resetQueue();</span>
<span class="fc" id="L271"> Integer newTarget = target;</span>
do {
<span class="fc" id="L273"> newTarget = advanceToDoc(newTarget);</span>
<span class="pc bpc" id="L274" title="1 of 2 branches missed."> } while (newTarget != null);</span>
<span class="fc" id="L275"> return docId;</span>
}
/**
* Advance to doc.
*
* @param target the target
* @return the integer
* @throws IOException Signals that an I/O exception has occurred.
*/
private Integer advanceToDoc(int target) throws IOException {
<span class="pc bpc" id="L286" title="2 of 4 branches missed."> if (docId == NO_MORE_DOCS || target <= docId) {</span>
<span class="nc" id="L287"> return null;</span>
} else {
Integer spanDocId;
<span class="fc" id="L290"> Integer newDocId = target;</span>
<span class="fc bfc" id="L291" title="All 2 branches covered."> for (QueueItem item : queueSpans) {</span>
<span class="pc bpc" id="L292" title="1 of 2 branches missed."> if (item.sequenceSpans.spans != null) {</span>
<span class="pc bpc" id="L293" title="1 of 2 branches missed."> if (item.sequenceSpans.spans.docID() < newDocId) {</span>
<span class="fc" id="L294"> spanDocId = item.sequenceSpans.spans.advance(newDocId);</span>
<span class="fc bfc" id="L295" title="All 2 branches covered."> if (spanDocId.equals(NO_MORE_DOCS)) {</span>
<span class="fc" id="L296"> item.noMoreDocs = true;</span>
<span class="pc bpc" id="L297" title="1 of 2 branches missed."> if (!item.sequenceSpans.optional) {</span>
// a not optional span has NO_MORE_DOCS: stop
<span class="fc" id="L299"> docId = NO_MORE_DOCS;</span>
<span class="fc" id="L300"> return null;</span>
}
} else {
<span class="pc bpc" id="L303" title="3 of 4 branches missed."> if (!spanDocId.equals(newDocId) && !item.sequenceSpans.optional) {</span>
// a not optional span has nothing for newDocId: stop
<span class="nc" id="L305"> return spanDocId;</span>
}
}
<span class="nc bnc" id="L308" title="All 2 branches missed."> } else if (item.sequenceSpans.spans.docID() != newDocId) {</span>
<span class="nc" id="L309"> spanDocId = item.sequenceSpans.spans.docID();</span>
<span class="nc bnc" id="L310" title="All 2 branches missed."> if (!item.sequenceSpans.optional) {</span>
// a not optional span seems to have nothing for newDocId: stop
<span class="nc" id="L312"> return spanDocId;</span>
}
}
}
<span class="fc" id="L316"> }</span>
// find match
<span class="fc" id="L318"> docId = newDocId;</span>
<span class="fc" id="L319"> ignoreItem.advanceToDoc(docId);</span>
// try and glue together
<span class="pc bpc" id="L321" title="1 of 2 branches missed."> if (findMatches()) {</span>
<span class="fc" id="L322"> return null;</span>
// no matches
} else {
<span class="nc" id="L325"> resetQueue();</span>
// try next document
<span class="nc" id="L327"> return (newDocId + 1);</span>
}
}
}
/**
* Find matches.
*
* @return true, if successful
* @throws IOException Signals that an I/O exception has occurred.
*/
private boolean findMatches() throws IOException {
<span class="fc" id="L339"> Boolean status = _findMatches();</span>
<span class="fc bfc" id="L340" title="All 4 branches covered."> while (!(status || (currentPosition == NO_MORE_POSITIONS))) {</span>
<span class="fc" id="L341"> status = _findMatches();</span>
}
<span class="fc" id="L343"> return status;</span>
}
/**
* Find matches.
*
* @return true, if successful
* @throws IOException Signals that an I/O exception has occurred.
*/
private boolean _findMatches() throws IOException {
// queue not empty
<span class="fc bfc" id="L354" title="All 2 branches covered."> if (!queueMatches.isEmpty()) {</span>
<span class="fc" id="L355"> return true;</span>
// no more matches to be found
<span class="pc bpc" id="L357" title="1 of 2 branches missed."> } else if (currentPosition == NO_MORE_POSITIONS) {</span>
<span class="nc" id="L358"> return false;</span>
// try to find matches
} else {
// subMatches: try to build matches while collecting
<span class="fc" id="L362"> Integer subMatchesStartPosition = null;</span>
<span class="fc" id="L363"> Boolean subMatchesOptional = true;</span>
<span class="fc" id="L364"> List<Match> subMatchesQueue = new ArrayList<>();</span>
// minimum startPosition previous, used to set lower boundary on
// startPosition next
<span class="fc" id="L367"> Integer minStartPositionPrevious = null;</span>
// maximum endPosition previous, used to set upper boundary on
// startPosition next
<span class="fc" id="L370"> Integer maxEndPositionPrevious = null;</span>
// other variables
<span class="fc" id="L372"> Integer minStartPositionNext = null;</span>
<span class="fc" id="L373"> Integer minStartPosition = null;</span>
<span class="fc" id="L374"> Integer minOptionalStartPosition = null;</span>
// adjusted minimum ignoreItem
<span class="fc" id="L376"> boolean adjustedMinimumIgnoreItem = false;</span>
// fill queue if necessary and possible
<span class="fc bfc" id="L378" title="All 2 branches covered."> for (int i = 0; i < queueSpans.size(); i++) {</span>
<span class="fc" id="L379"> QueueItem item = queueSpans.get(i);</span>
// if span is optional, check docId
<span class="pc bpc" id="L381" title="1 of 4 branches missed."> if (!item.sequenceSpans.optional || (item.sequenceSpans.spans != null</span>
<span class="pc bpc" id="L382" title="1 of 2 branches missed."> && item.sequenceSpans.spans.docID() == docId)) {</span>
// compute minimum startPosition until next non-optional item
// used as lower boundary on endPosition next
<span class="fc" id="L385"> minStartPositionNext = null;</span>
<span class="fc bfc" id="L386" title="All 2 branches covered."> for (int j = (i + 1); j < queueSpans.size(); j++) {</span>
// check for available lowestPosition
<span class="fc bfc" id="L389" title="All 2 branches covered."> if (!queueSpans.get(j).sequenceSpans.optional</span>
<span class="fc bfc" id="L390" title="All 2 branches covered."> && queueSpans.get(j).lowestPosition != null) {</span>
<span class="fc bfc" id="L391" title="All 2 branches covered."> minStartPositionNext = (minStartPositionNext == null)</span>
<span class="fc" id="L392"> ? queueSpans.get(j).lowestPosition</span>
<span class="fc" id="L393"> : Math.min(minStartPositionNext,</span>
<span class="fc" id="L394"> queueSpans.get(j).lowestPosition);</span>
// computing restrictions not possible
} else {
<span class="fc bfc" id="L397" title="All 2 branches covered."> if (!queueSpans.get(j).sequenceSpans.optional) {</span>
<span class="fc" id="L398"> minStartPositionNext = null;</span>
}
break;
}
}
// fill queue
<span class="fc bfc" id="L404" title="All 4 branches covered."> if ((minStartPositionPrevious == null) || subMatchesOptional) {</span>
<span class="fc" id="L405"> fillQueue(item, null, maxEndPositionPrevious, minStartPositionNext);</span>
} else {
<span class="fc" id="L407"> fillQueue(item, minStartPositionPrevious, maxEndPositionPrevious,</span>
minStartPositionNext);
}
// try to adjust minimum ignoreItem
<span class="fc bfc" id="L411" title="All 4 branches covered."> if (!adjustedMinimumIgnoreItem && !item.sequenceSpans.optional</span>
<span class="fc bfc" id="L412" title="All 2 branches covered."> && item.filledPosition) {</span>
<span class="fc bfc" id="L413" title="All 2 branches covered."> if (minOptionalStartPosition != null) {</span>
<span class="fc" id="L414"> ignoreItem.removeBefore(docId,</span>
<span class="fc" id="L415"> Math.min(minOptionalStartPosition, item.lowestPosition));</span>
} else {
<span class="fc" id="L417"> ignoreItem.removeBefore(docId, item.lowestPosition);</span>
}
<span class="fc" id="L419"> adjustedMinimumIgnoreItem = true;</span>
}
// check for available positions
<span class="fc bfc" id="L422" title="All 4 branches covered."> if (!item.sequenceSpans.optional && item.noMorePositions</span>
<span class="fc bfc" id="L423" title="All 2 branches covered."> && !item.filledPosition) {</span>
<span class="fc" id="L424"> currentPosition = NO_MORE_POSITIONS;</span>
<span class="fc" id="L425"> return false;</span>
}
// build matches
<span class="fc" id="L428"> subMatchesQueue = _glue(subMatchesQueue, subMatchesOptional, item);</span>
// update subMatchesOptional
<span class="fc bfc" id="L430" title="All 2 branches covered."> if (!item.sequenceSpans.optional) {</span>
<span class="fc" id="L431"> subMatchesOptional = false;</span>
}
// check if matches are still achievable
<span class="fc bfc" id="L434" title="All 4 branches covered."> if (!subMatchesOptional && subMatchesQueue.isEmpty()) {</span>
// clean up previous queues
<span class="pc bpc" id="L436" title="1 of 2 branches missed."> if (subMatchesStartPosition != null) {</span>
<span class="fc" id="L437"> int cleanStartPosition = subMatchesStartPosition;</span>
<span class="fc bfc" id="L438" title="All 2 branches covered."> for (int j = 0; j <= i; j++) {</span>
<span class="fc" id="L439"> queueSpans.get(j).del(cleanStartPosition);</span>
<span class="fc bfc" id="L440" title="All 2 branches covered."> if (!queueSpans.get(j).sequenceSpans.optional) {</span>
<span class="fc" id="L441"> cleanStartPosition++;</span>
}
}
}
<span class="fc" id="L445"> return false;</span>
}
// update subMatchesStartPosition
<span class="pc bpc" id="L448" title="1 of 2 branches missed."> if (subMatchesQueue.isEmpty()) {</span>
<span class="nc" id="L449"> subMatchesStartPosition = null;</span>
} else {
<span class="fc" id="L451"> subMatchesStartPosition = subMatchesQueue.get(0).startPosition;</span>
}
// compute minimum startPosition for next span
<span class="fc bfc" id="L454" title="All 2 branches covered."> if (item.lowestPosition != null) {</span>
<span class="fc bfc" id="L455" title="All 2 branches covered."> minStartPositionPrevious = (minStartPositionPrevious == null)</span>
<span class="fc" id="L456"> ? item.lowestPosition</span>
<span class="fc" id="L457"> : Math.min(minStartPositionPrevious, item.lowestPosition);</span>
}
// for optional spans
<span class="fc bfc" id="L460" title="All 2 branches covered."> if (item.sequenceSpans.optional) {</span>
// update stats
<span class="fc bfc" id="L462" title="All 2 branches covered."> if (item.lowestPosition != null) {</span>
<span class="fc bfc" id="L463" title="All 2 branches covered."> minOptionalStartPosition = (minOptionalStartPosition == null)</span>
<span class="fc" id="L464"> ? item.lowestPosition</span>
<span class="fc" id="L465"> : Math.min(minOptionalStartPosition, item.lowestPosition);</span>
}
// for not optional spans
} else {
// update stats, item.lowestPosition should be set
<span class="fc bfc" id="L470" title="All 2 branches covered."> minStartPosition = (minStartPosition == null) ? item.lowestPosition</span>
<span class="fc" id="L471"> : Math.min(minStartPosition, item.lowestPosition);</span>
// reset maximum endPosition for next span
<span class="fc" id="L473"> maxEndPositionPrevious = null;</span>
}
// compute maximum endPosition for next span
<span class="fc bfc" id="L476" title="All 2 branches covered."> if (item.lowestPosition != null) {</span>
<span class="fc bfc" id="L477" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="fc bfc" id="L478" title="All 2 branches covered."> maxEndPositionPrevious = (maxEndPositionPrevious == null)</span>
<span class="fc" id="L479"> ? endPosition : Math.max(maxEndPositionPrevious, endPosition);</span>
<span class="fc" id="L480"> }</span>
}
}
}
<span class="pc bpc" id="L484" title="1 of 2 branches missed."> if (subMatchesQueue.isEmpty()) {</span>
// condition has only optional parts
<span class="nc bnc" id="L486" title="All 2 branches missed."> if (subMatchesOptional) {</span>
// check for
<span class="nc" id="L488"> boolean allFinished = true;</span>
<span class="nc bnc" id="L489" title="All 2 branches missed."> for (int i = 0; i < queueSpans.size(); i++) {</span>
<span class="nc bnc" id="L490" title="All 2 branches missed."> if (!queueSpans.get(i).noMorePositions) {</span>
<span class="nc" id="L491"> allFinished = false;</span>
<span class="nc" id="L492"> break;</span>
}
}
<span class="nc bnc" id="L495" title="All 2 branches missed."> if (allFinished) {</span>
<span class="nc" id="L496"> currentPosition = NO_MORE_POSITIONS;</span>
}
}
<span class="nc" id="L499"> return false;</span>
<span class="fc bfc" id="L500" title="All 2 branches covered."> } else if ((minOptionalStartPosition != null)</span>
<span class="pc bpc" id="L501" title="1 of 2 branches missed."> && (minOptionalStartPosition < subMatchesStartPosition)) {</span>
<span class="nc bnc" id="L502" title="All 2 branches missed."> for (int i = 0; i < queueSpans.size(); i++) {</span>
<span class="nc bnc" id="L503" title="All 2 branches missed."> if (!queueSpans.get(i).sequenceSpans.optional) {</span>
<span class="nc" id="L504"> break;</span>
} else {
<span class="nc" id="L506"> queueSpans.get(i).del(minOptionalStartPosition);</span>
}
}
<span class="nc" id="L509"> return false;</span>
} else {
<span class="fc bfc" id="L511" title="All 2 branches covered."> for (int i = 0; i < queueSpans.size(); i++) {</span>
<span class="fc" id="L512"> queueSpans.get(i).del(subMatchesStartPosition);</span>
}
<span class="fc bfc" id="L514" title="All 2 branches covered."> for (Match m : subMatchesQueue) {</span>
<span class="pc bpc" id="L515" title="1 of 2 branches missed."> if (!queueMatches.contains(m)) {</span>
<span class="fc" id="L516"> queueMatches.add(m);</span>
}
<span class="fc" id="L518"> }</span>
<span class="fc" id="L519"> ignoreItem.removeBefore(docId, queueMatches.get(0).startPosition);</span>
<span class="fc" id="L520"> return true;</span>
}
}
}
/**
* Glue.
*
* @param subMatchesQueue the sub matches queue
* @param subMatchesOptional the sub matches optional
* @param item the item
* @return the list
* @throws IOException Signals that an I/O exception has occurred.
*/
private List<Match> _glue(List<Match> subMatchesQueue,
Boolean subMatchesOptional, QueueItem item) throws IOException {
<span class="fc" id="L536"> List<Match> newSubMatchesQueue = new ArrayList<>();</span>
// no previous queue, only use current item
<span class="fc bfc" id="L538" title="All 2 branches covered."> if (subMatchesQueue.isEmpty()) {</span>
<span class="pc bpc" id="L539" title="1 of 2 branches missed."> if (item.filledPosition) {</span>
<span class="fc bfc" id="L540" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="fc" id="L541"> Match m = new Match(item.lowestPosition, endPosition);</span>
<span class="pc bpc" id="L542" title="1 of 2 branches missed."> if (!newSubMatchesQueue.contains(m)) {</span>
<span class="fc" id="L543"> newSubMatchesQueue.add(m);</span>
}
<span class="fc" id="L545"> }</span>
}
<span class="fc" id="L547"> return newSubMatchesQueue;</span>
// previous queue
} else {
// startposition from queue
<span class="fc" id="L551"> int startPosition = subMatchesQueue.get(0).startPosition;</span>
// previous queue optional, current item optional
<span class="pc bpc" id="L553" title="1 of 4 branches missed."> if (subMatchesOptional && item.sequenceSpans.optional) {</span>
// forget previous, because current has lower startposition
<span class="nc bnc" id="L555" title="All 4 branches missed."> if (item.filledPosition && item.lowestPosition < startPosition) {</span>
<span class="nc bnc" id="L556" title="All 2 branches missed."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="nc" id="L557"> Match m = new Match(item.lowestPosition, endPosition);</span>
<span class="nc bnc" id="L558" title="All 2 branches missed."> if (!newSubMatchesQueue.contains(m)) {</span>
<span class="nc" id="L559"> newSubMatchesQueue.add(m);</span>
}
<span class="nc" id="L561"> }</span>
// merge with previous
<span class="nc bnc" id="L563" title="All 2 branches missed."> } else if (item.filledPosition) {</span>
<span class="nc bnc" id="L564" title="All 2 branches missed."> if (item.lowestPosition.equals(startPosition)) {</span>
<span class="nc bnc" id="L565" title="All 2 branches missed."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="nc" id="L566"> Match m = new Match(item.lowestPosition, endPosition);</span>
<span class="nc bnc" id="L567" title="All 2 branches missed."> if (!newSubMatchesQueue.contains(m)) {</span>
<span class="nc" id="L568"> newSubMatchesQueue.add(m);</span>
}
<span class="nc" id="L570"> }</span>
}
<span class="nc" id="L572"> newSubMatchesQueue.addAll(subMatchesQueue);</span>
<span class="nc bnc" id="L573" title="All 2 branches missed."> for (Match m : subMatchesQueue) {</span>
<span class="nc bnc" id="L574" title="All 2 branches missed."> if (item.queue.containsKey(m.endPosition)) {</span>
<span class="nc bnc" id="L575" title="All 2 branches missed."> for (Integer endPosition : item.queue.get(m.endPosition)) {</span>
<span class="nc" id="L576"> Match o = new Match(m.startPosition, endPosition);</span>
<span class="nc bnc" id="L577" title="All 2 branches missed."> if (!newSubMatchesQueue.contains(o)) {</span>
<span class="nc" id="L578"> newSubMatchesQueue.add(o);</span>
}
<span class="nc" id="L580"> }</span>
}
<span class="nc" id="L582"> }</span>
// no filled position
} else {
<span class="nc" id="L585"> newSubMatchesQueue.addAll(subMatchesQueue);</span>
}
// previous queue optional, current item not optional
<span class="pc bpc" id="L588" title="1 of 4 branches missed."> } else if (subMatchesOptional && !item.sequenceSpans.optional) {</span>
<span class="pc bpc" id="L589" title="2 of 4 branches missed."> assert item.filledPosition : "span not optional, should contain items";</span>
// forget previous
<span class="pc bpc" id="L591" title="1 of 2 branches missed."> if (item.lowestPosition < startPosition) {</span>
<span class="nc bnc" id="L592" title="All 2 branches missed."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="nc" id="L593"> Match m = new Match(item.lowestPosition, endPosition);</span>
<span class="nc bnc" id="L594" title="All 2 branches missed."> if (!newSubMatchesQueue.contains(m)) {</span>
<span class="nc" id="L595"> newSubMatchesQueue.add(m);</span>
}
<span class="nc" id="L597"> }</span>
// merge with previous
} else {
<span class="fc bfc" id="L600" title="All 2 branches covered."> if (item.lowestPosition.equals(startPosition)) {</span>
<span class="fc bfc" id="L601" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(item.lowestPosition)) {</span>
<span class="fc" id="L602"> Match m = new Match(item.lowestPosition, endPosition);</span>
<span class="pc bpc" id="L603" title="1 of 2 branches missed."> if (!newSubMatchesQueue.contains(m)) {</span>
<span class="fc" id="L604"> newSubMatchesQueue.add(m);</span>
}
<span class="fc" id="L606"> }</span>
}
<span class="fc bfc" id="L608" title="All 2 branches covered."> for (Match m : subMatchesQueue) {</span>
<span class="fc bfc" id="L609" title="All 2 branches covered."> if (item.queue.containsKey(m.endPosition)) {</span>
<span class="fc bfc" id="L610" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(m.endPosition)) {</span>
<span class="fc" id="L611"> Match o = new Match(m.startPosition, endPosition);</span>
<span class="pc bpc" id="L612" title="1 of 2 branches missed."> if (!newSubMatchesQueue.contains(o)) {</span>
<span class="fc" id="L613"> newSubMatchesQueue.add(o);</span>
}
<span class="fc" id="L615"> }</span>
}
<span class="fc" id="L617"> }</span>
}
// previous queue not optional, current item optional
<span class="pc bpc" id="L620" title="1 of 4 branches missed."> } else if (!subMatchesOptional && item.sequenceSpans.optional) {</span>
<span class="fc" id="L621"> newSubMatchesQueue.addAll(subMatchesQueue);</span>
// merge with previous
<span class="fc bfc" id="L623" title="All 2 branches covered."> if (item.filledPosition) {</span>
<span class="fc bfc" id="L624" title="All 2 branches covered."> for (Match m : subMatchesQueue) {</span>
<span class="fc bfc" id="L625" title="All 2 branches covered."> if (item.queue.containsKey(m.endPosition)) {</span>
<span class="fc bfc" id="L626" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(m.endPosition)) {</span>
<span class="fc" id="L627"> Match o = new Match(m.startPosition, endPosition);</span>
<span class="fc bfc" id="L628" title="All 2 branches covered."> if (!newSubMatchesQueue.contains(o)) {</span>
<span class="fc" id="L629"> newSubMatchesQueue.add(o);</span>
}
<span class="fc" id="L631"> }</span>
}
<span class="fc" id="L633"> }</span>
}
// previous queue not optional, current item not optional
<span class="pc bpc" id="L636" title="2 of 4 branches missed."> } else if (!subMatchesOptional && !item.sequenceSpans.optional</span>
<span class="pc bpc" id="L637" title="1 of 2 branches missed."> && item.filledPosition) {</span>
<span class="fc bfc" id="L638" title="All 2 branches covered."> for (Match m : subMatchesQueue) {</span>
<span class="fc" id="L639"> Set<Integer> ignoreList = ignoreItem.getFullEndPositionList(docId,</span>
<span class="fc" id="L640"> m.endPosition);</span>
Integer[] checkList;
<span class="fc bfc" id="L642" title="All 2 branches covered."> if (ignoreList == null) {</span>
<span class="fc" id="L643"> checkList = new Integer[] { m.endPosition };</span>
} else {
<span class="fc" id="L645"> checkList = new Integer[1 + ignoreList.size()];</span>
<span class="fc" id="L646"> checkList = ignoreList.toArray(checkList);</span>
<span class="fc" id="L647"> checkList[ignoreList.size()] = m.endPosition;</span>
}
<span class="fc bfc" id="L649" title="All 2 branches covered."> for (Integer checkEndPosition : checkList) {</span>
<span class="fc bfc" id="L650" title="All 2 branches covered."> if (item.queue.containsKey(checkEndPosition)) {</span>
<span class="fc bfc" id="L651" title="All 2 branches covered."> for (Integer endPosition : item.queue.get(checkEndPosition)) {</span>
<span class="fc" id="L652"> Match o = new Match(m.startPosition, endPosition);</span>
<span class="fc bfc" id="L653" title="All 2 branches covered."> if (!newSubMatchesQueue.contains(o)) {</span>
<span class="fc" id="L654"> newSubMatchesQueue.add(o);</span>
}
<span class="fc" id="L656"> }</span>
}
}
<span class="fc" id="L659"> }</span>
}
}
<span class="fc" id="L662"> return newSubMatchesQueue;</span>
}
/**
* Fill queue.
*
* @param item the item
* @param minStartPosition the min start position
* @param maxStartPosition the max start position
* @param minEndPosition the min end position
* @throws IOException Signals that an I/O exception has occurred.
*/
private void fillQueue(QueueItem item, Integer minStartPosition,
Integer maxStartPosition, Integer minEndPosition) throws IOException {
int newStartPosition;
int newEndPosition;
<span class="fc" id="L678"> Integer firstRetrievedPosition = null;</span>
// remove everything below minStartPosition
<span class="fc bfc" id="L680" title="All 4 branches covered."> if ((minStartPosition != null) && (item.lowestPosition != null)</span>
<span class="fc bfc" id="L681" title="All 2 branches covered."> && (item.lowestPosition < minStartPosition)) {</span>
<span class="fc" id="L682"> item.del((minStartPosition - 1));</span>
}
// fill queue
<span class="fc bfc" id="L685" title="All 2 branches covered."> while (!item.noMorePositions) {</span>
boolean doNotCollectAnotherPosition;
<span class="fc bfc" id="L687" title="All 6 branches covered."> doNotCollectAnotherPosition = item.filledPosition</span>
&& (minStartPosition == null) && (maxStartPosition == null);
<span class="fc bfc" id="L689" title="All 4 branches covered."> doNotCollectAnotherPosition |= item.filledPosition</span>
<span class="pc bpc" id="L690" title="1 of 2 branches missed."> && (maxStartPosition != null) && (item.lastRetrievedPosition != null)</span>
<span class="fc bfc" id="L691" title="All 2 branches covered."> && (maxStartPosition < item.lastRetrievedPosition);</span>
<span class="fc bfc" id="L692" title="All 2 branches covered."> if (doNotCollectAnotherPosition) {</span>
<span class="fc" id="L693"> return;</span>
} else {
// collect another full position
<span class="fc" id="L696"> firstRetrievedPosition = null;</span>
<span class="pc bpc" id="L697" title="1 of 2 branches missed."> while (!item.noMorePositions) {</span>
<span class="fc" id="L698"> newStartPosition = item.sequenceSpans.spans.nextStartPosition();</span>
<span class="fc bfc" id="L699" title="All 2 branches covered."> if (newStartPosition == NO_MORE_POSITIONS) {</span>
<span class="pc bpc" id="L700" title="1 of 2 branches missed."> if (!item.queue.isEmpty()) {</span>
<span class="fc" id="L701"> item.filledPosition = true;</span>
<span class="fc" id="L702"> item.lastFilledPosition = item.lastRetrievedPosition;</span>
}
<span class="fc" id="L704"> item.noMorePositions = true;</span>
<span class="fc" id="L705"> return;</span>
<span class="fc bfc" id="L706" title="All 2 branches covered."> } else if ((minStartPosition != null)</span>
<span class="fc bfc" id="L707" title="All 2 branches covered."> && (newStartPosition < minStartPosition)) {</span>
// do nothing
} else {
<span class="fc" id="L710"> newEndPosition = item.sequenceSpans.spans.endPosition();</span>
<span class="fc bfc" id="L711" title="All 2 branches covered."> if ((minEndPosition == null) || (newEndPosition >= minEndPosition</span>
<span class="fc bfc" id="L712" title="All 2 branches covered."> - ignoreItem.getMinStartPosition(docId, newEndPosition))) {</span>
<span class="fc" id="L713"> item.add(newStartPosition, newEndPosition);</span>
<span class="fc bfc" id="L714" title="All 2 branches covered."> if (firstRetrievedPosition == null) {</span>
<span class="fc" id="L715"> firstRetrievedPosition = newStartPosition;</span>
<span class="fc bfc" id="L716" title="All 2 branches covered."> } else if (!firstRetrievedPosition.equals(newStartPosition)) {</span>
<span class="fc" id="L717"> break;</span>
}
}
}
}
}
<span class="fc" id="L723"> }</span>
<span class="fc" id="L724"> }</span>
/**
* Reset queue.
*/
void resetQueue() {
<span class="fc" id="L730"> currentPosition = -1;</span>
<span class="fc" id="L731"> queueMatches.clear();</span>
<span class="fc bfc" id="L732" title="All 2 branches covered."> for (QueueItem item : queueSpans) {</span>
<span class="fc" id="L733"> item.reset();</span>
<span class="fc" id="L734"> }</span>
<span class="fc" id="L735"> currentMatch = null;</span>
<span class="fc" id="L736"> }</span>
/**
* The Class QueueItem.
*/
private static class QueueItem {
/** The no more docs. */
private boolean noMoreDocs;
/** The no more positions. */
private boolean noMorePositions;
/** The filled position. */
private boolean filledPosition;
/** The lowest position. */
private Integer lowestPosition;
/** The last filled position. */
private Integer lastFilledPosition;
/** The last retrieved position. */
private Integer lastRetrievedPosition;
/** The queue. */
private HashMap<Integer, List<Integer>> queue;
/** The sequence spans. */
public MtasSpanSequenceQuerySpans sequenceSpans;
/**
* Instantiates a new queue item.
*
* @param sequenceSpans the sequence spans
*/
<span class="fc" id="L772"> QueueItem(MtasSpanSequenceQuerySpans sequenceSpans) {</span>
<span class="fc" id="L773"> noMoreDocs = false;</span>
<span class="fc" id="L774"> this.sequenceSpans = sequenceSpans;</span>
<span class="fc" id="L775"> queue = new HashMap<>();</span>
<span class="fc" id="L776"> reset();</span>
<span class="fc" id="L777"> }</span>
/**
* Reset.
*/
public void reset() {
<span class="fc" id="L783"> noMorePositions = false;</span>
<span class="fc" id="L784"> lowestPosition = null;</span>
<span class="fc" id="L785"> lastFilledPosition = null;</span>
<span class="fc" id="L786"> lastRetrievedPosition = null;</span>
<span class="fc" id="L787"> filledPosition = false;</span>
<span class="fc" id="L788"> queue.clear();</span>
<span class="fc" id="L789"> }</span>
/**
* Adds the.
*
* @param startPosition the start position
* @param endPosition the end position
*/
public void add(int startPosition, int endPosition) {
<span class="fc bfc" id="L798" title="All 2 branches covered."> if (!queue.keySet().contains(startPosition)) {</span>
<span class="fc bfc" id="L799" title="All 2 branches covered."> if (!queue.isEmpty()) {</span>
<span class="fc" id="L800"> filledPosition = true;</span>
<span class="fc" id="L801"> lastFilledPosition = lastRetrievedPosition;</span>
}
<span class="fc" id="L803"> queue.put(startPosition, new ArrayList<Integer>());</span>
}
<span class="fc" id="L805"> queue.get(startPosition).add(endPosition);</span>
<span class="pc bpc" id="L806" title="1 of 4 branches missed."> if ((lowestPosition == null) || (lowestPosition > startPosition)) {</span>
<span class="fc" id="L807"> lowestPosition = startPosition;</span>
}
<span class="fc" id="L809"> lastRetrievedPosition = startPosition;</span>
<span class="fc" id="L810"> }</span>
/**
* Del.
*
* @param position the position
*/
public void del(int position) {
<span class="fc" id="L818"> ArrayList<Integer> removePositions = new ArrayList<>();</span>
<span class="fc bfc" id="L819" title="All 2 branches covered."> for (int p : queue.keySet()) {</span>
<span class="fc bfc" id="L820" title="All 2 branches covered."> if (p <= position) {</span>
<span class="fc" id="L821"> removePositions.add(p);</span>
}
<span class="fc" id="L823"> }</span>
<span class="fc bfc" id="L824" title="All 2 branches covered."> if (!removePositions.isEmpty()) {</span>
// positions.removeAll(removePositions);
<span class="fc bfc" id="L826" title="All 2 branches covered."> for (int p : removePositions) {</span>
<span class="fc" id="L827"> queue.remove(p);</span>
<span class="fc" id="L828"> }</span>
<span class="fc bfc" id="L829" title="All 2 branches covered."> if (queue.isEmpty()) {</span>
<span class="fc" id="L830"> lowestPosition = null;</span>
<span class="fc" id="L831"> lastFilledPosition = null;</span>
<span class="fc" id="L832"> filledPosition = false;</span>
} else {
<span class="fc" id="L834"> lowestPosition = Collections.min(queue.keySet());</span>
<span class="pc bpc" id="L835" title="1 of 4 branches missed."> if (filledPosition && !queue.keySet().contains(lastFilledPosition)) {</span>
<span class="fc" id="L836"> lastFilledPosition = null;</span>
<span class="fc" id="L837"> filledPosition = false;</span>
}
}
}
<span class="fc" id="L841"> }</span>
}
/**
* The Class Match.
*/
private static class Match {
/** The start position. */
private int startPosition;
/** The end position. */
private int endPosition;
/**
* Instantiates a new match.
*
* @param startPosition the start position
* @param endPosition the end position
*/
<span class="fc" id="L861"> Match(int startPosition, int endPosition) {</span>
<span class="fc" id="L862"> this.startPosition = startPosition;</span>
<span class="fc" id="L863"> this.endPosition = endPosition;</span>
<span class="fc" id="L864"> }</span>
/**
* Start position.
*
* @return the int
*/
public int startPosition() {
<span class="fc" id="L872"> return startPosition;</span>
}
/**
* End position.
*
* @return the int
*/
public int endPosition() {
<span class="fc" id="L881"> return endPosition;</span>
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
<span class="pc bpc" id="L891" title="1 of 2 branches missed."> if (this == obj)</span>
<span class="nc" id="L892"> return true;</span>
<span class="pc bpc" id="L893" title="1 of 2 branches missed."> if (obj == null)</span>
<span class="nc" id="L894"> return false;</span>
<span class="pc bpc" id="L895" title="1 of 2 branches missed."> if (getClass() != obj.getClass())</span>
<span class="nc" id="L896"> return false;</span>
<span class="fc" id="L897"> final Match that = (Match) obj;</span>
<span class="pc bpc" id="L898" title="1 of 4 branches missed."> return startPosition == that.startPosition</span>
&& endPosition == that.endPosition;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
<span class="nc" id="L909"> int h = this.getClass().getSimpleName().hashCode();</span>
<span class="nc" id="L910"> h = (h * 5) ^ startPosition;</span>
<span class="nc" id="L911"> h = (h * 7) ^ endPosition;</span>
<span class="nc" id="L912"> return h;</span>
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
<span class="nc" id="L922"> return "[" + startPosition + "," + endPosition + "]";</span>
}
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.DocIdSetIterator#cost()
*/
@Override
public long cost() {
<span class="fc" id="L934"> return cost;</span>
}
/*
* (non-Javadoc)
*
* @see org.apache.lucene.search.spans.Spans#positionsCost()
*/
@Override
public float positionsCost() {
<span class="fc" id="L944"> return 0;</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>