All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.yangtools.rfc8639.parser.SubscriptionStateNotificationStatementSupport Maven / Gradle / Ivy

There is a newer version: 14.0.4
Show newest version
/*
 * Copyright (c) 2021 PANTHEON.tech, 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.rfc8639.parser;

import com.google.common.collect.ImmutableList;
import org.opendaylight.yangtools.rfc8639.model.api.SubscribedNotificationsStatements;
import org.opendaylight.yangtools.rfc8639.model.api.SubscriptionStateNotificationEffectiveStatement;
import org.opendaylight.yangtools.rfc8639.model.api.SubscriptionStateNotificationStatement;
import org.opendaylight.yangtools.yang.common.Empty;
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.parser.api.YangParserConfiguration;
import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractEmptyStatementSupport;
import org.opendaylight.yangtools.yang.parser.spi.meta.BoundStmtCtx;
import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable;
import org.opendaylight.yangtools.yang.parser.spi.meta.SubstatementValidator;
import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;

public final class SubscriptionStateNotificationStatementSupport
        extends AbstractEmptyStatementSupport {
    private static final SubstatementValidator VALIDATOR =
        SubstatementValidator.builder(SubscribedNotificationsStatements.SUBSCRIPTION_STATE_NOTIFICATION).build();

    public SubscriptionStateNotificationStatementSupport(final YangParserConfiguration config) {
        super(SubscribedNotificationsStatements.SUBSCRIPTION_STATE_NOTIFICATION, StatementPolicy.exactReplica(),
            config, VALIDATOR);
    }

    @Override
    public void onStatementAdded(final Mutable stmt) {
        SourceException.throwIf(YangStmtMapping.NOTIFICATION != stmt.coerceParentContext().publicDefinition(), stmt,
            "Only notifications may be marked with subscription-state-notification");
    }

    @Override
    protected SubscriptionStateNotificationStatement createDeclared(final BoundStmtCtx ctx,
            final ImmutableList> substatements) {
        return new SubscriptionStateNotificationStatementImpl(substatements);
    }

    @Override
    protected SubscriptionStateNotificationStatement attachDeclarationReference(
            final SubscriptionStateNotificationStatement stmt, final DeclarationReference reference) {
        return new RefSubscriptionStateNotificationStatement(stmt, reference);
    }

    @Override
    protected SubscriptionStateNotificationEffectiveStatement createEffective(
            final Current stmt,
            final ImmutableList> substatements) {
        return new SubscriptionStateNotificationEffectiveStatementImpl(stmt.declared(), substatements);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy