YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / fraction_digits / FractionDigitsStatementSupport.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.rfc7950.stmt.fraction_digits;
9
10 import com.google.common.collect.Range;
11 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.FractionDigitsStatement;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.SubstatementValidator;
17 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
18
19 public final class FractionDigitsStatementSupport extends AbstractStatementSupport<Integer, FractionDigitsStatement,
20         EffectiveStatement<Integer, FractionDigitsStatement>> {
21     private static final Range<Integer> FRAC_DIGITS_ALLOWED = Range.closed(1, 18);
22     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(
23         YangStmtMapping.FRACTION_DIGITS)
24         .build();
25
26     public FractionDigitsStatementSupport() {
27         super(YangStmtMapping.FRACTION_DIGITS);
28     }
29
30     @Override
31     public Integer parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
32         final Integer fractionDigits;
33         try {
34             fractionDigits = Integer.valueOf(value);
35         } catch (NumberFormatException e) {
36             throw new SourceException(ctx.getStatementSourceReference(), e,
37                 "%s is not valid fraction-digits integer argument", value);
38         }
39
40         SourceException.throwIf(!FRAC_DIGITS_ALLOWED.contains(fractionDigits), ctx.getStatementSourceReference(),
41             "fraction-digits argument should be integer within %s", FRAC_DIGITS_ALLOWED);
42         return fractionDigits;
43     }
44
45     @Override
46     public FractionDigitsStatement createDeclared(final StmtContext<Integer, FractionDigitsStatement, ?> ctx) {
47         return new FractionDigitsStatementImpl(ctx);
48     }
49
50     @Override
51     public EffectiveStatement<Integer, FractionDigitsStatement> createEffective(
52             final StmtContext<Integer, FractionDigitsStatement,
53             EffectiveStatement<Integer, FractionDigitsStatement>> ctx) {
54         return new FractionDigitsEffectiveStatementImpl(ctx);
55     }
56
57     @Override
58     protected SubstatementValidator getSubstatementValidator() {
59         return SUBSTATEMENT_VALIDATOR;
60     }
61 }