Propagate @Nonnull and @Nullable annotations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / IntegerTypeEffectiveStatementImpl.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
9 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
10
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
15 import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition;
16 import org.opendaylight.yangtools.yang.model.api.type.RangeConstraint;
17 import org.opendaylight.yangtools.yang.model.util.type.InvalidRangeConstraintException;
18 import org.opendaylight.yangtools.yang.model.util.type.RangeRestrictedTypeBuilder;
19 import org.opendaylight.yangtools.yang.model.util.type.RestrictedTypes;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
21 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.TypeUtils;
23 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
24 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
25
26 public final class IntegerTypeEffectiveStatementImpl extends
27         DeclaredEffectiveStatementBase<String,TypeStatement> implements TypeEffectiveStatement<TypeStatement> {
28
29     private final IntegerTypeDefinition typeDefinition;
30
31     public IntegerTypeEffectiveStatementImpl(
32             final StmtContext<String, TypeStatement, EffectiveStatement<String, TypeStatement>> ctx,
33             final IntegerTypeDefinition baseType) {
34         super(ctx);
35
36         final RangeRestrictedTypeBuilder<IntegerTypeDefinition> builder =
37                 RestrictedTypes.newIntegerBuilder(baseType, TypeUtils.typeEffectiveSchemaPath(ctx));
38
39         for (EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
40             if (stmt instanceof RangeEffectiveStatementImpl) {
41                 builder.setRangeAlternatives(((RangeEffectiveStatementImpl)stmt).argument());
42             }
43             if (stmt instanceof UnknownEffectiveStatementImpl) {
44                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl)stmt);
45             }
46         }
47
48         try {
49             typeDefinition = builder.build();
50         } catch (InvalidRangeConstraintException e) {
51             final RangeConstraint c = e.getOffendingConstraint();
52             throw new SourceException(ctx.getStatementSourceReference(), e, "Invalid range constraint: <%s, %s>",
53                 c.getMin(), c.getMax());
54         }
55     }
56
57     @Nonnull
58     @Override
59     public IntegerTypeDefinition getTypeDefinition() {
60         return typeDefinition;
61     }
62 }