+2008-04-22 Marcus Brinkmann <marcus@g10code.de>
+
+ * w32-qt-io.cpp, kdpipeiodevice.cpp: New versions from Frank
+ Osterfeld, implement blocking select.
+
2008-03-11 Marcus Brinkmann <marcus@g10code.de>
* data.c (gpgme_data_read, gpgme_data_write): Retry on EINTR.
LOCKED( r );
if ( r->bytesInBuffer() != 0 || r->eof || r->error )
return true;
- assert( false );
- return r->bufferNotEmptyCondition.wait( &r->mutex, msecs ) ;
+
+ return msecs >= 0 ? r->bufferNotEmptyCondition.wait( &r->mutex, msecs ) : r->bufferNotEmptyCondition.wait( &r->mutex );
}
template <typename T>
TRACE_BEG2 (DEBUG_SYSIO, "_gpgme_io_select", fds,
"nfds=%u, nonblock=%u", nfds, nonblock);
- /* We only implement the special case of nonblock == true. */
- assert (nonblock);
-
int count = 0;
TRACE_SEQ (dbg_help, "select on [ ");
}
else if (fds[i].for_read )
{
- const KDPipeIODevice * const chan = find_channel (fds[i].fd, 0);
- assert (chan);
- fds[i].signaled = chan->readWouldBlock() ? 0 : 1;
+ KDPipeIODevice * const chan = find_channel (fds[i].fd, 0);
+ assert (chan);
+ if ( nonblock )
+ fds[i].signaled = chan->readWouldBlock() ? 0 : 1;
+ else
+ fds[i].signaled = chan->waitForReadyRead( 1000 ) ? 1 : 0;
TRACE_ADD1 (dbg_help, "w0x%x ", fds[i].fd);
if ( fds[i].signaled )
count++;
{
const KDPipeIODevice * const chan = find_channel (fds[i].fd, 0);
assert (chan);
- fds[i].signaled = chan->writeWouldBlock() ? 0 : 1;
+ fds[i].signaled = nonblock ? ( chan->writeWouldBlock() ? 0 : 1 ) : 1;
TRACE_ADD1 (dbg_help, "w0x%x ", fds[i].fd);
if ( fds[i].signaled )
count++;