35fe0758f1b158852e4eb53d998b9480ac3254fa
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / NormalizedNodeDataTreeCandidateNode.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.api.schema.tree;
9
10 import com.google.common.base.Function;
11 import com.google.common.base.Optional;
12 import com.google.common.base.Preconditions;
13 import com.google.common.collect.Collections2;
14 import com.google.common.collect.ImmutableList;
15 import java.util.Collection;
16 import javax.annotation.Nonnull;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
18 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
19 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
20
21 /**
22  * Utility implementation of {@link DataTreeCandidateNode} which acts as if
23  * the {@link NormalizedNode} passed to it at creation time were freshly written.
24  */
25 final class NormalizedNodeDataTreeCandidateNode implements DataTreeCandidateNode {
26     /**
27      * Convenience function for functional transformation of {@link NormalizedNode} into
28      * a {@link DataTreeCandidateNode}.
29      */
30     private static final Function<NormalizedNode<?, ?>, DataTreeCandidateNode> FACTORY_FUNCTION =
31         input -> input == null ? null : new NormalizedNodeDataTreeCandidateNode(input);
32     private final NormalizedNode<?, ?> data;
33
34     /**
35      * Create a new instance backed by supplied data.
36      *
37      * @param data Backing {@link NormalizedNode} data.
38      */
39     NormalizedNodeDataTreeCandidateNode(@Nonnull final NormalizedNode<?, ?> data) {
40         this.data = Preconditions.checkNotNull(data);
41     }
42
43     @Nonnull
44     @Override
45     public PathArgument getIdentifier() {
46         return data.getIdentifier();
47     }
48
49     @Nonnull
50     @Override
51     public Collection<DataTreeCandidateNode> getChildNodes() {
52         if (data instanceof NormalizedNodeContainer) {
53             return Collections2.transform(((NormalizedNodeContainer<?, ?, ?>) data).getValue(), FACTORY_FUNCTION);
54         }
55         return ImmutableList.of();
56     }
57
58     @Override
59     public DataTreeCandidateNode getModifiedChild(final PathArgument identifier) {
60         if (data instanceof NormalizedNodeContainer) {
61             @SuppressWarnings({ "rawtypes", "unchecked" })
62             final Optional<? extends NormalizedNode<?, ?>> child = ((NormalizedNodeContainer)data).getChild(identifier);
63             return FACTORY_FUNCTION.apply(child.orNull());
64         }
65         return null;
66     }
67
68     @Nonnull
69     @Override
70     public ModificationType getModificationType() {
71         return ModificationType.WRITE;
72     }
73
74     @Nonnull
75     @Override
76     public Optional<NormalizedNode<?, ?>> getDataAfter() {
77         return Optional.of(data);
78     }
79
80     @Nonnull
81     @Override
82     public Optional<NormalizedNode<?, ?>> getDataBefore() {
83         return Optional.absent();
84     }
85 }