Bug 5200: Yang parser doesn't fill error-app-tag and error-message in constraints
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / UnsignedIntegerTypeEffectiveStatementImpl.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 org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
14 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
15 import org.opendaylight.yangtools.yang.model.util.type.RangeRestrictedTypeBuilder;
16 import org.opendaylight.yangtools.yang.model.util.type.RestrictedTypes;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.TypeUtils;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
21
22 public final class UnsignedIntegerTypeEffectiveStatementImpl extends
23         DeclaredEffectiveStatementBase<String, TypeStatement> implements TypeEffectiveStatement<TypeStatement> {
24
25     private final UnsignedIntegerTypeDefinition typeDefinition;
26
27     public UnsignedIntegerTypeEffectiveStatementImpl(
28             final StmtContext<String, TypeStatement, EffectiveStatement<String, TypeStatement>> ctx,
29             final UnsignedIntegerTypeDefinition baseType) {
30         super(ctx);
31
32         final RangeRestrictedTypeBuilder<UnsignedIntegerTypeDefinition> builder =
33                 RestrictedTypes.newUnsignedBuilder(baseType, TypeUtils.typeEffectiveSchemaPath(ctx));
34
35         for (EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
36             if (stmt instanceof RangeEffectiveStatementImpl) {
37                 builder.setRangeAlternatives(((RangeEffectiveStatementImpl)stmt).argument());
38             }
39             if (stmt instanceof UnknownEffectiveStatementImpl) {
40                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl)stmt);
41             }
42         }
43
44         typeDefinition = builder.build();
45     }
46
47     @Override
48     public UnsignedIntegerTypeDefinition getTypeDefinition() {
49         return typeDefinition;
50     }
51 }