aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/viatra-runtime-localsearch/src/main/java/tools/refinery/viatra/runtime/localsearch/matcher/ILocalSearchAdapter.java
blob: df64b5f1dbb66f43f2f1054ed1cf61a36b99f5ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*******************************************************************************
 * Copyright (c) 2010-2014, Marton Bur, Akos Horvath, Zoltan Ujhelyi, Istvan Rath and Daniel Varro
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-v20.html.
 * 
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package tools.refinery.viatra.runtime.localsearch.matcher;

import java.util.Optional;

import tools.refinery.viatra.runtime.localsearch.ExecutionLoggerAdapter;
import tools.refinery.viatra.runtime.localsearch.MatchingFrame;
import tools.refinery.viatra.runtime.localsearch.operations.ISearchOperation;
import tools.refinery.viatra.runtime.localsearch.plan.SearchPlan;
import tools.refinery.viatra.runtime.localsearch.profiler.LocalSearchProfilerAdapter;


/**
 * A local search adapter allows external code to follow the internal executions of the local search matcher. Possible
 * implementations of the interface include profilers and debuggers.
 * <p>
 * <strong>EXPERIMENTAL</strong>. A few shortcomings have been found for this interface late during the development
 * lifecycle of version 2.0 whose solution might need breaking possible future implementors. Because of this, right now
 * it is not recommended to provide implementations outside of VIATRA. If necessary, have a look at the built-in
 * adapters that should fulfill most cases in the meantime. See bugs https://bugs.eclipse.org/bugs/show_bug.cgi?id=535101
 * and https://bugs.eclipse.org/bugs/show_bug.cgi?id=535102 for details.
 * 
 * @author Marton Bur
 * @see ExecutionLoggerAdapter
 * @see LocalSearchProfilerAdapter
 *
 */
public interface ILocalSearchAdapter {

    /**
     * 
     * @since 1.2
     */
    default void adapterRegistered(ILocalSearchAdaptable adaptable) {};
    /**
     * 
     * @since 1.2
     */
    default void adapterUnregistered(ILocalSearchAdaptable adaptable) {};
    
    /**
     * Callback method to indicate the start of a matching process
     *
     * @param lsMatcher the local search matcher that starts the matching
     */
    default void patternMatchingStarted(LocalSearchMatcher lsMatcher) {};

    /**
     * Callback method to indicate the end of a matching process
     * </p>
     * <strong>WARNING</strong>: It is not guaranteed that this method will be called;
     * it is possible that a match process will end after a match is found and no other matches are accessed.
     * 
     * @param lsMatcher the local search matcher that finished
     * @since 2.0
     */
    default void noMoreMatchesAvailable(LocalSearchMatcher lsMatcher) {};

    /**
     * Callback method to indicate switching to a new plan during the execution of a pattern matching
     * 
     * @param oldPlan the plan that is finished. Value is null when the first plan is starting.
     * @param newPlan the plan that will begin execution
     * @since 2.0
     */
    default void planChanged(Optional<SearchPlan> oldPlan, Optional<SearchPlan> newPlan) {};
    
    /**
     * Callback method to indicate the selection of an operation to execute
     * 
     * @param plan the current plan executor
     * @param frame the current matching frame
     * @param isBacktrack if true, the selected operation was reached via backtracking
     * @since 2.0
     */
    default void operationSelected(SearchPlan plan, ISearchOperation operation, MatchingFrame frame, boolean isBacktrack) {};

    /**
     * Callback method to indicate that an operation is executed
     * 
     * @param plan the current plan
     * @param frame the current matching frame
     * @param isSuccessful if true, the operation executed successfully, or false if the execution failed and backtracking will happen
     * @since 2.0
     */
    default void operationExecuted(SearchPlan plan, ISearchOperation operation, MatchingFrame frame, boolean isSuccessful) {};

    /**
     * Callback that is used to indicate that a match has been found
     * 
     * @param plan the search plan executor that found the match
     * @param frame the frame that holds the substitutions of the variables that match 
     * @since 2.0
     */
    default void matchFound(SearchPlan plan, MatchingFrame frame) {};
    /**
     * Callback that is used to indicate that the previously reported match has been found as a duplicate, thus will be ignored from the match results.
     * 
     * @param plan the search plan executor that found the match
     * @param frame the frame that holds the substitutions of the variables that match 
     * @since 2.0
     */
    default void duplicateMatchFound(MatchingFrame frame) {};

    /**
     * Callback method to indicate that a search plan is initialized in an executor with the given frame and starting operation
     * 
     * @param searchPlan
     * @param frame
     * @since 2.0
     */
    default void executorInitializing(SearchPlan searchPlan, MatchingFrame frame) {};
}