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