@@ -62,6 +62,16 @@ export interface StoreData {
62
62
mapType ?: OrderedMapType ;
63
63
}
64
64
65
+ export interface ILiveConsumerConfigs {
66
+ usePushForGetRange : boolean ;
67
+ }
68
+
69
+ export type GetLiveConsumerConfigsFn = ( ) => ILiveConsumerConfigs ;
70
+
71
+ const defaultLiveConsumerConfigs : ILiveConsumerConfigs = {
72
+ usePushForGetRange : false ,
73
+ } ;
74
+
65
75
export class InMemoryProvider extends DbProvider {
66
76
private _stores : Map < string , StoreData > = new Map ( ) ;
67
77
@@ -73,7 +83,8 @@ export class InMemoryProvider extends DbProvider {
73
83
constructor (
74
84
mapType ?: OrderedMapType ,
75
85
supportsRollback = false ,
76
- logger ?: IObjectStoreProviderLogger
86
+ logger ?: IObjectStoreProviderLogger ,
87
+ private getLiveConfigs ?: GetLiveConsumerConfigsFn
77
88
) {
78
89
super ( ) ;
79
90
this . _mapType = mapType ;
@@ -120,7 +131,8 @@ export class InMemoryProvider extends DbProvider {
120
131
token ,
121
132
writeNeeded ,
122
133
this . _supportsRollback ! ,
123
- this . logger
134
+ this . logger ,
135
+ this . getLiveConfigs
124
136
)
125
137
) ;
126
138
}
@@ -146,7 +158,8 @@ class InMemoryTransaction implements DbTransaction {
146
158
private _transToken : TransactionToken ,
147
159
private _writeNeeded : boolean ,
148
160
private _supportsRollback : boolean ,
149
- private logger : IObjectStoreProviderLogger
161
+ private logger : IObjectStoreProviderLogger ,
162
+ private getLiveConfigs ?: GetLiveConsumerConfigsFn
150
163
) {
151
164
// Close the transaction on the next tick. By definition, anything is completed synchronously here, so after an event tick
152
165
// goes by, there can't have been anything pending.
@@ -217,7 +230,8 @@ class InMemoryTransaction implements DbTransaction {
217
230
const ims = new InMemoryStore (
218
231
this ,
219
232
store ,
220
- this . _writeNeeded && this . _supportsRollback
233
+ this . _writeNeeded && this . _supportsRollback ,
234
+ this . getLiveConfigs
221
235
) ;
222
236
this . _stores . set ( storeName , ims ) ;
223
237
return ims ;
@@ -237,7 +251,8 @@ class InMemoryStore implements DbStore {
237
251
constructor (
238
252
private _trans : InMemoryTransaction ,
239
253
storeInfo : StoreData ,
240
- private _supportsRollback : boolean
254
+ private _supportsRollback : boolean ,
255
+ private getLiveConfigs ?: GetLiveConsumerConfigsFn
241
256
) {
242
257
this . _storeSchema = storeInfo . schema ;
243
258
if ( this . _supportsRollback ) {
@@ -273,7 +288,8 @@ class InMemoryStore implements DbStore {
273
288
this . _mergedData ,
274
289
index ,
275
290
this . _storeSchema . primaryKeyPath ,
276
- this . _mapType
291
+ this . _mapType ,
292
+ this . getLiveConfigs
277
293
)
278
294
) ;
279
295
} ) ;
@@ -394,7 +410,8 @@ class InMemoryStore implements DbStore {
394
410
this . _mergedData ,
395
411
undefined as any ,
396
412
this . _storeSchema . primaryKeyPath ,
397
- this . _mapType
413
+ this . _mapType ,
414
+ this . getLiveConfigs
398
415
)
399
416
) ;
400
417
}
@@ -419,7 +436,8 @@ class InMemoryStore implements DbStore {
419
436
this . _mergedData ,
420
437
indexSchema ,
421
438
this . _storeSchema . primaryKeyPath ,
422
- this . _mapType
439
+ this . _mapType ,
440
+ this . getLiveConfigs
423
441
)
424
442
) ;
425
443
}
@@ -441,7 +459,8 @@ class InMemoryStore implements DbStore {
441
459
this . _mergedData ,
442
460
index ,
443
461
this . _storeSchema . primaryKeyPath ,
444
- this . _mapType
462
+ this . _mapType ,
463
+ this . getLiveConfigs
445
464
)
446
465
) ;
447
466
} ) ;
@@ -498,15 +517,18 @@ class InMemoryStore implements DbStore {
498
517
class InMemoryIndex extends DbIndexFTSFromRangeQueries {
499
518
private _indexTree : IOrderedMap < string , ItemType [ ] > ;
500
519
private _trans ?: InMemoryTransaction ;
520
+ private getLiveConfigs : GetLiveConsumerConfigsFn ;
501
521
constructor (
502
522
_mergedData : Map < string , ItemType > ,
503
523
indexSchema : IndexSchema ,
504
524
primaryKeyPath : KeyPathType ,
505
- mapType ?: OrderedMapType
525
+ mapType ?: OrderedMapType ,
526
+ getLiveConfigs ?: GetLiveConsumerConfigsFn
506
527
) {
507
528
super ( indexSchema , primaryKeyPath ) ;
508
529
this . _indexTree = createOrderedMap ( mapType ) ;
509
530
this . put ( values ( _mergedData ) , true ) ;
531
+ this . getLiveConfigs = getLiveConfigs ?? ( ( ) => defaultLiveConsumerConfigs ) ;
510
532
}
511
533
512
534
public internal_SetTransaction ( trans : InMemoryTransaction ) {
@@ -741,6 +763,15 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries {
741
763
? this . _indexTree . entriesReversed ( )
742
764
: this . _indexTree . entries ( ) ;
743
765
let values = [ ] as ItemType [ ] ;
766
+ const { usePushForGetRange } = this . getLiveConfigs ( ) ;
767
+ const pushValues = ( values : ItemType [ ] , newValues : ItemType [ ] ) => {
768
+ newValues . forEach ( ( v ) => values . push ( v ) ) ;
769
+ return values ;
770
+ } ;
771
+ const concatValues = ( values : ItemType [ ] , newValues : ItemType [ ] ) => {
772
+ return values . concat ( newValues ) ;
773
+ } ;
774
+ const mergeFn = usePushForGetRange ? pushValues : concatValues ;
744
775
for ( const entry of iterator ) {
745
776
const key = entry . key ;
746
777
if ( key === undefined ) {
@@ -769,16 +800,16 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries {
769
800
}
770
801
771
802
if ( this . isUniqueIndex ( ) ) {
772
- values = values . concat ( this . _indexTree . get ( key ) as ItemType [ ] ) ;
803
+ const newValues = this . _indexTree . get ( key ) as ItemType [ ] ;
804
+ values = mergeFn ( values , newValues ) ;
773
805
} else {
774
- values = values . concat (
775
- this . _getKeyValues (
776
- key ,
777
- limit - values . length ,
778
- Math . abs ( offset ) ,
779
- reverse
780
- )
806
+ const newValues = this . _getKeyValues (
807
+ key ,
808
+ limit - values . length ,
809
+ Math . abs ( offset ) ,
810
+ reverse
781
811
) ;
812
+ values = mergeFn ( values , newValues ) ;
782
813
783
814
if ( offset < 0 ) {
784
815
offset = 0 ;
0 commit comments