Merge pull request #5 from normanmaurer/polling
Correctly handle polling
This commit is contained in:
commit
946dc3973f
@ -26,7 +26,6 @@ import io.netty.channel.ChannelFuture;
|
|||||||
import io.netty.channel.ChannelFutureListener;
|
import io.netty.channel.ChannelFutureListener;
|
||||||
import io.netty.channel.ChannelMetadata;
|
import io.netty.channel.ChannelMetadata;
|
||||||
import io.netty.channel.ChannelOutboundBuffer;
|
import io.netty.channel.ChannelOutboundBuffer;
|
||||||
import io.netty.channel.ChannelPipeline;
|
|
||||||
import io.netty.channel.ChannelPromise;
|
import io.netty.channel.ChannelPromise;
|
||||||
import io.netty.channel.ConnectTimeoutException;
|
import io.netty.channel.ConnectTimeoutException;
|
||||||
import io.netty.channel.DefaultChannelConfig;
|
import io.netty.channel.DefaultChannelConfig;
|
||||||
@ -42,7 +41,6 @@ import io.netty.channel.unix.Socket;
|
|||||||
import io.netty.channel.unix.UnixChannel;
|
import io.netty.channel.unix.UnixChannel;
|
||||||
import io.netty.channel.unix.UnixChannelUtil;
|
import io.netty.channel.unix.UnixChannelUtil;
|
||||||
import io.netty.util.ReferenceCountUtil;
|
import io.netty.util.ReferenceCountUtil;
|
||||||
import io.netty.util.internal.PlatformDependent;
|
|
||||||
import io.netty.util.internal.logging.InternalLogger;
|
import io.netty.util.internal.logging.InternalLogger;
|
||||||
import io.netty.util.internal.logging.InternalLoggerFactory;
|
import io.netty.util.internal.logging.InternalLoggerFactory;
|
||||||
|
|
||||||
@ -70,13 +68,15 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
private static final ChannelMetadata METADATA = new ChannelMetadata(false);
|
private static final ChannelMetadata METADATA = new ChannelMetadata(false);
|
||||||
final LinuxSocket socket;
|
final LinuxSocket socket;
|
||||||
protected volatile boolean active;
|
protected volatile boolean active;
|
||||||
boolean uringInReadyPending;
|
private boolean pollInScheduled = false;
|
||||||
|
|
||||||
|
//boolean uringInReadyPending;
|
||||||
boolean inputClosedSeenErrorOnRead;
|
boolean inputClosedSeenErrorOnRead;
|
||||||
|
|
||||||
static final int SOCK_ADDR_LEN = 128;
|
static final int SOCK_ADDR_LEN = 128;
|
||||||
|
|
||||||
//can only submit one write operation at a time
|
//can only submit one write operation at a time
|
||||||
private boolean writeable = true;
|
private boolean writeScheduled = false;
|
||||||
/**
|
/**
|
||||||
* The future of the current connection attempt. If not null, subsequent connection attempts will fail.
|
* The future of the current connection attempt. If not null, subsequent connection attempts will fail.
|
||||||
*/
|
*/
|
||||||
@ -94,7 +94,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
super(parent);
|
super(parent);
|
||||||
this.socket = checkNotNull(socket, "fd");
|
this.socket = checkNotNull(socket, "fd");
|
||||||
this.active = true;
|
this.active = true;
|
||||||
this.uringInReadyPending = false;
|
|
||||||
|
|
||||||
if (active) {
|
if (active) {
|
||||||
// Directly cache the remote and local addresses
|
// Directly cache the remote and local addresses
|
||||||
@ -173,107 +172,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
return loop instanceof IOUringEventLoop;
|
return loop instanceof IOUringEventLoop;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ByteBuf readBuffer;
|
|
||||||
|
|
||||||
public void doReadBytes(ByteBuf byteBuf) {
|
|
||||||
assert readBuffer == null;
|
|
||||||
IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
|
||||||
IOUringSubmissionQueue submissionQueue = ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
|
||||||
|
|
||||||
unsafe().recvBufAllocHandle().attemptedBytesRead(byteBuf.writableBytes());
|
|
||||||
|
|
||||||
if (byteBuf.hasMemoryAddress()) {
|
|
||||||
readBuffer = byteBuf;
|
|
||||||
submissionQueue.addRead(socket.intValue(), byteBuf.memoryAddress(),
|
|
||||||
byteBuf.writerIndex(), byteBuf.capacity());
|
|
||||||
submissionQueue.submit();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void writeComplete(int res) {
|
|
||||||
ChannelOutboundBuffer channelOutboundBuffer = unsafe().outboundBuffer();
|
|
||||||
|
|
||||||
if (res > 0) {
|
|
||||||
channelOutboundBuffer.removeBytes(res);
|
|
||||||
setWriteable(true);
|
|
||||||
try {
|
|
||||||
doWrite(channelOutboundBuffer);
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void readComplete(int localReadAmount) {
|
|
||||||
boolean close = false;
|
|
||||||
ByteBuf byteBuf = null;
|
|
||||||
final IOUringRecvByteAllocatorHandle allocHandle =
|
|
||||||
(IOUringRecvByteAllocatorHandle) unsafe()
|
|
||||||
.recvBufAllocHandle();
|
|
||||||
final ChannelPipeline pipeline = pipeline();
|
|
||||||
try {
|
|
||||||
logger.trace("EventLoop Read Res: {}", localReadAmount);
|
|
||||||
logger.trace("EventLoop Fd: {}", fd().intValue());
|
|
||||||
setUringInReadyPending(false);
|
|
||||||
byteBuf = this.readBuffer;
|
|
||||||
this.readBuffer = null;
|
|
||||||
|
|
||||||
if (localReadAmount > 0) {
|
|
||||||
byteBuf.writerIndex(byteBuf.writerIndex() + localReadAmount);
|
|
||||||
}
|
|
||||||
|
|
||||||
allocHandle.lastBytesRead(localReadAmount);
|
|
||||||
if (allocHandle.lastBytesRead() <= 0) {
|
|
||||||
// nothing was read, release the buffer.
|
|
||||||
byteBuf.release();
|
|
||||||
byteBuf = null;
|
|
||||||
close = allocHandle.lastBytesRead() < 0;
|
|
||||||
if (close) {
|
|
||||||
// There is nothing left to read as we received an EOF.
|
|
||||||
shutdownInput(false);
|
|
||||||
}
|
|
||||||
allocHandle.readComplete();
|
|
||||||
pipeline.fireChannelReadComplete();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
allocHandle.incMessagesRead(1);
|
|
||||||
pipeline.fireChannelRead(byteBuf);
|
|
||||||
byteBuf = null;
|
|
||||||
allocHandle.readComplete();
|
|
||||||
pipeline.fireChannelReadComplete();
|
|
||||||
|
|
||||||
logger.trace("READ autoRead {}", config().isAutoRead());
|
|
||||||
if (config().isAutoRead()) {
|
|
||||||
executeReadEvent();
|
|
||||||
}
|
|
||||||
} catch (Throwable t) {
|
|
||||||
handleReadException(pipeline, byteBuf, t, close, allocHandle);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void handleReadException(ChannelPipeline pipeline, ByteBuf byteBuf,
|
|
||||||
Throwable cause, boolean close,
|
|
||||||
IOUringRecvByteAllocatorHandle allocHandle) {
|
|
||||||
if (byteBuf != null) {
|
|
||||||
if (byteBuf.isReadable()) {
|
|
||||||
pipeline.fireChannelRead(byteBuf);
|
|
||||||
} else {
|
|
||||||
byteBuf.release();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
allocHandle.readComplete();
|
|
||||||
pipeline.fireChannelReadComplete();
|
|
||||||
pipeline.fireExceptionCaught(cause);
|
|
||||||
if (close || cause instanceof IOException) {
|
|
||||||
shutdownInput(false);
|
|
||||||
} else {
|
|
||||||
if (config().isAutoRead()) {
|
|
||||||
executeReadEvent();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected final ByteBuf newDirectBuffer(ByteBuf buf) {
|
protected final ByteBuf newDirectBuffer(ByteBuf buf) {
|
||||||
return newDirectBuffer(buf, buf);
|
return newDirectBuffer(buf, buf);
|
||||||
}
|
}
|
||||||
@ -311,15 +209,17 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
protected void doDisconnect() throws Exception {
|
protected void doDisconnect() throws Exception {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IOUringSubmissionQueue submissionQueue() {
|
||||||
|
IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
||||||
|
return ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void doClose() throws Exception {
|
protected void doClose() throws Exception {
|
||||||
if (parent() == null) {
|
IOUringSubmissionQueue submissionQueue = submissionQueue();
|
||||||
logger.trace("ServerSocket Close: {}", this.socket.intValue());
|
|
||||||
IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
|
||||||
IOUringSubmissionQueue submissionQueue = ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
|
||||||
submissionQueue.addPollRemove(socket.intValue());
|
submissionQueue.addPollRemove(socket.intValue());
|
||||||
submissionQueue.submit();
|
submissionQueue.submit();
|
||||||
}
|
|
||||||
active = false;
|
active = false;
|
||||||
// Even if we allow half closed sockets we should give up on reading. Otherwise we may allow a read attempt on a
|
// Even if we allow half closed sockets we should give up on reading. Otherwise we may allow a read attempt on a
|
||||||
// socket which has not even been connected yet. This has been observed to block during unit tests.
|
// socket which has not even been connected yet. This has been observed to block during unit tests.
|
||||||
@ -361,10 +261,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
socket.close();
|
socket.close();
|
||||||
if (readBuffer != null) {
|
|
||||||
readBuffer.release();
|
|
||||||
readBuffer = null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -374,20 +270,15 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
protected void doBeginRead() {
|
protected void doBeginRead() {
|
||||||
System.out.println("Begin Read");
|
System.out.println("Begin Read");
|
||||||
final AbstractUringUnsafe unsafe = (AbstractUringUnsafe) unsafe();
|
final AbstractUringUnsafe unsafe = (AbstractUringUnsafe) unsafe();
|
||||||
if (!uringInReadyPending) {
|
if (!pollInScheduled) {
|
||||||
unsafe.executeUringReadOperator();
|
unsafe.schedulePollIn();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void executeReadEvent() {
|
|
||||||
final AbstractUringUnsafe unsafe = (AbstractUringUnsafe) unsafe();
|
|
||||||
unsafe.executeUringReadOperator();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void doWrite(ChannelOutboundBuffer in) throws Exception {
|
protected void doWrite(ChannelOutboundBuffer in) throws Exception {
|
||||||
logger.trace("IOUring doWrite message size: {}", in.size());
|
logger.trace("IOUring doWrite message size: {}", in.size());
|
||||||
if (writeable && in.size() >= 1) {
|
if (!writeScheduled && in.size() >= 1) {
|
||||||
Object msg = in.current();
|
Object msg = in.current();
|
||||||
if (msg instanceof ByteBuf) {
|
if (msg instanceof ByteBuf) {
|
||||||
doWriteBytes((ByteBuf) msg);
|
doWriteBytes((ByteBuf) msg);
|
||||||
@ -405,7 +296,7 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
submissionQueue.addWrite(socket.intValue(), buf.memoryAddress(), buf.readerIndex(),
|
submissionQueue.addWrite(socket.intValue(), buf.memoryAddress(), buf.readerIndex(),
|
||||||
buf.writerIndex());
|
buf.writerIndex());
|
||||||
submissionQueue.submit();
|
submissionQueue.submit();
|
||||||
writeable = false;
|
writeScheduled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -419,16 +310,8 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
|
|
||||||
abstract class AbstractUringUnsafe extends AbstractUnsafe {
|
abstract class AbstractUringUnsafe extends AbstractUnsafe {
|
||||||
private IOUringRecvByteAllocatorHandle allocHandle;
|
private IOUringRecvByteAllocatorHandle allocHandle;
|
||||||
private final Runnable readRunnable = new Runnable() {
|
|
||||||
|
|
||||||
@Override
|
private void fulfillConnectPromise(ChannelPromise promise, Throwable cause) {
|
||||||
public void run() {
|
|
||||||
uringEventExecution(); //flush and submit SQE
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
public void fulfillConnectPromise(ChannelPromise promise, Throwable t, SocketAddress remoteAddress) {
|
|
||||||
Throwable cause = annotateConnectException(t, remoteAddress);
|
|
||||||
if (promise == null) {
|
if (promise == null) {
|
||||||
// Closed via cancellation and the promise has been notified already.
|
// Closed via cancellation and the promise has been notified already.
|
||||||
return;
|
return;
|
||||||
@ -439,6 +322,31 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
closeIfClosed();
|
closeIfClosed();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void fulfillConnectPromise(ChannelPromise promise, boolean wasActive) {
|
||||||
|
if (promise == null) {
|
||||||
|
// Closed via cancellation and the promise has been notified already.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
active = true;
|
||||||
|
|
||||||
|
// Get the state as trySuccess() may trigger an ChannelFutureListener that will close the Channel.
|
||||||
|
// We still need to ensure we call fireChannelActive() in this case.
|
||||||
|
boolean active = isActive();
|
||||||
|
|
||||||
|
// trySuccess() will return false if a user cancelled the connection attempt.
|
||||||
|
boolean promiseSet = promise.trySuccess();
|
||||||
|
|
||||||
|
// Regardless if the connection attempt was cancelled, channelActive() event should be triggered,
|
||||||
|
// because what happened is what happened.
|
||||||
|
if (!wasActive && active) {
|
||||||
|
pipeline().fireChannelActive();
|
||||||
|
}
|
||||||
|
|
||||||
|
// If a user cancelled the connection attempt, close the channel, which is followed by channelInactive().
|
||||||
|
if (!promiseSet) {
|
||||||
|
close(voidPromise());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
IOUringRecvByteAllocatorHandle newIOUringHandle(RecvByteBufAllocator.ExtendedHandle handle) {
|
IOUringRecvByteAllocatorHandle newIOUringHandle(RecvByteBufAllocator.ExtendedHandle handle) {
|
||||||
return new IOUringRecvByteAllocatorHandle(handle);
|
return new IOUringRecvByteAllocatorHandle(handle);
|
||||||
@ -452,15 +360,95 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
return allocHandle;
|
return allocHandle;
|
||||||
}
|
}
|
||||||
|
|
||||||
final void executeUringReadOperator() {
|
void schedulePollIn() {
|
||||||
if (uringInReadyPending || !isActive() || shouldBreakIoUringInReady(config())) {
|
assert !pollInScheduled;
|
||||||
|
if (!isActive() || shouldBreakIoUringInReady(config())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
uringInReadyPending = true;
|
pollInScheduled = true;
|
||||||
eventLoop().execute(readRunnable);
|
IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
||||||
|
IOUringSubmissionQueue submissionQueue = ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
||||||
|
submissionQueue.addPollInLink(socket.intValue());
|
||||||
|
submissionQueue.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract void uringEventExecution();
|
final void readComplete(int res) {
|
||||||
|
pollInScheduled = false;
|
||||||
|
readComplete0(res);
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract void readComplete0(int res);
|
||||||
|
|
||||||
|
abstract void pollIn(int res);
|
||||||
|
|
||||||
|
void pollOut(int res) {
|
||||||
|
// pending connect
|
||||||
|
if (connectPromise != null) {
|
||||||
|
// Note this method is invoked by the event loop only if the connection attempt was
|
||||||
|
// neither cancelled nor timed out.
|
||||||
|
|
||||||
|
assert eventLoop().inEventLoop();
|
||||||
|
|
||||||
|
boolean connectStillInProgress = false;
|
||||||
|
try {
|
||||||
|
boolean wasActive = isActive();
|
||||||
|
if (!doFinishConnect()) {
|
||||||
|
connectStillInProgress = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
computeRemote();
|
||||||
|
fulfillConnectPromise(connectPromise, wasActive);
|
||||||
|
} catch (Throwable t) {
|
||||||
|
fulfillConnectPromise(connectPromise, annotateConnectException(t, requestedRemoteAddress));
|
||||||
|
} finally {
|
||||||
|
if (!connectStillInProgress) {
|
||||||
|
// Check for null as the connectTimeoutFuture is only created if a connectTimeoutMillis > 0 is used
|
||||||
|
// See https://github.com/netty/netty/issues/1770
|
||||||
|
if (connectTimeoutFuture != null) {
|
||||||
|
connectTimeoutFuture.cancel(false);
|
||||||
|
}
|
||||||
|
connectPromise = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void writeComplete(int res) {
|
||||||
|
writeScheduled = false;
|
||||||
|
ChannelOutboundBuffer channelOutboundBuffer = unsafe().outboundBuffer();
|
||||||
|
if (res > 0) {
|
||||||
|
channelOutboundBuffer.removeBytes(res);
|
||||||
|
try {
|
||||||
|
doWrite(channelOutboundBuffer);
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void connectComplete(int res) {
|
||||||
|
if (res == 0) {
|
||||||
|
fulfillConnectPromise(connectPromise, active);
|
||||||
|
} else {
|
||||||
|
if (res == ERRNO_EINPROGRESS_NEGATIVE) {
|
||||||
|
// connect not complete yet need to wait for poll_out event
|
||||||
|
IOUringSubmissionQueue submissionQueue = submissionQueue();
|
||||||
|
submissionQueue.addPollOut(fd().intValue());
|
||||||
|
submissionQueue.submit();
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
if (res == -1 || res == -4) {
|
||||||
|
submissionQueue.addConnect(fd, channel.getRemoteAddressMemoryAddress(),
|
||||||
|
AbstractIOUringChannel.SOCK_ADDR_LEN);
|
||||||
|
submissionQueue.submit();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void connect(
|
public void connect(
|
||||||
@ -522,32 +510,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void fulfillConnectPromise(ChannelPromise promise, boolean wasActive) {
|
|
||||||
if (promise == null) {
|
|
||||||
// Closed via cancellation and the promise has been notified already.
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
active = true;
|
|
||||||
|
|
||||||
// Get the state as trySuccess() may trigger an ChannelFutureListener that will close the Channel.
|
|
||||||
// We still need to ensure we call fireChannelActive() in this case.
|
|
||||||
boolean active = isActive();
|
|
||||||
|
|
||||||
// trySuccess() will return false if a user cancelled the connection attempt.
|
|
||||||
boolean promiseSet = promise.trySuccess();
|
|
||||||
|
|
||||||
// Regardless if the connection attempt was cancelled, channelActive() event should be triggered,
|
|
||||||
// because what happened is what happened.
|
|
||||||
if (!wasActive && active) {
|
|
||||||
pipeline().fireChannelActive();
|
|
||||||
}
|
|
||||||
|
|
||||||
// If a user cancelled the connection attempt, close the channel, which is followed by channelInactive().
|
|
||||||
if (!promiseSet) {
|
|
||||||
close(voidPromise());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Object filterOutboundMessage(Object msg) {
|
protected Object filterOutboundMessage(Object msg) {
|
||||||
if (msg instanceof ByteBuf) {
|
if (msg instanceof ByteBuf) {
|
||||||
@ -583,10 +545,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUringInReadyPending(boolean uringInReadyPending) {
|
|
||||||
this.uringInReadyPending = uringInReadyPending;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public abstract DefaultChannelConfig config();
|
public abstract DefaultChannelConfig config();
|
||||||
|
|
||||||
@ -713,7 +671,7 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
connectPromise = null;
|
connectPromise = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean doFinishConnect() throws Exception {
|
private boolean doFinishConnect() throws Exception {
|
||||||
if (socket.finishConnect()) {
|
if (socket.finishConnect()) {
|
||||||
if (requestedRemoteAddress instanceof InetSocketAddress) {
|
if (requestedRemoteAddress instanceof InetSocketAddress) {
|
||||||
remote = computeRemoteAddr((InetSocketAddress) requestedRemoteAddress, socket.remoteAddress());
|
remote = computeRemoteAddr((InetSocketAddress) requestedRemoteAddress, socket.remoteAddress());
|
||||||
@ -722,6 +680,9 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
IOUringSubmissionQueue submissionQueue = submissionQueue();
|
||||||
|
submissionQueue.addPollOut(fd().intValue());
|
||||||
|
submissionQueue.submit();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -735,10 +696,6 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
|||||||
return socket.isInputShutdown() && (inputClosedSeenErrorOnRead || !isAllowHalfClosure(config));
|
return socket.isInputShutdown() && (inputClosedSeenErrorOnRead || !isAllowHalfClosure(config));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setWriteable(boolean writeable) {
|
|
||||||
this.writeable = writeable;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getRemoteAddressMemoryAddress() {
|
public long getRemoteAddressMemoryAddress() {
|
||||||
return remoteAddressMemoryAddress;
|
return remoteAddressMemoryAddress;
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,19 @@ abstract class AbstractIOUringServerChannel extends AbstractIOUringChannel imple
|
|||||||
|
|
||||||
abstract Channel newChildChannel(int fd) throws Exception;
|
abstract Channel newChildChannel(int fd) throws Exception;
|
||||||
|
|
||||||
boolean acceptComplete(int res) {
|
final class UringServerChannelUnsafe extends AbstractIOUringChannel.AbstractUringUnsafe {
|
||||||
|
private final byte[] acceptedAddress = new byte[26];
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
void pollIn(int res) {
|
||||||
|
IOUringSubmissionQueue submissionQueue = submissionQueue();
|
||||||
|
//Todo get network addresses
|
||||||
|
submissionQueue.addAccept(fd().intValue());
|
||||||
|
submissionQueue.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
void readComplete0(int res) {
|
||||||
if (res >= 0) {
|
if (res >= 0) {
|
||||||
final IOUringRecvByteAllocatorHandle allocHandle =
|
final IOUringRecvByteAllocatorHandle allocHandle =
|
||||||
(IOUringRecvByteAllocatorHandle) unsafe()
|
(IOUringRecvByteAllocatorHandle) unsafe()
|
||||||
@ -62,37 +74,34 @@ abstract class AbstractIOUringServerChannel extends AbstractIOUringChannel imple
|
|||||||
allocHandle.incMessagesRead(1);
|
allocHandle.incMessagesRead(1);
|
||||||
try {
|
try {
|
||||||
final Channel childChannel = newChildChannel(res);
|
final Channel childChannel = newChildChannel(res);
|
||||||
|
|
||||||
|
// all childChannels should poll POLLRDHUP
|
||||||
|
IOUringSubmissionQueue submissionQueue = submissionQueue();
|
||||||
|
submissionQueue.addPollRdHup(res);
|
||||||
|
submissionQueue.submit();
|
||||||
|
|
||||||
pipeline.fireChannelRead(childChannel);
|
pipeline.fireChannelRead(childChannel);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
allocHandle.readComplete();
|
allocHandle.readComplete();
|
||||||
pipeline.fireChannelReadComplete();
|
pipeline.fireChannelReadComplete();
|
||||||
|
} else {
|
||||||
|
// TODO: Fix me
|
||||||
|
schedulePollIn();
|
||||||
}
|
}
|
||||||
//Todo refactoring method name
|
|
||||||
executeReadEvent();
|
|
||||||
return res >= 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final class UringServerChannelUnsafe extends AbstractIOUringChannel.AbstractUringUnsafe {
|
|
||||||
private final byte[] acceptedAddress = new byte[26];
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void connect(final SocketAddress remoteAddress, final SocketAddress localAddress,
|
public void connect(final SocketAddress remoteAddress, final SocketAddress localAddress,
|
||||||
final ChannelPromise promise) {
|
final ChannelPromise promise) {
|
||||||
promise.setFailure(new UnsupportedOperationException());
|
promise.setFailure(new UnsupportedOperationException());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void uringEventExecution() {
|
protected void doClose() throws Exception {
|
||||||
final IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
super.doClose();
|
||||||
IOUringSubmissionQueue submissionQueue = ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
|
||||||
submissionQueue.addPollInLink(socket.intValue());
|
|
||||||
|
|
||||||
//Todo get network addresses
|
|
||||||
submissionQueue.addAccept(fd().intValue());
|
|
||||||
submissionQueue.submit();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ import io.netty.channel.Channel;
|
|||||||
import io.netty.channel.ChannelConfig;
|
import io.netty.channel.ChannelConfig;
|
||||||
import io.netty.channel.ChannelFuture;
|
import io.netty.channel.ChannelFuture;
|
||||||
import io.netty.channel.ChannelFutureListener;
|
import io.netty.channel.ChannelFutureListener;
|
||||||
|
import io.netty.channel.ChannelPipeline;
|
||||||
import io.netty.channel.ChannelPromise;
|
import io.netty.channel.ChannelPromise;
|
||||||
import io.netty.channel.DefaultChannelConfig;
|
|
||||||
import io.netty.channel.EventLoop;
|
import io.netty.channel.EventLoop;
|
||||||
import io.netty.channel.RecvByteBufAllocator;
|
import io.netty.channel.RecvByteBufAllocator;
|
||||||
import io.netty.channel.socket.DuplexChannel;
|
import io.netty.channel.socket.DuplexChannel;
|
||||||
@ -31,6 +31,7 @@ import io.netty.util.internal.logging.InternalLogger;
|
|||||||
import io.netty.util.internal.logging.InternalLoggerFactory;
|
import io.netty.util.internal.logging.InternalLoggerFactory;
|
||||||
|
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
|
import java.io.IOException;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
|
|
||||||
abstract class AbstractIOUringStreamChannel extends AbstractIOUringChannel implements DuplexChannel {
|
abstract class AbstractIOUringStreamChannel extends AbstractIOUringChannel implements DuplexChannel {
|
||||||
@ -197,7 +198,7 @@ abstract class AbstractIOUringStreamChannel extends AbstractIOUringChannel imple
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void uringEventExecution() {
|
void pollIn(int res) {
|
||||||
final ChannelConfig config = config();
|
final ChannelConfig config = config();
|
||||||
|
|
||||||
final ByteBufAllocator allocator = config.getAllocator();
|
final ByteBufAllocator allocator = config.getAllocator();
|
||||||
@ -207,6 +208,82 @@ abstract class AbstractIOUringStreamChannel extends AbstractIOUringChannel imple
|
|||||||
ByteBuf byteBuf = allocHandle.allocate(allocator);
|
ByteBuf byteBuf = allocHandle.allocate(allocator);
|
||||||
doReadBytes(byteBuf);
|
doReadBytes(byteBuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ByteBuf readBuffer;
|
||||||
|
|
||||||
|
public void doReadBytes(ByteBuf byteBuf) {
|
||||||
|
assert readBuffer == null;
|
||||||
|
IOUringEventLoop ioUringEventLoop = (IOUringEventLoop) eventLoop();
|
||||||
|
IOUringSubmissionQueue submissionQueue = ioUringEventLoop.getRingBuffer().getIoUringSubmissionQueue();
|
||||||
|
|
||||||
|
unsafe().recvBufAllocHandle().attemptedBytesRead(byteBuf.writableBytes());
|
||||||
|
|
||||||
|
if (byteBuf.hasMemoryAddress()) {
|
||||||
|
readBuffer = byteBuf;
|
||||||
|
submissionQueue.addRead(socket.intValue(), byteBuf.memoryAddress(),
|
||||||
|
byteBuf.writerIndex(), byteBuf.capacity());
|
||||||
|
submissionQueue.submit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void readComplete0(int localReadAmount) {
|
||||||
|
boolean close = false;
|
||||||
|
ByteBuf byteBuf = null;
|
||||||
|
final IOUringRecvByteAllocatorHandle allocHandle =
|
||||||
|
(IOUringRecvByteAllocatorHandle) unsafe()
|
||||||
|
.recvBufAllocHandle();
|
||||||
|
final ChannelPipeline pipeline = pipeline();
|
||||||
|
try {
|
||||||
|
logger.trace("EventLoop Read Res: {}", localReadAmount);
|
||||||
|
logger.trace("EventLoop Fd: {}", fd().intValue());
|
||||||
|
byteBuf = this.readBuffer;
|
||||||
|
this.readBuffer = null;
|
||||||
|
|
||||||
|
if (localReadAmount > 0) {
|
||||||
|
byteBuf.writerIndex(byteBuf.writerIndex() + localReadAmount);
|
||||||
|
}
|
||||||
|
|
||||||
|
allocHandle.lastBytesRead(localReadAmount);
|
||||||
|
if (allocHandle.lastBytesRead() <= 0) {
|
||||||
|
// nothing was read, release the buffer.
|
||||||
|
byteBuf.release();
|
||||||
|
byteBuf = null;
|
||||||
|
close = allocHandle.lastBytesRead() < 0;
|
||||||
|
if (close) {
|
||||||
|
// There is nothing left to read as we received an EOF.
|
||||||
|
shutdownInput(false);
|
||||||
|
}
|
||||||
|
allocHandle.readComplete();
|
||||||
|
pipeline.fireChannelReadComplete();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
allocHandle.incMessagesRead(1);
|
||||||
|
pipeline.fireChannelRead(byteBuf);
|
||||||
|
byteBuf = null;
|
||||||
|
allocHandle.readComplete();
|
||||||
|
pipeline.fireChannelReadComplete();
|
||||||
|
} catch (Throwable t) {
|
||||||
|
handleReadException(pipeline, byteBuf, t, close, allocHandle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleReadException(ChannelPipeline pipeline, ByteBuf byteBuf,
|
||||||
|
Throwable cause, boolean close,
|
||||||
|
IOUringRecvByteAllocatorHandle allocHandle) {
|
||||||
|
if (byteBuf != null) {
|
||||||
|
if (byteBuf.isReadable()) {
|
||||||
|
pipeline.fireChannelRead(byteBuf);
|
||||||
|
} else {
|
||||||
|
byteBuf.release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
allocHandle.readComplete();
|
||||||
|
pipeline.fireChannelReadComplete();
|
||||||
|
pipeline.fireExceptionCaught(cause);
|
||||||
|
if (close || cause instanceof IOException) {
|
||||||
|
shutdownInput(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,29 +187,16 @@ final class IOUringEventLoop extends SingleThreadEventLoop implements
|
|||||||
logger.trace("POLL_LINK canceled");
|
logger.trace("POLL_LINK canceled");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
AbstractIOUringServerChannel acceptChannel = (AbstractIOUringServerChannel) channels.get(fd);
|
// Fall-through
|
||||||
if (acceptChannel == null) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
logger.trace("EventLoop Accept filedescriptor: {}", res);
|
|
||||||
acceptChannel.setUringInReadyPending(false);
|
|
||||||
if (res != -1 && res != ERRNO_EAGAIN_NEGATIVE &&
|
|
||||||
res != ERRNO_EWOULDBLOCK_NEGATIVE) {
|
|
||||||
logger.trace("server filedescriptor Fd: {}", fd);
|
|
||||||
if (acceptChannel.acceptComplete(res)) {
|
|
||||||
// all childChannels should poll POLLRDHUP
|
|
||||||
submissionQueue.addPollRdHup(res);
|
|
||||||
submissionQueue.submit();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case IOUring.OP_READ:
|
case IOUring.OP_READ:
|
||||||
AbstractIOUringChannel readChannel = channels.get(fd);
|
AbstractIOUringChannel readChannel = channels.get(fd);
|
||||||
if (readChannel == null) {
|
if (readChannel == null) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
readChannel.readComplete(res);
|
((AbstractIOUringChannel.AbstractUringUnsafe) readChannel.unsafe()).readComplete(res);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IOUring.OP_WRITE:
|
case IOUring.OP_WRITE:
|
||||||
AbstractIOUringChannel writeChannel = channels.get(fd);
|
AbstractIOUringChannel writeChannel = channels.get(fd);
|
||||||
if (writeChannel == null) {
|
if (writeChannel == null) {
|
||||||
@ -222,15 +209,16 @@ final class IOUringEventLoop extends SingleThreadEventLoop implements
|
|||||||
if (res == SOCKET_ERROR_EPIPE) {
|
if (res == SOCKET_ERROR_EPIPE) {
|
||||||
writeChannel.shutdownInput(false);
|
writeChannel.shutdownInput(false);
|
||||||
} else {
|
} else {
|
||||||
writeChannel.writeComplete(res);
|
((AbstractIOUringChannel.AbstractUringUnsafe) writeChannel.unsafe()).writeComplete(res);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IOUring.IO_TIMEOUT:
|
case IOUring.IO_TIMEOUT:
|
||||||
if (res == ETIME) {
|
if (res == ETIME) {
|
||||||
prevDeadlineNanos = NONE;
|
prevDeadlineNanos = NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IOUring.IO_POLL:
|
case IOUring.IO_POLL:
|
||||||
//Todo error handle the res
|
//Todo error handle the res
|
||||||
if (res == ECANCELED) {
|
if (res == ECANCELED) {
|
||||||
@ -243,38 +231,33 @@ final class IOUringEventLoop extends SingleThreadEventLoop implements
|
|||||||
// in the completionQueue without
|
// in the completionQueue without
|
||||||
// an extra eventfd_write(....)
|
// an extra eventfd_write(....)
|
||||||
Native.eventFdRead(eventfd.intValue());
|
Native.eventFdRead(eventfd.intValue());
|
||||||
|
|
||||||
submissionQueue.addPollInLink(eventfd.intValue());
|
submissionQueue.addPollInLink(eventfd.intValue());
|
||||||
// Submit so its picked up
|
// Submit so its picked up
|
||||||
submissionQueue.submit();
|
submissionQueue.submit();
|
||||||
} else {
|
} else {
|
||||||
if (pollMask == IOUring.POLLMASK_RDHUP) {
|
|
||||||
AbstractIOUringChannel channel = channels.get(fd);
|
AbstractIOUringChannel channel = channels.get(fd);
|
||||||
if (channel != null && !channel.isActive()) {
|
if (channel == null) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
switch (pollMask) {
|
||||||
|
case IOUring.POLLMASK_IN_LINK:
|
||||||
|
((AbstractIOUringChannel.AbstractUringUnsafe) channel.unsafe()).pollIn(res);
|
||||||
|
break;
|
||||||
|
case IOUring.POLLMASK_OUT:
|
||||||
|
((AbstractIOUringChannel.AbstractUringUnsafe) channel.unsafe()).pollOut(res);
|
||||||
|
break;
|
||||||
|
case IOUring.POLLMASK_RDHUP:
|
||||||
|
if (!channel.isActive()) {
|
||||||
channel.shutdownInput(true);
|
channel.shutdownInput(true);
|
||||||
}
|
}
|
||||||
} else if (pollMask == IOUring.POLLMASK_OUT) {
|
break;
|
||||||
//connect successful
|
default:
|
||||||
AbstractIOUringChannel ch = channels.get(fd);
|
break;
|
||||||
boolean wasActive = ch.isActive();
|
|
||||||
try {
|
|
||||||
if (ch.doFinishConnect()) {
|
|
||||||
ch.fulfillConnectPromise(ch.getConnectPromise(), wasActive);
|
|
||||||
ch.cancelTimeoutFuture();
|
|
||||||
} else {
|
|
||||||
//submit pollout
|
|
||||||
submissionQueue.addPollOut(fd);
|
|
||||||
submissionQueue.submit();
|
|
||||||
}
|
|
||||||
} catch (Throwable t) {
|
|
||||||
AbstractUringUnsafe unsafe = (AbstractUringUnsafe) ch.unsafe();
|
|
||||||
unsafe.fulfillConnectPromise(ch.getConnectPromise(), t, ch.getRequestedRemoteAddress());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
//Todo error handling error
|
|
||||||
logger.trace("POLL_LINK Res: {}", res);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IOUring.OP_POLL_REMOVE:
|
case IOUring.OP_POLL_REMOVE:
|
||||||
if (res == ENOENT) {
|
if (res == ENOENT) {
|
||||||
System.out.println(("POLL_REMOVE OPERATION not permitted"));
|
System.out.println(("POLL_REMOVE OPERATION not permitted"));
|
||||||
@ -282,38 +265,16 @@ final class IOUringEventLoop extends SingleThreadEventLoop implements
|
|||||||
System.out.println(("POLL_REMOVE OPERATION successful"));
|
System.out.println(("POLL_REMOVE OPERATION successful"));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IOUring.OP_CONNECT:
|
case IOUring.OP_CONNECT:
|
||||||
AbstractIOUringChannel channel = channels.get(fd);
|
AbstractIOUringChannel channel = channels.get(fd);
|
||||||
System.out.println("Connect res: " + res);
|
System.out.println("Connect res: " + res);
|
||||||
if (res == 0) {
|
if (channel != null) {
|
||||||
channel.fulfillConnectPromise(channel.getConnectPromise(), channel.active);
|
((AbstractIOUringChannel.AbstractUringUnsafe) channel.unsafe()).connectComplete(res);
|
||||||
channel.cancelTimeoutFuture();
|
}
|
||||||
channel.computeRemote();
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
if (res == -1 || res == -4) {
|
|
||||||
submissionQueue.addConnect(fd, channel.getRemoteAddressMemoryAddress(),
|
|
||||||
AbstractIOUringChannel.SOCK_ADDR_LEN);
|
|
||||||
submissionQueue.submit();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (res < 0) {
|
|
||||||
if (res == ERRNO_EINPROGRESS_NEGATIVE) {
|
|
||||||
// connect not complete yet need to wait for poll_out event
|
|
||||||
submissionQueue.addPollOut(fd);
|
|
||||||
submissionQueue.submit();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
channel.doClose();
|
|
||||||
} catch (Exception e) {
|
|
||||||
//Todo error handling
|
|
||||||
}
|
|
||||||
|
|
||||||
//Todo error handling
|
default:
|
||||||
//AbstractIOUringChannel.throwConnectException("connect", res);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -223,7 +223,7 @@ final class IOUringSubmissionQueue {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//fill the adddress which is associated with server poll link user_data
|
//fill the address which is associated with server poll link user_data
|
||||||
public boolean addPollRemove(int fd) {
|
public boolean addPollRemove(int fd) {
|
||||||
long sqe = getSqe();
|
long sqe = getSqe();
|
||||||
if (sqe == 0) {
|
if (sqe == 0) {
|
||||||
|
@ -96,18 +96,19 @@ public class IOUringSocketTestPermutation extends SocketTestPermutation {
|
|||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@Override
|
@Override
|
||||||
public List<BootstrapFactory<Bootstrap>> clientSocket() {
|
public List<BootstrapFactory<Bootstrap>> clientSocket() {
|
||||||
return Arrays.asList(
|
return Arrays.<BootstrapFactory<Bootstrap>>asList(
|
||||||
|
/*
|
||||||
new BootstrapFactory<Bootstrap>() {
|
new BootstrapFactory<Bootstrap>() {
|
||||||
@Override
|
@Override
|
||||||
public Bootstrap newInstance() {
|
public Bootstrap newInstance() {
|
||||||
return new Bootstrap().group(IO_URING_WORKER_GROUP).channel(IOUringSocketChannel.class);
|
return new Bootstrap().group(IO_URING_WORKER_GROUP).channel(IOUringSocketChannel.class);
|
||||||
//.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 100000);
|
//.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 100000);
|
||||||
}
|
}
|
||||||
},
|
},*/
|
||||||
new BootstrapFactory<Bootstrap>() {
|
new BootstrapFactory<Bootstrap>() {
|
||||||
@Override
|
@Override
|
||||||
public Bootstrap newInstance() {
|
public Bootstrap newInstance() {
|
||||||
return new Bootstrap().group(IO_URING_WORKER_GROUP).channel(IOUringSocketChannel.class);
|
return new Bootstrap().group(nioWorkerGroup).channel(NioSocketChannel.class);
|
||||||
// .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 100000);
|
// .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 100000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,6 @@ package io.netty.channel.uring;
|
|||||||
import io.netty.channel.unix.FileDescriptor;
|
import io.netty.channel.unix.FileDescriptor;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
|
|
||||||
import io.netty.buffer.ByteBufAllocator;
|
import io.netty.buffer.ByteBufAllocator;
|
||||||
|
@ -57,7 +57,7 @@ public class PollRemoveTest {
|
|||||||
});
|
});
|
||||||
|
|
||||||
Channel sc = b.bind(2020).sync().channel();
|
Channel sc = b.bind(2020).sync().channel();
|
||||||
Thread.sleep(15000);
|
Thread.sleep(1500);
|
||||||
|
|
||||||
//close ServerChannel
|
//close ServerChannel
|
||||||
sc.close().sync();
|
sc.close().sync();
|
||||||
|
Loading…
Reference in New Issue
Block a user