]> Dogcows Code - chaz/openbox/blob - src/BaseDisplay.cc
import from bb-cvs
[chaz/openbox] / src / BaseDisplay.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // BaseDisplay.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifdef HAVE_CONFIG_H
25 # include "../config.h"
26 #endif // HAVE_CONFIG_H
27
28 extern "C" {
29 #include <X11/Xlib.h>
30 #include <X11/Xatom.h>
31 #include <X11/Xutil.h>
32 #include <X11/keysym.h>
33
34 #ifdef SHAPE
35 # include <X11/extensions/shape.h>
36 #endif // SHAPE
37
38 #ifdef HAVE_FCNTL_H
39 # include <fcntl.h>
40 #endif // HAVE_FCNTL_H
41
42 #ifdef HAVE_STDIO_H
43 # include <stdio.h>
44 #endif // HAVE_STDIO_H
45
46 #ifdef HAVE_STDLIB_H
47 # include <stdlib.h>
48 #endif // HAVE_STDLIB_H
49
50 #ifdef HAVE_STRING_H
51 # include <string.h>
52 #endif // HAVE_STRING_H
53
54 #ifdef HAVE_UNISTD_H
55 # include <sys/types.h>
56 # include <unistd.h>
57 #endif // HAVE_UNISTD_H
58
59 #ifdef HAVE_SYS_SELECT_H
60 # include <sys/select.h>
61 #endif // HAVE_SYS_SELECT_H
62
63 #ifdef HAVE_SIGNAL_H
64 # include <signal.h>
65 #endif // HAVE_SIGNAL_H
66
67 #ifndef SA_NODEFER
68 # ifdef SA_INTERRUPT
69 # define SA_NODEFER SA_INTERRUPT
70 # else // !SA_INTERRUPT
71 # define SA_NODEFER (0)
72 # endif // SA_INTERRUPT
73 #endif // SA_NODEFER
74
75 #ifdef HAVE_SYS_WAIT_H
76 # include <sys/types.h>
77 # include <sys/wait.h>
78 #endif // HAVE_SYS_WAIT_H
79 }
80
81 #include <sstream>
82 using std::string;
83
84 #include "i18n.hh"
85 #include "BaseDisplay.hh"
86 #include "GCCache.hh"
87 #include "Timer.hh"
88 #include "Util.hh"
89
90
91 // X error handler to handle any and all X errors while the application is
92 // running
93 static bool internal_error = False;
94 static Window last_bad_window = None;
95
96 BaseDisplay *base_display;
97
98 #ifdef DEBUG
99 static int handleXErrors(Display *d, XErrorEvent *e) {
100 char errtxt[128];
101
102 XGetErrorText(d, e->error_code, errtxt, 128);
103 fprintf(stderr,
104 i18n(BaseDisplaySet, BaseDisplayXError,
105 "%s: X error: %s(%d) opcodes %d/%d\n resource 0x%lx\n"),
106 base_display->getApplicationName(), errtxt, e->error_code,
107 e->request_code, e->minor_code, e->resourceid);
108 #else
109 static int handleXErrors(Display *, XErrorEvent *e) {
110 #endif // DEBUG
111
112 if (e->error_code == BadWindow) last_bad_window = e->resourceid;
113 if (internal_error) abort();
114
115 return(False);
116 }
117
118
119 // signal handler to allow for proper and gentle shutdown
120
121 #ifndef HAVE_SIGACTION
122 static RETSIGTYPE signalhandler(int sig) {
123 #else // HAVE_SIGACTION
124 static void signalhandler(int sig) {
125 #endif // HAVE_SIGACTION
126
127 static int re_enter = 0;
128
129 switch (sig) {
130 case SIGCHLD:
131 int status;
132 waitpid(-1, &status, WNOHANG | WUNTRACED);
133
134 #ifndef HAVE_SIGACTION
135 // assume broken, braindead sysv signal semantics
136 signal(SIGCHLD, (RETSIGTYPE (*)(int)) signalhandler);
137 #endif // HAVE_SIGACTION
138
139 break;
140
141 default:
142 if (base_display->handleSignal(sig)) {
143
144 #ifndef HAVE_SIGACTION
145 // assume broken, braindead sysv signal semantics
146 signal(sig, (RETSIGTYPE (*)(int)) signalhandler);
147 #endif // HAVE_SIGACTION
148
149 return;
150 }
151
152 fprintf(stderr, i18n(BaseDisplaySet, BaseDisplaySignalCaught,
153 "%s: signal %d caught\n"),
154 base_display->getApplicationName(), sig);
155
156 if (! base_display->isStartup() && ! re_enter) {
157 internal_error = True;
158
159 re_enter = 1;
160 fprintf(stderr, i18n(BaseDisplaySet, BaseDisplayShuttingDown,
161 "shutting down\n"));
162 base_display->shutdown();
163 }
164
165 if (sig != SIGTERM && sig != SIGINT) {
166 fprintf(stderr, i18n(BaseDisplaySet, BaseDisplayAborting,
167 "aborting... dumping core\n"));
168 abort();
169 }
170
171 exit(0);
172
173 break;
174 }
175 }
176
177
178 BaseDisplay::BaseDisplay(const char *app_name, const char *dpy_name) {
179 application_name = app_name;
180
181 run_state = STARTUP;
182 last_bad_window = None;
183
184 ::base_display = this;
185
186 #ifdef HAVE_SIGACTION
187 struct sigaction action;
188
189 action.sa_handler = signalhandler;
190 action.sa_mask = sigset_t();
191 action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
192
193 sigaction(SIGPIPE, &action, NULL);
194 sigaction(SIGSEGV, &action, NULL);
195 sigaction(SIGFPE, &action, NULL);
196 sigaction(SIGTERM, &action, NULL);
197 sigaction(SIGINT, &action, NULL);
198 sigaction(SIGCHLD, &action, NULL);
199 sigaction(SIGHUP, &action, NULL);
200 sigaction(SIGUSR1, &action, NULL);
201 sigaction(SIGUSR2, &action, NULL);
202 #else // !HAVE_SIGACTION
203 signal(SIGPIPE, (RETSIGTYPE (*)(int)) signalhandler);
204 signal(SIGSEGV, (RETSIGTYPE (*)(int)) signalhandler);
205 signal(SIGFPE, (RETSIGTYPE (*)(int)) signalhandler);
206 signal(SIGTERM, (RETSIGTYPE (*)(int)) signalhandler);
207 signal(SIGINT, (RETSIGTYPE (*)(int)) signalhandler);
208 signal(SIGUSR1, (RETSIGTYPE (*)(int)) signalhandler);
209 signal(SIGUSR2, (RETSIGTYPE (*)(int)) signalhandler);
210 signal(SIGHUP, (RETSIGTYPE (*)(int)) signalhandler);
211 signal(SIGCHLD, (RETSIGTYPE (*)(int)) signalhandler);
212 #endif // HAVE_SIGACTION
213
214 if (! (display = XOpenDisplay(dpy_name))) {
215 fprintf(stderr,
216 i18n(BaseDisplaySet, BaseDisplayXConnectFail,
217 "BaseDisplay::BaseDisplay: connection to X server failed.\n"));
218 ::exit(2);
219 } else if (fcntl(ConnectionNumber(display), F_SETFD, 1) == -1) {
220 fprintf(stderr,
221 i18n(BaseDisplaySet, BaseDisplayCloseOnExecFail,
222 "BaseDisplay::BaseDisplay: couldn't mark display connection "
223 "as close-on-exec\n"));
224 ::exit(2);
225 }
226
227 display_name = XDisplayName(dpy_name);
228
229 #ifdef SHAPE
230 shape.extensions = XShapeQueryExtension(display, &shape.event_basep,
231 &shape.error_basep);
232 #else // !SHAPE
233 shape.extensions = False;
234 #endif // SHAPE
235
236 XSetErrorHandler((XErrorHandler) handleXErrors);
237
238 screenInfoList.reserve(ScreenCount(display));
239 for (int i = 0; i < ScreenCount(display); ++i)
240 screenInfoList.push_back(ScreenInfo(this, i));
241
242 NumLockMask = ScrollLockMask = 0;
243
244 const XModifierKeymap* const modmap = XGetModifierMapping(display);
245 if (modmap && modmap->max_keypermod > 0) {
246 const int mask_table[] = {
247 ShiftMask, LockMask, ControlMask, Mod1Mask,
248 Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
249 };
250 const size_t size = (sizeof(mask_table) / sizeof(mask_table[0])) *
251 modmap->max_keypermod;
252 // get the values of the keyboard lock modifiers
253 // Note: Caps lock is not retrieved the same way as Scroll and Num lock
254 // since it doesn't need to be.
255 const KeyCode num_lock = XKeysymToKeycode(display, XK_Num_Lock);
256 const KeyCode scroll_lock = XKeysymToKeycode(display, XK_Scroll_Lock);
257
258 for (size_t cnt = 0; cnt < size; ++cnt) {
259 if (! modmap->modifiermap[cnt]) continue;
260
261 if (num_lock == modmap->modifiermap[cnt])
262 NumLockMask = mask_table[cnt / modmap->max_keypermod];
263 if (scroll_lock == modmap->modifiermap[cnt])
264 ScrollLockMask = mask_table[cnt / modmap->max_keypermod];
265 }
266 }
267
268 MaskList[0] = 0;
269 MaskList[1] = LockMask;
270 MaskList[2] = NumLockMask;
271 MaskList[3] = ScrollLockMask;
272 MaskList[4] = LockMask | NumLockMask;
273 MaskList[5] = NumLockMask | ScrollLockMask;
274 MaskList[6] = LockMask | ScrollLockMask;
275 MaskList[7] = LockMask | NumLockMask | ScrollLockMask;
276 MaskListLength = sizeof(MaskList) / sizeof(MaskList[0]);
277
278 if (modmap) XFreeModifiermap(const_cast<XModifierKeymap*>(modmap));
279
280 gccache = 0;
281 }
282
283
284 BaseDisplay::~BaseDisplay(void) {
285 delete gccache;
286
287 XCloseDisplay(display);
288 }
289
290
291 void BaseDisplay::eventLoop(void) {
292 run();
293
294 const int xfd = ConnectionNumber(display);
295
296 while (run_state == RUNNING && ! internal_error) {
297 if (XPending(display)) {
298 XEvent e;
299 XNextEvent(display, &e);
300
301 if (last_bad_window != None && e.xany.window == last_bad_window)
302 continue;
303
304 last_bad_window = None;
305 process_event(&e);
306 } else {
307 fd_set rfds;
308 timeval now, tm, *timeout = (timeval *) 0;
309
310 FD_ZERO(&rfds);
311 FD_SET(xfd, &rfds);
312
313 if (! timerList.empty()) {
314 const BTimer* const timer = timerList.top();
315
316 gettimeofday(&now, 0);
317 tm = timer->timeRemaining(now);
318
319 timeout = &tm;
320 }
321
322 select(xfd + 1, &rfds, 0, 0, timeout);
323
324 // check for timer timeout
325 gettimeofday(&now, 0);
326
327 // there is a small chance for deadlock here:
328 // *IF* the timer list keeps getting refreshed *AND* the time between
329 // timer->start() and timer->shouldFire() is within the timer's period
330 // then the timer will keep firing. This should be VERY near impossible.
331 while (! timerList.empty()) {
332 BTimer *timer = timerList.top();
333 if (! timer->shouldFire(now))
334 break;
335
336 timerList.pop();
337
338 timer->fireTimeout();
339 timer->halt();
340 if (timer->isRecurring())
341 timer->start();
342 }
343 }
344 }
345 }
346
347
348 void BaseDisplay::addTimer(BTimer *timer) {
349 if (! timer) return;
350
351 timerList.push(timer);
352 }
353
354
355 void BaseDisplay::removeTimer(BTimer *timer) {
356 timerList.release(timer);
357 }
358
359
360 /*
361 * Grabs a button, but also grabs the button in every possible combination
362 * with the keyboard lock keys, so that they do not cancel out the event.
363 */
364 void BaseDisplay::grabButton(unsigned int button, unsigned int modifiers,
365 Window grab_window, bool owner_events,
366 unsigned int event_mask, int pointer_mode,
367 int keyboard_mode, Window confine_to,
368 Cursor cursor) const {
369 for (size_t cnt = 0; cnt < MaskListLength; ++cnt) {
370 XGrabButton(display, button, modifiers | MaskList[cnt], grab_window,
371 owner_events, event_mask, pointer_mode, keyboard_mode,
372 confine_to, cursor);
373 }
374 }
375
376 /*
377 * Releases the grab on a button, and ungrabs all possible combinations of the
378 * keyboard lock keys.
379 */
380 void BaseDisplay::ungrabButton(unsigned int button, unsigned int modifiers,
381 Window grab_window) const {
382 for (size_t cnt = 0; cnt < MaskListLength; ++cnt) {
383 XUngrabButton(display, button, modifiers | MaskList[cnt], grab_window);
384 }
385 }
386
387
388 const ScreenInfo* BaseDisplay::getScreenInfo(unsigned int s) const {
389 if (s < screenInfoList.size())
390 return &screenInfoList[s];
391 return (const ScreenInfo*) 0;
392 }
393
394
395 BGCCache *BaseDisplay::gcCache(void) const
396 {
397 if (! gccache) gccache = new BGCCache(this);
398 return gccache;
399 }
400
401
402 ScreenInfo::ScreenInfo(BaseDisplay *d, unsigned int num) {
403 basedisplay = d;
404 screen_number = num;
405
406 root_window = RootWindow(basedisplay->getXDisplay(), screen_number);
407 depth = DefaultDepth(basedisplay->getXDisplay(), screen_number);
408
409 rect.setSize(WidthOfScreen(ScreenOfDisplay(basedisplay->getXDisplay(),
410 screen_number)),
411 HeightOfScreen(ScreenOfDisplay(basedisplay->getXDisplay(),
412 screen_number)));
413
414 // search for a TrueColor Visual... if we can't find one... we will use the
415 // default visual for the screen
416 XVisualInfo vinfo_template, *vinfo_return;
417 int vinfo_nitems;
418
419 vinfo_template.screen = screen_number;
420 vinfo_template.c_class = TrueColor;
421
422 visual = (Visual *) 0;
423
424 vinfo_return = XGetVisualInfo(basedisplay->getXDisplay(),
425 VisualScreenMask | VisualClassMask,
426 &vinfo_template, &vinfo_nitems);
427 if (vinfo_return && vinfo_nitems > 0) {
428 for (int i = 0; i < vinfo_nitems; i++) {
429 if (depth < (vinfo_return + i)->depth) {
430 depth = (vinfo_return + i)->depth;
431 visual = (vinfo_return + i)->visual;
432 }
433 }
434
435 XFree(vinfo_return);
436 }
437
438 if (visual) {
439 colormap = XCreateColormap(basedisplay->getXDisplay(), root_window,
440 visual, AllocNone);
441 } else {
442 visual = DefaultVisual(basedisplay->getXDisplay(), screen_number);
443 colormap = DefaultColormap(basedisplay->getXDisplay(), screen_number);
444 }
445
446 // get the default display string and strip the screen number
447 string default_string = DisplayString(basedisplay->getXDisplay());
448 const string::size_type pos = default_string.rfind(".");
449 if (pos != string::npos)
450 default_string.resize(pos);
451
452 std::ostringstream formatter;
453 formatter << "DISPLAY=" << default_string << '.' << screen_number;
454 display_string = formatter.str();
455 }
This page took 0.059598 seconds and 5 git commands to generate.