aboutsummaryrefslogtreecommitdiff
path: root/src/lib/eventloop.c
blob: 7d06ee372999dc7167fdddc41c76ce7677078441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
/*
     This file is part of GNUnet.
     Copyright (C) 2010, 2011 GNUnet e.V.

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     Boston, MA 02110-1301, USA.
*/

/**
 * @file src/lib/eventloop.c
 * @brief code for merging GNUnet scheduler and Gtk Main Loop event loops
 * @author Christian Grothoff
 */
#include "gnunet_gtk.h"
#if HAVE_GTK_GTKX_H
#include <gtk/gtkx.h>
#endif

/**
 * Initial size of our poll array cache.
 *
 * TODO: get some statistics, find the maximum number of fds ever
 * polled during normal gnunet-gtk operation, and set this to that number.
 * For non-Windows OSes, that is. For Windows it's always 64, because
 * that's the limit anyway.
 */
#ifdef WINDOWS
#define INITIAL_POLL_ARRAY_SIZE 64
#else
#define INITIAL_POLL_ARRAY_SIZE 30
#endif

/**
 * Main context for our event loop.
 */
struct GNUNET_GTK_MainLoop
{

  /**
   * Our configuration (includes defaults from gnunet-gtk/config.d/ and gnunet/config.d/)
   */
  struct GNUNET_CONFIGURATION_Handle *cfg;

  /**
   * Name of the glade file for the main window
   */
  const char *main_window_file;

  /**
   * Initial task to run to setup the system.
   */
  GNUNET_SCHEDULER_TaskCallback main_task;

  /**
   * Builder for the main window.
   */
  GtkBuilder *builder;

  /**
   * Gib's Main loop.
   */
  GMainLoop *gml;

  /**
   * GTK's main context.
   */
  GMainContext *gmc;

  /**
   * Read set.
   */
  struct GNUNET_NETWORK_FDSet *rs;

  /**
   * Write set.
   */
  struct GNUNET_NETWORK_FDSet *ws;

  /**
   * Recycled array of polling descriptors.
   */
  GPollFD *cached_poll_array;

  /**
   * Name of the configuration file.
   */
  char *cfgfile;

  /**
   * Size of the 'cached_poll_array'.
   */
  guint cached_poll_array_size;

  /**
   * Task we keep around just to keep the event loop running.
   */
  struct GNUNET_SCHEDULER_Task *dummy_task;

  /**
   * Remaining command-line arguments.
   */
  char *const*argv;

  /**
   * Number of remaining arguments.
   */
  int argc;

#if WINDOWS
  /**
   * Array to hold pipe handles during a select() call
   */
  struct GNUNET_DISK_FileHandle **read_array;

  /**
   * Allocated length of read_array
   */
  int read_array_length;

  /**
   * Event to fire when a socket is ready for reading
   */
  HANDLE hEventRead;

  /**
   * Event to fire when a socket is ready for writing
   */
  HANDLE hEventWrite;

  /**
   * Event to fire when a socket had an error
   */
  HANDLE hEventException;

  /**
   * Event that is permanently enabled and is used to signal a pipe
   * that is ready for writing (asynchronous pipes are always writable)
   */
  HANDLE hEventPipeWrite;

  /**
   * Event that is permanently enabled and is used to signal a pipe
   * that is ready for reading (used to wake up early on a pipe that
   * is known to be readable)
   */
  HANDLE hEventReadReady;

  /**
   * A list to hold file handles that are ready for reading
   */
  struct GNUNET_CONTAINER_SList *handles_read;

  /**
   * A list to hold file handles that are ready for writing
   */
  struct GNUNET_CONTAINER_SList *handles_write;

  /**
   * A list to hold file handles that are broken
   */
  struct GNUNET_CONTAINER_SList *handles_except;
#endif

};


/**
 * If desired, enable plugging of this main window in the meta window.
 *
 * @param env_name environment variable to check
 * @param main_window main window to plug
 * @return new main window to initialize
 */
