Bump byte-buddy to 1.15.2
[yangtools.git] / parser / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / StatementFactory.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.spi.meta;
9
10 import java.util.List;
11 import java.util.stream.Stream;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.eclipse.jdt.annotation.Nullable;
14 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
17
18 /**
19  * An entity capable of creating {@link DeclaredStatement} and {@link EffectiveStatement} instances for a particular
20  * type. This interface is usually realized as an implementation-specific combination with {@link StatementSupport}.
21  *
22  * @param <A> Argument type
23  * @param <D> Declared Statement representation
24  * @param <E> Effective Statement representation
25  */
26 public interface StatementFactory<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>> {
27     /**
28      * Create a {@link DeclaredStatement} for specified context.
29      *
30      * @param ctx Statement context
31      * @param substatements Declared substatements
32      * @return A declared statement instance.
33      */
34     @NonNull D createDeclared(@NonNull BoundStmtCtx<A> ctx, @NonNull Stream<DeclaredStatement<?>> substatements);
35
36     /**
37      * Create a {@link EffectiveStatement} for specified context.
38      *
39      * @param stmt Effective capture of this statement's significant state
40      * @param substatements effectively-visible substatements
41      * @return An effective statement instance
42      */
43     @NonNull E createEffective(@NonNull Current<A, D> stmt, @NonNull Stream<StmtContext<?, ?, ?>> substatements);
44
45     /**
46      * Create a {@link EffectiveStatement} copy of provided original for specified context.
47      *
48      * @param stmt Effective capture of this statement's significant state
49      * @param original Original effective statement
50      * @return An effective statement instance
51      * @throws NullPointerException if any argument is null
52      */
53     @NonNull E copyEffective(@NonNull Current<A, D> stmt, @NonNull E original);
54
55     /**
56      * Determine reactor copy behaviour of a statement instance. Implementations classes are required to determine
57      * their operations with regard to their statements being replicated into different contexts -- potentially sharing
58      * instantiations.
59      *
60      * <p>
61      * Implementations are examine {@code copy} as to whether it would result in the same semantics as {@code current}
62      * does, provided that {@code current}'s {@code substatements} are properly propagated.
63      *
64      * @param copy Copy of current effective context
65      * @param current Current effective context
66      * @param substatements Current effective substatements
67      * @return True if the differences between {@code copy} and {@code current} do not affect this statement's effective
68      *         semantics.
69      * @throws NullPointerException if any argument is null
70      */
71     boolean canReuseCurrent(@NonNull Current<A, D> copy, @NonNull Current<A, D> current,
72         @NonNull List<? extends EffectiveStatement<?, ?>> substatements);
73
74     /**
75      * Return the {@link EffectiveStatementState} for a particular statement. This acts as a summary for comparison with
76      * statements created by this factory, without taking substatements into account. This is an optional operation, it
77      * is always safe to return null.
78      *
79      * @param stmt EffectiveStatement to examine
80      * @return EffectiveStatementState or null if the statement cannot be expressed
81      */
82     @Nullable EffectiveStatementState extractEffectiveState(@NonNull E stmt);
83 }