tmf: Avoid hanging when waiting on a cancelled analysis
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / analysis / TmfAbstractAnalysisModule.java
CommitLineData
c068a752
GB
1/*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.analysis;
14
15import java.util.ArrayList;
c068a752
GB
16import java.util.HashMap;
17import java.util.List;
18import java.util.Map;
19import java.util.concurrent.CountDownLatch;
20import java.util.concurrent.TimeUnit;
21
22import org.eclipse.core.runtime.IProgressMonitor;
23import org.eclipse.core.runtime.IStatus;
24import org.eclipse.core.runtime.Status;
25import org.eclipse.core.runtime.jobs.Job;
26import org.eclipse.linuxtools.internal.tmf.core.Activator;
27import org.eclipse.linuxtools.tmf.core.component.TmfComponent;
28import org.eclipse.linuxtools.tmf.core.exceptions.TmfAnalysisException;
29import org.eclipse.linuxtools.tmf.core.signal.TmfSignalHandler;
30import org.eclipse.linuxtools.tmf.core.signal.TmfStartAnalysisSignal;
31import org.eclipse.linuxtools.tmf.core.signal.TmfTraceClosedSignal;
32import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
9de979b2 33import org.eclipse.linuxtools.tmf.core.trace.TmfTrace;
c068a752
GB
34import org.eclipse.osgi.util.NLS;
35
36/**
37 * Base class that analysis modules main class may extend. It provides default
38 * behavior to some methods of the analysis module
39 *
40 * @author Geneviève Bastien
41 * @since 3.0
42 */
43public abstract class TmfAbstractAnalysisModule extends TmfComponent implements IAnalysisModule {
44
45 private String fName, fId;
46 private boolean fAutomatic = false, fStarted = false;
47 private ITmfTrace fTrace;
a4524c1b
AM
48 private final Map<String, Object> fParameters = new HashMap<>();
49 private final List<String> fParameterNames = new ArrayList<>();
50 private final List<IAnalysisOutput> fOutputs = new ArrayList<>();
51 private List<IAnalysisParameterProvider> fParameterProviders = new ArrayList<>();
c068a752
GB
52 private Job fJob = null;
53
54 private final Object syncObj = new Object();
55
56 /* Latch tracking if the analysis is completed or not */
57 private CountDownLatch fFinishedLatch = new CountDownLatch(0);
58
59 private boolean fAnalysisCancelled = false;
60
61 @Override
62 public boolean isAutomatic() {
63 return fAutomatic;
64 }
65
66 @Override
67 public String getName() {
68 return fName;
69 }
70
71 @Override
72 public void setName(String name) {
73 fName = name;
74 }
75
76 @Override
77 public void setId(String id) {
78 fId = id;
79 }
80
81 @Override
82 public String getId() {
83 return fId;
84 }
85
86 @Override
87 public void setAutomatic(boolean auto) {
88 fAutomatic = auto;
89 }
90
91 @Override
92 public void setTrace(ITmfTrace trace) throws TmfAnalysisException {
93 if (fTrace != null) {
94 throw new TmfAnalysisException(NLS.bind(Messages.TmfAbstractAnalysisModule_TraceSetMoreThanOnce, getName()));
95 }
96
97 /* Check that analysis can be executed */
98 if (!canExecute(trace)) {
99 throw new TmfAnalysisException(NLS.bind(Messages.TmfAbstractAnalysisModule_AnalysisCannotExecute, getName()));
100 }
101 fTrace = trace;
102 /* Get the parameter providers for this trace */
103 fParameterProviders = TmfAnalysisManager.getParameterProviders(this, fTrace);
104 for (IAnalysisParameterProvider provider : fParameterProviders) {
105 provider.registerModule(this);
106 }
107 resetAnalysis();
108 fStarted = false;
109 }
110
111 /**
112 * Gets the trace
113 *
114 * @return The trace
115 */
116 protected ITmfTrace getTrace() {
117 return fTrace;
118 }
119
120 @Override
121 public void addParameter(String name) {
122 fParameterNames.add(name);
123 }
124
125 @Override
126 public synchronized void setParameter(String name, Object value) {
127 if (!fParameterNames.contains(name)) {
128 throw new RuntimeException(NLS.bind(Messages.TmfAbstractAnalysisModule_InvalidParameter, name, getName()));
129 }
130 Object oldValue = fParameters.get(name);
131 fParameters.put(name, value);
132 if ((value != null) && !(value.equals(oldValue))) {
133 parameterChanged(name);
134 }
135 }
136
137 @Override
138 public synchronized void notifyParameterChanged(String name) {
139 if (!fParameterNames.contains(name)) {
140 throw new RuntimeException(NLS.bind(Messages.TmfAbstractAnalysisModule_InvalidParameter, name, getName()));
141 }
142 Object oldValue = fParameters.get(name);
143 Object value = getParameter(name);
144 if ((value != null) && !(value.equals(oldValue))) {
145 parameterChanged(name);
146 }
147 }
148
149 /**
150 * Used to indicate that a parameter value has been changed
151 *
152 * @param name
153 * The name of the modified parameter
154 */
155 protected void parameterChanged(String name) {
156
157 }
158
159 @Override
160 public Object getParameter(String name) {
161 Object paramValue = fParameters.get(name);
162 /* The parameter is not set, maybe it can be provided by someone else */
163 if ((paramValue == null) && (fTrace != null)) {
164 for (IAnalysisParameterProvider provider : fParameterProviders) {
165 paramValue = provider.getParameter(name);
166 if (paramValue != null) {
167 break;
168 }
169 }
170 }
171 return paramValue;
172 }
173
174 @Override
175 public boolean canExecute(ITmfTrace trace) {
176 return true;
177 }
178
179 /**
180 * Set the countdown latch back to 1 so the analysis can be executed again
181 */
182 protected void resetAnalysis() {
0d3a54a3 183 fFinishedLatch.countDown();
c068a752
GB
184 fFinishedLatch = new CountDownLatch(1);
185 }
186
187 /**
188 * Actually executes the analysis itself
189 *
190 * @param monitor
191 * Progress monitor
192 * @return Whether the analysis was completed successfully or not
193 * @throws TmfAnalysisException
194 * Method may throw an analysis exception
195 */
196 protected abstract boolean executeAnalysis(final IProgressMonitor monitor) throws TmfAnalysisException;
197
198 /**
199 * Indicate the analysis has been canceled. It is abstract to force
200 * implementing class to cleanup what they are running. This is called by
201 * the job's canceling. It does not need to be called directly.
202 */
203 protected abstract void canceling();
204
205 /**
206 * To be called when the analysis is completed, whether normally or because
207 * it was cancelled or for any other reason.
208 *
209 * It has to be called inside a synchronized block
210 */
211 private void setAnalysisCompleted() {
212 fStarted = false;
213 fJob = null;
214 fFinishedLatch.countDown();
9de979b2
GB
215 if (fTrace instanceof TmfTrace) {
216 ((TmfTrace) fTrace).refreshSupplementaryFiles();
217 }
c068a752
GB
218 }
219
220 /**
221 * Cancels the analysis if it is executing
222 */
223 @Override
224 public final void cancel() {
225 synchronized (syncObj) {
226 if (fJob != null) {
227 if (fJob.cancel()) {
228 fAnalysisCancelled = true;
229 setAnalysisCompleted();
230 }
231 }
232 fStarted = false;
233 }
234 }
235
236 private void execute() {
237
238 /*
239 * TODO: The analysis in a job should be done at the analysis manager
240 * level instead of depending on this abstract class implementation,
241 * otherwise another analysis implementation may block the main thread
242 */
243
244 /* Do not execute if analysis has already run */
245 if (fFinishedLatch.getCount() == 0) {
246 return;
247 }
248
249 /* Do not execute if analysis already running */
250 synchronized (syncObj) {
251 if (fStarted) {
252 return;
253 }
254 fStarted = true;
255 }
256
257 /*
258 * Actual analysis will be run on a separate thread
259 */
260 fJob = new Job(NLS.bind(Messages.TmfAbstractAnalysisModule_RunningAnalysis, getName())) {
261 @Override
262 protected IStatus run(final IProgressMonitor monitor) {
263 try {
264 monitor.beginTask("", IProgressMonitor.UNKNOWN); //$NON-NLS-1$
265 broadcast(new TmfStartAnalysisSignal(TmfAbstractAnalysisModule.this, TmfAbstractAnalysisModule.this));
266 fAnalysisCancelled = !executeAnalysis(monitor);
267 } catch (TmfAnalysisException e) {
268 Activator.logError("Error executing analysis with trace " + getTrace().getName(), e); //$NON-NLS-1$
269 } finally {
270 synchronized (syncObj) {
271 monitor.done();
272 setAnalysisCompleted();
273 }
274 }
275 if (!fAnalysisCancelled) {
276 return Status.OK_STATUS;
277 }
baa96b1d
BH
278 // Reset analysis so that it can be executed again.
279 resetAnalysis();
c068a752
GB
280 return Status.CANCEL_STATUS;
281 }
282
283 @Override
284 protected void canceling() {
285 TmfAbstractAnalysisModule.this.canceling();
286 }
287
288 };
289 fJob.schedule();
290 }
291
292 @Override
293 public IStatus schedule() {
294 if (fTrace == null) {
295 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, String.format("No trace specified for analysis %s", getName())); //$NON-NLS-1$
296 }
297 execute();
298
299 return Status.OK_STATUS;
300 }
301
302 @Override
d9810555
AM
303 public Iterable<IAnalysisOutput> getOutputs() {
304 return fOutputs;
c068a752
GB
305 }
306
307 @Override
308 public void registerOutput(IAnalysisOutput output) {
309 if (!fOutputs.contains(output)) {
310 fOutputs.add(output);
311 }
312 }
313
314 @Override
315 public boolean waitForCompletion(IProgressMonitor monitor) {
316 try {
0d3a54a3
AM
317 while (!fFinishedLatch.await(500, TimeUnit.MILLISECONDS)) {
318 if (fAnalysisCancelled || monitor.isCanceled()) {
c068a752
GB
319 fAnalysisCancelled = true;
320 return false;
321 }
322 }
323 } catch (InterruptedException e) {
324 Activator.logError("Error while waiting for module completion", e); //$NON-NLS-1$
325 }
326 return !fAnalysisCancelled;
327 }
328
329 /**
330 * Signal handler for trace closing
331 *
332 * @param signal
333 * Trace closed signal
334 */
335 @TmfSignalHandler
336 public void traceClosed(TmfTraceClosedSignal signal) {
337 /* Is the closing trace the one that was requested? */
338 if (signal.getTrace() == fTrace) {
339 cancel();
340 fTrace = null;
341 }
342 }
343
344 /**
345 * Returns a full help text to display
346 *
347 * @return Full help text for the module
348 */
349 protected String getFullHelpText() {
350 return NLS.bind(Messages.TmfAbstractAnalysisModule_AnalysisModule, getName());
351 }
352
353 /**
354 * Gets a short help text, to display as header to other help text
355 *
356 * @param trace
357 * The trace to show help for
358 *
359 * @return Short help text describing the module
360 */
361 protected String getShortHelpText(ITmfTrace trace) {
362 return NLS.bind(Messages.TmfAbstractAnalysisModule_AnalysisForTrace, getName(), trace.getName());
363 }
364
365 /**
366 * Gets the help text specific for a trace who does not have required
367 * characteristics for module to execute
368 *
369 * @param trace
370 * The trace to apply the analysis to
371 * @return Help text
372 */
373 protected String getTraceCannotExecuteHelpText(ITmfTrace trace) {
374 return Messages.TmfAbstractAnalysisModule_AnalysisCannotExecute;
375 }
376
377 @Override
378 public String getHelpText() {
379 return getFullHelpText();
380 }
381
382 @Override
383 public String getHelpText(ITmfTrace trace) {
384 if (trace == null) {
385 return getHelpText();
386 }
387 String text = getShortHelpText(trace);
388 if (!canExecute(trace)) {
389 text = text + getTraceCannotExecuteHelpText(trace);
390 }
391 return text;
392 }
393
394}
This page took 0.067734 seconds and 5 git commands to generate.