2016-08-08 23:31:41 +01:00
|
|
|
/**
|
2016-11-27 14:34:20 +02:00
|
|
|
* The MIT License Copyright (c) 2014-2016 Ilkka Seppälä
|
2016-08-08 23:31:41 +01:00
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
|
|
|
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
|
|
|
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
package com.iluwatar.event.asynchronous;
|
|
|
|
|
|
2016-11-04 12:19:32 +01:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
2016-08-08 23:31:41 +01:00
|
|
|
/**
|
2016-11-04 12:19:32 +01:00
|
|
|
*
|
2016-08-08 23:31:41 +01:00
|
|
|
* Each Event runs as a separate/individual thread.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public class Event implements IEvent, Runnable {
|
|
|
|
|
|
2016-11-04 12:19:32 +01:00
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(Event.class);
|
|
|
|
|
|
2016-08-09 00:32:05 +01:00
|
|
|
private int eventId;
|
2016-08-08 23:31:41 +01:00
|
|
|
private int eventTime;
|
2016-09-19 21:50:04 +01:00
|
|
|
private boolean isSynchronous;
|
2016-08-08 23:31:41 +01:00
|
|
|
private Thread thread;
|
|
|
|
|
private boolean isComplete = false;
|
|
|
|
|
private ThreadCompleteListener eventListener;
|
|
|
|
|
|
2016-09-19 21:50:04 +01:00
|
|
|
/**
|
2016-11-04 12:19:32 +01:00
|
|
|
*
|
2016-09-19 21:50:04 +01:00
|
|
|
* @param eventId event ID
|
|
|
|
|
* @param eventTime event time
|
|
|
|
|
* @param isSynchronous is of synchronous type
|
|
|
|
|
*/
|
|
|
|
|
public Event(final int eventId, final int eventTime, final boolean isSynchronous) {
|
2016-08-09 00:32:05 +01:00
|
|
|
this.eventId = eventId;
|
2016-08-08 23:31:41 +01:00
|
|
|
this.eventTime = eventTime;
|
2016-09-19 21:50:04 +01:00
|
|
|
this.isSynchronous = isSynchronous;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isSynchronous() {
|
|
|
|
|
return isSynchronous;
|
2016-08-08 23:31:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void start() {
|
|
|
|
|
thread = new Thread(this);
|
|
|
|
|
thread.start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void stop() {
|
2016-09-19 21:50:04 +01:00
|
|
|
if (null == thread) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-08-08 23:31:41 +01:00
|
|
|
thread.interrupt();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void status() {
|
|
|
|
|
if (!isComplete) {
|
2016-11-04 12:19:32 +01:00
|
|
|
LOGGER.info("[{}] is not done.", eventId);
|
2016-08-08 23:31:41 +01:00
|
|
|
} else {
|
2016-11-04 12:19:32 +01:00
|
|
|
LOGGER.info("[{}] is done.", eventId);
|
2016-08-08 23:31:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void run() {
|
|
|
|
|
long currentTime = System.currentTimeMillis();
|
|
|
|
|
long endTime = currentTime + (eventTime * 1000);
|
|
|
|
|
while (System.currentTimeMillis() < endTime) {
|
|
|
|
|
try {
|
2016-10-03 21:05:11 +01:00
|
|
|
Thread.sleep(1000); // Sleep for 1 second.
|
2016-08-08 23:31:41 +01:00
|
|
|
} catch (InterruptedException e) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
isComplete = true;
|
2016-09-11 18:45:51 +01:00
|
|
|
completed();
|
2016-08-08 23:31:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public final void addListener(final ThreadCompleteListener listener) {
|
|
|
|
|
this.eventListener = listener;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public final void removeListener(final ThreadCompleteListener listener) {
|
|
|
|
|
this.eventListener = null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-05 13:23:20 +02:00
|
|
|
private void completed() {
|
2016-08-08 23:31:41 +01:00
|
|
|
if (eventListener != null) {
|
2016-09-11 18:45:51 +01:00
|
|
|
eventListener.completedEventHandler(eventId);
|
2016-08-08 23:31:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|