All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firebase.database.core.operation.Merge Maven / Gradle / Ivy

/*
 * Copyright 2017 Google Inc.
 *
 * 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.
 */

package com.google.firebase.database.core.operation;

import com.google.firebase.database.core.CompoundWrite;
import com.google.firebase.database.core.Path;
import com.google.firebase.database.snapshot.ChildKey;

public class Merge extends Operation {

  private final CompoundWrite children;

  public Merge(OperationSource source, Path path, CompoundWrite children) {
    super(OperationType.Merge, source, path);
    this.children = children;
  }

  public CompoundWrite getChildren() {
    return this.children;
  }

  @Override
  public Operation operationForChild(ChildKey childKey) {
    if (this.path.isEmpty()) {
      CompoundWrite childTree = children.childCompoundWrite(new Path(childKey));
      if (childTree.isEmpty()) {
        // This child is unaffected.
        return null;
      } else if (childTree.rootWrite() != null) {
        // we have a set
        return new Overwrite(this.source, Path.getEmptyPath(), childTree.rootWrite());
      } else {
        return new Merge(this.source, Path.getEmptyPath(), childTree);
      }
    } else if (this.path.getFront().equals(childKey)) {
      return new Merge(this.source, this.path.popFront(), this.children);
    } else {
      // merge doesn't affect this path
      return null;
    }
  }

  @Override
  public String toString() {
    return String.format(
        "Merge { path=%s, source=%s, children=%s }", getPath(), getSource(), this.children);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy