* simple.el (list-processes): Doc fix.
[bpt/emacs.git] / src / xgselect.c
CommitLineData
872870b2 1/* Function for handling the GLib event loop.
95df8112 2
acaf905b 3Copyright (C) 2009-2012 Free Software Foundation, Inc.
872870b2
JD
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
0949d2b6 18along with GNU Emacs. If not, see <http§://www.gnu.org/licenses/>. */
872870b2 19
08a494a3 20#include <config.h>
872870b2 21
aefd87e1
PE
22#include <setjmp.h>
23#include "xgselect.h"
24
0949d2b6 25#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
aefd87e1 26
872870b2
JD
27#include <glib.h>
28#include <errno.h>
29#include <setjmp.h>
b2f4d39f 30#include "xterm.h"
872870b2
JD
31
32static GPollFD *gfds;
0065d054 33static ptrdiff_t gfds_size;
872870b2
JD
34
35int
ff23cd9f 36xg_select (int fds_lim, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
d35af63c 37 EMACS_TIME *timeout, sigset_t *sigmask)
872870b2
JD
38{
39 SELECT_TYPE all_rfds, all_wfds;
40 EMACS_TIME tmo, *tmop = timeout;
41
b0572523 42 GMainContext *context;
872870b2 43 int have_wfds = wfds != NULL;
d35af63c 44 int n_gfds = 0, retval = 0, our_fds = 0, max_fds = fds_lim - 1;
ff23cd9f 45 int i, nfds, tmo_in_millisec;
872870b2 46
b2f4d39f 47 if (!x_in_use)
d35af63c 48 return pselect (fds_lim, rfds, wfds, efds, tmop, sigmask);
b0572523 49
872870b2
JD
50 if (rfds) memcpy (&all_rfds, rfds, sizeof (all_rfds));
51 else FD_ZERO (&all_rfds);
52 if (wfds) memcpy (&all_wfds, wfds, sizeof (all_rfds));
53 else FD_ZERO (&all_wfds);
54
55 /* Update event sources in GLib. */
b0572523 56 context = g_main_context_default ();
872870b2
JD
57 g_main_context_pending (context);
58
59 do {
41729b81 60 if (n_gfds > gfds_size)
872870b2 61 {
872870b2 62 xfree (gfds);
0065d054
PE
63 gfds = xpalloc (0, &gfds_size, n_gfds - gfds_size, INT_MAX,
64 sizeof *gfds);
872870b2
JD
65 }
66
67 n_gfds = g_main_context_query (context,
68 G_PRIORITY_LOW,
69 &tmo_in_millisec,
70 gfds,
71 gfds_size);
72 } while (n_gfds > gfds_size);
73
41729b81 74 for (i = 0; i < n_gfds; ++i)
872870b2
JD
75 {
76 if (gfds[i].events & G_IO_IN)
77 {
78 FD_SET (gfds[i].fd, &all_rfds);
79 if (gfds[i].fd > max_fds) max_fds = gfds[i].fd;
80 }
81 if (gfds[i].events & G_IO_OUT)
82 {
83 FD_SET (gfds[i].fd, &all_wfds);
84 if (gfds[i].fd > max_fds) max_fds = gfds[i].fd;
85 have_wfds = 1;
86 }
87 }
88
89 if (tmo_in_millisec >= 0)
90 {
e9a9ae03
PE
91 tmo = make_emacs_time (tmo_in_millisec / 1000,
92 1000 * 1000 * (tmo_in_millisec % 1000));
d35af63c
PE
93 if (!timeout || EMACS_TIME_LT (tmo, *timeout))
94 tmop = &tmo;
872870b2
JD
95 }
96
97107e2e 97 fds_lim = max_fds + 1;
d35af63c
PE
98 nfds = pselect (fds_lim, &all_rfds, have_wfds ? &all_wfds : NULL,
99 efds, tmop, sigmask);
872870b2
JD
100
101 if (nfds < 0)
102 retval = nfds;
41729b81 103 else if (nfds > 0)
872870b2 104 {
97107e2e 105 for (i = 0; i < fds_lim; ++i)
872870b2
JD
106 {
107 if (FD_ISSET (i, &all_rfds))
108 {
109 if (rfds && FD_ISSET (i, rfds)) ++retval;
110 else ++our_fds;
111 }
42d3022b
J
112 else if (rfds)
113 FD_CLR (i, rfds);
114
872870b2
JD
115 if (have_wfds && FD_ISSET (i, &all_wfds))
116 {
117 if (wfds && FD_ISSET (i, wfds)) ++retval;
118 else ++our_fds;
119 }
42d3022b
J
120 else if (wfds)
121 FD_CLR (i, wfds);
122
872870b2
JD
123 if (efds && FD_ISSET (i, efds))
124 ++retval;
125 }
126 }
127
d35af63c 128 if (our_fds > 0 || (nfds == 0 && tmop == &tmo))
872870b2 129 {
41729b81 130
872870b2
JD
131 /* If Gtk+ is in use eventually gtk_main_iteration will be called,
132 unless retval is zero. */
133#ifdef USE_GTK
134 if (retval == 0)
135#endif
136 while (g_main_context_pending (context))
137 g_main_context_dispatch (context);
138
139 /* To not have to recalculate timeout, return like this. */
41729b81 140 if (retval == 0)
872870b2
JD
141 {
142 retval = -1;
143 errno = EINTR;
144 }
145 }
146
147 return retval;
148}
0949d2b6 149#endif /* USE_GTK || HAVE_GCONF || HAVE_GSETTINGS */
872870b2
JD
150
151void
971de7fb 152xgselect_initialize (void)
872870b2 153{
0949d2b6 154#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
872870b2 155 gfds_size = 128;
38182d90 156 gfds = xmalloc (gfds_size * sizeof *gfds);
0949d2b6 157#endif
872870b2 158}