aba51ec503b858b3c3ca8e3f95cd9251b43ce4a5
[platform/upstream/glib.git] / glib / giowin32.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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
8  *
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.
13  *
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.
18  *
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.
23  */
24
25 /*
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/.
30  */
31
32 /*
33  * Bugs that are related to the code in this file:
34  *
35  * Bug 137968 - Sometimes a GIOFunc on Win32 is called with zero condition
36  * http://bugzilla.gnome.org/show_bug.cgi?id=137968
37  *
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
40  *
41  * Bug 331214 - g_io_channel async socket io stalls
42  * http://bugzilla.gnome.org/show_bug.cgi?id=331214
43  *
44  * Bug 338943 - Multiple watches on the same socket
45  * http://bugzilla.gnome.org/show_bug.cgi?id=338943
46  *
47  * Bug 357674 - 2 serious bugs in giowin32.c making glib iochannels useless
48  * http://bugzilla.gnome.org/show_bug.cgi?id=357674
49  *
50  * Bug 425156 - GIOChannel deadlocks on a win32 socket
51  * http://bugzilla.gnome.org/show_bug.cgi?id=425156
52  *
53  * Bug 468910 - giofunc condition=0
54  * http://bugzilla.gnome.org/show_bug.cgi?id=468910
55  *
56  * Bug 500246 - Bug fixes for giowin32
57  * http://bugzilla.gnome.org/show_bug.cgi?id=500246
58  *
59  * Bug 548278 - Async GETs connections are always terminated unexpectedly on windows
60  * http://bugzilla.gnome.org/show_bug.cgi?id=548278
61  *
62  * Bug 548536 - giowin32 problem when adding and removing watches
63  * http://bugzilla.gnome.org/show_bug.cgi?id=548536
64  *
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.
68  */
69
70 #include "config.h"
71
72 #include "glib.h"
73
74 #include <stdlib.h>
75 #include <winsock2.h>
76 #include <windows.h>
77 #include <conio.h>
78 #include <fcntl.h>
79 #include <io.h>
80 #include <process.h>
81 #include <errno.h>
82 #include <sys/stat.h>
83
84 #include "gstdio.h"
85 #include "glibintl.h"
86
87 #include "galias.h"
88
89 typedef struct _GIOWin32Channel GIOWin32Channel;
90 typedef struct _GIOWin32Watch GIOWin32Watch;
91
92 #define BUFFER_SIZE 4096
93
94 typedef enum {
95   G_IO_WIN32_WINDOWS_MESSAGES,  /* Windows messages */
96
97   G_IO_WIN32_FILE_DESC,         /* Unix-like file descriptors from
98                                  * _open() or _pipe(), except for
99                                  * console IO. Separate thread to read
100                                  * or write.
101                                  */
102
103   G_IO_WIN32_CONSOLE,           /* Console IO (usually stdin, stdout, stderr) */
104
105   G_IO_WIN32_SOCKET             /* Sockets. No separate thread. */
106 } GIOWin32ChannelType;
107
108 struct _GIOWin32Channel {
109   GIOChannel channel;
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.
113                                  */
114   GIOWin32ChannelType type;
115   
116   gboolean debug;
117
118   /* Field used by G_IO_WIN32_WINDOWS_MESSAGES channels */
119   HWND hwnd;                    /* Handle of window, or NULL */
120   
121   /* Fields used by G_IO_WIN32_FILE_DESC channels. */
122   CRITICAL_SECTION mutex;
123
124   int direction;                /* 0 means we read from it,
125                                  * 1 means we write to it.
126                                  */
127
128   gboolean running;             /* Is reader or writer thread
129                                  * running. FALSE if EOF has been
130                                  * reached by the reader thread.
131                                  */
132
133   gboolean needs_close;         /* If the channel has been closed while
134                                  * the reader thread was still running.
135                                  */
136
137   guint thread_id;              /* If non-NULL the channel has or has
138                                  * had a reader or writer thread.
139                                  */
140   HANDLE data_avail_event;
141
142   gushort revents;
143
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.
147    *
148    * Data available is between indexes rdp and wrp-1 (modulo BUFFER_SIZE).
149    *
150    * Empty:    wrp == rdp
151    * Full:     (wrp + 1) % BUFFER_SIZE == rdp
152    * Partial:  otherwise
153    */
154   guchar *buffer;               /* (Circular) buffer */
155   gint wrp, rdp;                /* Buffer indices for writing and reading */
156   HANDLE space_avail_event;
157
158   /* Fields used by G_IO_WIN32_SOCKET channels */
159   int event_mask;
160   int last_events;
161   HANDLE event;
162   gboolean write_would_have_blocked;
163   gboolean ever_writable;
164 };
165
166 #define LOCK(mutex) EnterCriticalSection (&mutex)
167 #define UNLOCK(mutex) LeaveCriticalSection (&mutex)
168
169 struct _GIOWin32Watch {
170   GSource       source;
171   GPollFD       pollfd;
172   GIOChannel   *channel;
173   GIOCondition  condition;
174 };
175
176 static void
177 g_win32_print_access_mode (int flags)
178 {
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" : ""));
192 }
193
194 static void
195 g_win32_print_gioflags (GIOFlags flags)
196 {
197   char *bar = "";
198
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 = "|";
209 }
210
211 static const char *
212 event_mask_to_string (int mask)
213 {
214   char buf[100];
215   int checked_bits = 0;
216   char *bufp = buf;
217
218   if (mask == 0)
219     return "";
220
221 #define BIT(n) checked_bits |= FD_##n; if (mask & FD_##n) bufp += sprintf (bufp, "%s" #n, (bufp>buf ? "|" : ""))
222
223   BIT (READ);
224   BIT (WRITE);
225   BIT (OOB);
226   BIT (ACCEPT);
227   BIT (CONNECT);
228   BIT (CLOSE);
229   BIT (QOS);
230   BIT (GROUP_QOS);
231   BIT (ROUTING_INTERFACE_CHANGE);
232   BIT (ADDRESS_LIST_CHANGE);
233   
234 #undef BIT
235
236   if ((mask & ~checked_bits) != 0)
237           bufp += sprintf (bufp, "|%#x", mask & ~checked_bits);
238   
239   return g_quark_to_string (g_quark_from_string (buf));
240 }
241
242 static const char *
243 condition_to_string (GIOCondition condition)
244 {
245   char buf[100];
246   int checked_bits = 0;
247   char *bufp = buf;
248
249   if (condition == 0)
250     return "";
251
252 #define BIT(n) checked_bits |= G_IO_##n; if (condition & G_IO_##n) bufp += sprintf (bufp, "%s" #n, (bufp>buf ? "|" : ""))
253
254   BIT (IN);
255   BIT (OUT);
256   BIT (PRI);
257   BIT (ERR);
258   BIT (HUP);
259   BIT (NVAL);
260   
261 #undef BIT
262
263   if ((condition & ~checked_bits) != 0)
264           bufp += sprintf (bufp, "|%#x", condition & ~checked_bits);
265   
266   return g_quark_to_string (g_quark_from_string (buf));
267 }
268
269 static gboolean
270 g_io_win32_get_debug_flag (void)
271 {
272   return (getenv ("G_IO_WIN32_DEBUG") != NULL);
273 }
274
275 static void
276 g_io_channel_win32_init (GIOWin32Channel *channel)
277 {
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);
292 }
293
294 static void
295 create_events (GIOWin32Channel *channel)
296 {
297   SECURITY_ATTRIBUTES sec_attrs;
298   
299   sec_attrs.nLength = sizeof (SECURITY_ATTRIBUTES);
300   sec_attrs.lpSecurityDescriptor = NULL;
301   sec_attrs.bInheritHandle = FALSE;
302
303   /* The data available event is manual reset, the space available event
304    * is automatic reset.
305    */
306   if (!(channel->data_avail_event = CreateEvent (&sec_attrs, TRUE, FALSE, NULL))
307       || !(channel->space_avail_event = CreateEvent (&sec_attrs, FALSE, FALSE, NULL)))
308     {
309       gchar *emsg = g_win32_error_message (GetLastError ());
310       g_error ("Error creating event: %s", emsg);
311       g_free (emsg);
312     }
313 }
314
315 static unsigned __stdcall
316 read_thread (void *parameter)
317 {
318   GIOWin32Channel *channel = parameter;
319   guchar *buffer;
320   gint nbytes;
321
322   g_io_channel_ref ((GIOChannel *)channel);
323
324   if (channel->debug)
325     g_print ("read_thread %#x: start fd=%d, data_avail=%p space_avail=%p\n",
326              channel->thread_id,
327              channel->fd,
328              channel->data_avail_event,
329              channel->space_avail_event);
330
331   channel->direction = 0;
332   channel->buffer = g_malloc (BUFFER_SIZE);
333   channel->rdp = channel->wrp = 0;
334   channel->running = TRUE;
335
336   SetEvent (channel->space_avail_event);
337   
338   LOCK (channel->mutex);
339   while (channel->running)
340     {
341       if (channel->debug)
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)
345         {
346           /* Buffer is full */
347           if (channel->debug)
348             g_print ("read_thread %#x: resetting space_avail\n",
349                      channel->thread_id);
350           ResetEvent (channel->space_avail_event);
351           if (channel->debug)
352             g_print ("read_thread %#x: waiting for space\n",
353                      channel->thread_id);
354           UNLOCK (channel->mutex);
355           WaitForSingleObject (channel->space_avail_event, INFINITE);
356           LOCK (channel->mutex);
357           if (channel->debug)
358             g_print ("read_thread %#x: rdp=%d, wrp=%d\n",
359                      channel->thread_id, channel->rdp, channel->wrp);
360         }
361       
362       buffer = channel->buffer + channel->wrp;
363       
364       /* Always leave at least one byte unused gap to be able to
365        * distinguish between the full and empty condition...
366        */
367       nbytes = MIN ((channel->rdp + BUFFER_SIZE - channel->wrp - 1) % BUFFER_SIZE,
368                     BUFFER_SIZE - channel->wrp);
369
370       if (channel->debug)
371         g_print ("read_thread %#x: calling read() for %d bytes\n",
372                  channel->thread_id, nbytes);
373
374       UNLOCK (channel->mutex);
375
376       nbytes = read (channel->fd, buffer, nbytes);
377       
378       LOCK (channel->mutex);
379
380       channel->revents = G_IO_IN;
381       if (nbytes == 0)
382         channel->revents |= G_IO_HUP;
383       else if (nbytes < 0)
384         channel->revents |= G_IO_ERR;
385
386       if (channel->debug)
387         g_print ("read_thread %#x: read() returned %d, rdp=%d, wrp=%d\n",
388                  channel->thread_id, nbytes, channel->rdp, channel->wrp);
389
390       if (nbytes <= 0)
391         break;
392
393       channel->wrp = (channel->wrp + nbytes) % BUFFER_SIZE;
394       if (channel->debug)
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);
398     }
399   
400   channel->running = FALSE;
401   if (channel->needs_close)
402     {
403       if (channel->debug)
404         g_print ("read_thread %#x: channel fd %d needs closing\n",
405                  channel->thread_id, channel->fd);
406       close (channel->fd);
407       channel->fd = -1;
408     }
409
410   if (channel->debug)
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);
415   
416   g_io_channel_unref ((GIOChannel *)channel);
417   
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.
421    */
422
423   return 0;
424 }
425
426 static unsigned __stdcall
427 write_thread (void *parameter)
428 {
429   GIOWin32Channel *channel = parameter;
430   guchar *buffer;
431   gint nbytes;
432
433   g_io_channel_ref ((GIOChannel *)channel);
434
435   if (channel->debug)
436     g_print ("write_thread %#x: start fd=%d, data_avail=%p space_avail=%p\n",
437              channel->thread_id,
438              channel->fd,
439              channel->data_avail_event,
440              channel->space_avail_event);
441   
442   channel->direction = 1;
443   channel->buffer = g_malloc (BUFFER_SIZE);
444   channel->rdp = channel->wrp = 0;
445   channel->running = TRUE;
446
447   SetEvent (channel->space_avail_event);
448
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
452    * write buffer.
453    */
454
455   LOCK (channel->mutex);
456   while (channel->running || channel->rdp != channel->wrp)
457     {
458       if (channel->debug)
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)
462         {
463           /* Buffer is empty. */
464           if (channel->debug)
465             g_print ("write_thread %#x: resetting space_avail\n",
466                      channel->thread_id);
467           ResetEvent (channel->space_avail_event);
468           if (channel->debug)
469             g_print ("write_thread %#x: waiting for data\n",
470                      channel->thread_id);
471           channel->revents = G_IO_OUT;
472           SetEvent (channel->data_avail_event);
473           UNLOCK (channel->mutex);
474           WaitForSingleObject (channel->space_avail_event, INFINITE);
475
476           LOCK (channel->mutex);
477           if (channel->rdp == channel->wrp)
478             break;
479
480           if (channel->debug)
481             g_print ("write_thread %#x: rdp=%d, wrp=%d\n",
482                      channel->thread_id, channel->rdp, channel->wrp);
483         }
484       
485       buffer = channel->buffer + channel->rdp;
486       if (channel->rdp < channel->wrp)
487         nbytes = channel->wrp - channel->rdp;
488       else
489         nbytes = BUFFER_SIZE - channel->rdp;
490
491       if (channel->debug)
492         g_print ("write_thread %#x: calling write() for %d bytes\n",
493                  channel->thread_id, nbytes);
494
495       UNLOCK (channel->mutex);
496       nbytes = write (channel->fd, buffer, nbytes);
497       LOCK (channel->mutex);
498
499       if (channel->debug)
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);
502
503       channel->revents = 0;
504       if (nbytes > 0)
505         channel->revents |= G_IO_OUT;
506       else if (nbytes <= 0)
507         channel->revents |= G_IO_ERR;
508
509       channel->rdp = (channel->rdp + nbytes) % BUFFER_SIZE;
510
511       if (nbytes <= 0)
512         break;
513
514       if (channel->debug)
515         g_print ("write_thread: setting data_avail for thread %#x\n",
516                  channel->thread_id);
517       SetEvent (channel->data_avail_event);
518     }
519   
520   channel->running = FALSE;
521   if (channel->needs_close)
522     {
523       if (channel->debug)
524         g_print ("write_thread %#x: channel fd %d needs closing\n",
525                  channel->thread_id, channel->fd);
526       close (channel->fd);
527       channel->fd = -1;
528     }
529
530   UNLOCK (channel->mutex);
531   
532   g_io_channel_unref ((GIOChannel *)channel);
533   
534   return 0;
535 }
536
537 static void
538 create_thread (GIOWin32Channel     *channel,
539                GIOCondition         condition,
540                unsigned (__stdcall *thread) (void *parameter))
541 {
542   HANDLE thread_handle;
543
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.",
548                g_strerror (errno));
549   else if (!CloseHandle (thread_handle))
550     g_warning ("Error closing thread handle: %s.\n",
551                g_win32_error_message (GetLastError ()));
552
553   WaitForSingleObject (channel->space_avail_event, INFINITE);
554 }
555
556 static GIOStatus
557 buffer_read (GIOWin32Channel *channel,
558              gchar           *dest,
559              gsize            count,
560              gsize           *bytes_read,
561              GError         **err)
562 {
563   guint nbytes;
564   guint left = count;
565   
566   LOCK (channel->mutex);
567   if (channel->debug)
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);
570   
571   if (channel->wrp == channel->rdp)
572     {
573       UNLOCK (channel->mutex);
574       if (channel->debug)
575         g_print ("waiting for data from thread %#x\n", channel->thread_id);
576       WaitForSingleObject (channel->data_avail_event, INFINITE);
577       if (channel->debug)
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)
581         {
582           if (channel->debug)
583             g_print ("wrp==rdp, !running\n");
584           UNLOCK (channel->mutex);
585           *bytes_read = 0;
586           return G_IO_STATUS_EOF;
587         }
588     }
589   
590   if (channel->rdp < channel->wrp)
591     nbytes = channel->wrp - channel->rdp;
592   else
593     nbytes = BUFFER_SIZE - channel->rdp;
594   UNLOCK (channel->mutex);
595   nbytes = MIN (left, nbytes);
596   if (channel->debug)
597     g_print ("moving %d bytes from thread %#x\n",
598              nbytes, channel->thread_id);
599   memcpy (dest, channel->buffer + channel->rdp, nbytes);
600   dest += nbytes;
601   left -= nbytes;
602   LOCK (channel->mutex);
603   channel->rdp = (channel->rdp + nbytes) % BUFFER_SIZE;
604   if (channel->debug)
605     g_print ("setting space_avail for thread %#x\n", channel->thread_id);
606   SetEvent (channel->space_avail_event);
607   if (channel->debug)
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)
611     {
612       if (channel->debug)
613         g_print ("resetting data_avail of thread %#x\n",
614                  channel->thread_id);
615       ResetEvent (channel->data_avail_event);
616     };
617   UNLOCK (channel->mutex);
618   
619   /* We have no way to indicate any errors form the actual
620    * read() or recv() call in the reader thread. Should we have?
621    */
622   *bytes_read = count - left;
623   return (*bytes_read > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
624 }
625
626
627 static GIOStatus
628 buffer_write (GIOWin32Channel *channel,
629               const gchar     *dest,
630               gsize            count,
631               gsize           *bytes_written,
632               GError         **err)
633 {
634   guint nbytes;
635   guint left = count;
636   
637   LOCK (channel->mutex);
638   if (channel->debug)
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);
641   
642   if ((channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
643     {
644       /* Buffer is full */
645       if (channel->debug)
646         g_print ("buffer_write: tid %#x: resetting data_avail\n",
647                  channel->thread_id);
648       ResetEvent (channel->data_avail_event);
649       if (channel->debug)
650         g_print ("buffer_write: tid %#x: waiting for space\n",
651                  channel->thread_id);
652       UNLOCK (channel->mutex);
653       WaitForSingleObject (channel->data_avail_event, INFINITE);
654       LOCK (channel->mutex);
655       if (channel->debug)
656         g_print ("buffer_write: tid %#x: rdp=%d, wrp=%d\n",
657                  channel->thread_id, channel->rdp, channel->wrp);
658     }
659    
660   nbytes = MIN ((channel->rdp + BUFFER_SIZE - channel->wrp - 1) % BUFFER_SIZE,
661                 BUFFER_SIZE - channel->wrp);
662
663   UNLOCK (channel->mutex);
664   nbytes = MIN (left, nbytes);
665   if (channel->debug)
666     g_print ("buffer_write: tid %#x: writing %d bytes\n",
667              channel->thread_id, nbytes);
668   memcpy (channel->buffer + channel->wrp, dest, nbytes);
669   dest += nbytes;
670   left -= nbytes;
671   LOCK (channel->mutex);
672
673   channel->wrp = (channel->wrp + nbytes) % BUFFER_SIZE;
674   if (channel->debug)
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);
678
679   if ((channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
680     {
681       /* Buffer is full */
682       if (channel->debug)
683         g_print ("buffer_write: tid %#x: resetting data_avail\n",
684                  channel->thread_id);
685       ResetEvent (channel->data_avail_event);
686     }
687
688   UNLOCK (channel->mutex);
689   
690   /* We have no way to indicate any errors form the actual
691    * write() call in the writer thread. Should we have?
692    */
693   *bytes_written = count - left;
694   return (*bytes_written > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
695 }
696
697
698 static gboolean
699 g_io_win32_prepare (GSource *source,
700                     gint    *timeout)
701 {
702   GIOWin32Watch *watch = (GIOWin32Watch *)source;
703   GIOCondition buffer_condition = g_io_channel_get_buffer_condition (watch->channel);
704   GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
705   int event_mask;
706   
707   *timeout = -1;
708   
709   if (channel->debug)
710     g_print ("g_io_win32_prepare: source=%p channel=%p", source, channel);
711
712   switch (channel->type)
713     {
714     case G_IO_WIN32_WINDOWS_MESSAGES:
715       if (channel->debug)
716         g_print (" MSG");
717       break;
718
719     case G_IO_WIN32_CONSOLE:
720       if (channel->debug)
721         g_print (" CON");
722       break;
723
724     case G_IO_WIN32_FILE_DESC:
725       if (channel->debug)
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));
732       
733       LOCK (channel->mutex);
734       if (channel->running)
735         {
736           if (channel->direction == 0 && channel->wrp == channel->rdp)
737             {
738               if (channel->debug)
739                 g_print ("\n  setting revents=0");
740               channel->revents = 0;
741             }
742         }
743       else
744         {
745           if (channel->direction == 1
746               && (channel->wrp + 1) % BUFFER_SIZE == channel->rdp)
747             {
748               if (channel->debug)
749                 g_print ("\n setting revents=0");
750               channel->revents = 0;
751             }
752         }         
753       UNLOCK (channel->mutex);
754       break;
755
756     case G_IO_WIN32_SOCKET:
757       if (channel->debug)
758         g_print (" SOCK");
759       event_mask = 0;
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;
765
766       if (channel->event_mask != event_mask)
767         {
768           if (channel->debug)
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)
774             ;                   /* What? */
775           channel->event_mask = event_mask;
776
777           if (channel->debug)
778             g_print ("\n  setting last_events=0");
779           channel->last_events = 0;
780
781           if ((event_mask & FD_WRITE) &&
782               channel->ever_writable &&
783               !channel->write_would_have_blocked)
784             {
785               if (channel->debug)
786                 g_print (" WSASetEvent(%p)", (WSAEVENT) watch->pollfd.fd);
787               WSASetEvent ((WSAEVENT) watch->pollfd.fd);
788             }
789         }
790       break;
791
792     default:
793       g_assert_not_reached ();
794       abort ();
795     }
796   if (channel->debug)
797     g_print ("\n");
798
799   return ((watch->condition & buffer_condition) == watch->condition);
800 }
801
802 static gboolean
803 g_io_win32_check (GSource *source)
804 {
805   MSG msg;
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;
810
811   if (channel->debug)
812     g_print ("g_io_win32_check: source=%p channel=%p", source, channel);
813
814   switch (channel->type)
815     {
816     case G_IO_WIN32_WINDOWS_MESSAGES:
817       if (channel->debug)
818         g_print (" MSG\n");
819       return (PeekMessage (&msg, channel->hwnd, 0, 0, PM_NOREMOVE));
820
821     case G_IO_WIN32_FILE_DESC:
822       if (channel->debug)
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));
829       
830       watch->pollfd.revents = (watch->pollfd.events & channel->revents);
831
832       return ((watch->pollfd.revents | buffer_condition) & watch->condition);
833
834     case G_IO_WIN32_CONSOLE:
835       if (channel->debug)
836         g_print (" CON\n");
837       if (watch->channel->is_writeable)
838         return TRUE;
839       else if (watch->channel->is_readable)
840         {
841           INPUT_RECORD buffer;
842           DWORD n;
843           if (PeekConsoleInput ((HANDLE) watch->pollfd.fd, &buffer, 1, &n) &&
844               n == 1)
845             {
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.
849                */
850               if (_kbhit ())
851                 return TRUE;
852               
853               /* Discard all other kinds of events */
854               ReadConsoleInput ((HANDLE) watch->pollfd.fd, &buffer, 1, &n);
855             }
856         }
857       return FALSE;
858
859     case G_IO_WIN32_SOCKET:
860       if (channel->debug)
861         g_print (" SOCK");
862       if (channel->last_events & FD_WRITE)
863         {
864           if (channel->debug)
865             g_print (" sock=%d event=%p last_events has FD_WRITE",
866                      channel->fd, (HANDLE) watch->pollfd.fd);
867         }
868       else
869         {
870           WSAEnumNetworkEvents (channel->fd, 0, &events);
871
872           if (channel->debug)
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),
877                      channel->fd, 
878                      event_mask_to_string (events.lNetworkEvents));
879           
880           if (watch->pollfd.revents != 0 &&
881               events.lNetworkEvents == 0 &&
882               !(channel->event_mask & FD_WRITE))
883             {
884               channel->event_mask = 0;
885               if (channel->debug)
886                 g_print ("\n  WSAEventSelect(%d,%p,{})",
887                          channel->fd, (HANDLE) watch->pollfd.fd);
888               WSAEventSelect (channel->fd, (HANDLE) watch->pollfd.fd, 0);
889               if (channel->debug)
890                 g_print ("  ResetEvent(%p)",
891                          (HANDLE) watch->pollfd.fd);
892               ResetEvent ((HANDLE) watch->pollfd.fd);
893             }
894           else if (events.lNetworkEvents & FD_WRITE)
895             channel->ever_writable = TRUE;
896           channel->last_events = events.lNetworkEvents;
897         }
898
899       watch->pollfd.revents = 0;
900       if (channel->last_events & (FD_READ | FD_ACCEPT))
901         watch->pollfd.revents |= G_IO_IN;
902
903       if (channel->last_events & FD_WRITE)
904         watch->pollfd.revents |= G_IO_OUT;
905       else
906         {
907           /* We have called WSAEnumNetworkEvents() above but it didn't
908            * set FD_WRITE.
909            */
910           if (events.lNetworkEvents & FD_CONNECT)
911             {
912               if (events.iErrorCode[FD_CONNECT_BIT] == 0)
913                 watch->pollfd.revents |= G_IO_OUT;
914               else
915                 watch->pollfd.revents |= (G_IO_HUP | G_IO_ERR);
916             }
917           if (watch->pollfd.revents == 0 && (channel->last_events & (FD_CLOSE)))
918             watch->pollfd.revents |= G_IO_HUP;
919         }
920
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.
925        */
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;
931
932       if (channel->debug)
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));
936
937       return ((watch->pollfd.revents | buffer_condition) & watch->condition);
938
939     default:
940       g_assert_not_reached ();
941       abort ();
942     }
943 }
944
945 static gboolean
946 g_io_win32_dispatch (GSource     *source,
947                      GSourceFunc  callback,
948                      gpointer     user_data)
949 {
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);
954   
955   if (!func)
956     {
957       g_warning ("IO Watch dispatched without callback\n"
958                  "You must call g_source_connect().");
959       return FALSE;
960     }
961   
962   if (channel->debug)
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));
967
968   return (*func) (watch->channel,
969                   (watch->pollfd.revents | buffer_condition) & watch->condition,
970                   user_data);
971 }
972
973 static void
974 g_io_win32_finalize (GSource *source)
975 {
976   GIOWin32Watch *watch = (GIOWin32Watch *)source;
977   GIOWin32Channel *channel = (GIOWin32Channel *)watch->channel;
978   
979   if (channel->debug)
980     g_print ("g_io_win32_finalize: source=%p channel=%p", source, channel);
981
982   switch (channel->type)
983     {
984     case G_IO_WIN32_WINDOWS_MESSAGES:
985       if (channel->debug)
986         g_print (" MSG");
987       break;
988
989     case G_IO_WIN32_CONSOLE:
990       if (channel->debug)
991         g_print (" CON");
992       break;
993
994     case G_IO_WIN32_FILE_DESC:
995       if (channel->debug)
996         g_print (" FD thread=%#x", channel->thread_id);
997       break;
998
999     case G_IO_WIN32_SOCKET:
1000       if (channel->debug)
1001         g_print (" SOCK sock=%d", channel->fd);
1002       break;
1003
1004     default:
1005       g_assert_not_reached ();
1006       abort ();
1007     }
1008   if (channel->debug)
1009     g_print ("\n");
1010   g_io_channel_unref (watch->channel);
1011 }
1012
1013 GSourceFuncs g_io_watch_funcs = {
1014   g_io_win32_prepare,
1015   g_io_win32_check,
1016   g_io_win32_dispatch,
1017   g_io_win32_finalize
1018 };
1019
1020 static GIOStatus
1021 g_io_win32_msg_read (GIOChannel *channel,
1022                      gchar      *buf,
1023                      gsize       count,
1024                      gsize      *bytes_read,
1025                      GError    **err)
1026 {
1027   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1028   MSG msg;               /* In case of alignment problems */
1029   
1030   if (count < sizeof (MSG))
1031     {
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;
1035     }
1036   
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;
1042
1043   memmove (buf, &msg, sizeof (MSG));
1044   *bytes_read = sizeof (MSG);
1045
1046   return G_IO_STATUS_NORMAL;
1047 }
1048
1049 static GIOStatus
1050 g_io_win32_msg_write (GIOChannel  *channel,
1051                       const gchar *buf,
1052                       gsize        count,
1053                       gsize       *bytes_written,
1054                       GError     **err)
1055 {
1056   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1057   MSG msg;
1058   
1059   if (count != sizeof (MSG))
1060     {
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;
1064     }
1065   
1066   /* In case of alignment problems */
1067   memmove (&msg, buf, sizeof (MSG));
1068   if (!PostMessage (win32_channel->hwnd, msg.message, msg.wParam, msg.lParam))
1069     {
1070       gchar *emsg = g_win32_error_message (GetLastError ());
1071       g_set_error_literal (err, G_IO_CHANNEL_ERROR, G_IO_CHANNEL_ERROR_FAILED, emsg);
1072       g_free (emsg);
1073       return G_IO_STATUS_ERROR;
1074     }
1075
1076   *bytes_written = sizeof (MSG);
1077
1078   return G_IO_STATUS_NORMAL;
1079 }
1080
1081 static GIOStatus
1082 g_io_win32_msg_close (GIOChannel *channel,
1083                       GError    **err)
1084 {
1085   /* Nothing to be done. Or should we set hwnd to some invalid value? */
1086
1087   return G_IO_STATUS_NORMAL;
1088 }
1089
1090 static void
1091 g_io_win32_free (GIOChannel *channel)
1092 {
1093   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1094   
1095   if (win32_channel->debug)
1096     g_print ("g_io_win32_free channel=%p fd=%d\n", channel, win32_channel->fd);
1097
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);
1105
1106   g_free (win32_channel->buffer);
1107   g_free (win32_channel);
1108 }
1109
1110 static GSource *
1111 g_io_win32_msg_create_watch (GIOChannel   *channel,
1112                              GIOCondition  condition)
1113 {
1114   GIOWin32Watch *watch;
1115   GSource *source;
1116
1117   source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1118   watch = (GIOWin32Watch *)source;
1119   
1120   watch->channel = channel;
1121   g_io_channel_ref (channel);
1122   
1123   watch->condition = condition;
1124   
1125   watch->pollfd.fd = (gintptr) G_WIN32_MSG_HANDLE;
1126   watch->pollfd.events = condition;
1127   
1128   g_source_add_poll (source, &watch->pollfd);
1129   
1130   return source;
1131 }
1132
1133 static GIOStatus
1134 g_io_win32_fd_and_console_read (GIOChannel *channel,
1135                                 gchar      *buf,
1136                                 gsize       count,
1137                                 gsize      *bytes_read,
1138                                 GError    **err)
1139 {
1140   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1141   gint result;
1142   
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);
1146   
1147   if (win32_channel->thread_id)
1148     {
1149       return buffer_read (win32_channel, buf, count, bytes_read, err);
1150     }
1151
1152   result = read (win32_channel->fd, buf, count);
1153
1154   if (win32_channel->debug)
1155     g_print ("g_io_win32_fd_read: read() => %d\n", result);
1156
1157   if (result < 0)
1158     {
1159       *bytes_read = 0;
1160
1161       switch (errno)
1162         {
1163 #ifdef EAGAIN
1164         case EAGAIN:
1165           return G_IO_STATUS_AGAIN;
1166 #endif
1167         default:
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;
1172         }
1173     }
1174
1175   *bytes_read = result;
1176
1177   return (result > 0) ? G_IO_STATUS_NORMAL : G_IO_STATUS_EOF;
1178 }
1179
1180 static GIOStatus
1181 g_io_win32_fd_and_console_write (GIOChannel  *channel,
1182                                  const gchar *buf,
1183                                  gsize        count,
1184                                  gsize       *bytes_written,
1185                                  GError     **err)
1186 {
1187   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1188   gint result;
1189
1190   if (win32_channel->thread_id)
1191     {
1192       return buffer_write (win32_channel, buf, count, bytes_written, err);
1193     }
1194   
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);
1199
1200   if (result < 0)
1201     {
1202       *bytes_written = 0;
1203
1204       switch (errno)
1205         {
1206 #ifdef EAGAIN
1207         case EAGAIN:
1208           return G_IO_STATUS_AGAIN;
1209 #endif
1210         default:
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;
1215         }
1216     }
1217
1218   *bytes_written = result;
1219
1220   return G_IO_STATUS_NORMAL;
1221 }
1222
1223 static GIOStatus
1224 g_io_win32_fd_seek (GIOChannel *channel,
1225                     gint64      offset,
1226                     GSeekType   type,
1227                     GError    **err)
1228 {
1229   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1230   int whence;
1231   off_t tmp_offset;
1232   off_t result;
1233   
1234   switch (type)
1235     {
1236     case G_SEEK_SET:
1237       whence = SEEK_SET;
1238       break;
1239     case G_SEEK_CUR:
1240       whence = SEEK_CUR;
1241       break;
1242     case G_SEEK_END:
1243       whence = SEEK_END;
1244       break;
1245     default:
1246       whence = -1; /* Keep the compiler quiet */
1247       g_assert_not_reached ();
1248       abort ();
1249     }
1250
1251   tmp_offset = offset;
1252   if (tmp_offset != offset)
1253     {
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;
1258     }
1259   
1260   result = lseek (win32_channel->fd, tmp_offset, whence);
1261   
1262   if (result < 0)
1263     {
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;
1268     }
1269
1270   return G_IO_STATUS_NORMAL;
1271 }
1272
1273 static GIOStatus
1274 g_io_win32_fd_close (GIOChannel *channel,
1275                      GError    **err)
1276 {
1277   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1278   
1279   if (win32_channel->debug)
1280     g_print ("g_io_win32_fd_close: thread=%#x: fd=%d\n",
1281              win32_channel->thread_id,
1282              win32_channel->fd);
1283   LOCK (win32_channel->mutex);
1284   if (win32_channel->running)
1285     {
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);
1293       else
1294         SetEvent (win32_channel->space_avail_event);
1295     }
1296   else
1297     {
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",
1303                  win32_channel->fd);
1304       win32_channel->fd = -1;
1305     }
1306   UNLOCK (win32_channel->mutex);
1307
1308   /* FIXME error detection? */
1309
1310   return G_IO_STATUS_NORMAL;
1311 }
1312
1313 static GSource *
1314 g_io_win32_fd_create_watch (GIOChannel    *channel,
1315                             GIOCondition   condition)
1316 {
1317   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1318   GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1319   GIOWin32Watch *watch = (GIOWin32Watch *)source;
1320
1321   watch->channel = channel;
1322   g_io_channel_ref (channel);
1323   
1324   watch->condition = condition;
1325   
1326   if (win32_channel->data_avail_event == NULL)
1327     create_events (win32_channel);
1328
1329   watch->pollfd.fd = (gintptr) win32_channel->data_avail_event;
1330   watch->pollfd.events = condition;
1331   
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);
1336
1337   LOCK (win32_channel->mutex);
1338   if (win32_channel->thread_id == 0)
1339     {
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);
1344     }
1345
1346   g_source_add_poll (source, &watch->pollfd);
1347   UNLOCK (win32_channel->mutex);
1348
1349   return source;
1350 }
1351
1352 static GIOStatus
1353 g_io_win32_console_close (GIOChannel *channel,
1354                           GError    **err)
1355 {
1356   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1357   
1358   if (close (win32_channel->fd) < 0)
1359     {
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;
1364     }
1365
1366   return G_IO_STATUS_NORMAL;
1367 }
1368
1369 static GSource *
1370 g_io_win32_console_create_watch (GIOChannel    *channel,
1371                                  GIOCondition   condition)
1372 {
1373   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1374   GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1375   GIOWin32Watch *watch = (GIOWin32Watch *)source;
1376
1377   watch->channel = channel;
1378   g_io_channel_ref (channel);
1379   
1380   watch->condition = condition;
1381   
1382   watch->pollfd.fd = _get_osfhandle (win32_channel->fd);
1383   watch->pollfd.events = condition;
1384   
1385   g_source_add_poll (source, &watch->pollfd);
1386
1387   return source;
1388 }
1389
1390 static GIOStatus
1391 g_io_win32_sock_read (GIOChannel *channel,
1392                       gchar      *buf,
1393                       gsize       count,
1394                       gsize      *bytes_read,
1395                       GError    **err)
1396 {
1397   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1398   gint result;
1399   GIOChannelError error;
1400   int winsock_error;
1401
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);
1405
1406   result = recv (win32_channel->fd, buf, count, 0);
1407   if (result == SOCKET_ERROR)
1408     winsock_error = WSAGetLastError ();
1409
1410   if (win32_channel->debug)
1411     g_print (" recv=%d", result);
1412   
1413   if (result == SOCKET_ERROR)
1414     {
1415       gchar *emsg = g_win32_error_message (winsock_error);
1416
1417       if (win32_channel->debug)
1418         g_print (" %s\n", emsg);
1419
1420       *bytes_read = 0;
1421
1422       switch (winsock_error)
1423         {
1424         case WSAEINVAL:
1425           error = G_IO_CHANNEL_ERROR_INVAL;
1426           break;
1427         case WSAEWOULDBLOCK:
1428           g_free (emsg);
1429           return G_IO_STATUS_AGAIN;
1430         default:
1431           error = G_IO_CHANNEL_ERROR_FAILED;
1432           break;
1433         }
1434       g_set_error_literal (err, G_IO_CHANNEL_ERROR, error, emsg);
1435       g_free (emsg);
1436
1437       return G_IO_STATUS_ERROR;
1438     }
1439   else
1440     {
1441       if (win32_channel->debug)
1442         g_print ("\n");
1443       *bytes_read = result;
1444       if (result == 0)
1445         return G_IO_STATUS_EOF;
1446       else
1447         return G_IO_STATUS_NORMAL;
1448     }
1449 }
1450
1451 static GIOStatus
1452 g_io_win32_sock_write (GIOChannel  *channel,
1453                        const gchar *buf,
1454                        gsize        count,
1455                        gsize       *bytes_written,
1456                        GError     **err)
1457 {
1458   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1459   gint result;
1460   GIOChannelError error;
1461   int winsock_error;
1462   
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);
1466
1467   result = send (win32_channel->fd, buf, count, 0);
1468   if (result == SOCKET_ERROR)
1469     winsock_error = WSAGetLastError ();
1470
1471   if (win32_channel->debug)
1472     g_print (" send=%d", result);
1473   
1474   if (result == SOCKET_ERROR)
1475     {
1476       gchar *emsg = g_win32_error_message (winsock_error);
1477
1478       if (win32_channel->debug)
1479         g_print (" %s\n", emsg);
1480
1481       *bytes_written = 0;
1482
1483       switch (winsock_error)
1484         {
1485         case WSAEINVAL:
1486           error = G_IO_CHANNEL_ERROR_INVAL;
1487           break;
1488         case WSAEWOULDBLOCK:
1489           win32_channel->write_would_have_blocked = TRUE;
1490           win32_channel->last_events = 0;
1491           g_free (emsg);
1492           return G_IO_STATUS_AGAIN;
1493         default:
1494           error = G_IO_CHANNEL_ERROR_FAILED;
1495           break;
1496         }
1497       g_set_error_literal (err, G_IO_CHANNEL_ERROR, error, emsg);
1498       g_free (emsg);
1499
1500       return G_IO_STATUS_ERROR;
1501     }
1502   else
1503     {
1504       if (win32_channel->debug)
1505         g_print ("\n");
1506       *bytes_written = result;
1507       win32_channel->write_would_have_blocked = FALSE;
1508
1509       return G_IO_STATUS_NORMAL;
1510     }
1511 }
1512
1513 static GIOStatus
1514 g_io_win32_sock_close (GIOChannel *channel,
1515                        GError    **err)
1516 {
1517   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1518
1519   if (win32_channel->fd != -1)
1520     {
1521       if (win32_channel->debug)
1522         g_print ("g_io_win32_sock_close: channel=%p sock=%d\n",
1523                  channel, win32_channel->fd);
1524       
1525       closesocket (win32_channel->fd);
1526       win32_channel->fd = -1;
1527     }
1528
1529   /* FIXME error detection? */
1530
1531   return G_IO_STATUS_NORMAL;
1532 }
1533
1534 static GSource *
1535 g_io_win32_sock_create_watch (GIOChannel    *channel,
1536                               GIOCondition   condition)
1537 {
1538   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1539   GSource *source = g_source_new (&g_io_watch_funcs, sizeof (GIOWin32Watch));
1540   GIOWin32Watch *watch = (GIOWin32Watch *)source;
1541   
1542   watch->channel = channel;
1543   g_io_channel_ref (channel);
1544   
1545   watch->condition = condition;
1546
1547   if (win32_channel->event == 0)
1548     win32_channel->event = WSACreateEvent ();
1549
1550   watch->pollfd.fd = (gintptr) win32_channel->event;
1551   watch->pollfd.events = condition;
1552   
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));
1557
1558   g_source_add_poll (source, &watch->pollfd);
1559
1560   return source;
1561 }
1562
1563 GIOChannel *
1564 g_io_channel_new_file (const gchar  *filename,
1565                        const gchar  *mode,
1566                        GError      **error)
1567 {
1568   int fid, flags, pmode;
1569   GIOChannel *channel;
1570
1571   enum { /* Cheesy hack */
1572     MODE_R = 1 << 0,
1573     MODE_W = 1 << 1,
1574     MODE_A = 1 << 2,
1575     MODE_PLUS = 1 << 3,
1576   } mode_num;
1577
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);
1581
1582   switch (mode[0])
1583     {
1584       case 'r':
1585         mode_num = MODE_R;
1586         break;
1587       case 'w':
1588         mode_num = MODE_W;
1589         break;
1590       case 'a':
1591         mode_num = MODE_A;
1592         break;
1593       default:
1594         g_warning ("Invalid GIOFileMode %s.\n", mode);
1595         return NULL;
1596     }
1597
1598   switch (mode[1])
1599     {
1600       case '\0':
1601         break;
1602       case '+':
1603         if (mode[2] == '\0')
1604           {
1605             mode_num |= MODE_PLUS;
1606             break;
1607           }
1608         /* Fall through */
1609       default:
1610         g_warning ("Invalid GIOFileMode %s.\n", mode);
1611         return NULL;
1612     }
1613
1614   switch (mode_num)
1615     {
1616       case MODE_R:
1617         flags = O_RDONLY;
1618         pmode = _S_IREAD;
1619         break;
1620       case MODE_W:
1621         flags = O_WRONLY | O_TRUNC | O_CREAT;
1622         pmode = _S_IWRITE;
1623         break;
1624       case MODE_A:
1625         flags = O_WRONLY | O_APPEND | O_CREAT;
1626         pmode = _S_IWRITE;
1627         break;
1628       case MODE_R | MODE_PLUS:
1629         flags = O_RDWR;
1630         pmode = _S_IREAD | _S_IWRITE;
1631         break;
1632       case MODE_W | MODE_PLUS:
1633         flags = O_RDWR | O_TRUNC | O_CREAT;
1634         pmode = _S_IREAD | _S_IWRITE;
1635         break;
1636       case MODE_A | MODE_PLUS:
1637         flags = O_RDWR | O_APPEND | O_CREAT;
1638         pmode = _S_IREAD | _S_IWRITE;
1639         break;
1640       default:
1641         g_assert_not_reached ();
1642         abort ();
1643     }
1644
1645   /* always open 'untranslated' */
1646   fid = g_open (filename, flags | _O_BINARY, pmode);
1647
1648   if (g_io_win32_get_debug_flag ())
1649     {
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);
1653     }
1654
1655   if (fid < 0)
1656     {
1657       g_set_error_literal (error, G_FILE_ERROR,
1658                            g_file_error_from_errno (errno),
1659                            g_strerror (errno));
1660       return (GIOChannel *)NULL;
1661     }
1662
1663   channel = g_io_channel_win32_new_fd (fid);
1664
1665   /* XXX: move this to g_io_channel_win32_new_fd () */
1666   channel->close_on_unref = TRUE;
1667   channel->is_seekable = TRUE;
1668
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
1672    */
1673   switch (mode_num)
1674     {
1675       case MODE_R:
1676         channel->is_writeable = FALSE;
1677         break;
1678       case MODE_W:
1679       case MODE_A:
1680         channel->is_readable = FALSE;
1681         break;
1682       case MODE_R | MODE_PLUS:
1683       case MODE_W | MODE_PLUS:
1684       case MODE_A | MODE_PLUS:
1685         break;
1686       default:
1687         g_assert_not_reached ();
1688         abort ();
1689     }
1690
1691   return channel;
1692 }
1693
1694 #if !defined (_WIN64)
1695
1696 #undef g_io_channel_new_file
1697
1698 /* Binary compatibility version. Not for newly compiled code. */
1699
1700 GIOChannel *
1701 g_io_channel_new_file (const gchar  *filename,
1702                        const gchar  *mode,
1703                        GError      **error)
1704 {
1705   gchar *utf8_filename = g_locale_to_utf8 (filename, -1, NULL, NULL, error);
1706   GIOChannel *retval;
1707
1708   if (utf8_filename == NULL)
1709     return NULL;
1710
1711   retval = g_io_channel_new_file_utf8 (utf8_filename, mode, error);
1712
1713   g_free (utf8_filename);
1714
1715   return retval;
1716 }
1717
1718 #endif
1719
1720 static GIOStatus
1721 g_io_win32_unimpl_set_flags (GIOChannel *channel,
1722                              GIOFlags    flags,
1723                              GError    **err)
1724 {
1725   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1726
1727   if (win32_channel->debug)
1728     {
1729       g_print ("g_io_win32_unimpl_set_flags: ");
1730       g_win32_print_gioflags (flags);
1731       g_print ("\n");
1732     }
1733
1734   g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1735                        G_IO_CHANNEL_ERROR_FAILED,
1736                        "Not implemented on Win32");
1737
1738   return G_IO_STATUS_ERROR;
1739 }
1740
1741 static GIOFlags
1742 g_io_win32_fd_get_flags_internal (GIOChannel  *channel,
1743                                   struct stat *st)
1744 {
1745   GIOWin32Channel *win32_channel = (GIOWin32Channel *) channel;
1746   gchar c;
1747   DWORD count;
1748
1749   if (st->st_mode & _S_IFIFO)
1750     {
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;
1756     }
1757   else
1758     {
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;
1764     }
1765
1766   /* XXX: G_IO_FLAG_APPEND */
1767   /* XXX: G_IO_FLAG_NONBLOCK */
1768
1769   return 0;
1770 }
1771
1772 static GIOFlags
1773 g_io_win32_fd_get_flags (GIOChannel *channel)
1774 {
1775   struct stat st;
1776   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1777
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);
1780
1781   if (0 == fstat (win32_channel->fd, &st))
1782     return g_io_win32_fd_get_flags_internal (channel, &st);
1783   else
1784     return 0;
1785 }
1786
1787 static GIOFlags
1788 g_io_win32_console_get_flags_internal (GIOChannel  *channel)
1789 {
1790   GIOWin32Channel *win32_channel = (GIOWin32Channel *) channel;
1791   HANDLE handle = (HANDLE) _get_osfhandle (win32_channel->fd);
1792   gchar c;
1793   DWORD count;
1794   INPUT_RECORD record;
1795
1796   channel->is_readable = PeekConsoleInput (handle, &record, 1, &count);
1797   channel->is_writeable = WriteFile (handle, &c, 0, &count, NULL);
1798   channel->is_seekable = FALSE;
1799
1800   return 0;
1801 }
1802
1803 static GIOFlags
1804 g_io_win32_console_get_flags (GIOChannel *channel)
1805 {
1806   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1807
1808   g_return_val_if_fail (win32_channel != NULL, 0);
1809   g_return_val_if_fail (win32_channel->type == G_IO_WIN32_CONSOLE, 0);
1810
1811   return g_io_win32_console_get_flags_internal (channel);
1812 }
1813
1814 static GIOFlags
1815 g_io_win32_msg_get_flags (GIOChannel *channel)
1816 {
1817   return 0;
1818 }
1819
1820 static GIOStatus
1821 g_io_win32_sock_set_flags (GIOChannel *channel,
1822                            GIOFlags    flags,
1823                            GError    **err)
1824 {
1825   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
1826   u_long arg;
1827
1828   if (win32_channel->debug)
1829     {
1830       g_print ("g_io_win32_sock_set_flags: ");
1831       g_win32_print_gioflags (flags);
1832       g_print ("\n");
1833     }
1834
1835   if (flags & G_IO_FLAG_NONBLOCK)
1836     {
1837       arg = 1;
1838       if (ioctlsocket (win32_channel->fd, FIONBIO, &arg) == SOCKET_ERROR)
1839         {
1840           gchar *emsg = g_win32_error_message (WSAGetLastError ());
1841
1842           g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1843                                G_IO_CHANNEL_ERROR_FAILED,
1844                                emsg);
1845           g_free (emsg);
1846
1847           return G_IO_STATUS_ERROR;
1848         }
1849     }
1850   else
1851     {
1852       arg = 0;
1853       if (ioctlsocket (win32_channel->fd, FIONBIO, &arg) == SOCKET_ERROR)
1854         {
1855           gchar *emsg = g_win32_error_message (WSAGetLastError ());
1856
1857           g_set_error_literal (err, G_IO_CHANNEL_ERROR,
1858                                G_IO_CHANNEL_ERROR_FAILED,
1859                                emsg);
1860           g_free (emsg);
1861
1862           return G_IO_STATUS_ERROR;
1863         }
1864     }
1865
1866   return G_IO_STATUS_NORMAL;
1867 }
1868
1869 static GIOFlags
1870 g_io_win32_sock_get_flags (GIOChannel *channel)
1871 {
1872   /* Could we do something here? */
1873   return 0;
1874 }
1875
1876 static GIOFuncs win32_channel_msg_funcs = {
1877   g_io_win32_msg_read,
1878   g_io_win32_msg_write,
1879   NULL,
1880   g_io_win32_msg_close,
1881   g_io_win32_msg_create_watch,
1882   g_io_win32_free,
1883   g_io_win32_unimpl_set_flags,
1884   g_io_win32_msg_get_flags,
1885 };
1886
1887 static GIOFuncs win32_channel_fd_funcs = {
1888   g_io_win32_fd_and_console_read,
1889   g_io_win32_fd_and_console_write,
1890   g_io_win32_fd_seek,
1891   g_io_win32_fd_close,
1892   g_io_win32_fd_create_watch,
1893   g_io_win32_free,
1894   g_io_win32_unimpl_set_flags,
1895   g_io_win32_fd_get_flags,
1896 };
1897
1898 static GIOFuncs win32_channel_console_funcs = {
1899   g_io_win32_fd_and_console_read,
1900   g_io_win32_fd_and_console_write,
1901   NULL,
1902   g_io_win32_console_close,
1903   g_io_win32_console_create_watch,
1904   g_io_win32_free,
1905   g_io_win32_unimpl_set_flags,
1906   g_io_win32_console_get_flags,
1907 };
1908
1909 static GIOFuncs win32_channel_sock_funcs = {
1910   g_io_win32_sock_read,
1911   g_io_win32_sock_write,
1912   NULL,
1913   g_io_win32_sock_close,
1914   g_io_win32_sock_create_watch,
1915   g_io_win32_free,
1916   g_io_win32_sock_set_flags,
1917   g_io_win32_sock_get_flags,
1918 };
1919
1920 GIOChannel *
1921 #if GLIB_SIZEOF_VOID_P == 8
1922 g_io_channel_win32_new_messages (gsize hwnd)
1923 #else
1924 g_io_channel_win32_new_messages (guint hwnd)
1925 #endif
1926 {
1927   GIOWin32Channel *win32_channel = g_new (GIOWin32Channel, 1);
1928   GIOChannel *channel = (GIOChannel *)win32_channel;
1929
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;
1938
1939   /* XXX: check this. */
1940   channel->is_readable = IsWindow (win32_channel->hwnd);
1941   channel->is_writeable = IsWindow (win32_channel->hwnd);
1942
1943   channel->is_seekable = FALSE;
1944
1945   return channel;
1946 }
1947
1948 static GIOChannel *
1949 g_io_channel_win32_new_fd_internal (gint         fd,
1950                                     struct stat *st)
1951 {
1952   GIOWin32Channel *win32_channel;
1953   GIOChannel *channel;
1954
1955   win32_channel = g_new (GIOWin32Channel, 1);
1956   channel = (GIOChannel *)win32_channel;
1957
1958   g_io_channel_init (channel);
1959   g_io_channel_win32_init (win32_channel);
1960
1961   win32_channel->fd = fd;
1962
1963   if (win32_channel->debug)
1964     g_print ("g_io_channel_win32_new_fd: channel=%p fd=%u\n",
1965              channel, fd);
1966
1967   if (st->st_mode & _S_IFCHR) /* console */
1968     {
1969       channel->funcs = &win32_channel_console_funcs;
1970       win32_channel->type = G_IO_WIN32_CONSOLE;
1971       g_io_win32_console_get_flags_internal (channel);
1972     }
1973   else
1974     {
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);
1978     }
1979   
1980   return channel;
1981 }
1982
1983 GIOChannel *
1984 g_io_channel_win32_new_fd (gint fd)
1985 {
1986   struct stat st;
1987
1988   if (fstat (fd, &st) == -1)
1989     {
1990       g_warning ("g_io_channel_win32_new_fd: %d isn't an open file descriptor in the C library GLib uses.", fd);
1991       return NULL;
1992     }
1993
1994   return g_io_channel_win32_new_fd_internal (fd, &st);
1995 }
1996
1997 gint
1998 g_io_channel_win32_get_fd (GIOChannel *channel)
1999 {
2000   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2001
2002   return win32_channel->fd;
2003 }
2004
2005 GIOChannel *
2006 g_io_channel_win32_new_socket (int socket)
2007 {
2008   GIOWin32Channel *win32_channel = g_new (GIOWin32Channel, 1);
2009   GIOChannel *channel = (GIOChannel *)win32_channel;
2010
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",
2015              channel, socket);
2016   channel->funcs = &win32_channel_sock_funcs;
2017   win32_channel->type = G_IO_WIN32_SOCKET;
2018   win32_channel->fd = socket;
2019
2020   channel->is_readable = TRUE;
2021   channel->is_writeable = TRUE;
2022   channel->is_seekable = FALSE;
2023
2024   return channel;
2025 }
2026
2027 GIOChannel *
2028 g_io_channel_unix_new (gint fd)
2029 {
2030   gboolean is_fd, is_socket;
2031   struct stat st;
2032   int optval, optlen;
2033
2034   is_fd = (fstat (fd, &st) == 0);
2035
2036   optlen = sizeof (optval);
2037   is_socket = (getsockopt (fd, SOL_SOCKET, SO_TYPE, (char *) &optval, &optlen) != SOCKET_ERROR);
2038
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);
2041
2042   if (is_fd)
2043     return g_io_channel_win32_new_fd_internal (fd, &st);
2044
2045   if (is_socket)
2046     return g_io_channel_win32_new_socket(fd);
2047
2048   g_warning ("g_io_channel_unix_new: %d is neither a file descriptor or a socket.", fd);
2049
2050   return NULL;
2051 }
2052
2053 gint
2054 g_io_channel_unix_get_fd (GIOChannel *channel)
2055 {
2056   return g_io_channel_win32_get_fd (channel);
2057 }
2058
2059 void
2060 g_io_channel_win32_set_debug (GIOChannel *channel,
2061                               gboolean    flag)
2062 {
2063   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2064
2065   win32_channel->debug = flag;
2066 }
2067
2068 gint
2069 g_io_channel_win32_poll (GPollFD *fds,
2070                          gint     n_fds,
2071                          gint     timeout)
2072 {
2073   int result;
2074
2075   g_return_val_if_fail (n_fds >= 0, 0);
2076
2077   result = (*g_main_context_get_poll_func (NULL)) (fds, n_fds, timeout);
2078
2079   return result;
2080 }
2081
2082 void
2083 g_io_channel_win32_make_pollfd (GIOChannel   *channel,
2084                                 GIOCondition  condition,
2085                                 GPollFD      *fd)
2086 {
2087   GIOWin32Channel *win32_channel = (GIOWin32Channel *)channel;
2088
2089   switch (win32_channel->type)
2090     {
2091     case G_IO_WIN32_FILE_DESC:
2092       if (win32_channel->data_avail_event == NULL)
2093         create_events (win32_channel);
2094
2095       fd->fd = (gintptr) win32_channel->data_avail_event;
2096
2097       if (win32_channel->thread_id == 0)
2098         {
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.
2104            */
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);
2109         }
2110       break;
2111
2112     case G_IO_WIN32_CONSOLE:
2113       fd->fd = _get_osfhandle (win32_channel->fd);
2114       break;
2115
2116     case G_IO_WIN32_SOCKET:
2117       fd->fd = (gintptr) WSACreateEvent ();
2118       break;
2119       
2120     case G_IO_WIN32_WINDOWS_MESSAGES:
2121       fd->fd = G_WIN32_MSG_HANDLE;
2122       break;
2123
2124     default:
2125       g_assert_not_reached ();
2126       abort ();
2127     }
2128   
2129   fd->events = condition;
2130 }
2131
2132 #ifndef _WIN64
2133
2134 /* Binary compatibility */
2135 GIOChannel *
2136 g_io_channel_win32_new_stream_socket (int socket)
2137 {
2138   return g_io_channel_win32_new_socket (socket);
2139 }
2140
2141 #endif
2142
2143 #define __G_IO_WIN32_C__
2144 #include "galiasdef.c"