GtkWidget *
GNUNET_GTK_plug_me (const char *env_name,
                    GtkWidget *main_window)
{
#if HAVE_GTK_GTKX_H
#ifdef GDK_WINDOWING_X11
  const char *plugid;
  GtkWidget *plug;
  GtkWidget *child;
  unsigned long long id;

  if (NULL == (plugid = getenv (env_name)))
    return main_window; /* no plugging */
  if (1 != sscanf (plugid,
                   "%llu",
                   &id))
  {
    fprintf (stderr,
             _("Invalid plug name `%s'\n"),
             plugid);
    return main_window;
  }
  plug = gtk_plug_new ((Window) id);
  child = gtk_bin_get_child (GTK_BIN (main_window));
  g_object_ref (child);
  gtk_container_remove (GTK_CONTAINER (main_window),
                        child);
  gtk_container_add (GTK_CONTAINER (plug),
                     child);
  g_object_unref (child);
  gtk_widget_destroy (main_window);
  return plug;
#else
  return main_window;
#endif
#else
  return main_window;
#endif
}


/**
 * Get the configuration.
 *
 * @param ml handle to the main loop
 * @return handle to the configuration, never NULL
 */
const struct GNUNET_CONFIGURATION_Handle *
GNUNET_GTK_main_loop_get_configuration (struct GNUNET_GTK_MainLoop *ml)
{
  return ml->cfg;
}


/**
 * Trigger shutdown of the GUI and exit the main loop.
 *
 * @param ml handle to the main loop
 */
void
GNUNET_GTK_main_loop_quit (struct GNUNET_GTK_MainLoop *ml)
{
  g_main_loop_quit (ml->gml);
  ml->gml = NULL;
  if (NULL != ml->dummy_task)
  {
    GNUNET_SCHEDULER_cancel (ml->dummy_task);
    ml->dummy_task = NULL;
  }
}


/**
 * Get the builder from the main window.
 *
 * @param ml handle to the main loop
 * @return NULL on error, otherwise the builder
 */
GtkBuilder *
GNUNET_GTK_main_loop_get_builder (struct GNUNET_GTK_MainLoop *ml)
{
  return ml->builder;
}


int
GNUNET_GTK_main_loop_build_window (struct GNUNET_GTK_MainLoop *ml,
				   gpointer data)
{
  ml->builder = GNUNET_GTK_get_new_builder (ml->main_window_file, data);
  if (ml->builder == NULL)
  {
    GNUNET_GTK_main_loop_quit (ml);
    return GNUNET_SYSERR;
  }
  return GNUNET_OK;
}


/**
 * Obtain the name of the configuration file that is being used.
 *
 * @param ml handle to the main loop
 * @return name of configuration file
 */
const char *
GNUNET_GTK_main_loop_get_configuration_file (struct GNUNET_GTK_MainLoop *ml)
{
  return ml->cfgfile;
}


/**
 * Get an object from the main window.
 *
 * @param ml handle to the main loop
 * @param name name of the object
 * @return NULL on error, otherwise the object
 */
GObject *
GNUNET_GTK_main_loop_get_object (struct GNUNET_GTK_MainLoop * ml,
                                 const char *name)
{
  return gtk_builder_get_object (ml->builder, name);
}


/**
 * Get remaining command line arguments.
 *
 * @param ml handle to the main loop
 * @param argc set to argument count
 * @param argv set to argument vector
 */
void
GNUNET_GTK_main_loop_get_args (struct GNUNET_GTK_MainLoop * ml,
			       int *argc,
			       char *const**argv)
{
  *argc = ml->argc;
  *argv = ml->argv;
}


/**
 * Task to run Gtk events (within a GNUnet scheduler task).
 *
 * @param cls the main loop handle
 */
static void
dispatch_gtk_task (void *cls)
{
  struct GNUNET_GTK_MainLoop *ml = cls;

  g_main_context_dispatch (ml->gmc);
}


/**
 * Change the size of the cached poll array to the given value.
 *
 * @param ml main loop context with the cached poll array
 * @param new_size desired size of the cached poll array
 */
static void
resize_cached_poll_array (struct GNUNET_GTK_MainLoop *ml, guint new_size)
{
  if (NULL == ml->cached_poll_array)
    ml->cached_poll_array = g_new (GPollFD, new_size);
  else
    ml->cached_poll_array = g_renew (GPollFD, ml->cached_poll_array, new_size);
  ml->cached_poll_array_size = new_size;
}


/**
 * Dummy task to keep our scheduler running.
 */
static void
keepalive_task (void *cls)
{
  struct GNUNET_GTK_MainLoop *ml = cls;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Dummy task was scheduled\n");
  ml->dummy_task
    = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
				    &keepalive_task, ml);
}


