itcs3146-project/jobThread.java

95 lines
2.6 KiB
Java
Raw Permalink Normal View History

import java.lang.reflect.Method;
2012-09-28 18:07:28 -04:00
public class jobThread extends Thread {
private final int sleepResolution = 20; //Milliseconds
2012-09-28 18:07:28 -04:00
private long jobTime; //Milliseconds
private long elapsedTime;
private boolean isPaused, pauseStateChanged;
private long startTime;
private int jobID;
private boolean jobDone;
private Method parentAlgorithmDeallocate; //Our parent to notify when we're done.
2012-11-10 10:44:10 -05:00
private Object parentAlgorithm; //The actual instance of our parent class
2012-09-28 18:07:28 -04:00
/* Fields that we need to know when calling the deallocate */
private int jobSize;
private int beginningLocation;
2012-11-10 10:44:10 -05:00
public jobThread(long jobTime, int jobID, int jobSize, int beginningLocation, Method parentAlgorithmDeallocate, Object parentClass){
2012-09-28 18:07:28 -04:00
this.jobTime = jobTime;
this.parentAlgorithmDeallocate = parentAlgorithmDeallocate;
2012-11-10 10:44:10 -05:00
this.parentAlgorithm = parentClass;
this.elapsedTime = 0;
this.isPaused = false;
this.startTime = System.currentTimeMillis();
2012-09-28 18:07:28 -04:00
this.jobID = jobID;
this.jobSize = jobSize;
this.beginningLocation = beginningLocation;
this.jobDone = false;
2012-09-28 18:07:28 -04:00
}
public void setBeginning(int newBeginning){
this.beginningLocation = newBeginning;
}
2012-09-28 18:07:28 -04:00
public void pause(){
synchronized(this){
isPaused = true;
pauseStateChanged = true;
}
}
public void jobResume(){
synchronized(this){
isPaused = false;
pauseStateChanged = true;
}
}
public void run(){
//The event loop.
//Basically, check that elapsedTime plus current time delta
//are not greater than the time we're supposed to run.
//If paused, don't do anything until we resume
try{
while (!jobDone){
//Begin event logic
sleep(sleepResolution);
synchronized(this){
if (pauseStateChanged){
if (isPaused){
//We have just been paused, save the time that we've currently
//been running, and then go back to the event loop
elapsedTime += System.currentTimeMillis() - startTime;
continue;
} else {
//We have just been resumed, restart the timer
startTime = System.currentTimeMillis();
continue;
}
} else {
if (isPaused){
//Nothing much happening, we're still paused.
continue;
} else {
//Not paused, Check if we need to keep running
long currentDelta = System.currentTimeMillis() - startTime;
if (currentDelta + elapsedTime >= jobTime){
jobDone = true;
}
}
}
}
}
2012-11-10 10:44:10 -05:00
Object[] deallocateArgs = {this.jobSize, this.beginningLocation};
2012-09-28 18:07:28 -04:00
//We're done, go ahead and notify our algorithm to clean us up
2012-11-10 10:44:10 -05:00
parentAlgorithmDeallocate.invoke(parentAlgorithm, deallocateArgs);
2012-09-28 18:07:28 -04:00
} catch (Exception e) {
return;
}
}
}