1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * giowin32.c: IO Channels for Win32.
5 * Copyright 1998 Owen Taylor and Tor Lillqvist
6 * Copyright 1999-2000 Tor Lillqvist and Craig Setera
7 * Copyright 2001-2003 Andrew Lanoix
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 * Boston, MA 02111-1307, USA.
26 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
27 * file for a list of people on the GLib Team. See the ChangeLog
28 * files for a list of changes. These files are distributed with
29 * GLib at ftp://ftp.gtk.org/pub/gtk/.
33 * Bugs that are related to the code in this file:
35 * Bug 137968 - Sometimes a GIOFunc on Win32 is called with zero condition
36 * http://bugzilla.gnome.org/show_bug.cgi?id=137968
38 * Bug 324234 - Using g_io_add_watch_full() to wait for connect() to return on a non-blocking socket returns prematurely
39 * http://bugzilla.gnome.org/show_bug.cgi?id=324234
41 * Bug 331214 - g_io_channel async socket io stalls
42 * http://bugzilla.gnome.org/show_bug.cgi?id=331214
44 * Bug 338943 - Multiple watches on the same socket
45 * http://bugzilla.gnome.org/show_bug.cgi?id=338943
47 * Bug 357674 - 2 serious bugs in giowin32.c making glib iochannels useless
48 * http://bugzilla.gnome.org/show_bug.cgi?id=357674
50 * Bug 425156 - GIOChannel deadlocks on a win32 socket
51 * http://bugzilla.gnome.org/show_bug.cgi?id=425156
53 * Bug 468910 - giofunc condition=0
54 * http://bugzilla.gnome.org/show_bug.cgi?id=468910
56 * Bug 500246 - Bug fixes for giowin32
57 * http://bugzilla.gnome.org/show_bug.cgi?id=500246
59 * Bug 548278 - Async GETs connections are always terminated unexpectedly on windows
60 * http://bugzilla.gnome.org/show_bug.cgi?id=548278
62 * Bug 548536 - giowin32 problem when adding and removing watches
63 * http://bugzilla.gnome.org/show_bug.cgi?id=548536
65 * When fixing bugs related to the code in this file, either the above
66 * bugs or others, make sure that the test programs attached to the
67 * above bugs continue to work.
89 typedef struct _GIOWin32Channel GIOWin32Channel;
90 typedef struct _GIOWin32Watch GIOWin32Watch;
92 #define BUFFER_SIZE 4096
95 G_IO_WIN32_WINDOWS_MESSAGES, /* Windows messages */
97 G_IO_WIN32_FILE_DESC, /* Unix-like file descriptors from
98 * _open() or _pipe(), except for
99 * console IO. Separate thread to read
103 G_IO_WIN32_CONSOLE, /* Console IO (usually stdin, stdout, stderr) */
105 G_IO_WIN32_SOCKET /* Sockets. No separate thread. */
106 } GIOWin32ChannelType;
108 struct _GIOWin32Channel {
110 gint fd; /* Either a Unix-like file handle as provided
111 * by the Microsoft C runtime, or a SOCKET
112 * as provided by WinSock.
114 GIOWin32ChannelType type;
118 /* Field used by G_IO_WIN32_WINDOWS_MESSAGES channels */
119 HWND hwnd; /* Handle of window, or NULL */
121 /* Fields used by G_IO_WIN32_FILE_DESC channels. */
122 CRITICAL_SECTION mutex;
124 int direction; /* 0 means we read from it,
125 * 1 means we write to it.
128 gboolean running; /* Is reader or writer thread
129 * running. FALSE if EOF has been
130 * reached by the reader thread.
133 gboolean needs_close; /* If the channel has been closed while
134 * the reader thread was still running.
137 guint thread_id; /* If non-NULL the channel has or has
138 * had a reader or writer thread.
140 HANDLE data_avail_event;
144 /* Data is kept in a circular buffer. To be able to distinguish between
145 * empty and full buffers, we cannot fill it completely, but have to
146 * leave a one character gap.
148 * Data available is between indexes rdp and wrp-1 (modulo BUFFER_SIZE).
151 * Full: (wrp + 1) % BUFFER_SIZE == rdp
154 guchar *buffer; /* (Circular) buffer */
155 gint wrp, rdp; /* Buffer indices for writing and reading */
156 HANDLE space_avail_event;
158 /* Fields used by G_IO_WIN32_SOCKET channels */
162 gboolean write_would_have_blocked;
163 gboolean ever_writable;
166 #define LOCK(mutex) EnterCriticalSection (&mutex)
167 #define UNLOCK(mutex) LeaveCriticalSection (&mutex)
169 struct _GIOWin32Watch {
173 GIOCondition condition;
177 g_win32_print_access_mode (int flags)
179 g_print ("%s%s%s%s%s%s%s%s%s%s",
180 ((flags & 0x3) == _O_RDWR ? "O_RDWR" :
181 ((flags & 0x3) == _O_RDONLY ? "O_RDONLY" :
182 ((flags & 0x3) == _O_WRONLY ? "O_WRONLY" : "0"))),
183 (flags & _O_APPEND ? "|O_APPEND" : ""),
184 (flags & _O_RANDOM ? "|O_RANDOM" : ""),
185 (flags & _O_SEQUENTIAL ? "|O_SEQUENTIAL" : ""),
186 (flags & _O_TEMPORARY ? "|O_TEMPORARY" : ""),
187 (flags & _O_CREAT ? "|O_CREAT" : ""),
188 (flags & _O_TRUNC ? "|O_TRUNC" : ""),
189 (flags & _O_EXCL ? "|O_EXCL" : ""),
190 (flags & _O_TEXT ? "|O_TEXT" : ""),
191 (flags & _O_BINARY ? "|O_BINARY" : ""));
195 g_win32_print_gioflags (GIOFlags flags)
199 if (flags & G_IO_FLAG_APPEND)
200 bar = "|", g_print ("APPEND");
201 if (flags & G_IO_FLAG_NONBLOCK)
202 g_print ("%sNONBLOCK", bar), bar = "|";
203 if (flags & G_IO_FLAG_IS_READABLE)
204 g_print ("%sREADABLE", bar), bar = "|";
205 if (flags & G_IO_FLAG_IS_WRITEABLE)
206 g_print ("%sWRITEABLE", bar), bar = "|";
207 if (flags & G_IO_FLAG_IS_SEEKABLE)
208 g_print ("%sSEEKABLE", bar), bar = "|";
212 event_mask_to_string (int mask)
215 int checked_bits = 0;
221 #define BIT(n) checked_bits |= FD_##n; if (mask & FD_##n) bufp += sprintf (bufp, "%s" #n, (bufp>buf ? "|" : ""))
231 BIT (ROUTING_INTERFACE_CHANGE);
232 BIT (ADDRESS_LIST_CHANGE);
236 if ((mask & ~checked_bits) != 0)
237 bufp += sprintf (bufp, "|%#x", mask & ~checked_bits);
239 return g_quark_to_string (g_quark_from_string (buf));
243 condition_to_string (GIOCondition condition)
246 int checked_bits = 0;
252 #define BIT(n) checked_bits |= G_IO_##n; if (condition & G_IO_##n) bufp += sprintf (bufp, "%s" #n, (bufp>buf ? "|" : ""))
263 if ((condition & ~checked_bits) != 0)
264 bufp += sprintf (bufp, "|%#x", condition & ~checked_bits);
266 return g_quark_to_string (g_quark_from_string (buf));
270 g_io_win32_get_debug_flag (void)
272 return (getenv ("G_IO_WIN32_DEBUG") != NULL);
276 g_io_channel_win32_init (GIOWin32Channel *channel)
278 channel->debug = g_io_win32_get_debug_flag ();
279 channel->buffer = NULL;
280 channel->running = FALSE;
281 channel->needs_close = FALSE;
282 channel->thread_id = 0;
283 channel->data_avail_event = NULL;
284 channel->revents = 0;
285 channel->space_avail_event = NULL;
286 channel->event_mask = 0;
287 channel->last_events = 0;
288 channel->event = NULL;
289 channel->write_would_have_blocked = FALSE;
290 channel->ever_writable = FALSE;
291 InitializeCriticalSection (&channel->mutex);
295 create_events (GIOWin32Channel *channel)
297 SECURITY_ATTRIBUTES sec_attrs;
299 sec_attrs.nLength = sizeof (SECURITY_ATTRIBUTES);
300 sec_attrs.lpSecurityDescriptor = NULL;
301 sec_attrs.bInheritHandle = FALSE;
303 /* The data available event is manual reset, the space available event
304 * is automatic reset.
306 if (!(channel->data_avail_event = CreateEvent (&sec_attrs, TRUE, FALSE, NULL))
307 || !(channel->space_avail_event = CreateEvent (&sec_attrs, FALSE, FALSE, NULL)))
309 gchar *emsg = g_win32_error_message (GetLastError ());
310 g_error ("Error creating event: %s", emsg);
315 static unsigned __stdcall
316 read_thread (void *parameter)
318 GIOWin32Channel *channel = parameter;
322 g_io_channel_ref ((GIOChannel *)channel);
325 g_print ("read_thread %#x: start fd=%d, data_avail=%p space_avail=%p\n",
328 channel->data_avail_event,
329 channel->space_avail_event);
331 channel->direction = 0;
332 channel->buffer = g_malloc (BUFFER_SIZE);
333 channel->rdp = channel->wrp = 0;
334 channel->running = TRUE;
336 SetEvent (channel->space_avail_event);
338 LOCK (channel->mutex);
339 while (channel->running)
342 g_print ("read_thread %#x: rdp=%d, wrp=%d\n",
343 channel->thread_id, channel->rdp, channel->wrp);
344 if ((channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
348 g_print ("read_thread %#x: resetting space_avail\n",
350 ResetEvent (channel->space_avail_event);
352 g_print ("read_thread %#x: waiting for space\n",
354 UNLOCK (channel->mutex);
355 WaitForSingleObject (channel->space_avail_event, INFINITE);
356 LOCK (channel->mutex);
358 g_print ("read_thread %#x: rdp=%d, wrp=%d\n",
359 channel->thread_id, channel->rdp, channel->wrp);
362 buffer = channel->buffer + channel->wrp;
364 /* Always leave at least one byte unused gap to be able to
365 * distinguish between the full and empty condition...
367 nbytes = MIN ((channel->rdp + BUFFER_SIZE - channel->wrp - 1) % BUFFER_SIZE,
368 BUFFER_SIZE - channel->wrp);
371 g_print ("read_thread %#x: calling read() for %d bytes\n",
372 channel->thread_id, nbytes);
374 UNLOCK (channel->mutex);
376 nbytes = read (channel->fd, buffer, nbytes);
378 LOCK (channel->mutex);
380 channel->revents = G_IO_IN;
382 channel->revents |= G_IO_HUP;
384 channel->revents |= G_IO_ERR;
387 g_print ("read_thread %#x: read() returned %d, rdp=%d, wrp=%d\n",
388 channel->thread_id, nbytes, channel->rdp, channel->wrp);
393 channel->wrp = (channel->wrp + nbytes) % BUFFER_SIZE;
395 g_print ("read_thread %#x: rdp=%d, wrp=%d, setting data_avail\n",
396 channel->thread_id, channel->rdp, channel->wrp);
397 SetEvent (channel->data_avail_event);
400 channel->running = FALSE;
401 if (channel->needs_close)
404 g_print ("read_thread %#x: channel fd %d needs closing\n",
405 channel->thread_id, channel->fd);
411 g_print ("read_thread %#x: EOF, rdp=%d, wrp=%d, setting data_avail\n",
412 channel->thread_id, channel->rdp, channel->wrp);
413 SetEvent (channel->data_avail_event);
414 UNLOCK (channel->mutex);
416 g_io_channel_unref ((GIOChannel *)channel);
418 /* No need to call _endthreadex(), the actual thread starter routine
419 * in MSVCRT (see crt/src/threadex.c:_threadstartex) calls
420 * _endthreadex() for us.
426 static unsigned __stdcall
427 write_thread (void *parameter)
429 GIOWin32Channel *channel = parameter;
433 g_io_channel_ref ((GIOChannel *)channel);
436 g_print ("write_thread %#x: start fd=%d, data_avail=%p space_avail=%p\n",
439 channel->data_avail_event,
440 channel->space_avail_event);
442 channel->direction = 1;
443 channel->buffer = g_malloc (BUFFER_SIZE);
444 channel->rdp = channel->wrp = 0;
445 channel->running = TRUE;
447 SetEvent (channel->space_avail_event);
449 /* We use the same event objects as for a reader thread, but with
450 * reversed meaning. So, space_avail is used if data is available
451 * for writing, and data_avail is used if space is available in the
455 LOCK (channel->mutex);
456 while (channel->running || channel->rdp != channel->wrp)
459 g_print ("write_thread %#x: rdp=%d, wrp=%d\n",
460 channel->thread_id, channel->rdp, channel->wrp);
461 if (channel->wrp == channel->rdp)
463 /* Buffer is empty. */
465 g_print ("write_thread %#x: resetting space_avail\n",
467 ResetEvent (channel->space_avail_event);
469 g_print ("write_thread %#x: waiting for data\n",
471 channel->revents = G_IO_OUT;
472 SetEvent (channel->data_avail_event);
473 UNLOCK (channel->mutex);
474 WaitForSingleObject (channel->space_avail_event, INFINITE);
476 LOCK (channel->mutex);
477 if (channel->rdp == channel->wrp)
481 g_print ("write_thread %#x: rdp=%d, wrp=%d\n",
482 channel->thread_id, channel->rdp, channel->wrp);
485 buffer = channel->buffer + channel->rdp;
486 if (channel->rdp < channel->wrp)
487 nbytes = channel->wrp - channel->rdp;
489 nbytes = BUFFER_SIZE - channel->rdp;
492 g_print ("write_thread %#x: calling write() for %d bytes\n",
493 channel->thread_id, nbytes);
495 UNLOCK (channel->mutex);
496 nbytes = write (channel->fd, buffer, nbytes);
497 LOCK (channel->mutex);
500 g_print ("write_thread %#x: write(%i) returned %d, rdp=%d, wrp=%d\n",
501 channel->thread_id, channel->fd, nbytes, channel->rdp, channel->wrp);
503 channel->revents = 0;
505 channel->revents |= G_IO_OUT;
506 else if (nbytes <= 0)
507 channel->revents |= G_IO_ERR;
509 channel->rdp = (channel->rdp + nbytes) % BUFFER_SIZE;
515 g_print ("write_thread: setting data_avail for thread %#x\n",
517 SetEvent (channel->data_avail_event);
520 channel->running = FALSE;
521 if (channel->needs_close)
524 g_print ("write_thread %#x: channel fd %d needs closing\n",
525 channel->thread_id, channel->fd);
530 UNLOCK (channel->mutex);
532 g_io_channel_unref ((GIOChannel *)channel);
538 create_thread (GIOWin32Channel *channel,
539 GIOCondition condition,
540 unsigned (__stdcall *thread) (void *parameter))
542 HANDLE thread_handle;
544 thread_handle = (HANDLE) _beginthreadex (NULL, 0, thread, channel, 0,
545 &channel->thread_id);
546 if (thread_handle == 0)
547 g_warning ("Error creating thread: %s.",
549 else if (!CloseHandle (thread_handle))
550 g_warning ("Error closing thread handle: %s.\n",
551 g_win32_error_message (GetLastError ()));
553 WaitForSingleObject (channel->space_avail_event, INFINITE);
557 buffer_read (GIOWin32Channel *channel,
566 LOCK (channel->mutex);
568 g_print ("reading from thread %#x %" G_GSIZE_FORMAT " bytes, rdp=%d, wrp=%d\n",
569 channel->thread_id, count, channel->rdp, channel->wrp);
571 if (channel->wrp == channel->rdp)
573 UNLOCK (channel->mutex);
575 g_print ("waiting for data from thread %#x\n", channel->thread_id);
576 WaitForSingleObject (channel->data_avail_event, INFINITE);
578 g_print ("done waiting for data from thread %#x\n", channel->thread_id);
579 LOCK (channel->mutex);
580 if (channel->wrp == channel->rdp && !channel->running)
583 g_print ("wrp==rdp, !running\n");
584 UNLOCK (channel->mutex);
586 return G_IO_STATUS_EOF;
590 if (channel->rdp < channel->wrp)
591 nbytes = channel->wrp - channel->rdp;
593 nbytes = BUFFER_SIZE - channel->rdp;
594 UNLOCK (channel->mutex);
595 nbytes = MIN (left, nbytes);
597 g_print ("moving %d bytes from thread %#x\n",
598 nbytes, channel->thread_id);
599 memcpy (dest, channel->buffer + channel->rdp, nbytes);
602 LOCK (channel->mutex);
603 channel->rdp = (channel->rdp + nbytes) % BUFFER_SIZE;
605 g_print ("setting space_avail for thread %#x\n", channel->thread_id);
606 SetEvent (channel->space_avail_event);
608 g_print ("for thread %#x: rdp=%d, wrp=%d\n",
609 channel->thread_id, channel->rdp, channel->wrp);
610 if (channel->running && channel->wrp == channel->rdp)
613 g_print ("resetting data_avail of thread %#x\n",
615 ResetEvent (channel->data_avail_event);
617 UNLOCK (channel->mutex);
619 /* We have no way to indicate any errors form the actual
620 * read() or recv() call in the reader thread. Should we have?
622 *bytes_read = count - left;
623 return (*bytes_read > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
628 buffer_write (GIOWin32Channel *channel,
631 gsize *bytes_written,
637 LOCK (channel->mutex);
639 g_print ("buffer_write: writing to thread %#x %" G_GSIZE_FORMAT " bytes, rdp=%d, wrp=%d\n",
640 channel->thread_id, count, channel->rdp, channel->wrp);
642 if ((channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
646 g_print ("buffer_write: tid %#x: resetting data_avail\n",
648 ResetEvent (channel->data_avail_event);
650 g_print ("buffer_write: tid %#x: waiting for space\n",
652 UNLOCK (channel->mutex);
653 WaitForSingleObject (channel->data_avail_event, INFINITE);
654 LOCK (channel->mutex);
656 g_print ("buffer_write: tid %#x: rdp=%d, wrp=%d\n",
657 channel->thread_id, channel->rdp, channel->wrp);
660 nbytes = MIN ((channel->rdp + BUFFER_SIZE - channel->wrp - 1) % BUFFER_SIZE,
661 BUFFER_SIZE - channel->wrp);
663 UNLOCK (channel->mutex);
664 nbytes = MIN (left, nbytes);
666 g_print ("buffer_write: tid %#x: writing %d bytes\n",
667 channel->thread_id, nbytes);
668 memcpy (channel->buffer + channel->wrp, dest, nbytes);
671 LOCK (channel->mutex);
673 channel->wrp = (channel->wrp + nbytes) % BUFFER_SIZE;
675 g_print ("buffer_write: tid %#x: rdp=%d, wrp=%d, setting space_avail\n",
676 channel->thread_id, channel->rdp, channel->wrp);
677 SetEvent (channel->space_avail_event);
679 if ((channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
683 g_print ("buffer_write: tid %#x: resetting data_avail\n",
685 ResetEvent (channel->data_avail_event);
688 UNLOCK (channel->mutex);
690 /* We have no way to indicate any errors form the actual
691 * write() call in the writer thread. Should we have?
693 *bytes_written = count - left;
694 return (*bytes_written > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
699 g_io_win32_prepare (GSource *source,
702 GIOWin32Watch *watch = (GIOWin32Watch *)source;
703 GIOCondition buffer_condition = g_io_channel_get_buffer_condition (watch->channel);
704 GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
710 g_print ("g_io_win32_prepare: source=%p channel=%p", source, channel);
712 switch (channel->type)
714 case G_IO_WIN32_WINDOWS_MESSAGES:
719 case G_IO_WIN32_CONSOLE:
724 case G_IO_WIN32_FILE_DESC:
726 g_print (" FD thread=%#x buffer_condition:{%s}"
727 "\n watch->pollfd.events:{%s} watch->pollfd.revents:{%s} channel->revents:{%s}",
728 channel->thread_id, condition_to_string (buffer_condition),
729 condition_to_string (watch->pollfd.events),
730 condition_to_string (watch->pollfd.revents),
731 condition_to_string (channel->revents));
733 LOCK (channel->mutex);
734 if (channel->running)
736 if (channel->direction == 0 && channel->wrp == channel->rdp)
739 g_print ("\n setting revents=0");
740 channel->revents = 0;
745 if (channel->direction == 1
746 && (channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
749 g_print ("\n setting revents=0");
750 channel->revents = 0;
753 UNLOCK (channel->mutex);
756 case G_IO_WIN32_SOCKET:
760 if (watch->condition & G_IO_IN)
761 event_mask |= (FD_READ | FD_ACCEPT);
762 if (watch->condition & G_IO_OUT)
763 event_mask |= (FD_WRITE | FD_CONNECT);
764 event_mask |= FD_CLOSE;
766 if (channel->event_mask != event_mask)
769 g_print ("\n WSAEventSelect(%d,%p,{%s})",
770 channel->fd, (HANDLE) watch->pollfd.fd,
771 event_mask_to_string (event_mask));
772 if (WSAEventSelect (channel->fd, (HANDLE) watch->pollfd.fd,
773 event_mask) == SOCKET_ERROR)
775 channel->event_mask = event_mask;
778 g_print ("\n setting last_events=0");
779 channel->last_events = 0;
781 if ((event_mask & FD_WRITE) &&
782 channel->ever_writable &&
783 !channel->write_would_have_blocked)
786 g_print (" WSASetEvent(%p)", (WSAEVENT) watch->pollfd.fd);
787 WSASetEvent ((WSAEVENT) watch->pollfd.fd);
793 g_assert_not_reached ();
799 return ((watch->condition & buffer_condition) == watch->condition);
803 g_io_win32_check (GSource *source)
806 GIOWin32Watch *watch = (GIOWin32Watch *)source;
807 GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
808 GIOCondition buffer_condition = g_io_channel_get_buffer_condition (watch->channel);
809 WSANETWORKEVENTS events;
812 g_print ("g_io_win32_check: source=%p channel=%p", source, channel);
814 switch (channel->type)
816 case G_IO_WIN32_WINDOWS_MESSAGES:
819 return (PeekMessage (&msg, channel->hwnd, 0, 0, PM_NOREMOVE));
821 case G_IO_WIN32_FILE_DESC:
823 g_print (" FD thread=%#x buffer_condition=%s\n"
824 " watch->pollfd.events={%s} watch->pollfd.revents={%s} channel->revents={%s}\n",
825 channel->thread_id, condition_to_string (buffer_condition),
826 condition_to_string (watch->pollfd.events),
827 condition_to_string (watch->pollfd.revents),
828 condition_to_string (channel->revents));
830 watch->pollfd.revents = (watch->pollfd.events & channel->revents);
832 return ((watch->pollfd.revents | buffer_condition) & watch->condition);
834 case G_IO_WIN32_CONSOLE:
837 if (watch->channel->is_writeable)
839 else if (watch->channel->is_readable)
843 if (PeekConsoleInput ((HANDLE) watch->pollfd.fd, &buffer, 1, &n) &&
846 /* _kbhit() does quite complex processing to find out
847 * whether at least one of the key events pending corresponds
848 * to a "real" character that can be read.
853 /* Discard all other kinds of events */
854 ReadConsoleInput ((HANDLE) watch->pollfd.fd, &buffer, 1, &n);
859 case G_IO_WIN32_SOCKET:
862 if (channel->last_events & FD_WRITE)
865 g_print (" sock=%d event=%p last_events has FD_WRITE",
866 channel->fd, (HANDLE) watch->pollfd.fd);
870 WSAEnumNetworkEvents (channel->fd, 0, &events);
873 g_print ("\n revents={%s} condition={%s}"
874 "\n WSAEnumNetworkEvents(%d,0) sets events={%s}",
875 condition_to_string (watch->pollfd.revents),
876 condition_to_string (watch->condition),
878 event_mask_to_string (events.lNetworkEvents));
880 if (watch->pollfd.revents != 0 &&
881 events.lNetworkEvents == 0 &&
882 !(channel->event_mask & FD_WRITE))
884 channel->event_mask = 0;
886 g_print ("\n WSAEventSelect(%d,%p,{})",
887 channel->fd, (HANDLE) watch->pollfd.fd);
888 WSAEventSelect (channel->fd, (HANDLE) watch->pollfd.fd, 0);
890 g_print (" ResetEvent(%p)",
891 (HANDLE) watch->pollfd.fd);
892 ResetEvent ((HANDLE) watch->pollfd.fd);
894 else if (events.lNetworkEvents & FD_WRITE)
895 channel->ever_writable = TRUE;
896 channel->last_events = events.lNetworkEvents;
899 watch->pollfd.revents = 0;
900 if (channel->last_events & (FD_READ | FD_ACCEPT))
901 watch->pollfd.revents |= G_IO_IN;
903 if (channel->last_events & FD_WRITE)
904 watch->pollfd.revents |= G_IO_OUT;
907 /* We have called WSAEnumNetworkEvents() above but it didn't
910 if (events.lNetworkEvents & FD_CONNECT)
912 if (events.iErrorCode[FD_CONNECT_BIT] == 0)
913 watch->pollfd.revents |= G_IO_OUT;
915 watch->pollfd.revents |= (G_IO_HUP | G_IO_ERR);
917 if (watch->pollfd.revents == 0 && (channel->last_events & (FD_CLOSE)))
918 watch->pollfd.revents |= G_IO_HUP;
921 /* Regardless of WSAEnumNetworkEvents() result, if watching for
922 * writability, and if we have ever got a FD_WRITE event, and
923 * unless last write would have blocked, set G_IO_OUT. But never
924 * set both G_IO_OUT and G_IO_HUP.
926 if (!(watch->pollfd.revents & G_IO_HUP) &&
927 channel->ever_writable &&
928 !channel->write_would_have_blocked &&
929 (channel->event_mask & FD_WRITE))
930 watch->pollfd.revents |= G_IO_OUT;
933 g_print ("\n revents={%s} retval={%s}\n",
934 condition_to_string (watch->pollfd.revents),
935 condition_to_string ((watch->pollfd.revents | buffer_condition) & watch->condition));
937 return ((watch->pollfd.revents | buffer_condition) & watch->condition);
940 g_assert_not_reached ();
946 g_io_win32_dispatch (GSource *source,
947 GSourceFunc callback,
950 GIOFunc func = (GIOFunc)callback;
951 GIOWin32Watch *watch = (GIOWin32Watch *)source;
952 GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
953 GIOCondition buffer_condition = g_io_channel_get_buffer_condition (watch->channel);
957 g_warning ("IO Watch dispatched without callback\n"
958 "You must call g_source_connect().");
963 g_print ("g_io_win32_dispatch: pollfd.revents=%s condition=%s result=%s\n",
964 condition_to_string (watch->pollfd.revents),
965 condition_to_string (watch->condition),
966 condition_to_string ((watch->pollfd.revents | buffer_condition) & watch->condition));
968 return (*func) (watch->channel,
969 (watch->pollfd.revents | buffer_condition) & watch->condition,
974 g_io_win32_finalize (GSource *source)
976 GIOWin32Watch *watch = (GIOWin32Watch *)source;
977 GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
980 g_print ("g_io_win32_finalize: source=%p channel=%p", source, channel);
982 switch (channel->type)
984 case G_IO_WIN32_WINDOWS_MESSAGES:
989 case G_IO_WIN32_CONSOLE:
994 case G_IO_WIN32_FILE_DESC:
996 g_print (" FD thread=%#x", channel->thread_id);
999 case G_IO_WIN32_SOCKET:
1001 g_print (" SOCK sock=%d", channel->fd);
1005 g_assert_not_reached ();
1010 g_io_channel_unref (watch->channel);
1013 GSourceFuncs g_io_watch_funcs = {
1016 g_io_win32_dispatch,
1021 g_io_win32_msg_read (GIOChannel *channel,
1027 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1028 MSG msg; /* In case of alignment problems */
1030 if (count < sizeof (MSG))
1032 g_set_error_literal (err, G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_INVAL,
1033 "Incorrect message size"); /* Informative enough error message? */
1034 return G_IO_STATUS_ERROR;
1037 if (win32_channel->debug)
1038 g_print ("g_io_win32_msg_read: channel=%p hwnd=%p\n",
1039 channel, win32_channel->hwnd);
1040 if (!PeekMessage (&msg, win32_channel->hwnd, 0, 0, PM_REMOVE))
1041 return G_IO_STATUS_AGAIN;
1043 memmove (buf, &msg, sizeof (MSG));
1044 *bytes_read = sizeof (MSG);
1046 return G_IO_STATUS_NORMAL;
1050 g_io_win32_msg_write (GIOChannel *channel,
1053 gsize *bytes_written,
1056 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1059 if (count != sizeof (MSG))
1061 g_set_error_literal (err, G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_INVAL,
1062 "Incorrect message size"); /* Informative enough error message? */
1063 return G_IO_STATUS_ERROR;
1066 /* In case of alignment problems */
1067 memmove (&msg, buf, sizeof (MSG));
1068 if (!PostMessage (win32_channel->hwnd, msg.message, msg.wParam, msg.lParam))
1070 gchar *emsg = g_win32_error_message (GetLastError ());
1071 g_set_error_literal (err, G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, emsg);
1073 return G_IO_STATUS_ERROR;
1076 *bytes_written = sizeof (MSG);
1078 return G_IO_STATUS_NORMAL;
1082 g_io_win32_msg_close (GIOChannel *channel,
1085 /* Nothing to be done. Or should we set hwnd to some invalid value? */
1087 return G_IO_STATUS_NORMAL;
1091 g_io_win32_free (GIOChannel *channel)
1093 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1095 if (win32_channel->debug)
1096 g_print ("g_io_win32_free channel=%p fd=%d\n", channel, win32_channel->fd);
1098 if (win32_channel->data_avail_event)
1099 CloseHandle (win32_channel->data_avail_event);
1100 if (win32_channel->space_avail_event)
1101 CloseHandle (win32_channel->space_avail_event);
1102 if (win32_channel->type == G_IO_WIN32_SOCKET)
1103 WSAEventSelect (win32_channel->fd, NULL, 0);
1104 DeleteCriticalSection (&win32_channel->mutex);
1106 g_free (win32_channel->buffer);
1107 g_free (win32_channel);
1111 g_io_win32_msg_create_watch (GIOChannel *channel,
1112 GIOCondition condition)
1114 GIOWin32Watch *watch;
1117 source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1118 watch = (GIOWin32Watch *)source;
1120 watch->channel = channel;
1121 g_io_channel_ref (channel);
1123 watch->condition = condition;
1125 watch->pollfd.fd = (gintptr) G_WIN32_MSG_HANDLE;
1126 watch->pollfd.events = condition;
1128 g_source_add_poll (source, &watch->pollfd);
1134 g_io_win32_fd_and_console_read (GIOChannel *channel,
1140 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1143 if (win32_channel->debug)
1144 g_print ("g_io_win32_fd_read: fd=%d count=%" G_GSIZE_FORMAT "\n",
1145 win32_channel->fd, count);
1147 if (win32_channel->thread_id)
1149 return buffer_read (win32_channel, buf, count, bytes_read, err);
1152 result = read (win32_channel->fd, buf, count);
1154 if (win32_channel->debug)
1155 g_print ("g_io_win32_fd_read: read() => %d\n", result);
1165 return G_IO_STATUS_AGAIN;
1168 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1169 g_io_channel_error_from_errno (errno),
1170 g_strerror (errno));
1171 return G_IO_STATUS_ERROR;
1175 *bytes_read = result;
1177 return (result > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
1181 g_io_win32_fd_and_console_write (GIOChannel *channel,
1184 gsize *bytes_written,
1187 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1190 if (win32_channel->thread_id)
1192 return buffer_write (win32_channel, buf, count, bytes_written, err);
1195 result = write (win32_channel->fd, buf, count);
1196 if (win32_channel->debug)
1197 g_print ("g_io_win32_fd_write: fd=%d count=%" G_GSIZE_FORMAT " => %d\n",
1198 win32_channel->fd, count, result);
1208 return G_IO_STATUS_AGAIN;
1211 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1212 g_io_channel_error_from_errno (errno),
1213 g_strerror (errno));
1214 return G_IO_STATUS_ERROR;
1218 *bytes_written = result;
1220 return G_IO_STATUS_NORMAL;
1224 g_io_win32_fd_seek (GIOChannel *channel,
1229 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1246 whence = -1; /* Keep the compiler quiet */
1247 g_assert_not_reached ();
1251 tmp_offset = offset;
1252 if (tmp_offset != offset)
1254 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1255 g_io_channel_error_from_errno (EINVAL),
1256 g_strerror (EINVAL));
1257 return G_IO_STATUS_ERROR;
1260 result = lseek (win32_channel->fd, tmp_offset, whence);
1264 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1265 g_io_channel_error_from_errno (errno),
1266 g_strerror (errno));
1267 return G_IO_STATUS_ERROR;
1270 return G_IO_STATUS_NORMAL;
1274 g_io_win32_fd_close (GIOChannel *channel,
1277 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1279 if (win32_channel->debug)
1280 g_print ("g_io_win32_fd_close: thread=%#x: fd=%d\n",
1281 win32_channel->thread_id,
1283 LOCK (win32_channel->mutex);
1284 if (win32_channel->running)
1286 if (win32_channel->debug)
1287 g_print ("thread %#x: running, marking fd %d for later close\n",
1288 win32_channel->thread_id, win32_channel->fd);
1289 win32_channel->running = FALSE;
1290 win32_channel->needs_close = TRUE;
1291 if (win32_channel->direction == 0)
1292 SetEvent (win32_channel->data_avail_event);
1294 SetEvent (win32_channel->space_avail_event);
1298 if (win32_channel->debug)
1299 g_print ("closing fd %d\n", win32_channel->fd);
1300 close (win32_channel->fd);
1301 if (win32_channel->debug)
1302 g_print ("closed fd %d, setting to -1\n",
1304 win32_channel->fd = -1;
1306 UNLOCK (win32_channel->mutex);
1308 /* FIXME error detection? */
1310 return G_IO_STATUS_NORMAL;
1314 g_io_win32_fd_create_watch (GIOChannel *channel,
1315 GIOCondition condition)
1317 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1318 GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1319 GIOWin32Watch *watch = (GIOWin32Watch *)source;
1321 watch->channel = channel;
1322 g_io_channel_ref (channel);
1324 watch->condition = condition;
1326 if (win32_channel->data_avail_event == NULL)
1327 create_events (win32_channel);
1329 watch->pollfd.fd = (gintptr) win32_channel->data_avail_event;
1330 watch->pollfd.events = condition;
1332 if (win32_channel->debug)
1333 g_print ("g_io_win32_fd_create_watch: channel=%p fd=%d condition={%s} event=%p\n",
1334 channel, win32_channel->fd,
1335 condition_to_string (condition), (HANDLE) watch->pollfd.fd);
1337 LOCK (win32_channel->mutex);
1338 if (win32_channel->thread_id == 0)
1340 if (condition & G_IO_IN)
1341 create_thread (win32_channel, condition, read_thread);
1342 else if (condition & G_IO_OUT)
1343 create_thread (win32_channel, condition, write_thread);
1346 g_source_add_poll (source, &watch->pollfd);
1347 UNLOCK (win32_channel->mutex);
1353 g_io_win32_console_close (GIOChannel *channel,
1356 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1358 if (close (win32_channel->fd) < 0)
1360 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1361 g_io_channel_error_from_errno (errno),
1362 g_strerror (errno));
1363 return G_IO_STATUS_ERROR;
1366 return G_IO_STATUS_NORMAL;
1370 g_io_win32_console_create_watch (GIOChannel *channel,
1371 GIOCondition condition)
1373 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1374 GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1375 GIOWin32Watch *watch = (GIOWin32Watch *)source;
1377 watch->channel = channel;
1378 g_io_channel_ref (channel);
1380 watch->condition = condition;
1382 watch->pollfd.fd = _get_osfhandle (win32_channel->fd);
1383 watch->pollfd.events = condition;
1385 g_source_add_poll (source, &watch->pollfd);
1391 g_io_win32_sock_read (GIOChannel *channel,
1397 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1399 GIOChannelError error;
1402 if (win32_channel->debug)
1403 g_print ("g_io_win32_sock_read: channel=%p sock=%d count=%" G_GSIZE_FORMAT,
1404 channel, win32_channel->fd, count);
1406 result = recv (win32_channel->fd, buf, count, 0);
1407 if (result == SOCKET_ERROR)
1408 winsock_error = WSAGetLastError ();
1410 if (win32_channel->debug)
1411 g_print (" recv=%d", result);
1413 if (result == SOCKET_ERROR)
1415 gchar *emsg = g_win32_error_message (winsock_error);
1417 if (win32_channel->debug)
1418 g_print (" %s\n", emsg);
1422 switch (winsock_error)
1425 error = G_IO_CHANNEL_ERROR_INVAL;
1427 case WSAEWOULDBLOCK:
1429 return G_IO_STATUS_AGAIN;
1431 error = G_IO_CHANNEL_ERROR_FAILED;
1434 g_set_error_literal (err, G_IO_CHANNEL_ERROR, error, emsg);
1437 return G_IO_STATUS_ERROR;
1441 if (win32_channel->debug)
1443 *bytes_read = result;
1445 return G_IO_STATUS_EOF;
1447 return G_IO_STATUS_NORMAL;
1452 g_io_win32_sock_write (GIOChannel *channel,
1455 gsize *bytes_written,
1458 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1460 GIOChannelError error;
1463 if (win32_channel->debug)
1464 g_print ("g_io_win32_sock_write: channel=%p sock=%d count=%" G_GSIZE_FORMAT,
1465 channel, win32_channel->fd, count);
1467 result = send (win32_channel->fd, buf, count, 0);
1468 if (result == SOCKET_ERROR)
1469 winsock_error = WSAGetLastError ();
1471 if (win32_channel->debug)
1472 g_print (" send=%d", result);
1474 if (result == SOCKET_ERROR)
1476 gchar *emsg = g_win32_error_message (winsock_error);
1478 if (win32_channel->debug)
1479 g_print (" %s\n", emsg);
1483 switch (winsock_error)
1486 error = G_IO_CHANNEL_ERROR_INVAL;
1488 case WSAEWOULDBLOCK:
1489 win32_channel->write_would_have_blocked = TRUE;
1490 win32_channel->last_events = 0;
1492 return G_IO_STATUS_AGAIN;
1494 error = G_IO_CHANNEL_ERROR_FAILED;
1497 g_set_error_literal (err, G_IO_CHANNEL_ERROR, error, emsg);
1500 return G_IO_STATUS_ERROR;
1504 if (win32_channel->debug)
1506 *bytes_written = result;
1507 win32_channel->write_would_have_blocked = FALSE;
1509 return G_IO_STATUS_NORMAL;
1514 g_io_win32_sock_close (GIOChannel *channel,
1517 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1519 if (win32_channel->fd != -1)
1521 if (win32_channel->debug)
1522 g_print ("g_io_win32_sock_close: channel=%p sock=%d\n",
1523 channel, win32_channel->fd);
1525 closesocket (win32_channel->fd);
1526 win32_channel->fd = -1;
1529 /* FIXME error detection? */
1531 return G_IO_STATUS_NORMAL;
1535 g_io_win32_sock_create_watch (GIOChannel *channel,
1536 GIOCondition condition)
1538 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1539 GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1540 GIOWin32Watch *watch = (GIOWin32Watch *)source;
1542 watch->channel = channel;
1543 g_io_channel_ref (channel);
1545 watch->condition = condition;
1547 if (win32_channel->event == 0)
1548 win32_channel->event = WSACreateEvent ();
1550 watch->pollfd.fd = (gintptr) win32_channel->event;
1551 watch->pollfd.events = condition;
1553 if (win32_channel->debug)
1554 g_print ("g_io_win32_sock_create_watch: channel=%p sock=%d event=%p condition={%s}\n",
1555 channel, win32_channel->fd, (HANDLE) watch->pollfd.fd,
1556 condition_to_string (watch->condition));
1558 g_source_add_poll (source, &watch->pollfd);
1564 g_io_channel_new_file (const gchar *filename,
1568 int fid, flags, pmode;
1569 GIOChannel *channel;
1571 enum { /* Cheesy hack */
1578 g_return_val_if_fail (filename != NULL, NULL);
1579 g_return_val_if_fail (mode != NULL, NULL);
1580 g_return_val_if_fail ((error == NULL) || (*error == NULL), NULL);
1594 g_warning ("Invalid GIOFileMode %s.\n", mode);
1603 if (mode[2] == '\0')
1605 mode_num |= MODE_PLUS;
1610 g_warning ("Invalid GIOFileMode %s.\n", mode);
1621 flags = O_WRONLY | O_TRUNC | O_CREAT;
1625 flags = O_WRONLY | O_APPEND | O_CREAT;
1628 case MODE_R | MODE_PLUS:
1630 pmode = _S_IREAD | _S_IWRITE;
1632 case MODE_W | MODE_PLUS:
1633 flags = O_RDWR | O_TRUNC | O_CREAT;
1634 pmode = _S_IREAD | _S_IWRITE;
1636 case MODE_A | MODE_PLUS:
1637 flags = O_RDWR | O_APPEND | O_CREAT;
1638 pmode = _S_IREAD | _S_IWRITE;
1641 g_assert_not_reached ();
1645 /* always open 'untranslated' */
1646 fid = g_open (filename, flags | _O_BINARY, pmode);
1648 if (g_io_win32_get_debug_flag ())
1650 g_print ("g_io_channel_win32_new_file: open(\"%s\",", filename);
1651 g_win32_print_access_mode (flags|_O_BINARY);
1652 g_print (",%#o)=%d\n", pmode, fid);
1657 g_set_error_literal (error, G_FILE_ERROR,
1658 g_file_error_from_errno (errno),
1659 g_strerror (errno));
1660 return (GIOChannel *)NULL;
1663 channel = g_io_channel_win32_new_fd (fid);
1665 /* XXX: move this to g_io_channel_win32_new_fd () */
1666 channel->close_on_unref = TRUE;
1667 channel->is_seekable = TRUE;
1669 /* g_io_channel_win32_new_fd sets is_readable and is_writeable to
1670 * correspond to actual readability/writeability. Set to FALSE those
1671 * that mode doesn't allow
1676 channel->is_writeable = FALSE;
1680 channel->is_readable = FALSE;
1682 case MODE_R | MODE_PLUS:
1683 case MODE_W | MODE_PLUS:
1684 case MODE_A | MODE_PLUS:
1687 g_assert_not_reached ();
1694 #if !defined (_WIN64)
1696 #undef g_io_channel_new_file
1698 /* Binary compatibility version. Not for newly compiled code. */
1701 g_io_channel_new_file (const gchar *filename,
1705 gchar *utf8_filename = g_locale_to_utf8 (filename, -1, NULL, NULL, error);
1708 if (utf8_filename == NULL)
1711 retval = g_io_channel_new_file_utf8 (utf8_filename, mode, error);
1713 g_free (utf8_filename);
1721 g_io_win32_unimpl_set_flags (GIOChannel *channel,
1725 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1727 if (win32_channel->debug)
1729 g_print ("g_io_win32_unimpl_set_flags: ");
1730 g_win32_print_gioflags (flags);
1734 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1735 G_IO_CHANNEL_ERROR_FAILED,
1736 "Not implemented on Win32");
1738 return G_IO_STATUS_ERROR;
1742 g_io_win32_fd_get_flags_internal (GIOChannel *channel,
1745 GIOWin32Channel *win32_channel = (GIOWin32Channel *) channel;
1749 if (st->st_mode & _S_IFIFO)
1751 channel->is_readable =
1752 (PeekNamedPipe ((HANDLE) _get_osfhandle (win32_channel->fd), &c, 0, &count, NULL, NULL) != 0) || GetLastError () == ERROR_BROKEN_PIPE;
1753 channel->is_writeable =
1754 (WriteFile ((HANDLE) _get_osfhandle (win32_channel->fd), &c, 0, &count, NULL) != 0);
1755 channel->is_seekable = FALSE;
1759 channel->is_readable =
1760 (ReadFile ((HANDLE) _get_osfhandle (win32_channel->fd), &c, 0, &count, NULL) != 0);
1761 channel->is_writeable =
1762 (WriteFile ((HANDLE) _get_osfhandle (win32_channel->fd), &c, 0, &count, NULL) != 0);
1763 channel->is_seekable = TRUE;
1766 /* XXX: G_IO_FLAG_APPEND */
1767 /* XXX: G_IO_FLAG_NONBLOCK */
1773 g_io_win32_fd_get_flags (GIOChannel *channel)
1776 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1778 g_return_val_if_fail (win32_channel != NULL, 0);
1779 g_return_val_if_fail (win32_channel->type == G_IO_WIN32_FILE_DESC, 0);
1781 if (0 == fstat (win32_channel->fd, &st))
1782 return g_io_win32_fd_get_flags_internal (channel, &st);
1788 g_io_win32_console_get_flags_internal (GIOChannel *channel)
1790 GIOWin32Channel *win32_channel = (GIOWin32Channel *) channel;
1791 HANDLE handle = (HANDLE) _get_osfhandle (win32_channel->fd);
1794 INPUT_RECORD record;
1796 channel->is_readable = PeekConsoleInput (handle, &record, 1, &count);
1797 channel->is_writeable = WriteFile (handle, &c, 0, &count, NULL);
1798 channel->is_seekable = FALSE;
1804 g_io_win32_console_get_flags (GIOChannel *channel)
1806 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1808 g_return_val_if_fail (win32_channel != NULL, 0);
1809 g_return_val_if_fail (win32_channel->type == G_IO_WIN32_CONSOLE, 0);
1811 return g_io_win32_console_get_flags_internal (channel);
1815 g_io_win32_msg_get_flags (GIOChannel *channel)
1821 g_io_win32_sock_set_flags (GIOChannel *channel,
1825 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1828 if (win32_channel->debug)
1830 g_print ("g_io_win32_sock_set_flags: ");
1831 g_win32_print_gioflags (flags);
1835 if (flags & G_IO_FLAG_NONBLOCK)
1838 if (ioctlsocket (win32_channel->fd, FIONBIO, &arg) == SOCKET_ERROR)
1840 gchar *emsg = g_win32_error_message (WSAGetLastError ());
1842 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1843 G_IO_CHANNEL_ERROR_FAILED,
1847 return G_IO_STATUS_ERROR;
1853 if (ioctlsocket (win32_channel->fd, FIONBIO, &arg) == SOCKET_ERROR)
1855 gchar *emsg = g_win32_error_message (WSAGetLastError ());
1857 g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1858 G_IO_CHANNEL_ERROR_FAILED,
1862 return G_IO_STATUS_ERROR;
1866 return G_IO_STATUS_NORMAL;
1870 g_io_win32_sock_get_flags (GIOChannel *channel)
1872 /* Could we do something here? */
1876 static GIOFuncs win32_channel_msg_funcs = {
1877 g_io_win32_msg_read,
1878 g_io_win32_msg_write,
1880 g_io_win32_msg_close,
1881 g_io_win32_msg_create_watch,
1883 g_io_win32_unimpl_set_flags,
1884 g_io_win32_msg_get_flags,
1887 static GIOFuncs win32_channel_fd_funcs = {
1888 g_io_win32_fd_and_console_read,
1889 g_io_win32_fd_and_console_write,
1891 g_io_win32_fd_close,
1892 g_io_win32_fd_create_watch,
1894 g_io_win32_unimpl_set_flags,
1895 g_io_win32_fd_get_flags,
1898 static GIOFuncs win32_channel_console_funcs = {
1899 g_io_win32_fd_and_console_read,
1900 g_io_win32_fd_and_console_write,
1902 g_io_win32_console_close,
1903 g_io_win32_console_create_watch,
1905 g_io_win32_unimpl_set_flags,
1906 g_io_win32_console_get_flags,
1909 static GIOFuncs win32_channel_sock_funcs = {
1910 g_io_win32_sock_read,
1911 g_io_win32_sock_write,
1913 g_io_win32_sock_close,
1914 g_io_win32_sock_create_watch,
1916 g_io_win32_sock_set_flags,
1917 g_io_win32_sock_get_flags,
1921 #if GLIB_SIZEOF_VOID_P == 8
1922 g_io_channel_win32_new_messages (gsize hwnd)
1924 g_io_channel_win32_new_messages (guint hwnd)
1927 GIOWin32Channel *win32_channel = g_new (GIOWin32Channel, 1);
1928 GIOChannel *channel = (GIOChannel *)win32_channel;
1930 g_io_channel_init (channel);
1931 g_io_channel_win32_init (win32_channel);
1932 if (win32_channel->debug)
1933 g_print ("g_io_channel_win32_new_messages: channel=%p hwnd=%p\n",
1934 channel, (HWND) hwnd);
1935 channel->funcs = &win32_channel_msg_funcs;
1936 win32_channel->type = G_IO_WIN32_WINDOWS_MESSAGES;
1937 win32_channel->hwnd = (HWND) hwnd;
1939 /* XXX: check this. */
1940 channel->is_readable = IsWindow (win32_channel->hwnd);
1941 channel->is_writeable = IsWindow (win32_channel->hwnd);
1943 channel->is_seekable = FALSE;
1949 g_io_channel_win32_new_fd_internal (gint fd,
1952 GIOWin32Channel *win32_channel;
1953 GIOChannel *channel;
1955 win32_channel = g_new (GIOWin32Channel, 1);
1956 channel = (GIOChannel *)win32_channel;
1958 g_io_channel_init (channel);
1959 g_io_channel_win32_init (win32_channel);
1961 win32_channel->fd = fd;
1963 if (win32_channel->debug)
1964 g_print ("g_io_channel_win32_new_fd: channel=%p fd=%u\n",
1967 if (st->st_mode & _S_IFCHR) /* console */
1969 channel->funcs = &win32_channel_console_funcs;
1970 win32_channel->type = G_IO_WIN32_CONSOLE;
1971 g_io_win32_console_get_flags_internal (channel);
1975 channel->funcs = &win32_channel_fd_funcs;
1976 win32_channel->type = G_IO_WIN32_FILE_DESC;
1977 g_io_win32_fd_get_flags_internal (channel, st);
1984 g_io_channel_win32_new_fd (gint fd)
1988 if (fstat (fd, &st) == -1)
1990 g_warning ("g_io_channel_win32_new_fd: %d isn't an open file descriptor in the C library GLib uses.", fd);
1994 return g_io_channel_win32_new_fd_internal (fd, &st);
1998 g_io_channel_win32_get_fd (GIOChannel *channel)
2000 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2002 return win32_channel->fd;
2006 g_io_channel_win32_new_socket (int socket)
2008 GIOWin32Channel *win32_channel = g_new (GIOWin32Channel, 1);
2009 GIOChannel *channel = (GIOChannel *)win32_channel;
2011 g_io_channel_init (channel);
2012 g_io_channel_win32_init (win32_channel);
2013 if (win32_channel->debug)
2014 g_print ("g_io_channel_win32_new_socket: channel=%p sock=%d\n",
2016 channel->funcs = &win32_channel_sock_funcs;
2017 win32_channel->type = G_IO_WIN32_SOCKET;
2018 win32_channel->fd = socket;
2020 channel->is_readable = TRUE;
2021 channel->is_writeable = TRUE;
2022 channel->is_seekable = FALSE;
2028 g_io_channel_unix_new (gint fd)
2030 gboolean is_fd, is_socket;
2034 is_fd = (fstat (fd, &st) == 0);
2036 optlen = sizeof (optval);
2037 is_socket = (getsockopt (fd, SOL_SOCKET, SO_TYPE, (char *) &optval, &optlen) != SOCKET_ERROR);
2039 if (is_fd && is_socket)
2040 g_warning ("g_io_channel_unix_new: %d is both a file descriptor and a socket. File descriptor interpretation assumed. To avoid ambiguity, call either g_io_channel_win32_new_fd() or g_io_channel_win32_new_socket() instead.", fd);
2043 return g_io_channel_win32_new_fd_internal (fd, &st);
2046 return g_io_channel_win32_new_socket(fd);
2048 g_warning ("g_io_channel_unix_new: %d is neither a file descriptor or a socket.", fd);
2054 g_io_channel_unix_get_fd (GIOChannel *channel)
2056 return g_io_channel_win32_get_fd (channel);
2060 g_io_channel_win32_set_debug (GIOChannel *channel,
2063 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2065 win32_channel->debug = flag;
2069 g_io_channel_win32_poll (GPollFD *fds,
2075 g_return_val_if_fail (n_fds >= 0, 0);
2077 result = (*g_main_context_get_poll_func (NULL)) (fds, n_fds, timeout);
2083 g_io_channel_win32_make_pollfd (GIOChannel *channel,
2084 GIOCondition condition,
2087 GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2089 switch (win32_channel->type)
2091 case G_IO_WIN32_FILE_DESC:
2092 if (win32_channel->data_avail_event == NULL)
2093 create_events (win32_channel);
2095 fd->fd = (gintptr) win32_channel->data_avail_event;
2097 if (win32_channel->thread_id == 0)
2099 /* Is it meaningful for a file descriptor to be polled for
2100 * both IN and OUT? For what kind of file descriptor would
2101 * that be? Doesn't seem to make sense, in practise the file
2102 * descriptors handled here are always read or write ends of
2103 * pipes surely, and thus unidirectional.
2105 if (condition & G_IO_IN)
2106 create_thread (win32_channel, condition, read_thread);
2107 else if (condition & G_IO_OUT)
2108 create_thread (win32_channel, condition, write_thread);
2112 case G_IO_WIN32_CONSOLE:
2113 fd->fd = _get_osfhandle (win32_channel->fd);
2116 case G_IO_WIN32_SOCKET:
2117 fd->fd = (gintptr) WSACreateEvent ();
2120 case G_IO_WIN32_WINDOWS_MESSAGES:
2121 fd->fd = G_WIN32_MSG_HANDLE;
2125 g_assert_not_reached ();
2129 fd->events = condition;
2134 /* Binary compatibility */
2136 g_io_channel_win32_new_stream_socket (int socket)
2138 return g_io_channel_win32_new_socket (socket);
2143 #define __G_IO_WIN32_C__
2144 #include "galiasdef.c"