Populate data/ hierarchy
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / CaseEnforcer.java
diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/CaseEnforcer.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/CaseEnforcer.java
deleted file mode 100644 (file)
index 14dcd26..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * 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 static java.util.Objects.requireNonNull;
-
-import com.google.common.collect.ImmutableMap;
-import com.google.common.collect.ImmutableMap.Builder;
-import com.google.common.collect.Sets;
-import java.util.Map.Entry;
-import java.util.Optional;
-import java.util.Set;
-import org.opendaylight.yangtools.concepts.Immutable;
-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.PathArgument;
-import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeConfiguration;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
-import org.opendaylight.yangtools.yang.data.util.DataSchemaContextNode;
-import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode;
-import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode;
-import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
-
-class CaseEnforcer implements Immutable {
-    private static final class EnforcingMandatory extends CaseEnforcer {
-        private final MandatoryLeafEnforcer enforcer;
-
-        EnforcingMandatory(final ImmutableMap<NodeIdentifier, DataSchemaNode> children,
-                final ImmutableMap<AugmentationIdentifier, AugmentationSchemaNode> augmentations,
-                final MandatoryLeafEnforcer enforcer) {
-            super(children, augmentations);
-            this.enforcer = requireNonNull(enforcer);
-        }
-
-        @Override
-        void enforceOnTreeNode(final NormalizedNode normalizedNode) {
-            enforcer.enforceOnData(normalizedNode);
-        }
-    }
-
-    private final ImmutableMap<NodeIdentifier, DataSchemaNode> children;
-    private final ImmutableMap<AugmentationIdentifier, AugmentationSchemaNode> augmentations;
-
-    CaseEnforcer(final ImmutableMap<NodeIdentifier, DataSchemaNode> children,
-            final ImmutableMap<AugmentationIdentifier, AugmentationSchemaNode> augmentations) {
-        this.children = requireNonNull(children);
-        this.augmentations = requireNonNull(augmentations);
-    }
-
-    static CaseEnforcer forTree(final CaseSchemaNode schema, final DataTreeConfiguration treeConfig) {
-        final TreeType type = treeConfig.getTreeType();
-        final Builder<NodeIdentifier, DataSchemaNode> childrenBuilder = ImmutableMap.builder();
-        final Builder<AugmentationIdentifier, AugmentationSchemaNode> augmentationsBuilder = ImmutableMap.builder();
-        if (SchemaAwareApplyOperation.belongsToTree(type, schema)) {
-            for (final DataSchemaNode child : schema.getChildNodes()) {
-                if (SchemaAwareApplyOperation.belongsToTree(type, child)) {
-                    childrenBuilder.put(NodeIdentifier.create(child.getQName()), child);
-                }
-            }
-            for (final AugmentationSchemaNode augment : schema.getAvailableAugmentations()) {
-                if (augment.getChildNodes().stream()
-                        .anyMatch(child -> SchemaAwareApplyOperation.belongsToTree(type, child))) {
-                    augmentationsBuilder.put(DataSchemaContextNode.augmentationIdentifierFrom(augment), augment);
-                }
-            }
-        }
-
-        final ImmutableMap<NodeIdentifier, DataSchemaNode> children = childrenBuilder.build();
-        if (children.isEmpty()) {
-            return null;
-        }
-        final ImmutableMap<AugmentationIdentifier, AugmentationSchemaNode> augmentations = augmentationsBuilder.build();
-        final Optional<MandatoryLeafEnforcer> enforcer = MandatoryLeafEnforcer.forContainer(schema, treeConfig);
-        return enforcer.isPresent() ? new EnforcingMandatory(children, augmentations, enforcer.get())
-                : new CaseEnforcer(children, augmentations);
-    }
-
-    final Set<Entry<NodeIdentifier, DataSchemaNode>> getChildEntries() {
-        return children.entrySet();
-    }
-
-    final Set<NodeIdentifier> getChildIdentifiers() {
-        return children.keySet();
-    }
-
-    final Set<Entry<AugmentationIdentifier, AugmentationSchemaNode>> getAugmentationEntries() {
-        return augmentations.entrySet();
-    }
-
-    final Set<AugmentationIdentifier> getAugmentationIdentifiers() {
-        return augmentations.keySet();
-    }
-
-    final Set<PathArgument> getAllChildIdentifiers() {
-        return Sets.union(children.keySet(), augmentations.keySet());
-    }
-
-    void enforceOnTreeNode(final NormalizedNode normalizedNode) {
-        // Default is no-op
-    }
-}