#ifdef WINDOWS
/**
 * FIXME.
 */
struct _select_params_gtk
{
  /**
   * Read set.
   */
  struct GNUNET_NETWORK_FDSet *rfds;

  /**
   * Write set.
   */
  struct GNUNET_NETWORK_FDSet *wfds;

  /**
   * Except set.
   */
  struct GNUNET_NETWORK_FDSet *efds;

  /**
   * Timeout for select().
   */
  struct GNUNET_TIME_Relative timeout;

  /**
   * FIXME.
   */
  HANDLE event_to_that_wakes_us_up;

  /**
   * FIXME.
   */
  HANDLE event_to_signal_we_woke_up;

  /**
   * FIXME.
   */
  HANDLE event_to_wait_for_a_job;

  /**
   * Set to return value from select.
   */
  int status;
};

static unsigned __stdcall
_gnunet_selector_thread (void *p)
{
  struct _select_params_gtk *sp = p;

  while (1)
  {
    WaitForSingleObject (sp->event_to_wait_for_a_job, INFINITE);
    ResetEvent (sp->event_to_wait_for_a_job);
    sp->status = GNUNET_NETWORK_socket_select (sp->rfds, sp->wfds, sp->efds, sp->timeout);
    SetEvent (sp->event_to_signal_we_woke_up);
  }
  return 0;
}


static int
handle_gui_events (struct GNUNET_GTK_MainLoop *ml,
                   gint max_priority,
                   gint need_gfds)
{
  /* Take care of GUI events.
   * Dispatching the events here will eventually crash the scheduler, must do this
   * from within a task (currently we're not in a task, but in a select() call, remember)
   * Startup reason is used to pass the scheduler sanity check.
   */
  if (NULL == ml->gmc)
    return GNUNET_NO;
  if (g_main_context_check (ml->gmc,
                            max_priority,
                            ml->cached_poll_array,
                            need_gfds))
  {
    GNUNET_SCHEDULER_add_with_reason_and_priority (&dispatch_gtk_task,
                                                   ml,
                                                   GNUNET_SCHEDULER_REASON_STARTUP,
                                                   GNUNET_SCHEDULER_PRIORITY_UI);
    return GNUNET_YES;
  }
  return GNUNET_NO;
}


/**
 * Replacement for the GNUnet scheduler's "select" that integrates the
 * Gtk event loop.  We run g_poll() in the main thread and run
 * GNUnet's own select() in a separate thread in parallel.
 * Then we process the Gtk events (by adding a task to do so to the GNUnet
 * scheduler), and, if applicable, return the GNUnet-scheduler events back
 * to GNUnet.
 *
 * @param cls the 'struct GNUNET_GTK_MainLoop'
 * @param rfds set of sockets to be checked for readability
 * @param wfds set of sockets to be checked for writability
 * @param efds set of sockets to be checked for exceptions
 * @param timeout relative value when to return
 * @return number of selected sockets, GNUNET_SYSERR on error
 */
