aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Database/Core/Operation/FMerge.m
blob: 8e6d9249a4fa9f106cf81bf0a41169e142f53337 (plain)
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
/*
 * 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 "FMerge.h"
#import "FOperationSource.h"
#import "FPath.h"
#import "FNode.h"
#import "FOverwrite.h"
#import "FCompoundWrite.h"

@interface FMerge ()
@property (nonatomic, strong, readwrite) FOperationSource *source;
@property (nonatomic, readwrite) FOperationType type;
@property (nonatomic, strong, readwrite) FPath *path;
@property (nonatomic, strong) FCompoundWrite *children;
@end

@implementation FMerge

@synthesize source;
@synthesize type;
@synthesize path;
@synthesize children;

- (id) initWithSource:(FOperationSource *)aSource path:(FPath *)aPath children:(FCompoundWrite *)someChildren {
    self = [super init];
    if (self) {
        self.source = aSource;
        self.type = FOperationTypeMerge;
        self.path = aPath;
        self.children = someChildren;
    }
    return self;
}

- (id<FOperation>) operationForChild:(NSString *)childKey {
    if ([self.path isEmpty]) {
        FCompoundWrite *childTree = [self.children childCompoundWriteAtPath:[[FPath alloc] initWith:childKey]];
        if (childTree.isEmpty) {
            return nil;
        } else if (childTree.rootWrite != nil) {
            // We have a snapshot for the child in question. This becomes an overwrite of the child.
            return [[FOverwrite alloc] initWithSource:self.source path:[FPath empty] snap:childTree.rootWrite];
        } else {
            // This is a merge at a deeper level
            return [[FMerge alloc] initWithSource:self.source path:[FPath empty] children:childTree];
        }
    } else {
        NSAssert([self.path.getFront isEqualToString:childKey], @"Can't get a merge for a child not on the path of the operation");
        return [[FMerge alloc] initWithSource:self.source path:[self.path popFront] children:self.children];
    }
}

- (NSString *) description {
    return [NSString stringWithFormat:@"FMerge { path=%@, soruce=%@ children=%@}", self.path, self.source, self.children];
}

@end