Eliminate SourceException throws declarations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / MustStatementImpl.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;
9
10 import javax.annotation.Nonnull;
11 import javax.annotation.Nullable;
12 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
13 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ErrorAppTagStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.ErrorMessageStatement;
18 import org.opendaylight.yangtools.yang.model.api.stmt.MustStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement;
20 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
23 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
24 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.MustEffectiveStatementImpl;
25
26 public class MustStatementImpl extends AbstractDeclaredStatement<RevisionAwareXPath> implements MustStatement {
27     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
28             .MUST)
29             .add(Rfc6020Mapping.DESCRIPTION, 0, 1)
30             .add(Rfc6020Mapping.ERROR_APP_TAG, 0, 1)
31             .add(Rfc6020Mapping.ERROR_MESSAGE, 0, 1)
32             .add(Rfc6020Mapping.REFERENCE, 0, 1)
33             .build();
34
35     protected MustStatementImpl(final StmtContext<RevisionAwareXPath, MustStatement, ?> context) {
36         super(context);
37     }
38
39     public static class Definition extends
40             AbstractStatementSupport<RevisionAwareXPath, MustStatement, EffectiveStatement<RevisionAwareXPath, MustStatement>> {
41
42         public Definition() {
43             super(Rfc6020Mapping.MUST);
44         }
45
46         @Override
47         public RevisionAwareXPath parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
48             return Utils.parseXPath(ctx, value);
49         }
50
51         @Override
52         public MustStatement createDeclared(final StmtContext<RevisionAwareXPath, MustStatement, ?> ctx) {
53             return new MustStatementImpl(ctx);
54         }
55
56         @Override
57         public EffectiveStatement<RevisionAwareXPath, MustStatement> createEffective(
58                 final StmtContext<RevisionAwareXPath, MustStatement, EffectiveStatement<RevisionAwareXPath, MustStatement>> ctx) {
59             return new MustEffectiveStatementImpl(ctx);
60         }
61
62         @Override
63         public void onFullDefinitionDeclared(StmtContext.Mutable<RevisionAwareXPath, MustStatement,
64                 EffectiveStatement<RevisionAwareXPath, MustStatement>> stmt) {
65             super.onFullDefinitionDeclared(stmt);
66             SUBSTATEMENT_VALIDATOR.validate(stmt);
67         }
68     }
69
70     @Nonnull
71     @Override
72     public RevisionAwareXPath getCondition() {
73         return argument();
74     }
75
76     @Nullable
77     @Override
78     public ErrorAppTagStatement getErrorAppTagStatement() {
79         return firstDeclared(ErrorAppTagStatement.class);
80     }
81
82     @Nullable
83     @Override
84     public ErrorMessageStatement getErrorMessageStatement() {
85         return firstDeclared(ErrorMessageStatement.class);
86     }
87
88     @Nullable
89     @Override
90     public DescriptionStatement getDescription() {
91         return firstDeclared(DescriptionStatement.class);
92     }
93
94     @Nullable
95     @Override
96     public ReferenceStatement getReference() {
97         return firstDeclared(ReferenceStatement.class);
98     }
99 }