Files
java-design-patterns/event-asynchronous/src/main/java/com/iluwatar/event/asynchronous/Event.java

113 lines
3.1 KiB
Java
Raw Normal View History

/*
2019-10-12 20:05:54 +03:00
* The MIT License
* Copyright © 2014-2019 Ilkka Seppälä
*
2019-10-12 20:05:54 +03: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:
*
2019-10-12 20:05:54 +03:00
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
2019-10-12 20:05:54 +03:00
* 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;
/**
* 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;
private int eventTime;
2016-09-19 21:50:04 +01:00
private boolean isSynchronous;
private Thread thread;
private boolean isComplete = false;
private ThreadCompleteListener eventListener;
2016-09-19 21:50:04 +01:00
/**
* Constructor.
2016-11-04 12:19:32 +01:00
*
* @param eventId event ID
* @param eventTime event time
2016-09-19 21:50:04 +01:00
* @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;
this.eventTime = eventTime;
2016-09-19 21:50:04 +01:00
this.isSynchronous = isSynchronous;
}
public boolean isSynchronous() {
return isSynchronous;
}
@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;
}
thread.interrupt();
}
@Override
public void status() {
if (!isComplete) {
2016-11-04 12:19:32 +01:00
LOGGER.info("[{}] is not done.", eventId);
} else {
2016-11-04 12:19:32 +01:00
LOGGER.info("[{}] is done.", eventId);
}
}
@Override
public void run() {
var currentTime = System.currentTimeMillis();
var endTime = currentTime + (eventTime * 1000);
while (System.currentTimeMillis() < endTime) {
try {
2016-10-03 21:05:11 +01:00
Thread.sleep(1000); // Sleep for 1 second.
} catch (InterruptedException e) {
return;
}
}
isComplete = true;
2016-09-11 18:45:51 +01:00
completed();
}
public final void addListener(final ThreadCompleteListener listener) {
this.eventListener = listener;
}
public final void removeListener(final ThreadCompleteListener listener) {
this.eventListener = null;
}
private void completed() {
if (eventListener != null) {
2016-09-11 18:45:51 +01:00
eventListener.completedEventHandler(eventId);
}
}
}