bacdf2cf7e06f9b0ebd36afce8993abe77c39a85
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / IfFeatureStatementImpl.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 org.opendaylight.yangtools.yang.common.QName;
11 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureStatement;
14 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.IfFeatureEffectiveStatementImpl;
20
21 public class IfFeatureStatementImpl extends AbstractDeclaredStatement<QName>
22         implements IfFeatureStatement {
23     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
24             .IF_FEATURE)
25             .build();
26
27     protected IfFeatureStatementImpl(
28             StmtContext<QName, IfFeatureStatement, ?> context) {
29         super(context);
30     }
31
32     public static class Definition
33             extends
34             AbstractStatementSupport<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> {
35
36         public Definition() {
37             super(Rfc6020Mapping.IF_FEATURE);
38         }
39
40         @Override
41         public QName parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
42             return Utils.qNameFromArgument(ctx, value);
43         }
44
45         @Override
46         public IfFeatureStatement createDeclared(
47                 StmtContext<QName, IfFeatureStatement, ?> ctx) {
48             return new IfFeatureStatementImpl(ctx);
49         }
50
51         @Override
52         public EffectiveStatement<QName, IfFeatureStatement> createEffective(
53                 StmtContext<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> ctx) {
54             return new IfFeatureEffectiveStatementImpl(ctx);
55         }
56
57         @Override
58         public void onFullDefinitionDeclared(StmtContext.Mutable<QName, IfFeatureStatement,
59                 EffectiveStatement<QName, IfFeatureStatement>> stmt) throws SourceException {
60             super.onFullDefinitionDeclared(stmt);
61             SUBSTATEMENT_VALIDATOR.validate(stmt);
62         }
63     }
64
65     @Override
66     public QName getName() {
67         return argument();
68     }
69
70 }