389 lines
11 KiB
D
389 lines
11 KiB
D
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* Event loop implementation for Windows.
|
|
*
|
|
* Copyright: Eugene Wissner 2016-2018.
|
|
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
|
|
* Mozilla Public License, v. 2.0).
|
|
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
|
|
* Source: $(LINK2 https://github.com/caraus-ecms/tanya/blob/master/source/tanya/async/event/iocp.d,
|
|
* tanya/async/event/iocp.d)
|
|
*/
|
|
module tanya.async.event.iocp;
|
|
|
|
version (D_Ddoc)
|
|
{
|
|
}
|
|
else version (Windows):
|
|
|
|
import core.sys.windows.mswsock;
|
|
import core.sys.windows.winsock2;
|
|
import tanya.async.loop;
|
|
import tanya.async.protocol;
|
|
import tanya.async.transport;
|
|
import tanya.async.watcher;
|
|
import tanya.container.buffer;
|
|
import tanya.memory;
|
|
import tanya.network.socket;
|
|
import tanya.sys.windows.winbase;
|
|
|
|
/**
|
|
* Transport for stream sockets.
|
|
*/
|
|
final class StreamTransport : SocketWatcher, DuplexTransport, SocketTransport
|
|
{
|
|
private SocketException exception;
|
|
|
|
private ReadBuffer!ubyte output;
|
|
|
|
private WriteBuffer!ubyte input;
|
|
|
|
private Protocol protocol_;
|
|
|
|
private bool closing;
|
|
|
|
/**
|
|
* Creates new completion port transport.
|
|
*
|
|
* Params:
|
|
* socket = Socket.
|
|
*
|
|
* Precondition: $(D_INLINECODE socket !is null)
|
|
*/
|
|
this(OverlappedConnectedSocket socket) @nogc
|
|
{
|
|
super(socket);
|
|
output = ReadBuffer!ubyte(8192, 1024);
|
|
input = WriteBuffer!ubyte(8192);
|
|
active = true;
|
|
}
|
|
|
|
/**
|
|
* Returns: Socket.
|
|
*
|
|
* Postcondition: $(D_INLINECODE socket !is null)
|
|
*/
|
|
override @property OverlappedConnectedSocket socket() pure nothrow @safe @nogc
|
|
out (socket)
|
|
{
|
|
assert(socket !is null);
|
|
}
|
|
do
|
|
{
|
|
return cast(OverlappedConnectedSocket) socket_;
|
|
}
|
|
|
|
/**
|
|
* Returns $(D_PARAM true) if the transport is closing or closed.
|
|
*/
|
|
bool isClosing() const pure nothrow @safe @nogc
|
|
{
|
|
return closing;
|
|
}
|
|
|
|
/**
|
|
* Close the transport.
|
|
*
|
|
* Buffered data will be flushed. No more data will be received.
|
|
*/
|
|
void close() pure nothrow @safe @nogc
|
|
{
|
|
closing = true;
|
|
}
|
|
|
|
/**
|
|
* Write some data to the transport.
|
|
*
|
|
* Params:
|
|
* data = Data to send.
|
|
*/
|
|
void write(ubyte[] data) @nogc
|
|
{
|
|
input ~= data;
|
|
}
|
|
|
|
/**
|
|
* Returns: Application protocol.
|
|
*/
|
|
@property Protocol protocol() pure nothrow @safe @nogc
|
|
{
|
|
return protocol_;
|
|
}
|
|
|
|
/**
|
|
* Switches the protocol.
|
|
*
|
|
* The protocol is deallocated by the event loop.
|
|
*
|
|
* Params:
|
|
* protocol = Application protocol.
|
|
*
|
|
* Precondition: $(D_INLINECODE protocol !is null)
|
|
*/
|
|
@property void protocol(Protocol protocol) pure nothrow @safe @nogc
|
|
in
|
|
{
|
|
assert(protocol !is null);
|
|
}
|
|
do
|
|
{
|
|
protocol_ = protocol;
|
|
}
|
|
|
|
/**
|
|
* Invokes the watcher callback.
|
|
*/
|
|
override void invoke() @nogc
|
|
{
|
|
if (output.length)
|
|
{
|
|
immutable empty = input.length == 0;
|
|
protocol.received(output[0 .. $]);
|
|
output.clear();
|
|
if (empty)
|
|
{
|
|
SocketState overlapped;
|
|
try
|
|
{
|
|
overlapped = defaultAllocator.make!SocketState;
|
|
socket.beginSend(input[], overlapped);
|
|
}
|
|
catch (SocketException e)
|
|
{
|
|
defaultAllocator.dispose(overlapped);
|
|
defaultAllocator.dispose(e);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
protocol.disconnected(exception);
|
|
defaultAllocator.dispose(protocol_);
|
|
defaultAllocator.dispose(exception);
|
|
active = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
final class IOCPLoop : Loop
|
|
{
|
|
protected HANDLE completionPort;
|
|
|
|
protected OVERLAPPED overlap;
|
|
|
|
/**
|
|
* Initializes the loop.
|
|
*/
|
|
this() @nogc
|
|
{
|
|
super();
|
|
|
|
completionPort = CreateIoCompletionPort(INVALID_HANDLE_VALUE, null, 0, 0);
|
|
if (!completionPort)
|
|
{
|
|
throw make!BadLoopException(defaultAllocator,
|
|
"Creating completion port failed");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Should be called if the backend configuration changes.
|
|
*
|
|
* Params:
|
|
* watcher = Watcher.
|
|
* oldEvents = The events were already set.
|
|
* events = The events should be set.
|
|
*
|
|
* Returns: $(D_KEYWORD true) if the operation was successful.
|
|
*/
|
|
override protected bool reify(SocketWatcher watcher,
|
|
EventMask oldEvents,
|
|
EventMask events) @nogc
|
|
{
|
|
SocketState overlapped;
|
|
if (!(oldEvents & Event.accept) && (events & Event.accept))
|
|
{
|
|
auto socket = cast(OverlappedStreamSocket) watcher.socket;
|
|
assert(socket !is null);
|
|
|
|
if (CreateIoCompletionPort(cast(HANDLE) socket.handle,
|
|
completionPort,
|
|
cast(size_t) (cast(void*) watcher),
|
|
0) !is completionPort)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
try
|
|
{
|
|
overlapped = defaultAllocator.make!SocketState;
|
|
socket.beginAccept(overlapped);
|
|
}
|
|
catch (SocketException e)
|
|
{
|
|
defaultAllocator.dispose(overlapped);
|
|
defaultAllocator.dispose(e);
|
|
return false;
|
|
}
|
|
}
|
|
if ((!(oldEvents & Event.read) && (events & Event.read))
|
|
|| (!(oldEvents & Event.write) && (events & Event.write)))
|
|
{
|
|
auto transport = cast(StreamTransport) watcher;
|
|
assert(transport !is null);
|
|
|
|
if (CreateIoCompletionPort(cast(HANDLE) transport.socket.handle,
|
|
completionPort,
|
|
cast(size_t) (cast(void*) watcher),
|
|
0) !is completionPort)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// Begin to read
|
|
if (!(oldEvents & Event.read) && (events & Event.read))
|
|
{
|
|
try
|
|
{
|
|
overlapped = defaultAllocator.make!SocketState;
|
|
transport.socket.beginReceive(transport.output[], overlapped);
|
|
}
|
|
catch (SocketException e)
|
|
{
|
|
defaultAllocator.dispose(overlapped);
|
|
defaultAllocator.dispose(e);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private void kill(StreamTransport transport,
|
|
SocketException exception = null) @nogc
|
|
in
|
|
{
|
|
assert(transport !is null);
|
|
}
|
|
do
|
|
{
|
|
transport.socket.shutdown();
|
|
defaultAllocator.dispose(transport.socket);
|
|
transport.exception = exception;
|
|
pendings.insertBack(transport);
|
|
}
|
|
|
|
/**
|
|
* Does the actual polling.
|
|
*/
|
|
override protected void poll() @nogc
|
|
{
|
|
DWORD lpNumberOfBytes;
|
|
size_t key;
|
|
OVERLAPPED* overlap;
|
|
immutable timeout = cast(immutable int) blockTime.total!"msecs";
|
|
|
|
auto result = GetQueuedCompletionStatus(completionPort,
|
|
&lpNumberOfBytes,
|
|
&key,
|
|
&overlap,
|
|
timeout);
|
|
if (result == FALSE && overlap is null)
|
|
{
|
|
return; // Timeout
|
|
}
|
|
|
|
enum size_t offset = size_t.sizeof * 2;
|
|
auto overlapped = cast(SocketState) ((cast(void*) overlap) - offset);
|
|
assert(overlapped !is null);
|
|
scope (failure)
|
|
{
|
|
defaultAllocator.dispose(overlapped);
|
|
}
|
|
|
|
switch (overlapped.event)
|
|
{
|
|
case OverlappedSocketEvent.accept:
|
|
auto connection = cast(ConnectionWatcher) (cast(void*) key);
|
|
assert(connection !is null);
|
|
|
|
auto listener = cast(OverlappedStreamSocket) connection.socket;
|
|
assert(listener !is null);
|
|
|
|
auto socket = listener.endAccept(overlapped);
|
|
auto transport = defaultAllocator.make!StreamTransport(socket);
|
|
|
|
connection.incoming.insertBack(transport);
|
|
|
|
reify(transport, EventMask(Event.none), EventMask(Event.read, Event.write));
|
|
|
|
pendings.insertBack(connection);
|
|
listener.beginAccept(overlapped);
|
|
break;
|
|
case OverlappedSocketEvent.read:
|
|
auto transport = cast(StreamTransport) (cast(void*) key);
|
|
assert(transport !is null);
|
|
|
|
if (!transport.active)
|
|
{
|
|
defaultAllocator.dispose(transport);
|
|
defaultAllocator.dispose(overlapped);
|
|
return;
|
|
}
|
|
|
|
int received;
|
|
SocketException exception;
|
|
try
|
|
{
|
|
received = transport.socket.endReceive(overlapped);
|
|
}
|
|
catch (SocketException e)
|
|
{
|
|
exception = e;
|
|
}
|
|
if (transport.socket.disconnected)
|
|
{
|
|
// We want to get one last notification to destroy the watcher.
|
|
transport.socket.beginReceive(transport.output[], overlapped);
|
|
kill(transport, exception);
|
|
}
|
|
else if (received > 0)
|
|
{
|
|
immutable full = transport.output.free == received;
|
|
|
|
transport.output += received;
|
|
// Receive was interrupted because the buffer is full. We have to continue.
|
|
if (full)
|
|
{
|
|
transport.socket.beginReceive(transport.output[], overlapped);
|
|
}
|
|
pendings.insertBack(transport);
|
|
}
|
|
break;
|
|
case OverlappedSocketEvent.write:
|
|
auto transport = cast(StreamTransport) (cast(void*) key);
|
|
assert(transport !is null);
|
|
|
|
transport.input += transport.socket.endSend(overlapped);
|
|
if (transport.input.length > 0)
|
|
{
|
|
transport.socket.beginSend(transport.input[], overlapped);
|
|
}
|
|
else
|
|
{
|
|
transport.socket.beginReceive(transport.output[], overlapped);
|
|
if (transport.isClosing())
|
|
{
|
|
kill(transport);
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
assert(false, "Unknown event");
|
|
}
|
|
}
|
|
}
|