static int
gnunet_gtk_select (void *cls,
                   struct GNUNET_NETWORK_FDSet *rfds,
                   struct GNUNET_NETWORK_FDSet *wfds,
                   struct GNUNET_NETWORK_FDSet *efds,
                   const struct GNUNET_TIME_Relative timeout)
{
  struct GNUNET_GTK_MainLoop *ml = cls;
  int gnunet_select_result;
  struct GNUNET_TIME_Relative timeout_from_delay;
  gint delay;
  gint need_gfds;
  gint max_priority;
  gint g_poll_result;
  DWORD wait_result;

  static struct GNUNET_NETWORK_FDSet *standin_rfds;
  static HANDLE wakeup_event_for_gnunet;
  static HANDLE gnunet_woke_up_event;
  static HANDLE gnunet_selector_thread_job_event;
  static struct GNUNET_DISK_FileHandle *wakeup_event_for_gnunet_fh;
  static struct _select_params_gtk *sp;

  /* To be safe, we do g_poll in the main thread (MSDN does mention
   * something about message queue being per-thread, and g_poll does
   * wait for messages), unless glib main loop is not running,
   * in which case we just use gnunet select right here.
   */
  static HANDLE gnunet_select_subthread;

  static gsize initialized = 0;

  if (ml->gml == NULL || TRUE != g_main_loop_is_running (ml->gml))
    return GNUNET_NETWORK_socket_select (rfds, wfds, efds, timeout);

  if (g_once_init_enter (&initialized))
  {
    wakeup_event_for_gnunet = CreateEvent (NULL, TRUE, FALSE, NULL);
    gnunet_woke_up_event = CreateEvent (NULL, TRUE, FALSE, NULL);
    standin_rfds = GNUNET_NETWORK_fdset_create ();
    wakeup_event_for_gnunet_fh = GNUNET_DISK_get_handle_from_w32_handle (wakeup_event_for_gnunet);
    gnunet_selector_thread_job_event = CreateEvent (NULL, TRUE, FALSE, NULL);
    sp = GNUNET_new (struct _select_params_gtk);

    sp->event_to_signal_we_woke_up = gnunet_woke_up_event;
    sp->event_to_that_wakes_us_up = wakeup_event_for_gnunet;
    sp->event_to_wait_for_a_job = gnunet_selector_thread_job_event;

    gnunet_select_subthread = (HANDLE) _beginthreadex (NULL, 0, _gnunet_selector_thread, sp, 0, NULL);

    g_once_init_leave (&initialized, 1);
  }

  if (wakeup_event_for_gnunet == NULL ||
      gnunet_woke_up_event == NULL ||
      gnunet_select_subthread == NULL ||
      wakeup_event_for_gnunet_fh == NULL ||
      gnunet_selector_thread_job_event == NULL)
  {
    GNUNET_break (0);
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
         "%s", _("Failed to initialize GNUnet-GTK select\n"));
    return GNUNET_SYSERR;
  }

  timeout_from_delay = GNUNET_TIME_UNIT_ZERO;
  /* Optimization hack: assume that at least one of the fds
   * is not NULL and not empty.
   */
  gnunet_select_result = GNUNET_NETWORK_socket_select (rfds, wfds, efds, timeout_from_delay);
  if (gnunet_select_result < 0)
    return gnunet_select_result;

  if (ml->cached_poll_array_size == 0)
    resize_cached_poll_array (ml, INITIAL_POLL_ARRAY_SIZE);

  delay = INT_MAX;
  need_gfds = -1;
  if (NULL != ml->gmc)
  {
    g_main_context_prepare (ml->gmc, &max_priority);
    need_gfds =
        g_main_context_query (ml->gmc, max_priority, &delay,
                              ml->cached_poll_array,
                              ml->cached_poll_array_size);
    if (ml->cached_poll_array_size < need_gfds + 1)
    {
      GNUNET_break (0);
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           _("Ran out of handle space - g_poll() needs %d handles, has %d!\n"),
           need_gfds + 1, ml->cached_poll_array_size);
      return GNUNET_SYSERR;
    }
  }
  if (timeout.rel_value_us != GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us)
  {
    if (delay >= 0)
      delay =
          GNUNET_MIN (timeout.rel_value_us /
                      GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us, delay);
    else
      delay = timeout.rel_value_us / GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us;
  }

  g_poll_result = g_poll (ml->cached_poll_array, need_gfds, 0);
  if (g_poll_result < 0)
  {
    GNUNET_break (0);
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
         "g_poll() returned %d\n",
         g_poll_result);
    return GNUNET_SYSERR;
  }
  g_poll_result = (GNUNET_YES == handle_gui_events (ml, max_priority, need_gfds)) ? 1 : 0;

  if ((gnunet_select_result > 0) ||
      (g_poll_result > 0) ||
      (delay == 0))
  {
    return gnunet_select_result + g_poll_result;
  }

  if (rfds == NULL)
    rfds = standin_rfds;

  ResetEvent (wakeup_event_for_gnunet);
  ResetEvent (gnunet_woke_up_event);

  GNUNET_NETWORK_fdset_handle_set_first (rfds, wakeup_event_for_gnunet_fh);

  sp->status = 0;
  /* Optimization hack: assume that at least one of the fds
   * is not NULL and not empty.
   */
  sp->rfds = rfds;
  sp->wfds = wfds;
  sp->efds = efds;

  sp->timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, delay);
  ml->cached_poll_array[need_gfds].fd = (intptr_t) gnunet_woke_up_event;
  ml->cached_poll_array[need_gfds].events = G_IO_IN;

  /* Wakes up the gnunet selector thread */
  SetEvent (gnunet_selector_thread_job_event);

  /* During this call, if gnunet select threads wakes up first,
   * it will set gnunet_woke_up_event, waking us up.
   */
  g_poll_result = g_poll (ml->cached_poll_array, need_gfds + 1, delay);

  SetEvent (wakeup_event_for_gnunet);

  wait_result = WaitForSingleObject (gnunet_woke_up_event, INFINITE);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
       "Finished waiting for the gnunet select thread: %lu %d\n",
       wait_result,
       sp->status);

  g_poll_result = (GNUNET_YES == handle_gui_events (ml, max_priority, need_gfds)) ? 1 : 0;

  if (-1 == sp->status)
  {
    return GNUNET_SYSERR;
  }

  if (GNUNET_NETWORK_fdset_handle_isset (rfds, wakeup_event_for_gnunet_fh))
    sp->status -= 1;

  if (-1 == sp->status)
  {
    GNUNET_break (0);
  }

  return sp->status + g_poll_result;
}

