1
- import { Scorer , ScoreResult } from "./scorer" ;
1
+ import { Scorer } from "./scorer" ;
2
2
import { InvertedIndex , toCodePoints } from "./inverted_index" ;
3
3
import { FuzzyQuery , Query , QueryBuilder , WildcardQuery } from "./query_builder" ;
4
4
import { Dict } from "../../common/types" ;
5
5
import { RunAutomaton } from "./fuzzy/run_automaton" ;
6
6
import { LevenshteinAutomata } from "./fuzzy/levenshtein_automata" ;
7
- import DocResults = Scorer . DocResults ;
7
+ import QueryResults = Scorer . QueryResults ;
8
8
import Index = InvertedIndex . Index ;
9
9
10
10
11
-
12
11
/**
13
12
* @hidden
14
13
*/
@@ -26,17 +25,17 @@ export class IndexSearcher {
26
25
this . _scorer = new Scorer ( this . _invIdxs ) ;
27
26
}
28
27
29
- public search ( query : Query ) : ScoreResult {
30
- let docResults = this . _recursive ( query . query , true ) ;
28
+ public search ( query : Query ) : Scorer . ScoreResult {
29
+ let queryResults = this . _recursive ( query . query , true ) ;
31
30
32
31
// Do final scoring.
33
32
if ( query . final_scoring !== undefined ? query . final_scoring : true ) {
34
- return this . _scorer . finalScore ( query , docResults ) ;
33
+ return this . _scorer . finalScore ( query , queryResults ) ;
35
34
}
36
35
37
- const result : ScoreResult = { } ;
38
- for ( const key of docResults . keys ( ) ) {
39
- result [ key ] = 1 ;
36
+ const result : Scorer . ScoreResult = { } ;
37
+ for ( const key of queryResults . keys ( ) ) {
38
+ result [ key ] = { score : 1 } ;
40
39
}
41
40
return result ;
42
41
}
@@ -46,7 +45,7 @@ export class IndexSearcher {
46
45
}
47
46
48
47
private _recursive ( query : any , doScoring : boolean ) {
49
- let docResults : DocResults = new Map ( ) ;
48
+ let queryResults : QueryResults = new Map ( ) ;
50
49
const boost = query . boost !== undefined ? query . boost : 1 ;
51
50
const fieldName = query . field !== undefined ? query . field : null ;
52
51
@@ -59,19 +58,19 @@ export class IndexSearcher {
59
58
60
59
switch ( query . type ) {
61
60
case "bool" : {
62
- docResults = null ;
61
+ queryResults = null ;
63
62
if ( query . must !== undefined ) {
64
- docResults = this . _getUnique ( query . must . values , doScoring , docResults ) ;
63
+ queryResults = this . _getUnique ( query . must . values , doScoring , queryResults ) ;
65
64
}
66
65
if ( query . filter !== undefined ) {
67
- docResults = this . _getUnique ( query . filter . values , false , docResults ) ;
66
+ queryResults = this . _getUnique ( query . filter . values , false , queryResults ) ;
68
67
}
69
68
if ( query . should !== undefined ) {
70
69
let shouldDocs = this . _getAll ( query . should . values , doScoring ) ;
71
70
72
71
let empty = false ;
73
- if ( docResults === null ) {
74
- docResults = new Map ( ) ;
72
+ if ( queryResults === null ) {
73
+ queryResults = new Map ( ) ;
75
74
empty = true ;
76
75
}
77
76
@@ -91,12 +90,12 @@ export class IndexSearcher {
91
90
// Remove all docs with fewer matches.
92
91
for ( const [ docId , res ] of shouldDocs ) {
93
92
if ( res . length >= msm ) {
94
- if ( docResults . has ( docId ) ) {
95
- docResults . get ( docId ) . push ( ...res ) ;
93
+ if ( queryResults . has ( docId ) ) {
94
+ queryResults . get ( docId ) . push ( ...res ) ;
96
95
} else if ( empty ) {
97
- docResults . set ( docId , res ) ;
96
+ queryResults . set ( docId , res ) ;
98
97
} else {
99
- docResults . delete ( docId ) ;
98
+ queryResults . delete ( docId ) ;
100
99
}
101
100
}
102
101
}
@@ -105,8 +104,8 @@ export class IndexSearcher {
105
104
let notDocs = this . _getAll ( query . not . values , false ) ;
106
105
// Remove all docs.
107
106
for ( const docId of notDocs . keys ( ) ) {
108
- if ( docResults . has ( docId ) ) {
109
- docResults . delete ( docId ) ;
107
+ if ( queryResults . has ( docId ) ) {
108
+ queryResults . delete ( docId ) ;
110
109
}
111
110
}
112
111
}
@@ -115,43 +114,43 @@ export class IndexSearcher {
115
114
case "term" : {
116
115
const cps = toCodePoints ( query . value ) ;
117
116
let termIdx = InvertedIndex . getTermIndex ( cps , root ) ;
118
- this . _scorer . score ( fieldName , boost , termIdx , doScoring , docResults , cps ) ;
117
+ this . _scorer . score ( fieldName , boost , termIdx , doScoring , queryResults , cps ) ;
119
118
break ;
120
119
}
121
120
case "terms" : {
122
121
for ( let i = 0 ; i < query . value . length ; i ++ ) {
123
122
const cps = toCodePoints ( query . value [ i ] ) ;
124
123
let termIdx = InvertedIndex . getTermIndex ( cps , root ) ;
125
- this . _scorer . score ( fieldName , boost , termIdx , doScoring , docResults , cps ) ;
124
+ this . _scorer . score ( fieldName , boost , termIdx , doScoring , queryResults , cps ) ;
126
125
}
127
126
break ;
128
127
}
129
128
case "fuzzy" : {
130
129
const f = fuzzySearch ( query , root ) ;
131
130
for ( let i = 0 ; i < f . length ; i ++ ) {
132
- this . _scorer . score ( fieldName , boost * f [ i ] . boost , f [ i ] . index , doScoring , docResults , f [ i ] . term ) ;
131
+ this . _scorer . score ( fieldName , boost * f [ i ] . boost , f [ i ] . index , doScoring , queryResults , f [ i ] . term ) ;
133
132
}
134
133
break ;
135
134
}
136
135
case "wildcard" : {
137
136
const enableScoring = query . enable_scoring !== undefined ? query . enable_scoring : false ;
138
137
const w = wildcardSearch ( query , root ) ;
139
138
for ( let i = 0 ; i < w . length ; i ++ ) {
140
- this . _scorer . score ( fieldName , boost , w [ i ] . index , doScoring && enableScoring , docResults , w [ i ] . term ) ;
139
+ this . _scorer . score ( fieldName , boost , w [ i ] . index , doScoring && enableScoring , queryResults , w [ i ] . term ) ;
141
140
}
142
141
break ;
143
142
}
144
143
case "match_all" : {
145
144
for ( let docId of this . _docs ) {
146
- this . _scorer . scoreConstant ( boost , docId , docResults ) ;
145
+ this . _scorer . scoreConstant ( boost , docId , queryResults ) ;
147
146
}
148
147
break ;
149
148
}
150
149
case "constant_score" : {
151
- let tmpDocResults = this . _getAll ( query . filter . values , false ) ;
150
+ let tmpQueryResults = this . _getAll ( query . filter . values , false ) ;
152
151
// Add to each document a constant score.
153
- for ( const docId of tmpDocResults . keys ( ) ) {
154
- this . _scorer . scoreConstant ( boost , docId , docResults ) ;
152
+ for ( const docId of tmpQueryResults . keys ( ) ) {
153
+ this . _scorer . scoreConstant ( boost , docId , queryResults ) ;
155
154
}
156
155
break ;
157
156
}
@@ -162,15 +161,15 @@ export class IndexSearcher {
162
161
if ( termIdx !== null ) {
163
162
const termIdxs = InvertedIndex . extendTermIndex ( termIdx ) ;
164
163
for ( let i = 0 ; i < termIdxs . length ; i ++ ) {
165
- this . _scorer . score ( fieldName , boost , termIdxs [ i ] . index , doScoring && enableScoring , docResults , [ ...cps , ...termIdxs [ i ] . term ] ) ;
164
+ this . _scorer . score ( fieldName , boost , termIdxs [ i ] . index , doScoring && enableScoring , queryResults , [ ...cps , ...termIdxs [ i ] . term ] ) ;
166
165
}
167
166
}
168
167
break ;
169
168
}
170
169
case "exists" : {
171
170
if ( root !== null ) {
172
171
for ( const docId of this . _invIdxs [ fieldName ] . documentStore . keys ( ) ) {
173
- this . _scorer . scoreConstant ( boost , docId , docResults ) ;
172
+ this . _scorer . scoreConstant ( boost , docId , queryResults ) ;
174
173
}
175
174
}
176
175
break ;
@@ -210,56 +209,56 @@ export class IndexSearcher {
210
209
} else {
211
210
tmpQuery = tmpQuery . endMust ( ) ;
212
211
}
213
- docResults = this . _recursive ( tmpQuery . build ( ) . query , doScoring ) ;
212
+ queryResults = this . _recursive ( tmpQuery . build ( ) . query , doScoring ) ;
214
213
215
214
break ;
216
215
}
217
216
default :
218
217
break ;
219
218
}
220
- return docResults ;
219
+ return queryResults ;
221
220
}
222
221
223
- private _getUnique ( queries : any [ ] , doScoring : boolean , docResults : DocResults ) {
222
+ private _getUnique ( queries : any [ ] , doScoring : boolean , queryResults : QueryResults ) {
224
223
if ( queries . length === 0 ) {
225
- return docResults ;
224
+ return queryResults ;
226
225
}
227
226
228
227
for ( let i = 0 ; i < queries . length ; i ++ ) {
229
228
let currDocs = this . _recursive ( queries [ i ] , doScoring ) ;
230
- if ( docResults === null ) {
231
- docResults = this . _recursive ( queries [ 0 ] , doScoring ) ;
229
+ if ( queryResults === null ) {
230
+ queryResults = this . _recursive ( queries [ 0 ] , doScoring ) ;
232
231
continue ;
233
232
}
234
233
235
- for ( const docId of docResults . keys ( ) ) {
234
+ for ( const docId of queryResults . keys ( ) ) {
236
235
if ( ! currDocs . has ( docId ) ) {
237
- docResults . delete ( docId ) ;
236
+ queryResults . delete ( docId ) ;
238
237
} else {
239
- docResults . get ( docId ) . push ( ...currDocs . get ( docId ) ) ;
238
+ queryResults . get ( docId ) . push ( ...currDocs . get ( docId ) ) ;
240
239
}
241
240
}
242
241
}
243
- return docResults ;
242
+ return queryResults ;
244
243
}
245
244
246
245
private _getAll ( queries : any [ ] , doScoring : boolean ) {
247
- let docResults : DocResults = new Map ( ) ;
246
+ let queryResults : QueryResults = new Map ( ) ;
248
247
for ( let i = 0 ; i < queries . length ; i ++ ) {
249
248
let currDocs = this . _recursive ( queries [ i ] , doScoring ) ;
250
249
for ( const docId of currDocs . keys ( ) ) {
251
- if ( ! docResults . has ( docId ) ) {
252
- docResults . set ( docId , currDocs . get ( docId ) ) ;
250
+ if ( ! queryResults . has ( docId ) ) {
251
+ queryResults . set ( docId , currDocs . get ( docId ) ) ;
253
252
} else {
254
- docResults . get ( docId ) . push ( ...currDocs . get ( docId ) ) ;
253
+ queryResults . get ( docId ) . push ( ...currDocs . get ( docId ) ) ;
255
254
}
256
255
}
257
256
}
258
- return docResults ;
257
+ return queryResults ;
259
258
}
260
259
}
261
260
262
- type FuzzyResult = { index : Index , term : number [ ] , boost : number } ;
261
+ type FuzzyResult = { index : Index , term : number [ ] , boost : number } ;
263
262
264
263
/**
265
264
* Performs a fuzzy search.
@@ -378,7 +377,7 @@ function fuzzySearch(query: FuzzyQuery, root: Index): FuzzyResult[] {
378
377
return result ;
379
378
}
380
379
381
- type WildcardResult = { index : Index , term : number [ ] } ;
380
+ type WildcardResult = { index : Index , term : number [ ] } ;
382
381
383
382
/**
384
383
* Performs a wildcard search.
0 commit comments