-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
FSyncTree.m
1093 lines (1007 loc) · 44.6 KB
/
FSyncTree.m
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
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2017 Google
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import "FirebaseDatabase/Sources/Core/FSyncTree.h"
#import "FirebaseCore/Extension/FirebaseCoreInternal.h"
#import "FirebaseDatabase/Sources/Core/FCompoundHash.h"
#import "FirebaseDatabase/Sources/Core/FListenProvider.h"
#import "FirebaseDatabase/Sources/Core/FQueryParams.h"
#import "FirebaseDatabase/Sources/Core/FQuerySpec.h"
#import "FirebaseDatabase/Sources/Core/FRangeMerge.h"
#import "FirebaseDatabase/Sources/Core/FServerValues.h"
#import "FirebaseDatabase/Sources/Core/FSnapshotHolder.h"
#import "FirebaseDatabase/Sources/Core/FSyncPoint.h"
#import "FirebaseDatabase/Sources/Core/FWriteRecord.h"
#import "FirebaseDatabase/Sources/Core/FWriteTree.h"
#import "FirebaseDatabase/Sources/Core/FWriteTreeRef.h"
#import "FirebaseDatabase/Sources/Core/Operation/FAckUserWrite.h"
#import "FirebaseDatabase/Sources/Core/Operation/FMerge.h"
#import "FirebaseDatabase/Sources/Core/Operation/FOperation.h"
#import "FirebaseDatabase/Sources/Core/Operation/FOperationSource.h"
#import "FirebaseDatabase/Sources/Core/Operation/FOverwrite.h"
#import "FirebaseDatabase/Sources/Core/Utilities/FImmutableTree.h"
#import "FirebaseDatabase/Sources/Core/Utilities/FPath.h"
#import "FirebaseDatabase/Sources/Core/View/FCacheNode.h"
#import "FirebaseDatabase/Sources/Core/View/FEventRaiser.h"
#import "FirebaseDatabase/Sources/Core/View/FEventRegistration.h"
#import "FirebaseDatabase/Sources/Core/View/FKeepSyncedEventRegistration.h"
#import "FirebaseDatabase/Sources/Core/View/FView.h"
#import "FirebaseDatabase/Sources/FListenComplete.h"
#import "FirebaseDatabase/Sources/Persistence/FPersistenceManager.h"
#import "FirebaseDatabase/Sources/Snapshot/FChildrenNode.h"
#import "FirebaseDatabase/Sources/Snapshot/FCompoundWrite.h"
#import "FirebaseDatabase/Sources/Snapshot/FEmptyNode.h"
#import "FirebaseDatabase/Sources/Snapshot/FNode.h"
#import "FirebaseDatabase/Sources/Snapshot/FSnapshotUtilities.h"
#import "FirebaseDatabase/Sources/Utilities/FAtomicNumber.h"
#import "FirebaseDatabase/Sources/Utilities/FUtilities.h"
#import "FirebaseDatabase/Sources/Utilities/Tuples/FTupleRemovedQueriesEvents.h"
// Size after which we start including the compound hash
static const NSUInteger kFSizeThresholdForCompoundHash = 1024;
@interface FListenContainer : NSObject <FSyncTreeHash>
@property(nonatomic, strong) FView *view;
@property(nonatomic, copy) fbt_nsarray_nsstring onComplete;
@end
@implementation FListenContainer
- (instancetype)initWithView:(FView *)view
onComplete:(fbt_nsarray_nsstring)onComplete {
self = [super init];
if (self != nil) {
self->_view = view;
self->_onComplete = onComplete;
}
return self;
}
- (id<FNode>)serverCache {
return self.view.serverCache;
}
- (FCompoundHash *)compoundHash {
return [FCompoundHash fromNode:[self serverCache]];
}
- (NSString *)simpleHash {
return [[self serverCache] dataHash];
}
- (BOOL)includeCompoundHash {
return [FSnapshotUtilities estimateSerializedNodeSize:[self serverCache]] >
kFSizeThresholdForCompoundHash;
}
@end
@interface FSyncTree ()
/**
* Tree of SyncPoints. There's a SyncPoint at any location that has 1 or more
* views.
*/
@property(nonatomic, strong) FImmutableTree *syncPointTree;
/**
* A tree of all pending user writes (user-initiated set, transactions, updates,
* etc)
*/
@property(nonatomic, strong) FWriteTree *pendingWriteTree;
/**
* Maps tagId -> FTuplePathQueryParams
*/
@property(nonatomic, strong) NSMutableDictionary *tagToQueryMap;
@property(nonatomic, strong) NSMutableDictionary *queryToTagMap;
@property(nonatomic, strong) FListenProvider *listenProvider;
@property(nonatomic, strong) FPersistenceManager *persistenceManager;
@property(nonatomic, strong) FAtomicNumber *queryTagCounter;
@property(nonatomic, strong) NSMutableSet *keepSyncedQueries;
@end
/**
* SyncTree is the central class for managing event callback registration, data
* caching, views (query processing), and event generation. There are typically
* two SyncTree instances for each Repo, one for the normal Firebase data, and
* one for the .info data.
*
* It has a number of responsibilities, including:
* - Tracking all user event callbacks (registered via addEventRegistration:
* and removeEventRegistration:).
* - Applying and caching data changes for user setValue:,
* runTransactionBlock:, and updateChildValues: calls
* (applyUserOverwriteAtPath:, applyUserMergeAtPath:).
* - Applying and caching data changes for server data changes
* (applyServerOverwriteAtPath:, applyServerMergeAtPath:).
* - Generating user-facing events for server and user changes (all of the
* apply* methods return the set of events that need to be raised as a result).
* - Maintaining the appropriate set of server listens to ensure we are always
* subscribed to the correct set of paths and queries to satisfy the current set
* of user event callbacks (listens are started/stopped using the provided
* listenProvider).
*
* NOTE: Although SyncTree tracks event callbacks and calculates events to
* raise, the actual events are returned to the caller rather than raised
* synchronously.
*/
@implementation FSyncTree
- (id)initWithListenProvider:(FListenProvider *)provider {
return [self initWithPersistenceManager:nil listenProvider:provider];
}
- (id)initWithPersistenceManager:(FPersistenceManager *)persistenceManager
listenProvider:(FListenProvider *)provider {
self = [super init];
if (self) {
self.syncPointTree = [FImmutableTree empty];
self.pendingWriteTree = [[FWriteTree alloc] init];
self.tagToQueryMap = [[NSMutableDictionary alloc] init];
self.queryToTagMap = [[NSMutableDictionary alloc] init];
self.listenProvider = provider;
self.persistenceManager = persistenceManager;
self.queryTagCounter = [[FAtomicNumber alloc] init];
self.keepSyncedQueries = [NSMutableSet set];
}
return self;
}
#pragma mark -
#pragma mark Apply Operations
/**
* Apply data changes for a user-generated setValue: runTransactionBlock:
* updateChildValues:, etc.
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyUserOverwriteAtPath:(FPath *)path
newData:(id<FNode>)newData
writeId:(NSInteger)writeId
isVisible:(BOOL)visible {
// Record pending write
[self.pendingWriteTree addOverwriteAtPath:path
newData:newData
writeId:writeId
isVisible:visible];
if (!visible) {
return @[];
} else {
FOverwrite *operation =
[[FOverwrite alloc] initWithSource:[FOperationSource userInstance]
path:path
snap:newData];
return [self applyOperationToSyncPoints:operation];
}
}
/**
* Apply the data from a user-generated updateChildValues: call
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyUserMergeAtPath:(FPath *)path
changedChildren:(FCompoundWrite *)changedChildren
writeId:(NSInteger)writeId {
// Record pending merge
[self.pendingWriteTree addMergeAtPath:path
changedChildren:changedChildren
writeId:writeId];
FMerge *operation =
[[FMerge alloc] initWithSource:[FOperationSource userInstance]
path:path
children:changedChildren];
return [self applyOperationToSyncPoints:operation];
}
/**
* Acknowledge a pending user write that was previously registered with
* applyUserOverwriteAtPath: or applyUserMergeAtPath:
* TODO[offline]: Taking a serverClock here is awkward, but server values are
* awkward. :-(
* @return NSArray of FEvent to raise.
*/
- (NSArray *)ackUserWriteWithWriteId:(NSInteger)writeId
revert:(BOOL)revert
persist:(BOOL)persist
clock:(id<FClock>)clock {
FWriteRecord *write = [self.pendingWriteTree writeForId:writeId];
BOOL needToReevaluate = [self.pendingWriteTree removeWriteId:writeId];
if (write.visible) {
if (persist) {
[self.persistenceManager removeUserWrite:writeId];
}
if (!revert) {
NSDictionary *serverValues =
[FServerValues generateServerValues:clock];
if ([write isOverwrite]) {
id<FNode> resolvedNode =
[FServerValues resolveDeferredValueSnapshot:write.overwrite
withSyncTree:self
atPath:write.path
serverValues:serverValues];
[self.persistenceManager applyUserWrite:resolvedNode
toServerCacheAtPath:write.path];
} else {
FCompoundWrite *resolvedMerge = [FServerValues
resolveDeferredValueCompoundWrite:write.merge
withSyncTree:self
atPath:write.path
serverValues:serverValues];
[self.persistenceManager applyUserMerge:resolvedMerge
toServerCacheAtPath:write.path];
}
}
}
if (!needToReevaluate) {
return @[];
} else {
__block FImmutableTree *affectedTree = [FImmutableTree empty];
if (write.isOverwrite) {
affectedTree = [affectedTree setValue:@YES atPath:[FPath empty]];
} else {
[write.merge
enumerateWrites:^(FPath *path, id<FNode> node, BOOL *stop) {
affectedTree = [affectedTree setValue:@YES atPath:path];
}];
}
FAckUserWrite *operation =
[[FAckUserWrite alloc] initWithPath:write.path
affectedTree:affectedTree
revert:revert];
return [self applyOperationToSyncPoints:operation];
}
}
/**
* Apply new server data for the specified path
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyServerOverwriteAtPath:(FPath *)path
newData:(id<FNode>)newData {
[self.persistenceManager
updateServerCacheWithNode:newData
forQuery:[FQuerySpec defaultQueryAtPath:path]];
FOverwrite *operation =
[[FOverwrite alloc] initWithSource:[FOperationSource serverInstance]
path:path
snap:newData];
return [self applyOperationToSyncPoints:operation];
}
/**
* Applied new server data to be merged in at the specified path
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyServerMergeAtPath:(FPath *)path
changedChildren:(FCompoundWrite *)changedChildren {
[self.persistenceManager updateServerCacheWithMerge:changedChildren
atPath:path];
FMerge *operation =
[[FMerge alloc] initWithSource:[FOperationSource serverInstance]
path:path
children:changedChildren];
return [self applyOperationToSyncPoints:operation];
}
- (NSArray *)applyServerRangeMergeAtPath:(FPath *)path
updates:(NSArray *)ranges {
FSyncPoint *syncPoint = [self.syncPointTree valueAtPath:path];
if (syncPoint == nil) {
// Removed view, so it's safe to just ignore this update
return @[];
} else {
// This could be for any "complete" (unfiltered) view, and if there is
// more than one complete view, they should each have the same cache so
// it doesn't matter which one we use.
FView *view = [syncPoint completeView];
if (view != nil) {
id<FNode> serverNode = [view serverCache];
for (FRangeMerge *merge in ranges) {
serverNode = [merge applyToNode:serverNode];
}
return [self applyServerOverwriteAtPath:path newData:serverNode];
} else {
// There doesn't exist a view for this update, so it was removed and
// it's safe to just ignore this range merge
return @[];
}
}
}
/**
* Apply a listen complete to a path
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyListenCompleteAtPath:(FPath *)path {
[self.persistenceManager
setQueryComplete:[FQuerySpec defaultQueryAtPath:path]];
id<FOperation> operation = [[FListenComplete alloc]
initWithSource:[FOperationSource serverInstance]
path:path];
return [self applyOperationToSyncPoints:operation];
}
/**
* Apply a listen complete to a path
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyTaggedListenCompleteAtPath:(FPath *)path
tagId:(NSNumber *)tagId {
FQuerySpec *query = [self queryForTag:tagId];
if (query != nil) {
[self.persistenceManager setQueryComplete:query];
FPath *relativePath = [FPath relativePathFrom:query.path to:path];
id<FOperation> op = [[FListenComplete alloc]
initWithSource:[FOperationSource forServerTaggedQuery:query.params]
path:relativePath];
return [self applyTaggedOperation:op atPath:query.path];
} else {
// We've already removed the query. No big deal, ignore the update.
return @[];
}
}
/**
* Internal helper method to apply tagged operation
*/
- (NSArray *)applyTaggedOperation:(id<FOperation>)operation
atPath:(FPath *)path {
FSyncPoint *syncPoint = [self.syncPointTree valueAtPath:path];
NSAssert(syncPoint != nil,
@"Missing sync point for query tag that we're tracking.");
FWriteTreeRef *writesCache =
[self.pendingWriteTree childWritesForPath:path];
return [syncPoint applyOperation:operation
writesCache:writesCache
serverCache:nil];
}
/**
* Apply new server data for the specified tagged query
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyTaggedQueryOverwriteAtPath:(FPath *)path
newData:(id<FNode>)newData
tagId:(NSNumber *)tagId {
FQuerySpec *query = [self queryForTag:tagId];
if (query != nil) {
FPath *relativePath = [FPath relativePathFrom:query.path to:path];
FQuerySpec *queryToOverwrite =
relativePath.isEmpty ? query : [FQuerySpec defaultQueryAtPath:path];
[self.persistenceManager updateServerCacheWithNode:newData
forQuery:queryToOverwrite];
FOverwrite *operation = [[FOverwrite alloc]
initWithSource:[FOperationSource forServerTaggedQuery:query.params]
path:relativePath
snap:newData];
return [self applyTaggedOperation:operation atPath:query.path];
} else {
// Query must have been removed already
return @[];
}
}
/**
* Apply server data to be merged in for the specified tagged query
* @return NSArray of FEvent to raise.
*/
- (NSArray *)applyTaggedQueryMergeAtPath:(FPath *)path
changedChildren:(FCompoundWrite *)changedChildren
tagId:(NSNumber *)tagId {
FQuerySpec *query = [self queryForTag:tagId];
if (query != nil) {
FPath *relativePath = [FPath relativePathFrom:query.path to:path];
[self.persistenceManager updateServerCacheWithMerge:changedChildren
atPath:path];
FMerge *operation = [[FMerge alloc]
initWithSource:[FOperationSource forServerTaggedQuery:query.params]
path:relativePath
children:changedChildren];
return [self applyTaggedOperation:operation atPath:query.path];
} else {
// We've already removed the query. No big deal, ignore the update.
return @[];
}
}
- (NSArray *)applyTaggedServerRangeMergeAtPath:(FPath *)path
updates:(NSArray *)ranges
tagId:(NSNumber *)tagId {
FQuerySpec *query = [self queryForTag:tagId];
if (query != nil) {
NSAssert([path isEqual:query.path],
@"Tagged update path and query path must match");
FSyncPoint *syncPoint = [self.syncPointTree valueAtPath:path];
NSAssert(syncPoint != nil,
@"Missing sync point for query tag that we're tracking.");
FView *view = [syncPoint viewForQuery:query];
NSAssert(view != nil,
@"Missing view for query tag that we're tracking");
id<FNode> serverNode = [view serverCache];
for (FRangeMerge *merge in ranges) {
serverNode = [merge applyToNode:serverNode];
}
return [self applyTaggedQueryOverwriteAtPath:path
newData:serverNode
tagId:tagId];
} else {
// We've already removed the query. No big deal, ignore the update.
return @[];
}
}
/**
* Add an event callback for the specified query
* @return NSArray of FEvent to raise.
*/
- (NSArray *)addEventRegistration:(id<FEventRegistration>)eventRegistration
forQuery:(FQuerySpec *)query {
FPath *path = query.path;
__block BOOL foundAncestorDefaultView = NO;
[self.syncPointTree
forEachOnPath:query.path
whileBlock:^BOOL(FPath *pathToSyncPoint, FSyncPoint *syncPoint) {
foundAncestorDefaultView =
foundAncestorDefaultView || [syncPoint hasCompleteView];
return !foundAncestorDefaultView;
}];
[self.persistenceManager setQueryActive:query];
FSyncPoint *syncPoint = [self.syncPointTree valueAtPath:path];
if (syncPoint == nil) {
syncPoint = [[FSyncPoint alloc]
initWithPersistenceManager:self.persistenceManager];
self.syncPointTree = [self.syncPointTree setValue:syncPoint
atPath:path];
}
BOOL viewAlreadyExists = [syncPoint viewExistsForQuery:query];
NSArray *events;
if (viewAlreadyExists) {
events = [syncPoint addEventRegistration:eventRegistration
forExistingViewForQuery:query];
} else {
if (![query loadsAllData]) {
// We need to track a tag for this query
NSAssert(self.queryToTagMap[query] == nil,
@"View does not exist, but we have a tag");
NSNumber *tagId = [self.queryTagCounter getAndIncrement];
self.queryToTagMap[query] = tagId;
self.tagToQueryMap[tagId] = query;
}
FWriteTreeRef *writesCache =
[self.pendingWriteTree childWritesForPath:path];
FCacheNode *serverCache = [self serverCacheForQuery:query];
events = [syncPoint addEventRegistration:eventRegistration
forNonExistingViewForQuery:query
writesCache:writesCache
serverCache:serverCache];
// There was no view and no default listen
if (!foundAncestorDefaultView) {
FView *view = [syncPoint viewForQuery:query];
NSMutableArray *mutableEvents = [events mutableCopy];
[mutableEvents
addObjectsFromArray:[self setupListenerOnQuery:query
view:view]];
events = mutableEvents;
}
}
return events;
}
- (FCacheNode *)serverCacheForQuery:(FQuerySpec *)query {
__block id<FNode> serverCacheNode = nil;
[self.syncPointTree
forEachOnPath:query.path
whileBlock:^BOOL(FPath *pathToSyncPoint, FSyncPoint *syncPoint) {
FPath *relativePath = [FPath relativePathFrom:pathToSyncPoint
to:query.path];
serverCacheNode =
[syncPoint completeServerCacheAtPath:relativePath];
return serverCacheNode == nil;
}];
FCacheNode *serverCache;
if (serverCacheNode != nil) {
FIndexedNode *indexed =
[FIndexedNode indexedNodeWithNode:serverCacheNode
index:query.index];
serverCache = [[FCacheNode alloc] initWithIndexedNode:indexed
isFullyInitialized:YES
isFiltered:NO];
} else {
FCacheNode *persistenceServerCache =
[self.persistenceManager serverCacheForQuery:query];
if (persistenceServerCache.isFullyInitialized) {
serverCache = persistenceServerCache;
} else {
serverCacheNode = [FEmptyNode emptyNode];
FImmutableTree *subtree =
[self.syncPointTree subtreeAtPath:query.path];
[subtree
forEachChild:^(NSString *childKey, FSyncPoint *childSyncPoint) {
id<FNode> completeCache =
[childSyncPoint completeServerCacheAtPath:[FPath empty]];
if (completeCache) {
serverCacheNode =
[serverCacheNode updateImmediateChild:childKey
withNewChild:completeCache];
}
}];
// Fill the node with any available children we have
[persistenceServerCache.node
enumerateChildrenUsingBlock:^(NSString *key, id<FNode> node,
BOOL *stop) {
if (![serverCacheNode hasChild:key]) {
serverCacheNode =
[serverCacheNode updateImmediateChild:key
withNewChild:node];
}
}];
FIndexedNode *indexed =
[FIndexedNode indexedNodeWithNode:serverCacheNode
index:query.index];
serverCache = [[FCacheNode alloc] initWithIndexedNode:indexed
isFullyInitialized:NO
isFiltered:NO];
}
}
return serverCache;
}
/**
* Remove event callback(s).
*
* If query is the default query, we'll check all queries for the specified
* eventRegistration. If eventRegistration is null, we'll remove all callbacks
* for the specified query/queries.
*
* @param eventRegistration if nil, all callbacks are removed
* @param cancelError If provided, appropriate cancel events will be returned
* @return NSArray of FEvent to raise.
*/
- (NSArray *)removeEventRegistration:(id<FEventRegistration>)eventRegistration
forQuery:(FQuerySpec *)query
cancelError:(NSError *)cancelError {
// Find the syncPoint first. Then deal with whether or not it has matching
// listeners
FPath *path = query.path;
FSyncPoint *maybeSyncPoint = [self.syncPointTree valueAtPath:path];
NSArray *cancelEvents = @[];
// A removal on a default query affects all queries at that location. A
// removal on an indexed query, even one without other query constraints,
// does *not* affect all queries at that location. So this check must be for
// 'default', and not loadsAllData:
if (maybeSyncPoint &&
([query isDefault] || [maybeSyncPoint viewExistsForQuery:query])) {
FTupleRemovedQueriesEvents *removedAndEvents =
[maybeSyncPoint removeEventRegistration:eventRegistration
forQuery:query
cancelError:cancelError];
if ([maybeSyncPoint isEmpty]) {
self.syncPointTree = [self.syncPointTree removeValueAtPath:path];
}
NSArray *removed = removedAndEvents.removedQueries;
cancelEvents = removedAndEvents.cancelEvents;
// We may have just removed one of many listeners and can short-circuit
// this whole process We may also not have removed a default listener,
// in which case all of the descendant listeners should already be
// properly set up.
//
// Since indexed queries can shadow if they don't have other query
// constraints, check for loadsAllData: instead of isDefault:
NSUInteger defaultQueryIndex = [removed
indexOfObjectPassingTest:^BOOL(FQuerySpec *q, NSUInteger idx,
BOOL *stop) {
return [q loadsAllData];
}];
BOOL removingDefault = defaultQueryIndex != NSNotFound;
[removed enumerateObjectsUsingBlock:^(FQuerySpec *query, NSUInteger idx,
BOOL *stop) {
[self.persistenceManager setQueryInactive:query];
}];
NSNumber *covered = [self.syncPointTree
findOnPath:path
andApplyBlock:^id(FPath *relativePath,
FSyncPoint *parentSyncPoint) {
return
[NSNumber numberWithBool:[parentSyncPoint hasCompleteView]];
}];
if (removingDefault && ![covered boolValue]) {
FImmutableTree *subtree = [self.syncPointTree subtreeAtPath:path];
// There are potentially child listeners. Determine what if any
// listens we need to send before executing the removal
if (![subtree isEmpty]) {
// We need to fold over our subtree and collect the listeners to
// send
NSArray *newViews =
[self collectDistinctViewsForSubTree:subtree];
// Ok, we've collected all the listens we need. Set them up.
[newViews enumerateObjectsUsingBlock:^(
FView *view, NSUInteger idx, BOOL *stop) {
FQuerySpec *newQuery = view.query;
FListenContainer *listenContainer =
[self createListenerForView:view];
self.listenProvider.startListening(
[self queryForListening:newQuery],
[self tagForQuery:newQuery], listenContainer,
listenContainer.onComplete);
}];
} else {
// There's nothing below us, so nothing we need to start
// listening on
}
}
// If we removed anything and we're not covered by a higher up listen,
// we need to stop listening on this query. The above block has us
// covered in terms of making sure we're set up on listens lower in the
// tree. Also, note that if we have a cancelError, it's already been
// removed at the provider level.
if (![covered boolValue] && [removed count] > 0 && cancelError == nil) {
// If we removed a default, then we weren't listening on any of the
// other queries here. Just cancel the one default. Otherwise, we
// need to iterate through and cancel each individual query
if (removingDefault) {
// We don't tag default listeners
self.listenProvider.stopListening(
[self queryForListening:query], nil);
} else {
[removed
enumerateObjectsUsingBlock:^(FQuerySpec *queryToRemove,
NSUInteger idx, BOOL *stop) {
NSNumber *tagToRemove =
[self.queryToTagMap objectForKey:queryToRemove];
self.listenProvider.stopListening(
[self queryForListening:queryToRemove], tagToRemove);
}];
}
}
// Now, clear all the tags we're tracking for the removed listens.
[self removeTags:removed];
} else {
// No-op, this listener must've been already removed
}
return cancelEvents;
}
- (void)keepQuery:(FQuerySpec *)query synced:(BOOL)keepSynced {
// Only do something if we actually need to add/remove an event registration
if (keepSynced && ![self.keepSyncedQueries containsObject:query]) {
[self addEventRegistration:[FKeepSyncedEventRegistration instance]
forQuery:query];
[self.keepSyncedQueries addObject:query];
} else if (!keepSynced && [self.keepSyncedQueries containsObject:query]) {
[self removeEventRegistration:[FKeepSyncedEventRegistration instance]
forQuery:query
cancelError:nil];
[self.keepSyncedQueries removeObject:query];
}
}
- (NSArray *)removeAllWrites {
[self.persistenceManager removeAllUserWrites];
NSArray *removedWrites = [self.pendingWriteTree removeAllWrites];
if (removedWrites.count > 0) {
FImmutableTree *affectedTree =
[[FImmutableTree empty] setValue:@YES atPath:[FPath empty]];
return [self applyOperationToSyncPoints:[[FAckUserWrite alloc]
initWithPath:[FPath empty]
affectedTree:affectedTree
revert:YES]];
} else {
return @[];
}
}
/** Returns a non-empty cache node if one exists. Otherwise returns null. */
- (FIndexedNode *)persistenceServerCache:(FQuerySpec *)querySpec {
FCacheNode *cacheNode =
[self.persistenceManager serverCacheForQuery:querySpec];
if (cacheNode == nil || cacheNode.node.isEmpty) {
return nil;
}
return cacheNode.indexedNode;
}
- (id<FNode>)getServerValue:(FQuerySpec *)query {
__block id<FNode> serverCacheNode = nil;
__block FSyncPoint *targetSyncPoint = nil;
[self.syncPointTree
forEachOnPath:query.path
whileBlock:^BOOL(FPath *pathToSyncPoint, FSyncPoint *syncPoint) {
FPath *relativePath = [FPath relativePathFrom:pathToSyncPoint
to:query.path];
serverCacheNode =
[syncPoint completeEventCacheAtPath:relativePath];
targetSyncPoint = syncPoint;
return serverCacheNode == nil;
}];
if (targetSyncPoint == nil) {
targetSyncPoint = [[FSyncPoint alloc]
initWithPersistenceManager:self.persistenceManager];
self.syncPointTree = [self.syncPointTree setValue:targetSyncPoint
atPath:[query path]];
} else {
serverCacheNode =
serverCacheNode != nil
? serverCacheNode
: [targetSyncPoint completeServerCacheAtPath:[FPath empty]];
}
FIndexedNode *indexed = [FIndexedNode
indexedNodeWithNode:serverCacheNode != nil ? serverCacheNode
: [FEmptyNode emptyNode]
index:query.index];
FCacheNode *serverCache =
[[FCacheNode alloc] initWithIndexedNode:indexed
isFullyInitialized:serverCacheNode != nil
isFiltered:NO];
FView *view = [targetSyncPoint
getView:query
writesCache:[_pendingWriteTree childWritesForPath:[query path]]
serverCache:serverCache];
return [view completeEventCache];
}
/**
* Returns a complete cache, if we have one, of the data at a particular path.
* The location must have a listener above it, but as this is only used by
* transaction code, that should always be the case anyways.
*
* Note: this method will *include* hidden writes from transaction with
* applyLocally set to false.
* @param path The path to the data we want
* @param writeIdsToExclude A specific set to be excluded
*/
- (id<FNode>)calcCompleteEventCacheAtPath:(FPath *)path
excludeWriteIds:(NSArray *)writeIdsToExclude {
BOOL includeHiddenSets = YES;
FWriteTree *writeTree = self.pendingWriteTree;
id<FNode> serverCache = [self.syncPointTree
findOnPath:path
andApplyBlock:^id<FNode>(FPath *pathSoFar, FSyncPoint *syncPoint) {
FPath *relativePath = [FPath relativePathFrom:pathSoFar to:path];
id<FNode> serverCache =
[syncPoint completeServerCacheAtPath:relativePath];
if (serverCache) {
return serverCache;
} else {
return nil;
}
}];
return [writeTree calculateCompleteEventCacheAtPath:path
completeServerCache:serverCache
excludeWriteIds:writeIdsToExclude
includeHiddenWrites:includeHiddenSets];
}
#pragma mark -
#pragma mark Private Methods
/**
* This collapses multiple unfiltered views into a single view, since we only
* need a single listener for them.
* @return NSArray of FView
*/
- (NSArray *)collectDistinctViewsForSubTree:(FImmutableTree *)subtree {
return [subtree foldWithBlock:^NSArray *(FPath *relativePath,
FSyncPoint *maybeChildSyncPoint,
NSDictionary *childMap) {
if (maybeChildSyncPoint && [maybeChildSyncPoint hasCompleteView]) {
FView *completeView = [maybeChildSyncPoint completeView];
return @[ completeView ];
} else {
// No complete view here, flatten any deeper listens into an array
NSMutableArray *views = [[NSMutableArray alloc] init];
if (maybeChildSyncPoint) {
views = [[maybeChildSyncPoint queryViews] mutableCopy];
}
[childMap enumerateKeysAndObjectsUsingBlock:^(
NSString *childKey, NSArray *childViews, BOOL *stop) {
[views addObjectsFromArray:childViews];
}];
return views;
}
}];
}
/**
* @param queries NSArray of FQuerySpec
*/
- (void)removeTags:(NSArray *)queries {
[queries enumerateObjectsUsingBlock:^(FQuerySpec *removedQuery,
NSUInteger idx, BOOL *stop) {
if (![removedQuery loadsAllData]) {
// We should have a tag for this
NSNumber *removedQueryTag = self.queryToTagMap[removedQuery];
[self.queryToTagMap removeObjectForKey:removedQuery];
[self.tagToQueryMap removeObjectForKey:removedQueryTag];
}
}];
}
- (FQuerySpec *)queryForListening:(FQuerySpec *)query {
if (query.loadsAllData && !query.isDefault) {
// We treat queries that load all data as default queries
return [FQuerySpec defaultQueryAtPath:query.path];
} else {
return query;
}
}
/**
* For a given new listen, manage the de-duplication of outstanding
* subscriptions.
* @return NSArray of FEvent events to support synchronous data sources
*/
- (NSArray *)setupListenerOnQuery:(FQuerySpec *)query view:(FView *)view {
FPath *path = query.path;
NSNumber *tagId = [self tagForQuery:query];
FListenContainer *listenContainer = [self createListenerForView:view];
NSArray *events = self.listenProvider.startListening(
[self queryForListening:query], tagId, listenContainer,
listenContainer.onComplete);
FImmutableTree *subtree = [self.syncPointTree subtreeAtPath:path];
// The root of this subtree has our query. We're here because we definitely
// need to send a listen for that, but we may need to shadow other listens
// as well.
if (tagId != nil) {
NSAssert(![subtree.value hasCompleteView],
@"If we're adding a query, it shouldn't be shadowed");
} else {
// Shadow everything at or below this location, this is a default
// listener.
NSArray *queriesToStop =
[subtree foldWithBlock:^id(FPath *relativePath,
FSyncPoint *maybeChildSyncPoint,
NSDictionary *childMap) {
if (![relativePath isEmpty] && maybeChildSyncPoint != nil &&
[maybeChildSyncPoint hasCompleteView]) {
return @[ [maybeChildSyncPoint completeView].query ];
} else {
// No default listener here, flatten any deeper queries into
// an array
NSMutableArray *queries = [[NSMutableArray alloc] init];
if (maybeChildSyncPoint != nil) {
for (FView *view in [maybeChildSyncPoint queryViews]) {
[queries addObject:view.query];
}
}
[childMap
enumerateKeysAndObjectsUsingBlock:^(
NSString *key, NSArray *childQueries, BOOL *stop) {
[queries addObjectsFromArray:childQueries];
}];
return queries;
}
}];
for (FQuerySpec *queryToStop in queriesToStop) {
self.listenProvider.stopListening(
[self queryForListening:queryToStop],
[self tagForQuery:queryToStop]);
}
}
return events;
}
- (FListenContainer *)createListenerForView:(FView *)view {
FQuerySpec *query = view.query;
NSNumber *tagId = [self tagForQuery:query];
FListenContainer *listenContainer = [[FListenContainer alloc]
initWithView:view
onComplete:^(NSString *status) {
if ([status isEqualToString:@"ok"]) {
if (tagId != nil) {
return [self applyTaggedListenCompleteAtPath:query.path
tagId:tagId];
} else {
return [self applyListenCompleteAtPath:query.path];
}
} else {
// If a listen failed, kill all of the listeners here, not just
// the one that triggered the error. Note that this may need to
// be scoped to just this listener if we change permissions on
// filtered children
NSError *error = [FUtilities errorForStatus:status
andReason:nil];
FFWarn(@"I-RDB038012", @"Listener at %@ failed: %@", query.path,
status);
return [self removeEventRegistration:nil
forQuery:query
cancelError:error];
}
}];
return listenContainer;
}
/**
* @return The query associated with the given tag, if we have one
*/
- (FQuerySpec *)queryForTag:(NSNumber *)tagId {
return self.tagToQueryMap[tagId];
}
/**
* @return The tag associated with the given query
*/
- (NSNumber *)tagForQuery:(FQuerySpec *)query {
return self.queryToTagMap[query];
}
#pragma mark -
#pragma mark applyOperation Helpers
/**
* A helper method that visits all descendant and ancestor SyncPoints, applying
the operation.
*
* NOTES:
* - Descendant SyncPoints will be visited first (since we raise events
depth-first).
* - We call applyOperation: on each SyncPoint passing three things:
* 1. A version of the Operation that has been made relative to the SyncPoint
location.
* 2. A WriteTreeRef of any writes we have cached at the SyncPoint location.
* 3. A snapshot Node with cached server data, if we have it.
* - We concatenate all of the events returned by each SyncPoint and return the
result.
*
* @return Array of FEvent
*/
- (NSArray *)applyOperationToSyncPoints:(id<FOperation>)operation {
return [self applyOperationHelper:operation
syncPointTree:self.syncPointTree
serverCache:nil
writesCache:[self.pendingWriteTree
childWritesForPath:[FPath empty]]];
}
/**
* Recursive helper for applyOperationToSyncPoints_
*/
- (NSArray *)applyOperationHelper:(id<FOperation>)operation
syncPointTree:(FImmutableTree *)syncPointTree