2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.datamodel.AlignmentAnnotation;
25 import java.util.List;
27 public interface AlignCalcManagerI
31 * tell manager that a worker is initialised and has started to run
35 void notifyStart(AlignCalcWorkerI worker);
38 * check if a calculation of this type is already active
43 boolean alreadyDoing(AlignCalcWorkerI worker);
46 * tell manager that worker is now processing data
50 boolean notifyWorking(AlignCalcWorkerI worker);
53 * notify manager that the worker has completed, and results may be ready to
58 void workerComplete(AlignCalcWorkerI worker);
61 * indicate that a worker like this cannot run on the platform and shouldn't
66 void workerCannotRun(AlignCalcWorkerI worker);
69 * indicate that a worker like this may be run on the platform.
72 * of class to be removed from the execution blacklist
74 void workerMayRun(AlignCalcWorkerI worker);
81 void startWorker(AlignCalcWorkerI worker);
88 boolean isWorking(AlignCalcWorkerI worker);
91 * if any worker thread is operational, return true!
98 * register a restartable worker
102 void registerWorker(AlignCalcWorkerI worker);
105 * restart any registered workers
107 void restartWorkers();
111 * @param alignmentAnnotation
112 * @return true if a currently registered and working worker indicates its
113 * involvement with the given alignmentAnnotation
115 boolean workingInvolvedWith(AlignmentAnnotation alignmentAnnotation);
118 * kick any known instances of the given worker class to update their
123 void updateAnnotationFor(Class workerClass);
126 * return any registered workers of the given class
129 * @return null or one or more workers of the given class
131 List<AlignCalcWorkerI> getRegisteredWorkersOfClass(Class workerClass);
134 * start any workers of the given class
137 * @return false if no workers of given class were registered (note -
138 * blacklisted classes cannot be restarted, so this method will return
139 * true for blacklisted workers)
141 boolean startRegisteredWorkersOfClass(Class workerClass);
144 * work out if there is an instance of a worker that is *waiting* to start
147 * @param workingClass
148 * @return true if workingClass is already waiting to calculate. false if it
149 * is calculating, or not queued.
151 boolean isPending(AlignCalcWorkerI workingClass);
154 * deregister and otherwise remove any registered and working instances of the
157 * @param typeToRemove
159 void removeRegisteredWorkersOfClass(Class typeToRemove);