active questions tagged iocp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:50:15Z http://stackoverflow.com/feeds/tag/iocp http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/677155/i-o-completion-port-how-to-free-per-socket-context-and-per-i-o-context 0 I/O Completion Port, How to free Per Socket Context and Per I/O Context? dragonfly 2009-03-24T12:24:39Z 2009-12-12T08:15:11Z <p>I'm using IOCP on UDP socket, and the UDP socket may be closed in another thread. So, how can I free Per Socket Context and Per I/O Context which associated with SOCKET safely?</p> <p>When I close the socket, there will still be un-completed I/O request in kernel queue.</p> <p>If I free context just when socket closed, the GetQueueCompletionStatus may failed.</p> <p>Now, my question is when to free context?</p> http://stackoverflow.com/questions/408970/iocp-cross-platform-libraries 1 IOCP, Cross platform libraries? Daniel 2009-01-03T12:11:28Z 2009-12-12T08:06:14Z <p>I've recently bumped into something called IOCP on the windows platform, to be more precise: Input/Output Control Ports. This seems to be <i>the</i> most efficient way to code your server software when it needs to hold thousands of users concurrently. (Correct me if I'm wrong, but thread-per-socket, polling, and asynchronous callbacks (thread on every callback) are not efficient enough.)</p> <p>I am wondering if there are any 3rd party libraries available that implement this concept. I know the win32 api supplies us with CreateIoCompletionPort, FreeBSD has kqueue and linux in general can use /dev/epoll that works somewhat similarly... But isn't there a crossplatform library (such as boost::thread) that handles this stuff for me?</p> http://stackoverflow.com/questions/1145220/some-overlaps-using-wsasend-not-returning-in-a-timely-manner-using-getqueuedcompl 0 some OVERLAPS using WSASend not returning in a timely manner using GetQueuedCompletionStatus? Geoffrey 2009-07-17T19:30:29Z 2009-12-02T13:53:27Z <p>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 WSASend() to be called when all pending OVERLAPs have popped off the IOCP. </p> <p>Problem: Recently, there are occassions when the OVERLAPs do not get returned to the IOCP. The thread calling GetQueuedCompletionStatus does not get them and they remain in my local pending queue. I've verified that the client DOES receive the data off the socket and the socket is connected. No errors were returned when the WSASend() calls were made. The OVERLAPs simply "never" come back without an external stimulus like the following: </p> <ol> <li>Disconnecting the socket from the client or server, immediately allows the GetQueuedCompletionStatus thread to retrieve the OVERLAPs</li> <li>Making additional calls to WSASend(), sometimes several are needed, before all the OVERLAPs suddenly pop off the queue.</li> </ol> <p>Question: Has anyone seen this type of behavior? Any ideas on what is causing this? </p> <p>Thanks, Geoffrey</p> http://stackoverflow.com/questions/1769350/io-completion-ports-how-does-wsarecv-work 0 IO Completion ports: How does WSARecv() work? Olliwaa 2009-11-20T09:32:40Z 2009-11-20T13:06:08Z <p>Hi,I want to write a server using a pool of worker threads and an IO completion port. The server should processes and forwards messages between multiple clients. The 'per client' data is in a class ClientContext. Data between instances of this class are exchanged using the worker threads. I think this is a typical scenario.</p> <p>However, I have two problems with those IO completion ports.</p> <p>(1) The first problem is that the server basically receives data from clients but I never know if a complete message was received. In fact WSAGetLastError() always returns that WSARecv() is still pending. I tried to wait for the event OVERLAPPED.hEvent with WaitForMultipleObjects(). However, it blocks forever, i.e WSARecv() never completes in my program. My goal is to be absolutely sure that the whole message has been received before further processing starts. My message has a 'message length' field in its header, but I don't really see how to use it with the IOCP function parameters.</p> <p>(2) If WSARecv() is commented out in the code snippet below, the program still receives data. What does that mean? Does it mean that I don't need to call WSARecv() at all? I am not able to get a deterministic behaviour with those IO completion ports. Thanks for your help!</p> <pre><code>while(WaitForSingleObject(module_com-&gt;m_shutdown_event, 0)!= WAIT_OBJECT_0) { dequeue_result = GetQueuedCompletionStatus(module_com-&gt;m_h_io_completion_port, &amp;transfered_bytes, (LPDWORD)&amp;lp_completion_key, &amp;p_ol, INFINITE); if (lp_completion_key == NULL) { //Shutting down break; } //Get client context current_context = (ClientContext *)lp_completion_key; //IOCP error if(dequeue_result == FALSE) { //... do some error handling... } else { // 'per client' data thread_state = current_context-&gt;GetState(); wsa_recv_buf = current_context-&gt;GetWSABUFPtr(); // 'per call' data this_overlapped = current_context-&gt;GetOVERLAPPEDPtr(); } while(thread_state != STATE_DONE) { switch(thread_state) { case STATE_INIT: //Check if completion packet has been posted by internal function or by WSARecv(), WSASend() if(transfered_bytes &gt; 0) { dwFlags = 0; transf_now = 0; transf_result = WSARecv(current_context-&gt;GetSocket(), wsa_recv_buf, 1, &amp;transf_now, &amp;dwFlags, this_overlapped, NULL); if (SOCKET_ERROR == transf_result &amp;&amp; WSAGetLastError() != WSA_IO_PENDING) { //...error handling... break; } // put received message into a message queue } else // (transfered_bytes == 0) { // Another context passed data to this context // and notified it via PostQueuedCompletionStatus(). } break; } } } </code></pre> http://stackoverflow.com/questions/1602083/async-operations-with-i-o-completion-ports-return-0-bytes-transferred 0 Async operations with I/O Completion Ports return 0 bytes transferred Aram Hăvărneanu 2009-10-21T16:45:41Z 2009-10-22T05:04:24Z <p>Asynchronous operations with I/O Completion Ports return 0 bytes transferred, although the I/O operations work as expected (my read buffers become full).</p> <pre><code>BYTE buffer[1024] = {0}; OVERLAPPED o = {0}; HANDLE file = CreateFile( _T("hello.txt"), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL ); HANDLE completion_port = CreateIoCompletionPort( file, NULL, 0, 0 ); ReadFile( file, buffer, 1024, NULL, &amp;o ); </code></pre> <p>In the work thread:</p> <pre><code>DWORD numBytes = 0; LPOVERLAPPED po; GetQueuedCompletionStatus( completion_port, &amp;numBytes, 0, &amp;po, INFINITE ); GetOverlappedResult(file, &amp;o, &amp;numBytes, FALSE); </code></pre> <p>Both functions return 0 bytes in numBytes, but <code>buffer</code> is filling. Is this expected behaviour?</p> <p>Thanks.</p> http://stackoverflow.com/questions/757138/a-question-on-iocp 0 A question on IOCP Jinx 2009-04-16T17:13:13Z 2009-09-15T07:00:00Z <p>If I want to use completion port to get information from different thread ,</p> <p>how can I design the structure of the program?How about the one below?</p> <p>If I want to use a global function ,how can I set the mutexes ?</p> <pre><code>Main(){ for i in range NumOfThreads{ CreateIoCompletionPort() CreatThread(ThreadFun) } } ThreadFun(){ While(1){ GetQueuedCompletionStatus(); // wait for completion of an IO Process What ever has completed (); Start another file operation(); } } </code></pre> http://stackoverflow.com/questions/1262324/using-sslstream-with-iocp 0 Using SslStream with IOCP Adam Preble 2009-08-11T19:06:28Z 2009-08-11T19:10:39Z <p>I have written a TCP server using the Socket class's asynchronous/IOCP methods, BeginSend()/BeginRead()/etc. I would like to add SSL capability using SslStream, but from the interface it looks like Socket and SslStream are not intended to work together, in particular because I'm not using Streams at all and SslStream appears to depend on having a Stream to work with.</p> <p>Is this possible, or am I looking in the wrong place? Do I need to fashion my own Stream subclass that feeds into my Socket instances and point SslStream at that? It's important to me that my server use IOCP due to scaling concerns.</p> http://stackoverflow.com/questions/1176477/io-completion-port-key-confusion 0 IO completion port key confusion Richard Tew 2009-07-24T08:52:37Z 2009-07-25T05:58:45Z <p>I'm writing an IO completion port based server (<a href="http://code.google.com/p/pyiocp/source/browse/01%20-%20Work%20in%20Progress/03%20-%20Serving.py" rel="nofollow">source code here</a>) 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 directed at those who have a knowledge of IOCP, not Python.</p> <p>As I understand the documentation for CreateIoCompletionPort, you specify your "user defined" completion key when you call this function with a file handle (in my case a socket) you are associating with the created IOCP. When you get around to calling GetQueuedCompletionStatus, you get a completion key value along with a pointer to an overlapped object. The completion key should identify what overlapped object and request has completed.</p> <p>However, let's say I pass in 100 as the completion key in my CreateIoCompletionPort call with an overlapped object. When the same overlapped object has its IO completed and it arrives back through GetQueuedCompletionStatus, the completion key that accompanies it is much larger and bares no resemblance to the original value of 100.</p> <p>Am I misunderstanding how the completion key works, or must I be doing it wrong in the source code I linked above?</p> http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp 1 Delphi TClientSocket replacement using winsock2 and IOCP? Bruce 2009-07-02T04:35:44Z 2009-07-02T16:47:16Z <p>Is there such a thing? It needs to be asynchronous (no Indy).</p> http://stackoverflow.com/questions/961343/overlapped-i-o-how-to-wake-a-thread-on-a-completion-port-event-or-a-normal-event 0 Overlapped I/O: How to wake a thread on a completion port event or a normal event? Gili 2009-06-07T06:46:42Z 2009-06-07T16:40:11Z <p>I want to use a thread pool to both initiate/cancel overlapped read operations -- using <code>ReadFile()</code> and <code>CancelIo()</code> respectively -- as well as handling any completion port events when read operations complete.</p> <ol> <li>Any thread can initiate a read operation</li> <li>Any thread can handle a read-complete event</li> <li>Only the thread that initiated a read may cancel it (this is a <code>CancelIo()</code> limitation)</li> </ol> <p>I'm not sure how to implement this. One normally uses <code>GetQueuedCompletionStatus()</code> to wait on completion port events and <code>WaitOnSingleObject()</code> to wait on normal events but it's not clear how to mix the two. If <code>PostQueuedCompletionStatus()</code> would let me specify a specific thread to wake up I'd be set. Any ideas?</p> <p><strong>UPDATE</strong>: The solution must run on Windows XP. Unfortunately this rules out using <code>CancelIoEx()</code> or <code>GetQueuedCompletionStatusEx()</code>.</p> http://stackoverflow.com/questions/830708/is-this-program-running-asynchronous-or-synchrounous 4 Is this program running Asynchronous or synchrounous? Jinx 2009-05-06T17:10:11Z 2009-05-07T06:58:23Z <p>When I run this program </p> <pre><code>OVERLAPPED o; int main() { .. CreateIoCompletionPort(....); for (int i = 0; i&lt;10; i++) { WriteFile(..,&amp;o); OVERLAPPED* po; GetQueuedCompletionStatus(..,&amp;po); } } </code></pre> <p>it seems that the WriteFile didn't return until the writing job is done. At the same time , GetQueuedCompletionStatus() gets called. The behavior is like a synchronous IO operation rather than an asynch-IO operation.</p> <p>Why is that?</p> http://stackoverflow.com/questions/830639/a-question-about-windows-iocp 0 A question about windows iocp. Jinx 2009-05-06T16:58:05Z 2009-05-06T17:11:47Z <p>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.</p> <p>So I put the OVERLAPPED structure in global scope,and it works amazingly. Why is that?</p> <p>CODE1:</p> <pre><code>int main() { OVERLAPPED o; .. CreateIoCompletionPort(....); for (int i = 0; i&lt;10; i++) { WriteFile(..,&amp;o); OVERLAPPED* po; GetQueuedCompletionStatus(..,&amp;po); } } </code></pre> <p>CODE2:</p> <pre><code>OVERLAPPED o; int main() { .. CreateIoCompletionPort(....); for (int i = 0; i&lt;10; i++) { WriteFile(..,&amp;o); OVERLAPPED* po; GetQueuedCompletionStatus(..,&amp;po); } } </code></pre> http://stackoverflow.com/questions/673896/serial-comms-via-iocp 1 Serial Comms via IOCP graham.reeds 2009-03-23T15:41:24Z 2009-04-16T23:55:52Z <p>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 with CreateFile, ReadFile, WriteFile, etc. However can this actually work with serial comms - has anyone got it working?</p> <p>I can't find any examples of this on the web, but I cannot be the first to attempt it?</p> http://stackoverflow.com/questions/374756/iocp-in-custom-thread-pool 1 IOCP in custom thread pool Martin Moser 2008-12-17T14:48:20Z 2009-03-25T06:19:23Z <p>I'm currently searching the internet for a custom thread pool implementation. I found an implementation which uses IOCP's. I'm wondering what the benefit is, of using them? Do they provide work stealing, or something like that, I could really find an answer...</p> http://stackoverflow.com/questions/451938/mono-and-c-iocp-is-it-a-good-idea 2 Mono and C# IOCP: Is it a good idea? vilaca 2009-01-16T20:47:47Z 2009-01-16T21:58:42Z <p>Hi,</p> <p>I'm porting a c++ app to c# that uses IOCP on it's server.</p> <p>Can mono handle IOCP as well as windows? will i get comparable performance to c++ or i should try something else?</p> <p>thanks</p>