summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/netconf/sal/restconf/impl/NormalizedDataPrunner.java
blob: 975da60b3d4704cb3e62a4e6560b341cff0b9cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * Copyright (c) 2014 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.netconf.sal.restconf.impl;

import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
import org.opendaylight.yangtools.yang.data.api.schema.AnyxmlNode;
import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
import org.opendaylight.yangtools.yang.data.api.schema.ChoiceNode;
import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode;
import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
import org.opendaylight.yangtools.yang.data.api.schema.MixinNode;
import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode;
import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListEntryNode;
import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListNode;
import org.opendaylight.yangtools.yang.data.api.schema.UserMapNode;
import org.opendaylight.yangtools.yang.data.api.schema.builder.CollectionNodeBuilder;
import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
import org.opendaylight.yangtools.yang.data.impl.schema.Builders;

class NormalizedDataPrunner {

    public DataContainerChild pruneDataAtDepth(final DataContainerChild node, final Integer depth) {
        if (depth == null) {
            return node;
        }

        if (node instanceof LeafNode || node instanceof LeafSetNode || node instanceof AnyxmlNode) {
            return node;
        } else if (node instanceof MixinNode) {
            return processMixinNode(node, depth);
        } else if (node instanceof DataContainerNode) {
            return processContainerNode(node, depth);
        }
        throw new IllegalStateException("Unexpected Mixin node occured why pruning data to requested depth");
    }

    private DataContainerChild processMixinNode(final NormalizedNode node, final Integer depth) {
        if (node instanceof AugmentationNode) {
            return processAugmentationNode(node, depth);
        } else if (node instanceof ChoiceNode) {
            return processChoiceNode(node, depth);
        } else if (node instanceof UserMapNode) {
            return processOrderedMapNode(node, depth);
        } else if (node instanceof MapNode) {
            return processMapNode(node, depth);
        } else if (node instanceof UnkeyedListNode) {
            return processUnkeyedListNode(node, depth);
        }
        throw new IllegalStateException("Unexpected Mixin node occured why pruning data to requested depth");
    }

    private DataContainerChild processContainerNode(final NormalizedNode node, final Integer depth) {
        final ContainerNode containerNode = (ContainerNode) node;
        DataContainerNodeBuilder<NodeIdentifier, ContainerNode> newContainerBuilder = Builders.containerBuilder()
                .withNodeIdentifier(containerNode.getIdentifier());
        if (depth > 1) {
            processDataContainerChild((DataContainerNode) node, depth, newContainerBuilder);
        }
        return newContainerBuilder.build();
    }

    private DataContainerChild processChoiceNode(final NormalizedNode node, final Integer depth) {
        final ChoiceNode choiceNode = (ChoiceNode) node;
        DataContainerNodeBuilder<NodeIdentifier, ChoiceNode> newChoiceBuilder = Builders.choiceBuilder()
                .withNodeIdentifier(choiceNode.getIdentifier());

        processDataContainerChild((DataContainerNode) node, depth, newChoiceBuilder);

        return newChoiceBuilder.build();
    }

    private DataContainerChild processAugmentationNode(final NormalizedNode node, final Integer depth) {
        final AugmentationNode augmentationNode = (AugmentationNode) node;
        DataContainerNodeBuilder<AugmentationIdentifier, ? extends DataContainerChild> newAugmentationBuilder =
                Builders.augmentationBuilder().withNodeIdentifier(augmentationNode.getIdentifier());

        processDataContainerChild((DataContainerNode) node, depth, newAugmentationBuilder);

        return newAugmentationBuilder.build();
    }

    private void processDataContainerChild(final DataContainerNode node, final Integer depth,
            final DataContainerNodeBuilder<?, ?> newBuilder) {
        for (DataContainerChild nodeValue : node.body()) {
            newBuilder.withChild(pruneDataAtDepth(nodeValue, depth - 1));
        }
    }

    private DataContainerChild processUnkeyedListNode(final NormalizedNode node, final Integer depth) {
        CollectionNodeBuilder<UnkeyedListEntryNode, UnkeyedListNode> newUnkeyedListBuilder = Builders
                .unkeyedListBuilder();
        if (depth > 1) {
            for (UnkeyedListEntryNode oldUnkeyedListEntry : ((UnkeyedListNode) node).body()) {
                DataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> newUnkeyedListEntry = Builders
                        .unkeyedListEntryBuilder().withNodeIdentifier(oldUnkeyedListEntry.getIdentifier());
                for (DataContainerChild oldUnkeyedListEntryValue : oldUnkeyedListEntry.body()) {
                    newUnkeyedListEntry.withChild(pruneDataAtDepth(oldUnkeyedListEntryValue, depth - 1));
                }
                newUnkeyedListBuilder.addChild(newUnkeyedListEntry.build());
            }
        }
        return newUnkeyedListBuilder.build();
    }

    private DataContainerChild processOrderedMapNode(final NormalizedNode node, final Integer depth) {
        CollectionNodeBuilder<MapEntryNode, UserMapNode> newOrderedMapNodeBuilder = Builders.orderedMapBuilder();
        processMapEntries(node, depth, newOrderedMapNodeBuilder);
        return newOrderedMapNodeBuilder.build();
    }

    private DataContainerChild processMapNode(final NormalizedNode node, final Integer depth) {
        CollectionNodeBuilder<MapEntryNode, SystemMapNode> newMapNodeBuilder = Builders.mapBuilder();
        processMapEntries(node, depth, newMapNodeBuilder);
        return newMapNodeBuilder.build();
    }

    private void processMapEntries(final NormalizedNode node, final Integer depth,
            final CollectionNodeBuilder<MapEntryNode, ? extends MapNode> newOrderedMapNodeBuilder) {
        if (depth > 1) {
            for (MapEntryNode oldMapEntryNode : ((MapNode) node).body()) {
                DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> newMapEntryNodeBuilder =
                        Builders.mapEntryBuilder().withNodeIdentifier(oldMapEntryNode.getIdentifier());
                for (DataContainerChild mapEntryNodeValue : oldMapEntryNode.body()) {
                    newMapEntryNodeBuilder.withChild(pruneDataAtDepth(mapEntryNodeValue, depth - 1));
                }
                newOrderedMapNodeBuilder.withChild(newMapEntryNodeBuilder.build());
            }
        }
    }
}