Bug 4646: Parser accepts invalid models
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / ConfigStatementImpl.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;
10
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ConfigEffectiveStatementImpl;
21
22 public class ConfigStatementImpl extends AbstractDeclaredStatement<Boolean> implements ConfigStatement {
23     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
24             .CONFIG)
25             .build();
26
27     protected ConfigStatementImpl(
28             StmtContext<Boolean, ConfigStatement, ?> context) {
29         super(context);
30     }
31
32     public static class Definition extends AbstractStatementSupport<Boolean,ConfigStatement,EffectiveStatement<Boolean,ConfigStatement>> {
33
34         public Definition() {
35             super(Rfc6020Mapping.CONFIG);
36         }
37
38         @Override public Boolean parseArgumentValue(StmtContext<?, ?, ?> ctx,
39                 String value) throws SourceException {
40             return Boolean.valueOf(value);
41         }
42
43         @Override public ConfigStatement createDeclared(StmtContext<Boolean, ConfigStatement, ?> ctx) {
44             return new ConfigStatementImpl(ctx);
45         }
46
47         @Override public EffectiveStatement<Boolean, ConfigStatement> createEffective(StmtContext<Boolean, ConfigStatement, EffectiveStatement<Boolean, ConfigStatement>> ctx) {
48             return new ConfigEffectiveStatementImpl(ctx);
49         }
50
51         @Override
52         public void onFullDefinitionDeclared(StmtContext.Mutable<Boolean, ConfigStatement,
53                 EffectiveStatement<Boolean, ConfigStatement>> stmt) throws SourceException {
54             super.onFullDefinitionDeclared(stmt);
55             SUBSTATEMENT_VALIDATOR.validate(stmt);
56         }
57     }
58
59     @Nonnull @Override
60     public Boolean getValue() {
61         return argument();
62     }
63 }