Tagged Questions
6
votes
2answers
712 views
IOCP C++ TCP client
I am having some trouble implementing TCP IOCP client. I have implemented kqueue on Mac OSX so was looking to do something similar on windows and my understanding is that IOCP is the closest thing. ...
5
votes
6answers
984 views
IO completion port key confusion
I'm writing an IO completion port based server (source code here) using the Windows DLL API in Python using the ctypes module. But this is a pretty direct usage of the API and this question is ...
3
votes
3answers
859 views
I/O completion port's advantages and disadvantages
Why do many people say I/O completion port is fast and nice model?
What is the I/O completion port's advantages and disadvantages?
I want to know some points which make faster IOCP than other ...
2
votes
1answer
606 views
Serial Comms via IOCP
Is it possible to use IO Completion Ports for Serial I/O? According to Windows via C/C++ it is alluded to that it is possible, and does give an example of using IOCP with physical files showing work ...
1
vote
1answer
87 views
CloseHandle() returns before the serial port is actually closed
I'm pulling my hair trying to figure out when a serial port finishes closing so I can reopen it. It turns out that CloseHandle() returns before the port is actually unlocked.
I am opening a serial ...
1
vote
1answer
78 views
Non-blocking socket connect on Windows without ConnectEx
I need to initiate 1000's of client connections in a single process, the key limitation I need to work around is the driver does not support ConnectEx, so I cannot have a pure IOCP solution.
My ...
1
vote
1answer
127 views
Is it necessary to set hEvent on the OVERLAPPED structure when doing I/O completion ports?
I'm using I/O completion ports on Windows for serial port communication (we will potentially have lots and lots of serial port usage). I've done the usual, creating the IOCP, spinning up the I/O ...
1
vote
4answers
139 views
Can I/O completion port help with database instead of File writes?
I am reading up on IOCP, and from what I understand so far, the asynchronous writes only apply in the context of writing to Files. By "Files", I don't mean just disk file, but "File" type output ...
1
vote
1answer
371 views
Async operations with I/O Completion Ports return 0 bytes transferred
Asynchronous operations with I/O Completion Ports return 0 bytes transferred, although the I/O operations work as expected (my read buffers become full).
BYTE buffer[1024] = {0};
OVERLAPPED o = {0};
...
1
vote
2answers
498 views
A question about windows iocp
When I write a program about IO completion port in Windows Vista,
the first sample didn't work and the GetQueuedCompletionStatus() can not get
any OVERLAPPED structures.
So I put the OVERLAPPED ...
0
votes
1answer
63 views
How to implement ConnectEx, AcceptEx in Winsock SPI
These are Microsoft specific extensions and I wonder if it is possible to implement them in third-party drivers. They are both needed to implement pure IOCP client and server code.
The Function ...
0
votes
2answers
152 views
Resources To learn IOCP On Windows
I recently was made aware of this thing called IOCP on windows and i began searching for more information on it but i couldn't find anything up to date (most of the examples were on codeproject almost ...
0
votes
3answers
523 views
Is Node.js production ready on Windows?
In new 0.5.1 branch, there is an official Windows executable of Node.js. Linux version of Node.js uses established libraries such as v8, libev, libeio.
Since libev and libeio is for *NIX platforms; ...
0
votes
3answers
260 views
Removing a handle from a I/O completion port and other questions about IOCP
The CreateIoCompletionPort function allows the creation of a new I/O completion port and the registration of file handles to an existing I/O completion port.
Then, I can use any function, like a recv ...
0
votes
4answers
626 views
How to find out when CancelIo() is done?
UPDATE: CancelIo() works fine. I misunderstood my code. See the accepted answer for more details.
CancelIo() is supposed to cancel all pending I/O operations associated with the calling thread. In my ...
0
votes
1answer
141 views
Using iocp in a job pool
When using iocp in a job/task pool to provide fast worker wake ups what is the best way to minimise the overhead of signalling the port - ie not having to do it every queue operation?
void Worker()
...
0
votes
1answer
666 views
some OVERLAPS using WSASend not returning in a timely manner using GetQueuedCompletionStatus?
Background: I'm using CreateIoCompletionPort, WSASend/Recv, and GetQueuedCompletionStatus to do overlapped socket io on my server. For flow control, when sending to the client, I only allow several ...
0
votes
1answer
927 views
Overlapped I/O: How to wake a thread on a completion port event or a normal event?
I want to use a thread pool to both initiate/cancel overlapped read operations -- using ReadFile() and CancelIo() respectively -- as well as handling any completion port events when read operations ...