Use lambdas instead of anonymous classes
[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 java.util.Collection;
15 import java.util.Collections;
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     @Override
44     public PathArgument getIdentifier() {
45         return data.getIdentifier();
46     }
47
48     @Override
49     public Collection<DataTreeCandidateNode> getChildNodes() {
50         if (data instanceof NormalizedNodeContainer) {
51             return Collections2.transform(((NormalizedNodeContainer<?, ?, ?>) data).getValue(), FACTORY_FUNCTION);
52         } else {
53             return Collections.emptyList();
54         }
55     }
56
57     @Override
58     public DataTreeCandidateNode getModifiedChild(final PathArgument identifier) {
59         if (data instanceof NormalizedNodeContainer) {
60             @SuppressWarnings({ "rawtypes", "unchecked" })
61             final Optional<? extends NormalizedNode<?, ?>> child = ((NormalizedNodeContainer)data).getChild(identifier);
62             return FACTORY_FUNCTION.apply(child.orNull());
63         } else {
64             return null;
65         }
66     }
67
68     @Override
69     public ModificationType getModificationType() {
70         return ModificationType.WRITE;
71     }
72
73     @Override
74     public Optional<NormalizedNode<?, ?>> getDataAfter() {
75         return Optional.of(data);
76     }
77
78     @Override
79     public Optional<NormalizedNode<?, ?>> getDataBefore() {
80         return Optional.absent();
81     }
82 }