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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*******************************************************************************
* Copyright (c) 2001, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.validation.internal;
import java.util.Vector;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.wst.validation.internal.plugin.ValidationPlugin;
/**
* This class manages (queue, invoke, etc.) the Runnables that perform the validation for a
* particular validator.
*/
public class VThreadManager {
private static VThreadManager _manager = null;
private static final int MAX_NUM_OF_RESTART = 5; // the maximum number of times that the thread
// should attempt to ignore a Throwable and
// carry on
private Thread _validationThread = null; // This thread checks if the current Runnable is
// finished, and if so, loads the first Runnable off of
// the queue and starts it.
volatile int restart = 0; // how many times has the thread been restarted?
volatile Jobs _jobs = null;
private VThreadManager() {
_jobs = new Jobs();
// Start the validation thread to check for queued ValidationOperation
Runnable validationRunnable = new Runnable() {
public void run() {
while (true) {
try {
if (restart > MAX_NUM_OF_RESTART) {
// something has gone seriously, seriously wrong
String message = "restart = " + restart; //$NON-NLS-1$
ValidationPlugin.getPlugin().logMessage(IStatus.ERROR, message);
break;
}
Runnable job = getJobs().dequeue(); // If currentRunnable is null, there's
// nothing on the queue. Shouldn't
// happen with a semaphore.
if (job != null) {
getJobs().setActive(true);
job.run();
getJobs().setActive(false);
}
} catch (Exception e) {
restart++;
getJobs().setActive(false);
ValidationPlugin.getPlugin().handleException(e);
} finally {
//do nothing
}
}
}
};
_validationThread = new Thread(validationRunnable, "ValidationThread"); //$NON-NLS-1$
_validationThread.start();
}
public static VThreadManager getManager() {
if (_manager == null) {
_manager = new VThreadManager();
}
return _manager;
}
Jobs getJobs() {
return _jobs;
}
public void queue(Runnable runnable) {
getJobs().queue(runnable);
}
/**
* Return true if all of the Runnables have been run.
*/
public boolean isDone() {
return getJobs().isDone();
}
private class Jobs {
private Vector<Runnable> _queuedJobs; // The queued Runnables that need to be run.
private boolean _isActive; // Is a job being run in the validation thread?
public Jobs() {
_queuedJobs = new Vector<Runnable>();
}
public synchronized void queue(Runnable runnable) {
// If there is a thread running already, then it must finish before another validation
// thread is launched, or the validation messages could reflect the last thread
// finished,
// instead of the last state of changes.
// Have to wait for the current Runnable to finish, so add this to the end of the queue
_queuedJobs.add(runnable);
notifyAll();
}
/**
* Pop the Runnable off of the head of the queue.
*/
synchronized Runnable dequeue() {
while (_queuedJobs.size() == 0) {
try {
wait();
} catch (InterruptedException exc) {
//Ignore
}
} // Block on the semaphore; break when a job has been added to the queue.
Runnable job = null;
if (_queuedJobs.size() > 0) {
job = _queuedJobs.get(0);
if (job != null) {
_queuedJobs.remove(0);
}
}
return job;
}
public synchronized boolean isActive() {
return _isActive;
}
public synchronized void setActive(boolean active) {
_isActive = active;
}
/**
* Return true if all of the Runnables have been run.
*/
public synchronized boolean isDone() {
return ((_queuedJobs.size() == 0) && !isActive());
}
}
}
|