#else

#ifndef FD_COPY
#define FD_COPY(s, d) (memcpy ((d), (s), sizeof (fd_set)))
#endif

/**
 * Replacement for the GNUnet scheduler's "select" that integrates the
 * Gtk event loop.  We merge Gtk's events with those from GNUnet's
 * scheduler and then use 'g_poll' on both.  Then we process the Gtk
 * events (by adding a task to do so to the GNUnet scheduler), and, if
 * applicable, return the GNUnet-scheduler events back to GNUnet.
 *
 * @param cls the 'struct GNUNET_GTK_MainLoop'
 * @param rfds set of sockets to be checked for readability
 * @param wfds set of sockets to be checked for writability
 * @param efds set of sockets to be checked for exceptions
 * @param timeout relative value when to return
 * @return number of selected sockets, GNUNET_SYSERR on error
 */
static int
gnunet_gtk_select (void *cls, struct GNUNET_NETWORK_FDSet *rfds,
                   struct GNUNET_NETWORK_FDSet *wfds,
                   struct GNUNET_NETWORK_FDSet *efds,
                   const struct GNUNET_TIME_Relative timeout)
{
  struct GNUNET_GTK_MainLoop *ml = cls;
  int max_nfds;
  gint poll_result;
  gint delay = INT_MAX;
  int i;
  guint ui;
  guint fd_counter;
  guint need_gfds = 0;
  fd_set aread;
  fd_set awrite;
  fd_set aexcept;
  int result = 0;
  gint max_priority;

  if (ml->gml == NULL || TRUE != g_main_loop_is_running (ml->gml))
    return GNUNET_NETWORK_socket_select (rfds, wfds, efds, timeout);
  if (NULL != rfds)
    FD_COPY (&rfds->sds, &aread);
  else
    FD_ZERO (&aread);
  if (NULL != wfds)
    FD_COPY (&wfds->sds, &awrite);
  else
    FD_ZERO (&awrite);
  if (NULL != efds)
    FD_COPY (&efds->sds, &aexcept);
  else
    FD_ZERO (&aexcept);

  max_nfds = -1;
  if (rfds != NULL)
    max_nfds = GNUNET_MAX (max_nfds, rfds->nsds);
  if (wfds != NULL)
    max_nfds = GNUNET_MAX (max_nfds, wfds->nsds);
  if (efds != NULL)
    max_nfds = GNUNET_MAX (max_nfds, efds->nsds);

  if (ml->cached_poll_array_size == 0)
    resize_cached_poll_array (ml, INITIAL_POLL_ARRAY_SIZE);

  fd_counter = 0;
  for (i = 0; i < max_nfds; i++)
  {
    int isset[3];

    isset[0] = (rfds == NULL) ? 0 : FD_ISSET (i, &rfds->sds);
    isset[1] = (wfds == NULL) ? 0 : FD_ISSET (i, &wfds->sds);
    isset[2] = (efds == NULL) ? 0 : FD_ISSET (i, &efds->sds);
    if ((!isset[0]) && (!isset[1]) && (!isset[2]))
      continue;
    if (fd_counter >= ml->cached_poll_array_size)
      resize_cached_poll_array (ml, ml->cached_poll_array_size * 2);
    ml->cached_poll_array[fd_counter].fd = i;
    ml->cached_poll_array[fd_counter].events =
        (isset[0] ? G_IO_IN | G_IO_HUP | G_IO_ERR : 0) | (isset[1] ? G_IO_OUT |
                                                          G_IO_ERR : 0) |
        (isset[2] ? G_IO_ERR : 0);
    fd_counter++;
  }

  /* combine with Gtk events */
  if (NULL != ml->gmc)
  {
    g_main_context_prepare (ml->gmc, &max_priority);
    while (1)
    {
      need_gfds =
          g_main_context_query (ml->gmc, max_priority, &delay,
                                &ml->cached_poll_array[fd_counter],
                                ml->cached_poll_array_size - fd_counter);
      if (ml->cached_poll_array_size >= need_gfds + fd_counter)
        break;
      resize_cached_poll_array (ml, fd_counter + need_gfds);
    }
  }
  if (timeout.rel_value_us != GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us)
  {
    if (delay >= 0)
      delay =
          GNUNET_MIN (timeout.rel_value_us /
                      GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us, delay);
    else
      delay = timeout.rel_value_us / GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "We have %d of our FDs and %d of GMC ones, going to wait %6dms\n",
              fd_counter, need_gfds, delay);
  poll_result = g_poll (ml->cached_poll_array, fd_counter + need_gfds, delay);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "g_poll returned : %d\n", poll_result);
  if (-1 == poll_result)
    return GNUNET_SYSERR;

  /* Take care of GUI events.
   * Dispatching the events here will eventually crash the scheduler, must do this
   * from within a task (currently we're not in a task, but in a select() call, remember)
   * Startup reason is used to pass the scheduler sanity check.
   */
  if (NULL != ml->gmc)
  {
    if (g_main_context_check (ml->gmc,
                              max_priority,
                              &ml->cached_poll_array[fd_counter],
                              need_gfds))
      GNUNET_SCHEDULER_add_with_reason_and_priority (&dispatch_gtk_task,
                                                     ml,
                                                     GNUNET_SCHEDULER_REASON_STARTUP,
                                                     GNUNET_SCHEDULER_PRIORITY_UI);
  }
  /* Now map back GNUnet scheduler events ... */
  if (NULL != rfds)
    GNUNET_NETWORK_fdset_zero (rfds);
  if (NULL != wfds)
    GNUNET_NETWORK_fdset_zero (wfds);
  if (NULL != efds)
    GNUNET_NETWORK_fdset_zero (efds);
  for (ui = 0; ui < fd_counter; ui++)
  {
    int set = 0;

    if ((NULL != rfds) &&
        (set |=
         (FD_ISSET (ml->cached_poll_array[ui].fd, &aread) &&
          (0 !=
           (ml->cached_poll_array[ui].
            revents & (G_IO_IN | G_IO_HUP | G_IO_ERR))))))
      GNUNET_NETWORK_fdset_set_native (rfds, ml->cached_poll_array[ui].fd);
    if ((NULL != wfds) &&
        (set |=
         (FD_ISSET (ml->cached_poll_array[ui].fd, &awrite) &&
          (0 != (ml->cached_poll_array[ui].revents & (G_IO_OUT | G_IO_ERR))))))
      GNUNET_NETWORK_fdset_set_native (wfds, ml->cached_poll_array[ui].fd);
    if ((NULL != efds) &&
        (set |=
         (FD_ISSET (ml->cached_poll_array[ui].fd, &aexcept) &&
          (0 != (ml->cached_poll_array[ui].revents & G_IO_ERR)))))
      GNUNET_NETWORK_fdset_set_native (efds, ml->cached_poll_array[ui].fd);
    if (set)
      result++;
  }
  return result;
}

