8da73070418f99b124faf18161629e4f3f8a9852
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / MinMaxElementsValidation.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 static com.google.common.base.Preconditions.checkArgument;
11 import static java.util.Objects.requireNonNull;
12
13 import java.util.Optional;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
15 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
16 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
17 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListNode;
18 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
19 import org.opendaylight.yangtools.yang.data.api.schema.tree.RequiredElementCountException;
20 import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode;
21 import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.Version;
22 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
23 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraint;
24 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraintAware;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 final class MinMaxElementsValidation extends DelegatingModificationApplyOperation {
29     private static final Logger LOG = LoggerFactory.getLogger(MinMaxElementsValidation.class);
30
31     private final SchemaAwareApplyOperation delegate;
32     private final int minElements;
33     private final int maxElements;
34
35     private MinMaxElementsValidation(final SchemaAwareApplyOperation delegate, final Integer minElements,
36             final Integer maxElements) {
37         this.delegate = requireNonNull(delegate);
38         this.minElements = minElements != null ? minElements : 0;
39         this.maxElements = maxElements != null ? maxElements : Integer.MAX_VALUE;
40     }
41
42     static ModificationApplyOperation from(final SchemaAwareApplyOperation delegate, final DataSchemaNode schema) {
43         if (!(schema instanceof ElementCountConstraintAware)) {
44             return delegate;
45         }
46         final Optional<ElementCountConstraint> optConstraint = ((ElementCountConstraintAware) schema)
47                 .getElementCountConstraint();
48         if (!optConstraint.isPresent()) {
49             return delegate;
50         }
51
52         final ElementCountConstraint constraint = optConstraint.get();
53         return new MinMaxElementsValidation(delegate, constraint.getMinElements(), constraint.getMaxElements());
54     }
55
56     @Override
57     ModificationApplyOperation delegate() {
58         return delegate;
59     }
60
61     @Override
62     Optional<TreeNode> apply(final ModifiedNode modification, final Optional<TreeNode> storeMeta,
63             final Version version) {
64         Optional<TreeNode> ret = modification.getValidatedNode(this, storeMeta);
65         if (ret == null) {
66             // Deal with the result moving on us
67             ret = delegate.apply(modification, storeMeta, version);
68             if (ret.isPresent()) {
69                 checkChildren(ret.get().getData());
70             }
71         }
72
73         return ret;
74     }
75
76     @Override
77     void checkApplicable(final ModificationPath path, final NodeModification modification,
78             final Optional<TreeNode> current, final Version version) throws DataValidationFailedException {
79         delegate.checkApplicable(path, modification, current, version);
80
81         if (!(modification instanceof ModifiedNode)) {
82             LOG.debug("Could not validate {}, does not implement expected class {}", modification, ModifiedNode.class);
83             return;
84         }
85         final ModifiedNode modified = (ModifiedNode) modification;
86
87         // We need to actually perform the operation to deal with merge in a sane manner. We know the modification
88         // is immutable, so the result of validation will probably not change. Note we should not be checking number
89         final Optional<TreeNode> maybeApplied = delegate.apply(modified, current, version);
90         if (maybeApplied.isPresent()) {
91             // We only enforce min/max on present data and rely on MandatoryLeafEnforcer to take care of the empty case
92             validateMinMaxElements(path, maybeApplied.get().getData());
93         }
94
95         // Everything passed. We now have a snapshot of the result node, it would be too bad if we just threw it out.
96         // We know what the result of an apply operation is going to be *if* the following are kept unchanged:
97         // - the 'current' node
98         // - the schemacontext (therefore, the fact this object is associated with the modification)
99         //
100         // So let's stash the result. We will pick it up during apply operation.
101         modified.setValidatedNode(this, current, maybeApplied);
102     }
103
104     @Override
105     void fullVerifyStructure(final NormalizedNode<?, ?> modification) {
106         delegate.fullVerifyStructure(modification);
107         checkChildren(modification);
108     }
109
110     private void validateMinMaxElements(final ModificationPath path, final NormalizedNode<?, ?> value)
111             throws DataValidationFailedException {
112         final PathArgument id = value.getIdentifier();
113         final int children = numOfChildrenFromValue(value);
114         if (minElements > children) {
115             throw new RequiredElementCountException(path.toInstanceIdentifier(), minElements, maxElements, children,
116                 "%s does not have enough elements (%s), needs at least %s", id, children, minElements);
117         }
118         if (maxElements < children) {
119             throw new RequiredElementCountException(path.toInstanceIdentifier(), minElements, maxElements, children,
120                 "%s has too many elements (%s), can have at most %s", id, children, maxElements);
121         }
122     }
123
124     private void checkChildren(final NormalizedNode<?, ?> value) {
125         final PathArgument id = value.getIdentifier();
126         final int children = numOfChildrenFromValue(value);
127         checkArgument(minElements <= children, "Node %s does not have enough elements (%s), needs at least %s", id,
128                 children, minElements);
129         checkArgument(maxElements >= children, "Node %s has too many elements (%s), can have at most %s", id, children,
130                 maxElements);
131     }
132
133     private static int numOfChildrenFromValue(final NormalizedNode<?, ?> value) {
134         if (value instanceof NormalizedNodeContainer) {
135             return ((NormalizedNodeContainer<?, ?, ?>) value).getValue().size();
136         } else if (value instanceof UnkeyedListNode) {
137             return ((UnkeyedListNode) value).getSize();
138         }
139
140         throw new IllegalArgumentException(String.format(
141                 "Unexpected type '%s', expected types are NormalizedNodeContainer and UnkeyedListNode",
142                 value.getClass()));
143     }
144 }