/* * 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.spi.meta; import com.google.common.base.Supplier; import java.util.Collection; import javax.annotation.Nonnull; 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.meta.IdentifierNamespace; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable; /** * Builder for effective model inference action. * * Model inference action is core principle of transforming * declared model into effective model. * * Since YANG allows forward references, some inference actions * needs to be taken at later point, where reference is actually * resolved. Referenced objects are not retrieved directly * but are represented as {@link Prerequisite} (prerequisite) for * inference action to be taken. * * Some existing YANG statements are more complex and also object, * for which effective model may be inferred is also represented * as {@link Prerequisite} which once, when reference is available * will contain target context, which may be used for inference * action. * *

Implementing inference action

* * Effective inference action could always be splitted into two * separate tasks: *
    *
  1. Declaration of inference action and its prerequisites
  2. *
  3. Execution of inference action
  4. *
* In order to declare inference action following steps needs * to be taken: * *
    *
  1. Use {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)} to obtain * {@link ModelActionBuilder}. *
  2. Use builder to specify concrete prerequisites of inference action * (other statements, values from identifier namespaces) *
  3. Use builder to specify concrete set of nodes (or forward references to nodes) * which will inference action mutate. *
  4. Use {@link #apply(InferenceAction)} with {@link InferenceAction} implementation * to register inference action. *
* * Action will be executed when: * * * TODO: Insert real word example * *

Design notes

* {@link java.util.concurrent.Future} seems as viable and more standard * alternative to {@link Prerequisite}, but futures also carries * promise that resolution of it is carried in other * thread, which will actually put additional constraints on * semantic parser. * * Also listening on multiple futures is costly, so we opted * out of future and designed API, which later may introduce * futures. * */ public interface ModelActionBuilder { public interface Prerequisite extends Supplier { /** * * Returns associated prerequisite once it is resolved. * * @return associated prerequisite once it is resolved. * */ @Override public T get(); boolean isDone(); } /** * User-defined inference action. * */ public interface InferenceAction { /** * Invoked once all prerequisites were met and forward references * were resolved and inference action should be applied. * * Implementors may do necessary changes to mutable objects * which were declared. * * @throws InferenceException If inference action can not be processed. * Note that this exception be used for user to debug YANG sources, * so should provide helpful context to fix issue in sources. */ void apply() throws InferenceException; /** * Invoked once one of prerequisites was not met, * even after all other satifiable inference actions were processed. * * Implementors MUST throw {@link InferenceException} if semantic processing * of model should be stopped and failed. * * List of failed prerequisites should be used to select right message / error * type to debug problem in YANG sources. * * @throws InferenceException If inference action can not be processed. * Note that this exception be used for user to debug YANG sources, * so should provide helpful context to fix issue in sources. */ void prerequisiteFailed(Collection> failed) throws InferenceException; } @Nonnull > Prerequisite requiresDeclared(StmtContext context); @Nonnull , N extends StatementNamespace> Prerequisite requiresDeclared(StmtContext context,Class namespace, K key); @Nonnull , N extends StatementNamespace> Prerequisite>requiresDeclaredCtx(StmtContext context,Class namespace, K key); @Nonnull > Prerequisite requiresEffective(StmtContext stmt); @Nonnull , N extends StatementNamespace> Prerequisite requiresEffective(StmtContext context,Class namespace, K key); @Nonnull , N extends StatementNamespace> Prerequisite> requiresEffectiveCtx(StmtContext context,Class namespace, K key); @Nonnull > Prerequisite> mutatesNs(Mutable ctx, Class namespace); @Nonnull > Prerequisite mutatesEffectiveCtx(T stmt); @Nonnull ,N extends StatementNamespace> Prerequisite> mutatesEffectiveCtx(StmtContext context,Class namespace, K key); void apply(InferenceAction action) throws InferenceException; @Nonnull ,E extends EffectiveStatement> Prerequisite> requiresCtx(StmtContext context, ModelProcessingPhase phase); @Nonnull > Prerequisite> requiresCtx(StmtContext context, Class namespace, K key, ModelProcessingPhase phase); @Nonnull , CT extends C> Prerequisite mutatesCtx(CT root, ModelProcessingPhase phase); }