#endif

/**
 * Actual main function run right after GNUnet's scheduler
 * is initialized.  Initializes up GTK and Glade and starts the
 * combined event loop.
 *
 * @param cls the `struct GNUNET_GTK_MainLoop`
 * @param args leftover command line arguments (go to gtk)
 * @param cfgfile name of the configuration file
 * @param cfg handle to the configuration
 */
static void
run_main_loop (void *cls, char *const *args, const char *cfgfile,
               const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  struct GNUNET_GTK_MainLoop *ml = cls;
  struct GNUNET_CONFIGURATION_Handle *gcfg;
  char *baseconfig;
  char *ipath2;
  char *ipath;
  int argc;

  /* command-line processing for Gtk arguments */
  argc = 0;
  while (args[argc] != NULL)
    argc++;
  gtk_init (&argc, (char ***) &args);
  gcfg = GNUNET_CONFIGURATION_create ();

  if (NULL == (ipath = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_DATADIR)))
  {
    GNUNET_break (0);
    return;
  }
  GNUNET_asprintf (&baseconfig, "%s%s", ipath, "config.d");
  (void) GNUNET_CONFIGURATION_load_from (gcfg, baseconfig);
  GNUNET_free (baseconfig);
  /* FIXME: this was supposed to search the GTK-IPK, so the logic here is badly broken now */
  if (NULL == (ipath2 = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_DATADIR)))
  {
    GNUNET_break (0);
    return;
  }
  if (0 != strcmp (ipath, ipath2))
  {
    GNUNET_asprintf (&baseconfig, "%s%s", ipath2, "config.d");
    if (GNUNET_YES ==
	GNUNET_DISK_directory_test (baseconfig, GNUNET_YES))
      (void) GNUNET_CONFIGURATION_load_from (gcfg, baseconfig);
    GNUNET_free (baseconfig);
  }
  GNUNET_free (ipath2);
  GNUNET_free (ipath);

  if (GNUNET_YES ==
      GNUNET_DISK_file_test (cfgfile))
    (void) GNUNET_CONFIGURATION_parse (gcfg, cfgfile);
  ml->rs = GNUNET_NETWORK_fdset_create ();
  ml->ws = GNUNET_NETWORK_fdset_create ();
  ml->gml = g_main_loop_new (NULL, TRUE);
  ml->gmc = g_main_loop_get_context (ml->gml);
  ml->cfg = gcfg;
  if (NULL != cfgfile)
    ml->cfgfile = GNUNET_strdup (cfgfile);
  ml->argc = argc;
  ml->argv = args;

  /* start the Gtk event loop */
  GNUNET_assert (TRUE == g_main_context_acquire (ml->gmc));
  GNUNET_SCHEDULER_set_select (&gnunet_gtk_select, ml);

  /* keep Gtk event loop running even if there are no GNUnet tasks */
  ml->dummy_task =
      GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
                                    &keepalive_task, ml);

  /* run main task of the application */
  GNUNET_SCHEDULER_add_with_reason_and_priority (ml->main_task,
                                                 ml,
                                                 GNUNET_SCHEDULER_REASON_STARTUP,
                                                 GNUNET_SCHEDULER_PRIORITY_DEFAULT);
}


