@@ -117,15 +117,11 @@ export class MatchAccumulator<T = any> {
117
117
}
118
118
}
119
119
120
- public getMatches ( ) : IterableIterator < Match < T > > {
121
- return this . matches . values ( ) ;
122
- }
123
-
124
- public * getMatchesWhere (
125
- predicate : ( match : Match < T > ) => boolean ,
120
+ public * getMatches (
121
+ predicate ?: ( match : Match < T > ) => boolean ,
126
122
) : IterableIterator < Match < T > > {
127
123
for ( const match of this . matches . values ( ) ) {
128
- if ( predicate ( match ) ) {
124
+ if ( predicate === undefined || predicate ( match ) ) {
129
125
yield match ;
130
126
}
131
127
}
@@ -165,7 +161,7 @@ export class MatchAccumulator<T = any> {
165
161
minHitCount : number | undefined ,
166
162
) : IterableIterator < Match < T > > {
167
163
return minHitCount !== undefined && minHitCount > 0
168
- ? this . getMatchesWhere ( ( m ) => m . hitCount >= minHitCount )
164
+ ? this . getMatches ( ( m ) => m . hitCount >= minHitCount )
169
165
: this . matches . values ( ) ;
170
166
}
171
167
}
@@ -235,6 +231,17 @@ export class SemanticRefAccumulator extends MatchAccumulator<SemanticRefIndex> {
235
231
) ;
236
232
}
237
233
234
+ public * getSemanticRefs (
235
+ semanticRefs : SemanticRef [ ] ,
236
+ predicate ?: ( semanticRef : SemanticRef ) => boolean ,
237
+ ) {
238
+ for ( const match of this . getMatches ( ) ) {
239
+ const semanticRef = semanticRefs [ match . value ] ;
240
+ if ( predicate === undefined || predicate ( semanticRef ) )
241
+ yield semanticRef ;
242
+ }
243
+ }
244
+
238
245
public groupMatchesByKnowledgeType (
239
246
semanticRefs : SemanticRef [ ] ,
240
247
) : Map < KnowledgeType , SemanticRefAccumulator > {
@@ -252,6 +259,19 @@ export class SemanticRefAccumulator extends MatchAccumulator<SemanticRefIndex> {
252
259
return groups ;
253
260
}
254
261
262
+ public selectInScope (
263
+ semanticRefs : SemanticRef [ ] ,
264
+ scope : TextRangeAccumulator ,
265
+ ) {
266
+ const accumulator = new SemanticRefAccumulator ( this . queryTermMatches ) ;
267
+ for ( const match of this . getMatches ( ) ) {
268
+ if ( scope . isInRange ( semanticRefs [ match . value ] . range ) ) {
269
+ accumulator . setMatch ( match ) ;
270
+ }
271
+ }
272
+ return accumulator ;
273
+ }
274
+
255
275
public toScoredSemanticRefs ( ) : ScoredSemanticRef [ ] {
256
276
return this . getSortedByScore ( 0 ) . map ( ( m ) => {
257
277
return {
@@ -348,13 +368,14 @@ export class QueryTermAccumulator {
348
368
349
369
export class TextRangeAccumulator {
350
370
constructor (
351
- public rangesForMessage : Map < MessageIndex , TextRange [ ] > = new Map <
352
- MessageIndex ,
353
- TextRange [ ]
354
- > ( ) ,
371
+ private rangesForMessage = new Map < MessageIndex , TextRange [ ] > ( ) ,
355
372
) { }
356
373
357
- public addTextRange ( textRange : TextRange ) {
374
+ public get size ( ) {
375
+ return this . rangesForMessage . size ;
376
+ }
377
+
378
+ public addRange ( textRange : TextRange ) {
358
379
const messageIndex = textRange . start . messageIndex ;
359
380
let textRanges = this . rangesForMessage . get ( messageIndex ) ;
360
381
if ( textRanges === undefined ) {
0 commit comments