/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020; import org.opendaylight.yangtools.yang.model.api.YangStmtMapping; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement; import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator; import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement; import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ConfigEffectiveStatementImpl; public class ConfigStatementImpl extends AbstractDeclaredStatement implements ConfigStatement { private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder( YangStmtMapping.CONFIG).build(); protected ConfigStatementImpl(final StmtContext context) { super(context); } public static class Definition extends AbstractStatementSupport> { public Definition() { super(YangStmtMapping.CONFIG); } @Override public Boolean parseArgumentValue(final StmtContext ctx, final String value) { return Utils.parseBoolean(ctx, value); } @Override public ConfigStatement createDeclared(final StmtContext ctx) { final ConfigStatement ret = new ConfigStatementImpl(ctx); if (EmptyConfigStatement.FALSE.equals(ret)) { return EmptyConfigStatement.FALSE; } else if (EmptyConfigStatement.TRUE.equals(ret)) { return EmptyConfigStatement.TRUE; } else { return ret; } } @Override public EffectiveStatement createEffective( final StmtContext> ctx) { final EffectiveStatement ret = new ConfigEffectiveStatementImpl(ctx); final ConfigStatement declared = ret.getDeclared(); if (declared instanceof EmptyConfigStatement && ret.effectiveSubstatements().isEmpty()) { return ((EmptyConfigStatement)declared).toEffective(); } return ret; } @Override public String internArgument(final String rawArgument) { return Utils.internBoolean(rawArgument); } @Override protected SubstatementValidator getSubstatementValidator() { return SUBSTATEMENT_VALIDATOR; } } @Override public boolean getValue() { return argument().booleanValue(); } }