YANGTOOLS-706: Split up base utility classes into rfc6020.util
[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 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.ConfigStatement;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.SubstatementValidator;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ConfigEffectiveStatementImpl;
19
20 public class ConfigStatementImpl extends AbstractDeclaredStatement<Boolean> implements ConfigStatement {
21     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(
22         YangStmtMapping.CONFIG).build();
23
24     protected ConfigStatementImpl(final StmtContext<Boolean, ConfigStatement, ?> context) {
25         super(context);
26     }
27
28     public static class Definition extends
29         AbstractStatementSupport<Boolean, ConfigStatement, EffectiveStatement<Boolean, ConfigStatement>> {
30
31         public Definition() {
32             super(YangStmtMapping.CONFIG);
33         }
34
35         @Override
36         public Boolean parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
37             return Utils.parseBoolean(ctx, value);
38         }
39
40         @Override
41         public ConfigStatement createDeclared(final StmtContext<Boolean, ConfigStatement, ?> ctx) {
42             final ConfigStatement ret = new ConfigStatementImpl(ctx);
43
44             if (EmptyConfigStatement.FALSE.equals(ret)) {
45                 return EmptyConfigStatement.FALSE;
46             } else if (EmptyConfigStatement.TRUE.equals(ret)) {
47                 return EmptyConfigStatement.TRUE;
48             } else {
49                 return ret;
50             }
51         }
52
53         @Override
54         public EffectiveStatement<Boolean, ConfigStatement> createEffective(
55                 final StmtContext<Boolean, ConfigStatement, EffectiveStatement<Boolean, ConfigStatement>> ctx) {
56             final EffectiveStatement<Boolean, ConfigStatement> ret = new ConfigEffectiveStatementImpl(ctx);
57             final ConfigStatement declared = ret.getDeclared();
58             if (declared instanceof EmptyConfigStatement && ret.effectiveSubstatements().isEmpty()) {
59                 return ((EmptyConfigStatement)declared).toEffective();
60             }
61             return ret;
62         }
63
64         @Override
65         public String internArgument(final String rawArgument) {
66             return Utils.internBoolean(rawArgument);
67         }
68
69         @Override
70         protected SubstatementValidator getSubstatementValidator() {
71             return SUBSTATEMENT_VALIDATOR;
72         }
73     }
74
75     @Override
76     public boolean getValue() {
77         return argument().booleanValue();
78     }
79 }