/* * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.rfc7950.stmt.notification; import com.google.common.collect.ImmutableList; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.YangStmtMapping; import org.opendaylight.yangtools.yang.model.api.meta.DeclarationReference; import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.NotificationEffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.NotificationStatement; import org.opendaylight.yangtools.yang.model.ri.stmt.DeclaredStatementDecorators; import org.opendaylight.yangtools.yang.model.ri.stmt.DeclaredStatements; import org.opendaylight.yangtools.yang.model.ri.stmt.EffectiveStatements; import org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins; import org.opendaylight.yangtools.yang.model.spi.meta.SubstatementIndexingException; import org.opendaylight.yangtools.yang.parser.api.YangParserConfiguration; import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractSchemaTreeStatementSupport; import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; import org.opendaylight.yangtools.yang.parser.spi.source.SourceException; abstract class AbstractNotificationStatementSupport extends AbstractSchemaTreeStatementSupport { AbstractNotificationStatementSupport(final YangParserConfiguration config) { super(YangStmtMapping.NOTIFICATION, uninstantiatedPolicy(), config); } @Override protected final NotificationStatement createDeclared(final StmtContext ctx, final ImmutableList> substatements) { return DeclaredStatements.createNotification(ctx.getArgument(), substatements); } @Override protected final NotificationStatement attachDeclarationReference(final NotificationStatement stmt, final DeclarationReference reference) { return DeclaredStatementDecorators.decorateNotification(stmt, reference); } @Override protected final NotificationEffectiveStatement createEffective(final Current stmt, final ImmutableList> substatements) { try { return EffectiveStatements.createNotification(stmt.declared(), stmt.effectivePath(), EffectiveStatementMixins.historyAndStatusFlags(stmt.history(), substatements), substatements); } catch (SubstatementIndexingException e) { throw new SourceException(e.getMessage(), stmt, e); } } @Override // FIXME: propagate original? public final NotificationEffectiveStatement copyEffective(final Current stmt, final NotificationEffectiveStatement original) { return EffectiveStatements.copyNotification(original, stmt.effectivePath(), EffectiveStatementMixins.historyAndStatusFlags(stmt.history(), original.effectiveSubstatements())); } }