62a5f837dddd1d4bbdba7d51c987cd90c46d3b98
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / CaseEnforcer.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.impl.schema.tree;
9
10 import com.google.common.base.Preconditions;
11 import com.google.common.collect.ImmutableMap;
12 import com.google.common.collect.ImmutableMap.Builder;
13 import java.util.Map;
14 import java.util.Map.Entry;
15 import java.util.Set;
16 import org.opendaylight.yangtools.concepts.Immutable;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
18 import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
19 import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode;
20 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
21
22 final class CaseEnforcer implements Immutable {
23     private final Map<NodeIdentifier, DataSchemaNode> children;
24
25     private CaseEnforcer(final Map<NodeIdentifier, DataSchemaNode> children) {
26         this.children = Preconditions.checkNotNull(children);
27     }
28
29     static CaseEnforcer forTree(final ChoiceCaseNode schema, final TreeType treeType) {
30         final Builder<NodeIdentifier, DataSchemaNode> builder = ImmutableMap.builder();
31         if (SchemaAwareApplyOperation.belongsToTree(treeType, schema)) {
32             for (DataSchemaNode child : schema.getChildNodes()) {
33                 if (SchemaAwareApplyOperation.belongsToTree(treeType, child)) {
34                     builder.put(NodeIdentifier.create(child.getQName()), child);
35                 }
36             }
37         }
38
39         final Map<NodeIdentifier, DataSchemaNode> children = builder.build();
40         return children.isEmpty() ? null : new CaseEnforcer(children);
41     }
42
43     Set<Entry<NodeIdentifier, DataSchemaNode>> getChildEntries() {
44         return children.entrySet();
45     }
46
47     Set<NodeIdentifier> getChildIdentifiers() {
48         return children.keySet();
49     }
50 }