org.xbib.helianthus.common.RequestContextAwareEventLoop Maven / Gradle / Ivy
package org.xbib.helianthus.common;
import io.netty.channel.Channel;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelPromise;
import io.netty.channel.EventLoop;
import io.netty.channel.EventLoopGroup;
import io.netty.util.concurrent.EventExecutor;
import io.netty.util.concurrent.Future;
import io.netty.util.concurrent.ProgressivePromise;
import io.netty.util.concurrent.Promise;
import io.netty.util.concurrent.ScheduledFuture;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.stream.Collectors;
/**
* A delegating {@link EventExecutor} that makes sure all submitted tasks are
* executed within the {@link RequestContext}.
*/
final class RequestContextAwareEventLoop implements EventLoop {
private final RequestContext context;
private final EventLoop delegate;
RequestContextAwareEventLoop(RequestContext context, EventLoop delegate) {
this.context = context;
this.delegate = delegate;
}
@Override
public EventLoop next() {
return delegate.next();
}
@Override
public EventLoopGroup parent() {
return delegate.parent();
}
@Override
public boolean inEventLoop() {
return delegate.inEventLoop();
}
@Override
public boolean inEventLoop(Thread thread) {
return delegate.inEventLoop(thread);
}
@Override
public Promise newPromise() {
return new RequestContextAwarePromise<>(context, delegate.newPromise());
}
@Override
public ProgressivePromise newProgressivePromise() {
return new RequestContextAwareProgressivePromise<>(context, delegate.newProgressivePromise());
}
@Override
public Future newSucceededFuture(V result) {
return new RequestContextAwareFuture<>(context, delegate.newSucceededFuture(result));
}
@Override
public Future newFailedFuture(Throwable cause) {
return new RequestContextAwareFuture<>(context, delegate.newFailedFuture(cause));
}
@Override
public boolean isShuttingDown() {
return delegate.isShuttingDown();
}
@Override
public Future> shutdownGracefully() {
return delegate.shutdownGracefully();
}
@Override
public Future> shutdownGracefully(long quietPeriod, long timeout,
TimeUnit unit) {
return delegate.shutdownGracefully(quietPeriod, timeout, unit);
}
@Override
public Future> terminationFuture() {
return delegate.terminationFuture();
}
@Override
@Deprecated
public void shutdown() {
delegate.shutdown();
}
@Override
@Deprecated
public List shutdownNow() {
return delegate.shutdownNow();
}
@Override
@Deprecated
public Iterator iterator() {
return delegate.iterator();
}
@Override
public Future> submit(Runnable task) {
return delegate.submit(context.makeContextAware(task));
}
@Override
public Future submit(Runnable task, T result) {
return delegate.submit(context.makeContextAware(task), result);
}
@Override
public Future submit(Callable task) {
return delegate.submit(context.makeContextAware(task));
}
@Override
public ScheduledFuture> schedule(Runnable command, long delay,
TimeUnit unit) {
return delegate.schedule(context.makeContextAware(command), delay, unit);
}
@Override
public ScheduledFuture schedule(Callable callable,
long delay, TimeUnit unit) {
return delegate.schedule(context.makeContextAware(callable), delay, unit);
}
@Override
public ScheduledFuture> scheduleAtFixedRate(Runnable command, long initialDelay,
long period,
TimeUnit unit) {
return delegate.scheduleAtFixedRate(context.makeContextAware(command), initialDelay, period, unit);
}
@Override
public ScheduledFuture> scheduleWithFixedDelay(Runnable command, long initialDelay,
long delay,
TimeUnit unit) {
return delegate.scheduleWithFixedDelay(context.makeContextAware(command), initialDelay, delay, unit);
}
@Override
public boolean isShutdown() {
return delegate.isShutdown();
}
@Override
public boolean isTerminated() {
return delegate.isTerminated();
}
@Override
public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException {
return delegate.awaitTermination(timeout, unit);
}
@Override
public List> invokeAll(
Collection extends Callable> tasks) throws InterruptedException {
return delegate.invokeAll(makeContextAware(tasks));
}
@Override
public List> invokeAll(
Collection extends Callable> tasks, long timeout,
TimeUnit unit) throws InterruptedException {
return delegate.invokeAll(makeContextAware(tasks), timeout, unit);
}
@Override
public T invokeAny(Collection extends Callable> tasks)
throws InterruptedException, ExecutionException {
return delegate.invokeAny(makeContextAware(tasks));
}
@Override
public T invokeAny(Collection extends Callable> tasks, long timeout,
TimeUnit unit) throws InterruptedException, ExecutionException,
TimeoutException {
return delegate.invokeAny(makeContextAware(tasks), timeout, unit);
}
@Override
public void execute(Runnable command) {
delegate.execute(context.makeContextAware(command));
}
private Collection extends Callable> makeContextAware(
Collection extends Callable> tasks) {
return tasks.stream().map(context::makeContextAware).collect(Collectors.toList());
}
@Override
public ChannelFuture register(Channel channel) {
return delegate.register(channel);
}
@Override
public ChannelFuture register(ChannelPromise channelPromise) {
return delegate.register(channelPromise);
}
@Override
@Deprecated
public ChannelFuture register(Channel channel,
ChannelPromise channelPromise) {
return delegate.register(channel, channelPromise);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy