/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.data.impl.schema.tree; import com.google.common.base.Function; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import com.google.common.collect.Collections2; import java.util.ArrayList; import java.util.Collection; import javax.annotation.Nonnull; import javax.annotation.Nullable; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode; abstract class AbstractDataTreeCandidateNode implements DataTreeCandidateNode { private static final Function, DataTreeCandidateNode> TO_DELETED_NODE = new Function, DataTreeCandidateNode>() { @Override public DataTreeCandidateNode apply(final NormalizedNode input) { return AbstractRecursiveCandidateNode.deleteNode(input); } }; private static final Function, DataTreeCandidateNode> TO_WRITTEN_NODE = new Function, DataTreeCandidateNode>() { @Override public DataTreeCandidateNode apply(final NormalizedNode input) { return AbstractRecursiveCandidateNode.writeNode(input); } }; private static Optional> getChild(final NormalizedNodeContainer> container, final PathArgument identifier) { if (container != null) { return container.getChild(identifier); } else { return Optional.absent(); } } static DataTreeCandidateNode deltaChild( final NormalizedNodeContainer> oldData, final NormalizedNodeContainer> newData, final PathArgument identifier) { final Optional> maybeNewChild = getChild(newData, identifier); final Optional> maybeOldChild = getChild(oldData, identifier); if (maybeOldChild.isPresent()) { final NormalizedNode oldChild = maybeOldChild.get(); if (maybeNewChild.isPresent()) { return AbstractRecursiveCandidateNode.replaceNode(oldChild, maybeNewChild.get()); } else { return TO_DELETED_NODE.apply(oldChild); } } else { if (maybeNewChild.isPresent()) { return TO_WRITTEN_NODE.apply(maybeNewChild.get()); } else { return null; } } } static Collection deltaChildren(@Nullable final NormalizedNodeContainer> oldData, @Nullable final NormalizedNodeContainer> newData) { Preconditions.checkArgument(newData != null || oldData != null, "No old or new data, modification type should be NONE and deltaChildren() mustn't be called."); if (newData == null) { return Collections2.transform(oldData.getValue(), TO_DELETED_NODE); } if (oldData == null) { return Collections2.transform(newData.getValue(), TO_WRITTEN_NODE); } /* * This is slightly inefficient, as it requires N*F(M)+M*F(N) lookup operations, where * F is dependent on the implementation of NormalizedNodeContainer.getChild(). * * We build the return collection by iterating over new data and looking each child up * in old data. Based on that we construct replaced/written nodes. We then proceed to * iterate over old data and looking up each child in new data. */ final Collection result = new ArrayList<>(); for (NormalizedNode child : newData.getValue()) { final DataTreeCandidateNode node; final Optional> maybeOldChild = oldData.getChild(child.getIdentifier()); if (maybeOldChild.isPresent()) { // This does not find children which have not in fact been modified, as doing that // reliably would require us running a full equals() on the two nodes. node = AbstractRecursiveCandidateNode.replaceNode(maybeOldChild.get(), child); } else { node = AbstractRecursiveCandidateNode.writeNode(child); } result.add(node); } // Process removals next, looking into new data to see if we processed it for (NormalizedNode child : oldData.getValue()) { if (!newData.getChild(child.getIdentifier()).isPresent()) { result.add(AbstractRecursiveCandidateNode.deleteNode(child)); } } return result; } private final NormalizedNodeContainer> data; protected AbstractDataTreeCandidateNode(final NormalizedNodeContainer> data) { this.data = Preconditions.checkNotNull(data); } protected final Optional> dataOptional() { return Optional.>of(data); } @Override @Nonnull public final PathArgument getIdentifier() { return data.getIdentifier(); } protected final NormalizedNodeContainer> getData() { return data; } @Override public String toString() { return this.getClass().getSimpleName() + "{data = " + this.data + "}"; } }