package org.apache.cassandra.concurrent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.concurrent.TimeUnit;
public class InfiniteLoopExecutor
{
private static final Logger logger = LoggerFactory.getLogger(InfiniteLoopExecutor.class);
public interface InterruptibleRunnable
{
void run() throws InterruptedException;
}
private final Thread thread;
private final InterruptibleRunnable runnable;
private volatile boolean isShutdown = false;
public InfiniteLoopExecutor(String name, InterruptibleRunnable runnable)
{
this.runnable = runnable;
this.thread = new Thread(this::loop, name);
this.thread.setDaemon(true);
}
private void loop()
{
while (!isShutdown)
{
try
{
runnable.run();
}
catch (InterruptedException ie)
{
if (isShutdown)
return;
logger.error("Interrupted while executing {}, but not shutdown; continuing with loop", runnable, ie);
}
catch (Throwable t)
{
logger.error("Exception thrown by runnable, continuing with loop", t);
}
}
}
public InfiniteLoopExecutor start()
{
thread.start();
return this;
}
public void shutdownNow()
{
isShutdown = true;
thread.interrupt();
}
public boolean awaitTermination(long time, TimeUnit unit) throws InterruptedException
{
thread.join(unit.toMillis(time));
return !thread.isAlive();
}
}