28ff0574eddeb59be576b8e6f59c413204f8cf00
[platform/upstream/glib.git] / gmain.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * gmain.c: Main loop abstraction, timeouts, and idle functions
5  * Copyright 1998 Owen Taylor
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /* 
24  * MT safe
25  */
26
27 #include "config.h"
28
29 #include "glib.h"
30 #include <sys/types.h>
31 #include <time.h>
32 #ifdef HAVE_SYS_TIME_H
33 #include <sys/time.h>
34 #endif /* HAVE_SYS_TIME_H */
35 #ifdef GLIB_HAVE_SYS_POLL_H
36 #  include <sys/poll.h>
37 #  undef events  /* AIX 4.1.5 & 4.3.2 define this for SVR3,4 compatibility */
38 #  undef revents /* AIX 4.1.5 & 4.3.2 define this for SVR3,4 compatibility */
39 #endif /* GLIB_HAVE_SYS_POLL_H */
40 #ifdef HAVE_UNISTD_H
41 #include <unistd.h>
42 #endif /* HAVE_UNISTD_H */
43 #include <errno.h>
44
45 #ifdef NATIVE_WIN32
46 #define STRICT
47 #include <windows.h>
48 #endif /* NATIVE_WIN32 */
49
50 #ifdef _MSC_VER
51 #include <fcntl.h>
52 #include <io.h>
53 #endif /* _MSC_VER */
54
55 /* Types */
56
57 typedef struct _GTimeoutData GTimeoutData;
58 typedef struct _GSource GSource;
59 typedef struct _GPollRec GPollRec;
60
61 typedef enum
62 {
63   G_SOURCE_READY = 1 << G_HOOK_FLAG_USER_SHIFT,
64   G_SOURCE_CAN_RECURSE = 1 << (G_HOOK_FLAG_USER_SHIFT + 1)
65 } GSourceFlags;
66
67 struct _GSource
68 {
69   GHook hook;
70   gint priority;
71   gpointer source_data;
72 };
73
74 struct _GMainLoop
75 {
76   gboolean is_running;
77 };
78
79 struct _GTimeoutData
80 {
81   GTimeVal    expiration;
82   gint        interval;
83   GSourceFunc callback;
84 };
85
86 struct _GPollRec
87 {
88   gint priority;
89   GPollFD *fd;
90   GPollRec *next;
91 };
92
93 /* Forward declarations */
94
95 static gint     g_source_compare          (GHook      *a,
96                                            GHook      *b);
97 static void     g_source_destroy_func     (GHookList  *hook_list,
98                                            GHook      *hook);
99 static void     g_main_poll               (gint      timeout,
100                                            gboolean  use_priority, 
101                                            gint      priority);
102 static void     g_main_add_poll_unlocked  (gint      priority,
103                                            GPollFD  *fd);
104
105 static gboolean g_timeout_prepare      (gpointer  source_data, 
106                                         GTimeVal *current_time,
107                                         gint     *timeout);
108 static gboolean g_timeout_check        (gpointer  source_data,
109                                         GTimeVal *current_time);
110 static gboolean g_timeout_dispatch     (gpointer  source_data,
111                                         GTimeVal *current_time,
112                                         gpointer  user_data);
113 static gboolean g_idle_prepare         (gpointer  source_data, 
114                                         GTimeVal *current_time,
115                                         gint     *timeout);
116 static gboolean g_idle_check           (gpointer  source_data,
117                                         GTimeVal *current_time);
118 static gboolean g_idle_dispatch        (gpointer  source_data,
119                                         GTimeVal *current_time,
120                                         gpointer  user_data);
121
122 /* Data */
123
124 static GSList *pending_dispatches = NULL;
125 static GHookList source_list = { 0 };
126 static gint in_check_or_prepare = 0;
127
128 /* The following lock is used for both the list of sources
129  * and the list of poll records
130  */
131 G_LOCK_DECLARE_STATIC (main_loop);
132
133 static GSourceFuncs timeout_funcs =
134 {
135   g_timeout_prepare,
136   g_timeout_check,
137   g_timeout_dispatch,
138   g_free,
139 };
140
141 static GSourceFuncs idle_funcs =
142 {
143   g_idle_prepare,
144   g_idle_check,
145   g_idle_dispatch,
146   NULL,
147 };
148
149 static GPollRec *poll_records = NULL;
150 static GPollRec *poll_free_list = NULL;
151 static GMemChunk *poll_chunk;
152 static guint n_poll_records = 0;
153
154 #ifdef G_THREADS_ENABLED
155 #ifndef NATIVE_WIN32
156 /* this pipe is used to wake up the main loop when a source is added.
157  */
158 static gint wake_up_pipe[2] = { -1, -1 };
159 #else /* NATIVE_WIN32 */
160 static HANDLE wake_up_semaphore = NULL;
161 #endif /* NATIVE_WIN32 */
162 static GPollFD wake_up_rec;
163 static gboolean poll_waiting = FALSE;
164 #endif /* G_THREADS_ENABLED */
165
166 #ifdef HAVE_POLL
167 static GPollFunc poll_func = (GPollFunc) poll;
168 #else   /* !HAVE_POLL */
169 #ifdef NATIVE_WIN32
170
171 static gint
172 g_poll (GPollFD *fds, guint nfds, gint timeout)
173 {
174   HANDLE handles[MAXIMUM_WAIT_OBJECTS];
175   GPollFD *f;
176   DWORD ready;
177   MSG msg;
178   UINT timer;
179   LONG prevcnt;
180   gint poll_msgs = -1;
181   gint nhandles = 0;
182
183   for (f = fds; f < &fds[nfds]; ++f)
184     if (f->fd >= 0)
185       {
186         if (f->events & G_IO_IN)
187           if (f->fd == G_WIN32_MSG_HANDLE)
188             poll_msgs = f - fds;
189           else
190             {
191               /* g_print ("g_poll: waiting for handle %#x\n", f->fd); */
192               handles[nhandles++] = (HANDLE) f->fd;
193             }
194       }
195
196   if (timeout == -1)
197     timeout = INFINITE;
198
199   if (poll_msgs >= 0)
200     {
201       /* Waiting for messages, and maybe events */
202       if (nhandles == 0)
203         {
204           if (timeout == INFINITE)
205             {
206               /* Waiting just for messages, infinite timeout
207                * -> Use PeekMessage, then WaitMessage
208                */
209               /* g_print ("WaitMessage, PeekMessage\n"); */
210               if (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
211                 ready = WAIT_OBJECT_0;
212               else if (!WaitMessage ())
213                 g_warning ("g_poll: WaitMessage failed");
214               ready = WAIT_OBJECT_0;
215             }
216           else if (timeout == 0)
217             {
218               /* Waiting just for messages, zero timeout
219                * -> Use PeekMessage
220                */
221               /* g_print ("PeekMessage\n"); */
222               if (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
223                 ready = WAIT_OBJECT_0;
224               else
225                 ready = WAIT_TIMEOUT;
226             }
227           else
228             {
229               /* Waiting just for messages, some timeout
230                * -> First try PeekMessage, then set a timer, wait for message,
231                * kill timer, use PeekMessage
232                */
233               /* g_print ("PeekMessage\n"); */
234               if (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
235                 ready = WAIT_OBJECT_0;
236               else if ((timer = SetTimer (NULL, 0, timeout, NULL)) == 0)
237                 g_warning ("g_poll: SetTimer failed");
238               else
239                 {
240                   /* g_print ("WaitMessage\n"); */
241                   WaitMessage ();
242                   KillTimer (NULL, timer);
243                   if (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
244                     ready = WAIT_OBJECT_0;
245                   else
246                     ready = WAIT_TIMEOUT;
247                 }
248             }
249         }
250       else
251         {
252           /* Wait for either message or event
253            * -> Use MsgWaitForMultipleObjects
254            */
255           /* g_print ("MsgWaitForMultipleObjects(%d, %d)\n", nhandles, timeout); */
256           ready = MsgWaitForMultipleObjects (nhandles, handles, FALSE,
257                                              timeout, QS_ALLINPUT);
258           /* g_print("=%d\n", ready); */
259           if (ready == WAIT_FAILED)
260             g_warning ("g_poll: MsgWaitForMultipleObjects failed");
261         }
262     }
263   else if (nhandles == 0)
264     {
265       /* Wait for nothing (huh?) */
266       return 0;
267     }
268   else
269     {
270       /* Wait for just events
271        * -> Use WaitForMultipleObjects
272        */
273       /* g_print ("WaitForMultipleObjects(%d, %d)\n", nhandles, timeout); */
274       ready = WaitForMultipleObjects (nhandles, handles, FALSE, timeout);
275       /* g_print("=%d\n", ready); */
276       if (ready == WAIT_FAILED)
277         g_warning ("g_poll: WaitForMultipleObjects failed");
278     }
279
280   for (f = fds; f < &fds[nfds]; ++f)
281     f->revents = 0;
282
283   if (ready == WAIT_FAILED)
284     return -1;
285   else if (poll_msgs >= 0 && ready == WAIT_OBJECT_0 + nhandles)
286     {
287       fds[poll_msgs].revents |= G_IO_IN;
288     }
289   else if (ready >= WAIT_OBJECT_0 && ready < WAIT_OBJECT_0 + nhandles)
290     for (f = fds; f < &fds[nfds]; ++f)
291       {
292         if ((f->events & G_IO_IN)
293             && f->fd == (gint) handles[ready - WAIT_OBJECT_0])
294           {
295             f->revents |= G_IO_IN;
296             /* g_print ("event %#x\n", f->fd); */
297             ResetEvent ((HANDLE) f->fd);
298           }
299       }
300     
301   if (ready == WAIT_TIMEOUT)
302     return 0;
303   else
304     return 1;
305 }
306
307 #else  /* !NATIVE_WIN32 */
308
309 /* The following implementation of poll() comes from the GNU C Library.
310  * Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
311  */
312
313 #include <string.h> /* for bzero on BSD systems */
314
315 #ifdef HAVE_SYS_SELECT_H
316 #include <sys/select.h>
317 #endif /* HAVE_SYS_SELECT_H_ */
318
319 #ifndef NO_FD_SET
320 #  define SELECT_MASK fd_set
321 #else /* !NO_FD_SET */
322 #  ifndef _AIX
323 typedef long fd_mask;
324 #  endif /* _AIX */
325 #  ifdef _IBMR2
326 #    define SELECT_MASK void
327 #  else /* !_IBMR2 */
328 #    define SELECT_MASK int
329 #  endif /* !_IBMR2 */
330 #endif /* !NO_FD_SET */
331
332 static gint 
333 g_poll (GPollFD *fds,
334         guint    nfds,
335         gint     timeout)
336 {
337   struct timeval tv;
338   SELECT_MASK rset, wset, xset;
339   GPollFD *f;
340   int ready;
341   int maxfd = 0;
342
343   FD_ZERO (&rset);
344   FD_ZERO (&wset);
345   FD_ZERO (&xset);
346
347   for (f = fds; f < &fds[nfds]; ++f)
348     if (f->fd >= 0)
349       {
350         if (f->events & G_IO_IN)
351           FD_SET (f->fd, &rset);
352         if (f->events & G_IO_OUT)
353           FD_SET (f->fd, &wset);
354         if (f->events & G_IO_PRI)
355           FD_SET (f->fd, &xset);
356         if (f->fd > maxfd && (f->events & (G_IO_IN|G_IO_OUT|G_IO_PRI)))
357           maxfd = f->fd;
358       }
359
360   tv.tv_sec = timeout / 1000;
361   tv.tv_usec = (timeout % 1000) * 1000;
362
363   ready = select (maxfd + 1, &rset, &wset, &xset,
364                   timeout == -1 ? NULL : &tv);
365   if (ready > 0)
366     for (f = fds; f < &fds[nfds]; ++f)
367       {
368         f->revents = 0;
369         if (f->fd >= 0)
370           {
371             if (FD_ISSET (f->fd, &rset))
372               f->revents |= G_IO_IN;
373             if (FD_ISSET (f->fd, &wset))
374               f->revents |= G_IO_OUT;
375             if (FD_ISSET (f->fd, &xset))
376               f->revents |= G_IO_PRI;
377           }
378       }
379
380   return ready;
381 }
382
383 #endif /* !NATIVE_WIN32 */
384
385 static GPollFunc poll_func = g_poll;
386 #endif  /* !HAVE_POLL */
387
388 /* Hooks for adding to the main loop */
389
390 /* Use knowledge of insert_sorted algorithm here to make
391  * sure we insert at the end of equal priority items
392  */
393 static gint
394 g_source_compare (GHook *a,
395                   GHook *b)
396 {
397   GSource *source_a = (GSource *)a;
398   GSource *source_b = (GSource *)b;
399
400   return (source_a->priority < source_b->priority) ? -1 : 1;
401 }
402
403 /* HOLDS: main_loop lock */
404 static void
405 g_source_destroy_func (GHookList *hook_list,
406                        GHook     *hook)
407 {
408   GSource *source = (GSource*) hook;
409   GDestroyNotify destroy;
410
411   G_UNLOCK (main_loop);
412
413   destroy = hook->destroy;
414   if (destroy)
415     destroy (hook->data);
416
417   destroy = ((GSourceFuncs*) hook->func)->destroy;
418   if (destroy)
419     destroy (source->source_data);
420
421   G_LOCK (main_loop);
422 }
423
424 guint 
425 g_source_add (gint           priority,
426               gboolean       can_recurse,
427               GSourceFuncs  *funcs,
428               gpointer       source_data, 
429               gpointer       user_data,
430               GDestroyNotify notify)
431 {
432   guint return_val;
433   GSource *source;
434
435   G_LOCK (main_loop);
436
437   if (!source_list.is_setup)
438     {
439       g_hook_list_init (&source_list, sizeof (GSource));
440
441       source_list.hook_destroy = G_HOOK_DEFERRED_DESTROY;
442       source_list.hook_free = g_source_destroy_func;
443     }
444
445   source = (GSource*) g_hook_alloc (&source_list);
446   source->priority = priority;
447   source->source_data = source_data;
448   source->hook.func = funcs;
449   source->hook.data = user_data;
450   source->hook.destroy = notify;
451   
452   g_hook_insert_sorted (&source_list, 
453                         (GHook *)source, 
454                         g_source_compare);
455
456   if (can_recurse)
457     source->hook.flags |= G_SOURCE_CAN_RECURSE;
458
459   return_val = source->hook.hook_id;
460
461 #ifdef G_THREADS_ENABLED
462   /* Now wake up the main loop if it is waiting in the poll() */
463
464   if (poll_waiting)
465     {
466       poll_waiting = FALSE;
467 #ifndef NATIVE_WIN32
468       write (wake_up_pipe[1], "A", 1);
469 #else
470       ReleaseSemaphore (wake_up_semaphore, 1, NULL);
471 #endif
472     }
473 #endif
474   G_UNLOCK (main_loop);
475
476   return return_val;
477 }
478
479 gboolean
480 g_source_remove (guint tag)
481 {
482   GHook *hook;
483
484   g_return_val_if_fail (tag > 0, FALSE);
485
486   G_LOCK (main_loop);
487
488   hook = g_hook_get (&source_list, tag);
489   if (hook)
490     g_hook_destroy_link (&source_list, hook);
491
492   G_UNLOCK (main_loop);
493
494   return hook != NULL;
495 }
496
497 gboolean
498 g_source_remove_by_user_data (gpointer user_data)
499 {
500   GHook *hook;
501   
502   G_LOCK (main_loop);
503   
504   hook = g_hook_find_data (&source_list, TRUE, user_data);
505   if (hook)
506     g_hook_destroy_link (&source_list, hook);
507
508   G_UNLOCK (main_loop);
509
510   return hook != NULL;
511 }
512
513 static gboolean
514 g_source_find_source_data (GHook        *hook,
515                            gpointer      data)
516 {
517   GSource *source = (GSource *)hook;
518
519   return (source->source_data == data);
520 }
521
522 gboolean
523 g_source_remove_by_source_data (gpointer source_data)
524 {
525   GHook *hook;
526
527   G_LOCK (main_loop);
528
529   hook = g_hook_find (&source_list, TRUE, 
530                       g_source_find_source_data, source_data);
531   if (hook)
532     g_hook_destroy_link (&source_list, hook);
533
534   G_UNLOCK (main_loop);
535
536   return hook != NULL;
537 }
538
539 static gboolean
540 g_source_find_funcs_user_data (GHook   *hook,
541                                gpointer data)
542 {
543   gpointer *d = data;
544
545   return hook->func == d[0] && hook->data == d[1];
546 }
547
548 gboolean
549 g_source_remove_by_funcs_user_data (GSourceFuncs *funcs,
550                                     gpointer      user_data)
551 {
552   gpointer d[2];
553   GHook *hook;
554
555   g_return_val_if_fail (funcs != NULL, FALSE);
556
557   G_LOCK (main_loop);
558
559   d[0] = funcs;
560   d[1] = user_data;
561
562   hook = g_hook_find (&source_list, TRUE,
563                       g_source_find_funcs_user_data, d);
564   if (hook)
565     g_hook_destroy_link (&source_list, hook);
566
567   G_UNLOCK (main_loop);
568
569   return hook != NULL;
570 }
571
572 void
573 g_get_current_time (GTimeVal *result)
574 {
575 #ifndef _MSC_VER
576   struct timeval r;
577   g_return_if_fail (result != NULL);
578
579   /*this is required on alpha, there the timeval structs are int's
580     not longs and a cast only would fail horribly*/
581   gettimeofday (&r, NULL);
582   result->tv_sec = r.tv_sec;
583   result->tv_usec = r.tv_usec;
584 #else
585   /* Avoid calling time() except for the first time.
586    * GetTickCount() should be pretty fast and low-level?
587    * I could also use ftime() but it seems unnecessarily overheady.
588    */
589   static DWORD start_tick = 0;
590   static time_t start_time;
591   DWORD tick;
592   time_t t;
593
594   g_return_if_fail (result != NULL);
595  
596   if (start_tick == 0)
597     {
598       start_tick = GetTickCount ();
599       time (&start_time);
600     }
601
602   tick = GetTickCount ();
603
604   result->tv_sec = (tick - start_tick) / 1000 + start_time;
605   result->tv_usec = ((tick - start_tick) % 1000) * 1000;
606 #endif
607 }
608
609 /* Running the main loop */
610
611 /* HOLDS: main_loop_lock */
612 static void
613 g_main_dispatch (GTimeVal *current_time)
614 {
615   while (pending_dispatches != NULL)
616     {
617       gboolean need_destroy;
618       GSource *source = pending_dispatches->data;
619       GSList *tmp_list;
620
621       tmp_list = pending_dispatches;
622       pending_dispatches = g_slist_remove_link (pending_dispatches, pending_dispatches);
623       g_slist_free_1 (tmp_list);
624
625       if (G_HOOK_IS_VALID (source))
626         {
627           gboolean was_in_call;
628           gpointer hook_data = source->hook.data;
629           gpointer source_data = source->source_data;
630           gboolean (*dispatch) (gpointer,
631                                 GTimeVal *,
632                                 gpointer);
633
634           dispatch = ((GSourceFuncs *) source->hook.func)->dispatch;
635           
636           was_in_call = G_HOOK_IN_CALL (source);
637           source->hook.flags |= G_HOOK_FLAG_IN_CALL;
638
639           G_UNLOCK (main_loop);
640           need_destroy = ! dispatch (source_data,
641                                      current_time,
642                                      hook_data);
643           G_LOCK (main_loop);
644
645           if (!was_in_call)
646             source->hook.flags &= ~G_HOOK_FLAG_IN_CALL;
647           
648           if (need_destroy && G_HOOK_IS_VALID (source))
649             g_hook_destroy_link (&source_list, (GHook *) source);
650         }
651
652       g_hook_unref (&source_list, (GHook*) source);
653     }
654 }
655
656 /* g_main_iterate () runs a single iteration of the mainloop, or,
657  * if !dispatch checks to see if any sources need dispatching.
658  * basic algorithm for dispatch=TRUE:
659  *
660  * 1) while the list of currently pending sources is non-empty,
661  *    we call (*dispatch) on those that are !IN_CALL or can_recurse,
662  *    removing sources from the list after each returns.
663  *    the return value of (*dispatch) determines whether the source
664  *    itself is kept alive.
665  *
666  * 2) call (*prepare) for sources that are not yet SOURCE_READY and
667  *    are !IN_CALL or can_recurse. a return value of TRUE determines
668  *    that the source would like to be dispatched immediatedly, it
669  *    is then flagged as SOURCE_READY.
670  *
671  * 3) poll with the pollfds from all sources at the priority of the
672  *    first source flagged as SOURCE_READY. if there are any sources
673  *    flagged as SOURCE_READY, we use a timeout of 0 or the minimum
674  *    of all timouts otherwise.
675  *
676  * 4) for each source !IN_CALL or can_recurse, if SOURCE_READY or
677  *    (*check) returns true, add the source to the pending list.
678  *    once one source returns true, stop after checking all sources
679  *    at that priority.
680  *
681  * 5) while the list of currently pending sources is non-empty,
682  *    call (*dispatch) on each source, removing the source
683  *    after the call.
684  *
685  */
686 static gboolean
687 g_main_iterate (gboolean block,
688                 gboolean dispatch)
689 {
690   GHook *hook;
691   GTimeVal current_time  ={ 0, 0 };
692   gint n_ready = 0;
693   gint current_priority = 0;
694   gint timeout;
695   gboolean retval = FALSE;
696
697   g_return_val_if_fail (!block || dispatch, FALSE);
698
699   g_get_current_time (&current_time);
700
701   G_LOCK (main_loop);
702   
703   /* If recursing, finish up current dispatch, before starting over */
704   if (pending_dispatches)
705     {
706       if (dispatch)
707         g_main_dispatch (&current_time);
708       
709       G_UNLOCK (main_loop);
710
711       return TRUE;
712     }
713
714   /* Prepare all sources */
715
716   timeout = block ? -1 : 0;
717   
718   hook = g_hook_first_valid (&source_list, TRUE);
719   while (hook)
720     {
721       GSource *source = (GSource *)hook;
722       gint source_timeout = -1;
723
724       if ((n_ready > 0) && (source->priority > current_priority))
725         {
726           g_hook_unref (&source_list, hook);
727           break;
728         }
729       if (G_HOOK_IN_CALL (hook) && !(hook->flags & G_SOURCE_CAN_RECURSE))
730         {
731           hook = g_hook_next_valid (&source_list, hook, TRUE);
732           continue;
733         }
734
735       in_check_or_prepare++;
736       if (hook->flags & G_SOURCE_READY ||
737           ((GSourceFuncs *) hook->func)->prepare (source->source_data,
738                                                   &current_time,
739                                                   &source_timeout))
740         {
741           in_check_or_prepare--;
742           if (!dispatch)
743             {
744               hook->flags |= G_SOURCE_READY;
745               g_hook_unref (&source_list, hook);
746               G_UNLOCK (main_loop);
747
748               return TRUE;
749             }
750           else
751             {
752               hook->flags |= G_SOURCE_READY;
753               n_ready++;
754               current_priority = source->priority;
755               timeout = 0;
756             }
757         }
758       else
759         in_check_or_prepare--;
760       
761       if (source_timeout >= 0)
762         {
763           if (timeout < 0)
764             timeout = source_timeout;
765           else
766             timeout = MIN (timeout, source_timeout);
767         }
768
769       hook = g_hook_next_valid (&source_list, hook, TRUE);
770     }
771
772   /* poll(), if necessary */
773
774   g_main_poll (timeout, n_ready > 0, current_priority);
775
776   /* Check to see what sources need to be dispatched */
777
778   n_ready = 0;
779   
780   hook = g_hook_first_valid (&source_list, TRUE);
781   while (hook)
782     {
783       GSource *source = (GSource *)hook;
784
785       if ((n_ready > 0) && (source->priority > current_priority))
786         {
787           g_hook_unref (&source_list, hook);
788           break;
789         }
790       if (G_HOOK_IN_CALL (hook) && !(hook->flags & G_SOURCE_CAN_RECURSE))
791         {
792           hook = g_hook_next_valid (&source_list, hook, TRUE);
793           continue;
794         }
795
796       in_check_or_prepare++;
797       if (hook->flags & G_SOURCE_READY ||
798           ((GSourceFuncs *) hook->func)->check (source->source_data,
799                                                 &current_time))
800         {
801           in_check_or_prepare--;
802           if (dispatch)
803             {
804               hook->flags &= ~G_SOURCE_READY;
805               g_hook_ref (&source_list, hook);
806               pending_dispatches = g_slist_prepend (pending_dispatches, source);
807               current_priority = source->priority;
808               n_ready++;
809             }
810           else
811             {
812               g_hook_unref (&source_list, hook);
813               G_UNLOCK (main_loop);
814
815               return TRUE;
816             }
817         }
818       else
819         in_check_or_prepare--;
820       
821       hook = g_hook_next_valid (&source_list, hook, TRUE);
822     }
823
824   /* Now invoke the callbacks */
825
826   if (pending_dispatches)
827     {
828       pending_dispatches = g_slist_reverse (pending_dispatches);
829       g_main_dispatch (&current_time);
830       retval = TRUE;
831     }
832
833   G_UNLOCK (main_loop);
834
835   return retval;
836 }
837
838 /* See if any events are pending
839  */
840 gboolean 
841 g_main_pending (void)
842 {
843   return in_check_or_prepare ? FALSE : g_main_iterate (FALSE, FALSE);
844 }
845
846 /* Run a single iteration of the mainloop. If block is FALSE,
847  * will never block
848  */
849 gboolean
850 g_main_iteration (gboolean block)
851 {
852   if (in_check_or_prepare)
853     {
854       g_warning ("g_main_iteration(): called recursively from within a source's check() or "
855                  "prepare() member, iteration not possible");
856       return FALSE;
857     }
858   else
859     return g_main_iterate (block, TRUE);
860 }
861
862 GMainLoop*
863 g_main_new (gboolean is_running)
864 {
865   GMainLoop *loop;
866
867   loop = g_new0 (GMainLoop, 1);
868   loop->is_running = is_running != FALSE;
869
870   return loop;
871 }
872
873 void 
874 g_main_run (GMainLoop *loop)
875 {
876   g_return_if_fail (loop != NULL);
877
878   if (in_check_or_prepare)
879     {
880       g_warning ("g_main_run(): called recursively from within a source's check() or "
881                  "prepare() member, iteration not possible");
882       return;
883     }
884
885   loop->is_running = TRUE;
886   while (loop->is_running)
887     g_main_iterate (TRUE, TRUE);
888 }
889
890 void 
891 g_main_quit (GMainLoop *loop)
892 {
893   g_return_if_fail (loop != NULL);
894
895   loop->is_running = FALSE;
896 }
897
898 void 
899 g_main_destroy (GMainLoop *loop)
900 {
901   g_return_if_fail (loop != NULL);
902
903   g_free (loop);
904 }
905
906 gboolean
907 g_main_is_running (GMainLoop *loop)
908 {
909   g_return_val_if_fail (loop != NULL, FALSE);
910
911   return loop->is_running;
912 }
913
914 /* HOLDS: main_loop_lock */
915 static void
916 g_main_poll (gint     timeout,
917              gboolean use_priority,
918              gint     priority)
919 {
920   GPollFD *fd_array;
921   GPollRec *pollrec;
922
923   gint i;
924   gint npoll;
925 #ifdef G_THREADS_ENABLED
926 #ifndef NATIVE_WIN32
927   if (wake_up_pipe[0] < 0)
928     {
929       if (pipe (wake_up_pipe) < 0)
930         g_error ("Cannot create pipe main loop wake-up: %s\n",
931                  g_strerror (errno));
932
933       wake_up_rec.fd = wake_up_pipe[0];
934       wake_up_rec.events = G_IO_IN;
935       g_main_add_poll_unlocked (0, &wake_up_rec);
936     }
937 #else
938   if (wake_up_semaphore == NULL)
939     {
940       if ((wake_up_semaphore = CreateSemaphore (NULL, 0, 100, NULL)) == NULL)
941         g_error ("Cannot create wake-up semaphore: %d", GetLastError ());
942       wake_up_rec.fd = (gint) wake_up_semaphore;
943       wake_up_rec.events = G_IO_IN;
944       g_main_add_poll_unlocked (0, &wake_up_rec);
945     }
946 #endif
947 #endif
948   fd_array = g_new (GPollFD, n_poll_records);
949  
950   pollrec = poll_records;
951   i = 0;
952   while (pollrec && (!use_priority || priority >= pollrec->priority))
953     {
954       fd_array[i].fd = pollrec->fd->fd;
955       fd_array[i].events = pollrec->fd->events;
956       fd_array[i].revents = 0;
957         
958       pollrec = pollrec->next;
959       i++;
960     }
961 #ifdef G_THREADS_ENABLED
962   poll_waiting = TRUE;
963 #endif
964   G_UNLOCK (main_loop);
965   npoll = i;
966   (*poll_func) (fd_array, npoll, timeout);
967   G_LOCK (main_loop);
968
969 #ifdef G_THREADS_ENABLED
970   if (!poll_waiting)
971     {
972 #ifndef NATIVE_WIN32
973       gchar c;
974       read (wake_up_pipe[0], &c, 1);
975 #endif
976     }
977   else
978     poll_waiting = FALSE;
979 #endif
980
981   pollrec = poll_records;
982   i = 0;
983   while (i < npoll)
984     {
985       pollrec->fd->revents = fd_array[i].revents;
986       pollrec = pollrec->next;
987       i++;
988     }
989
990   g_free (fd_array);
991 }
992
993 void 
994 g_main_add_poll (GPollFD *fd,
995                  gint     priority)
996 {
997   G_LOCK (main_loop);
998   g_main_add_poll_unlocked (priority, fd);
999   G_UNLOCK (main_loop);
1000 }
1001
1002 /* HOLDS: main_loop_lock */
1003 static void 
1004 g_main_add_poll_unlocked (gint     priority,
1005                           GPollFD *fd)
1006 {
1007   GPollRec *lastrec, *pollrec, *newrec;
1008
1009   if (!poll_chunk)
1010     poll_chunk = g_mem_chunk_create (GPollRec, 32, G_ALLOC_ONLY);
1011
1012   if (poll_free_list)
1013     {
1014       newrec = poll_free_list;
1015       poll_free_list = newrec->next;
1016     }
1017   else
1018     newrec = g_chunk_new (GPollRec, poll_chunk);
1019
1020   newrec->fd = fd;
1021   newrec->priority = priority;
1022
1023   lastrec = NULL;
1024   pollrec = poll_records;
1025   while (pollrec && priority >= pollrec->priority)
1026     {
1027       lastrec = pollrec;
1028       pollrec = pollrec->next;
1029     }
1030   
1031   if (lastrec)
1032     lastrec->next = newrec;
1033   else
1034     poll_records = newrec;
1035
1036   newrec->next = pollrec;
1037
1038   n_poll_records++;
1039 }
1040
1041 void 
1042 g_main_remove_poll (GPollFD *fd)
1043 {
1044   GPollRec *pollrec, *lastrec;
1045
1046   G_LOCK (main_loop);
1047   
1048   lastrec = NULL;
1049   pollrec = poll_records;
1050
1051   while (pollrec)
1052     {
1053       if (pollrec->fd == fd)
1054         {
1055           if (lastrec != NULL)
1056             lastrec->next = pollrec->next;
1057           else
1058             poll_records = pollrec->next;
1059
1060           pollrec->next = poll_free_list;
1061           poll_free_list = pollrec;
1062
1063           n_poll_records--;
1064           break;
1065         }
1066       lastrec = pollrec;
1067       pollrec = pollrec->next;
1068     }
1069
1070   G_UNLOCK (main_loop);
1071 }
1072
1073 void 
1074 g_main_set_poll_func (GPollFunc func)
1075 {
1076   if (func)
1077     poll_func = func;
1078   else
1079 #ifdef HAVE_POLL
1080     poll_func = (GPollFunc) poll;
1081 #else
1082     poll_func = (GPollFunc) g_poll;
1083 #endif
1084 }
1085
1086 /* Timeouts */
1087
1088 static gboolean 
1089 g_timeout_prepare  (gpointer source_data, 
1090                     GTimeVal *current_time,
1091                     gint    *timeout)
1092 {
1093   glong msec;
1094   GTimeoutData *data = source_data;
1095
1096   msec = (data->expiration.tv_sec  - current_time->tv_sec) * 1000 +
1097          (data->expiration.tv_usec - current_time->tv_usec) / 1000;
1098
1099   *timeout = (msec <= 0) ? 0 : msec;
1100
1101   return (msec <= 0);
1102 }
1103
1104 static gboolean 
1105 g_timeout_check    (gpointer source_data,
1106                     GTimeVal *current_time)
1107 {
1108   GTimeoutData *data = source_data;
1109
1110   return (data->expiration.tv_sec < current_time->tv_sec) ||
1111          ((data->expiration.tv_sec == current_time->tv_sec) &&
1112           (data->expiration.tv_usec <= current_time->tv_usec));
1113 }
1114
1115 static gboolean
1116 g_timeout_dispatch (gpointer source_data, 
1117                     GTimeVal *current_time,
1118                     gpointer user_data)
1119 {
1120   GTimeoutData *data = source_data;
1121
1122   if (data->callback (user_data))
1123     {
1124       guint seconds = data->interval / 1000;
1125       guint msecs = data->interval - seconds * 1000;
1126
1127       data->expiration.tv_sec = current_time->tv_sec + seconds;
1128       data->expiration.tv_usec = current_time->tv_usec + msecs * 1000;
1129       if (data->expiration.tv_usec >= 1000000)
1130         {
1131           data->expiration.tv_usec -= 1000000;
1132           data->expiration.tv_sec++;
1133         }
1134       return TRUE;
1135     }
1136   else
1137     return FALSE;
1138 }
1139
1140 guint 
1141 g_timeout_add_full (gint           priority,
1142                     guint          interval, 
1143                     GSourceFunc    function,
1144                     gpointer       data,
1145                     GDestroyNotify notify)
1146 {
1147   guint seconds;
1148   guint msecs;
1149   GTimeoutData *timeout_data = g_new (GTimeoutData, 1);
1150
1151   timeout_data->interval = interval;
1152   timeout_data->callback = function;
1153   g_get_current_time (&timeout_data->expiration);
1154
1155   seconds = timeout_data->interval / 1000;
1156   msecs = timeout_data->interval - seconds * 1000;
1157
1158   timeout_data->expiration.tv_sec += seconds;
1159   timeout_data->expiration.tv_usec += msecs * 1000;
1160   if (timeout_data->expiration.tv_usec >= 1000000)
1161     {
1162       timeout_data->expiration.tv_usec -= 1000000;
1163       timeout_data->expiration.tv_sec++;
1164     }
1165
1166   return g_source_add (priority, FALSE, &timeout_funcs, timeout_data, data, notify);
1167 }
1168
1169 guint 
1170 g_timeout_add (guint32        interval,
1171                GSourceFunc    function,
1172                gpointer       data)
1173 {
1174   return g_timeout_add_full (G_PRIORITY_DEFAULT, 
1175                              interval, function, data, NULL);
1176 }
1177
1178 /* Idle functions */
1179
1180 static gboolean 
1181 g_idle_prepare  (gpointer source_data, 
1182                  GTimeVal *current_time,
1183                  gint     *timeout)
1184 {
1185   timeout = 0;
1186   return TRUE;
1187 }
1188
1189 static gboolean 
1190 g_idle_check    (gpointer  source_data,
1191                  GTimeVal *current_time)
1192 {
1193   return TRUE;
1194 }
1195
1196 static gboolean
1197 g_idle_dispatch (gpointer source_data, 
1198                  GTimeVal *current_time,
1199                  gpointer user_data)
1200 {
1201   GSourceFunc func = source_data;
1202
1203   return func (user_data);
1204 }
1205
1206 guint 
1207 g_idle_add_full (gint           priority,
1208                  GSourceFunc    function,
1209                  gpointer       data,
1210                  GDestroyNotify notify)
1211 {
1212   g_return_val_if_fail (function != NULL, 0);
1213
1214   return g_source_add (priority, FALSE, &idle_funcs, function, data, notify);
1215 }
1216
1217 guint 
1218 g_idle_add (GSourceFunc    function,
1219             gpointer       data)
1220 {
1221   return g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, function, data, NULL);
1222 }
1223
1224 gboolean
1225 g_idle_remove_by_data (gpointer data)
1226 {
1227   return g_source_remove_by_funcs_user_data (&idle_funcs, data);
1228 }