/* * 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 java.text.ParseException; import java.util.Date; import javax.annotation.Nullable; import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil; import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement; import org.opendaylight.yangtools.yang.model.api.stmt.RevisionStatement; 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.spi.source.SourceException; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.RevisionEffectiveStatementImpl; public class RevisionStatementImpl extends AbstractDeclaredStatement implements RevisionStatement { private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping .REVISION) .add(Rfc6020Mapping.DESCRIPTION, 0, 1) .add(Rfc6020Mapping.REFERENCE, 0, 1) .build(); protected RevisionStatementImpl( StmtContext context) { super(context); } public static class Definition extends AbstractStatementSupport> { public Definition() { super(Rfc6020Mapping.REVISION); } @Override public Date parseArgumentValue(StmtContext ctx, String value) throws SourceException { Date revision; try { revision = SimpleDateFormatUtil.getRevisionFormat() .parse(value); } catch (ParseException e) { throw new SourceException(String.format("Revision value %s is not in required format yyyy-MM-dd", value), ctx.getStatementSourceReference(), e); } return revision; } @Override public RevisionStatement createDeclared( StmtContext ctx) { return new RevisionStatementImpl(ctx); } @Override public EffectiveStatement createEffective( StmtContext> ctx) { return new RevisionEffectiveStatementImpl(ctx); } @Override public void onFullDefinitionDeclared(StmtContext.Mutable> stmt) throws SourceException { super.onFullDefinitionDeclared(stmt); SUBSTATEMENT_VALIDATOR.validate(stmt); } } @Override public Date getDate() { return argument(); } @Nullable @Override public DescriptionStatement getDescription() { return firstDeclared(DescriptionStatement.class); } @Nullable @Override public ReferenceStatement getReference() { return firstDeclared(ReferenceStatement.class); } }