/**
 * Initialize the main loop.
 *
 * @param binary_name binary name
 * @param binary_help help text for the binary
 * @param argc number of command line options
 * @param argv command line options
 * @param options allowed command line options
 * @param main_window_file glade file for the main window
 * @param main_task first task to run, closure will be set to the `struct GNUNET_GTK_MainLoop`
 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error (i.e. bad command-line options, etc)
 */
int
GNUNET_GTK_main_loop_start (const char *binary_name,
			    const char *binary_help,
                            int argc, char *const *argv,
                            struct GNUNET_GETOPT_CommandLineOption *options,
                            const char *main_window_file,
                            GNUNET_SCHEDULER_TaskCallback main_task)
{
  struct GNUNET_GTK_MainLoop ml;
  int ret;

  memset (&ml, 0, sizeof (ml));
  ml.main_window_file = main_window_file;
  ml.main_task = main_task;
  ret = GNUNET_PROGRAM_run (argc, argv, binary_name,
                            binary_help, options,
                            &run_main_loop, &ml);
  if (NULL != ml.cached_poll_array)
    g_free (ml.cached_poll_array);
  if (NULL != ml.rs)
    GNUNET_NETWORK_fdset_destroy (ml.rs);
  if (NULL != ml.ws)
    GNUNET_NETWORK_fdset_destroy (ml.ws);
  if (NULL != ml.builder)
    g_object_unref (G_OBJECT (ml.builder));
  if (NULL != ml.gml)
    g_main_loop_unref (ml.gml);
  if (NULL != ml.cfg)
  {
    GNUNET_CONFIGURATION_destroy (ml.cfg);
    ml.cfg = NULL;
  }
  GNUNET_free_non_null (ml.cfgfile);
  return ret;
}


/* end of eventloop.c */