1 /* Function for handling the GLib event loop.
2 Copyright (C) 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs 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
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #if defined (USE_GTK) || defined (HAVE_GCONF)
32 xg_select (int max_fds
, SELECT_TYPE
*rfds
, SELECT_TYPE
*wfds
, SELECT_TYPE
*efds
,
35 SELECT_TYPE all_rfds
, all_wfds
;
36 EMACS_TIME tmo
, *tmop
= timeout
;
38 GMainContext
*context
= g_main_context_default ();
39 int have_wfds
= wfds
!= NULL
;
40 int n_gfds
= 0, our_tmo
= 0, retval
= 0, our_fds
= 0;
41 int prio
, i
, nfds
, tmo_in_millisec
;
43 if (rfds
) memcpy (&all_rfds
, rfds
, sizeof (all_rfds
));
44 else FD_ZERO (&all_rfds
);
45 if (wfds
) memcpy (&all_wfds
, wfds
, sizeof (all_rfds
));
46 else FD_ZERO (&all_wfds
);
48 /* Update event sources in GLib. */
49 g_main_context_pending (context
);
52 if (n_gfds
> gfds_size
)
54 while (n_gfds
> gfds_size
)
57 gfds
= xmalloc (sizeof (*gfds
) * gfds_size
);
60 n_gfds
= g_main_context_query (context
,
65 } while (n_gfds
> gfds_size
);
67 for (i
= 0; i
< n_gfds
; ++i
)
69 if (gfds
[i
].events
& G_IO_IN
)
71 FD_SET (gfds
[i
].fd
, &all_rfds
);
72 if (gfds
[i
].fd
> max_fds
) max_fds
= gfds
[i
].fd
;
74 if (gfds
[i
].events
& G_IO_OUT
)
76 FD_SET (gfds
[i
].fd
, &all_wfds
);
77 if (gfds
[i
].fd
> max_fds
) max_fds
= gfds
[i
].fd
;
82 if (tmo_in_millisec
>= 0)
84 EMACS_SET_SECS_USECS (tmo
, tmo_in_millisec
/1000,
85 1000 * (tmo_in_millisec
% 1000));
86 if (!timeout
) our_tmo
= 1;
89 EMACS_TIME difference
;
91 EMACS_SUB_TIME (difference
, tmo
, *timeout
);
92 if (EMACS_TIME_NEG_P (difference
)) our_tmo
= 1;
95 if (our_tmo
) tmop
= &tmo
;
98 nfds
= select (max_fds
+1, &all_rfds
, have_wfds
? &all_wfds
: NULL
,
105 for (i
= 0; i
< max_fds
+1; ++i
)
107 if (FD_ISSET (i
, &all_rfds
))
109 if (rfds
&& FD_ISSET (i
, rfds
)) ++retval
;
115 if (have_wfds
&& FD_ISSET (i
, &all_wfds
))
117 if (wfds
&& FD_ISSET (i
, wfds
)) ++retval
;
123 if (efds
&& FD_ISSET (i
, efds
))
128 if (our_fds
> 0 || (nfds
== 0 && our_tmo
))
131 /* If Gtk+ is in use eventually gtk_main_iteration will be called,
132 unless retval is zero. */
136 while (g_main_context_pending (context
))
137 g_main_context_dispatch (context
);
139 /* To not have to recalculate timeout, return like this. */
149 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
152 xgselect_initialize (void)
154 #if defined (USE_GTK) || defined (HAVE_GCONF)
156 gfds
= xmalloc (sizeof (*gfds
)*gfds_size
);
157 #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
160 /* arch-tag: c5873ee3-d1f6-44f9-9f3b-b14f70fd0e6a
161 (do not change this comment) */