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 / Decimal64SpecificationEffectiveStatementImpl.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.parser.stmt.rfc6020.effective.type;
9
10 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
11 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.Decimal64Specification;
13 import org.opendaylight.yangtools.yang.model.api.type.DecimalTypeDefinition;
14 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
15 import org.opendaylight.yangtools.yang.model.util.type.DecimalTypeBuilder;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
17 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.FractionDigitsEffectiveStatementImpl;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
20
21 public final class Decimal64SpecificationEffectiveStatementImpl extends
22         DeclaredEffectiveStatementBase<String, Decimal64Specification>
23         implements TypeEffectiveStatement<Decimal64Specification> {
24
25     private final DecimalTypeDefinition typeDefinition;
26
27     public Decimal64SpecificationEffectiveStatementImpl(
28             final StmtContext<String, Decimal64Specification, EffectiveStatement<String, Decimal64Specification>> ctx) {
29         super(ctx);
30
31         final DecimalTypeBuilder builder = BaseTypes.decimalTypeBuilder(ctx.getSchemaPath().get());
32
33         for (final EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
34             if (stmt instanceof FractionDigitsEffectiveStatementImpl) {
35                 builder.setFractionDigits(((FractionDigitsEffectiveStatementImpl) stmt).argument());
36             }
37             if (stmt instanceof RangeEffectiveStatementImpl) {
38                 builder.setRangeAlternatives(((RangeEffectiveStatementImpl)stmt).argument());
39             }
40             if (stmt instanceof UnknownEffectiveStatementImpl) {
41                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl)stmt);
42             }
43         }
44
45         typeDefinition = builder.build();
46     }
47
48     @Override
49     public DecimalTypeDefinition getTypeDefinition() {
50         return typeDefinition;
51     }
52 }