| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * 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/Operation/FOverwrite.h"
- #import "FirebaseDatabase/Sources/Core/Operation/FOperationSource.h"
- #import "FirebaseDatabase/Sources/Snapshot/FNode.h"
- @interface FOverwrite ()
- @property(nonatomic, strong, readwrite) FOperationSource *source;
- @property(nonatomic, readwrite) FOperationType type;
- @property(nonatomic, strong, readwrite) FPath *path;
- @property(nonatomic, strong) id<FNode> snap;
- @end
- @implementation FOverwrite
- @synthesize source;
- @synthesize type;
- @synthesize path;
- @synthesize snap;
- - (id)initWithSource:(FOperationSource *)aSource
- path:(FPath *)aPath
- snap:(id<FNode>)aSnap {
- self = [super init];
- if (self) {
- self.source = aSource;
- self.type = FOperationTypeOverwrite;
- self.path = aPath;
- self.snap = aSnap;
- }
- return self;
- }
- - (FOverwrite *)operationForChild:(NSString *)childKey {
- if ([self.path isEmpty]) {
- return [[FOverwrite alloc]
- initWithSource:self.source
- path:[FPath empty]
- snap:[self.snap getImmediateChild:childKey]];
- } else {
- return [[FOverwrite alloc] initWithSource:self.source
- path:[self.path popFront]
- snap:self.snap];
- }
- }
- - (NSString *)description {
- return [NSString
- stringWithFormat:@"FOverwrite { path=%@, source=%@, snapshot=%@ }",
- self.path, self.source, self.snap];
- }
- @end
|