]> Dogcows Code - chaz/openbox/blob - src/openbox.cc
d599e7bfc19ba4128b79eb472dd99d72630896ef
[chaz/openbox] / src / openbox.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "openbox.hh"
8 #include "client.hh"
9 #include "screen.hh"
10 #include "actions.hh"
11 #include "bindings.hh"
12 #include "python.hh"
13 #include "otk/property.hh"
14 #include "otk/assassin.hh"
15 #include "otk/property.hh"
16 #include "otk/util.hh"
17
18 extern "C" {
19 #include <X11/cursorfont.h>
20
21 #ifdef HAVE_STDIO_H
22 # include <stdio.h>
23 #endif // HAVE_STDIO_H
24
25 #ifdef HAVE_STDLIB_H
26 # include <stdlib.h>
27 #endif // HAVE_STDLIB_H
28
29 #ifdef HAVE_SIGNAL_H
30 # include <signal.h>
31 #endif // HAVE_SIGNAL_H
32
33 #ifdef HAVE_FCNTL_H
34 # include <fcntl.h>
35 #endif // HAVE_FCNTL_H
36
37 #ifdef HAVE_UNISTD_H
38 # include <sys/types.h>
39 # include <unistd.h>
40 #endif // HAVE_UNISTD_H
41
42 #ifdef HAVE_SYS_SELECT_H
43 # include <sys/select.h>
44 #endif // HAVE_SYS_SELECT_H
45
46 #include "gettext.h"
47 #define _(str) gettext(str)
48 }
49
50 #include <algorithm>
51
52 namespace ob {
53
54 Openbox *openbox = (Openbox *) 0;
55
56
57 void Openbox::signalHandler(int signal)
58 {
59 switch (signal) {
60 case SIGUSR1:
61 printf("Caught SIGUSR1 signal. Restarting.\n");
62 openbox->restart();
63 break;
64
65 case SIGHUP:
66 case SIGINT:
67 case SIGTERM:
68 case SIGPIPE:
69 printf("Caught signal %d. Exiting.\n", signal);
70 openbox->shutdown();
71 break;
72
73 case SIGFPE:
74 case SIGSEGV:
75 printf("Caught signal %d. Aborting and dumping core.\n", signal);
76 abort();
77 }
78 }
79
80
81 Openbox::Openbox(int argc, char **argv)
82 : otk::EventDispatcher(),
83 otk::EventHandler(),
84 _display()
85 {
86 struct sigaction action;
87
88 _state = State_Starting; // initializing everything
89
90 openbox = this;
91
92 _displayreq = (char*) 0;
93 _argv = argv;
94 _shutdown = false;
95 _restart = false;
96 _rcfilepath = otk::expandTilde("~/.openbox/rc3");
97 _scriptfilepath = otk::expandTilde("~/.openbox/user.py");
98 _focused_client = 0;
99 _sync = false;
100
101 parseCommandLine(argc, argv);
102
103 XSynchronize(**otk::display, _sync);
104
105 // set up the signal handler
106 action.sa_handler = Openbox::signalHandler;
107 action.sa_mask = sigset_t();
108 action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
109 sigaction(SIGUSR1, &action, (struct sigaction *) 0);
110 sigaction(SIGPIPE, &action, (struct sigaction *) 0);
111 sigaction(SIGSEGV, &action, (struct sigaction *) 0);
112 sigaction(SIGFPE, &action, (struct sigaction *) 0);
113 sigaction(SIGTERM, &action, (struct sigaction *) 0);
114 sigaction(SIGINT, &action, (struct sigaction *) 0);
115 sigaction(SIGHUP, &action, (struct sigaction *) 0);
116
117 otk::Timer::initialize();
118 otk::Property::initialize();
119 _actions = new Actions();
120 _bindings = new Bindings();
121
122 setMasterHandler(_actions); // set as the master event handler
123
124 // create the mouse cursors we'll use
125 _cursors.session = XCreateFontCursor(**otk::display, XC_left_ptr);
126 _cursors.move = XCreateFontCursor(**otk::display, XC_fleur);
127 _cursors.ll_angle = XCreateFontCursor(**otk::display, XC_ll_angle);
128 _cursors.lr_angle = XCreateFontCursor(**otk::display, XC_lr_angle);
129 _cursors.ul_angle = XCreateFontCursor(**otk::display, XC_ul_angle);
130 _cursors.ur_angle = XCreateFontCursor(**otk::display, XC_ur_angle);
131
132 // initialize scripting
133 python_init(argv[0]);
134
135 // load config values
136 python_exec(SCRIPTDIR"/config.py"); // load openbox config values
137 // run all of the python scripts
138 python_exec(SCRIPTDIR"/builtins.py"); // builtin callbacks
139 // run the user's script or the system defaults if that fails
140 if (!python_exec(_scriptfilepath.c_str()))
141 python_exec(SCRIPTDIR"/defaults.py"); // system default bahaviors
142
143 // initialize all the screens
144 Screen *screen;
145 int i = _single ? DefaultScreen(**otk::display) : 0;
146 int max = _single ? i + 1 : ScreenCount(**otk::display);
147 for (; i < max; ++i) {
148 screen = new Screen(i);
149 if (screen->managed())
150 _screens.push_back(screen);
151 else
152 delete screen;
153 }
154
155 if (_screens.empty()) {
156 printf(_("No screens were found without a window manager. Exiting.\n"));
157 ::exit(1);
158 }
159
160 ScreenList::iterator it, end = _screens.end();
161 for (it = _screens.begin(); it != end; ++it) {
162 (*it)->manageExisting();
163 }
164
165 // grab any keys set up before the screens existed
166 _bindings->grabKeys(true);
167
168 // set up input focus
169 _focused_screen = _screens[0];
170 setFocusedClient(0);
171
172 _state = State_Normal; // done starting
173 }
174
175
176 Openbox::~Openbox()
177 {
178 _state = State_Exiting; // time to kill everything
179
180 int first_screen = _screens.front()->number();
181
182 std::for_each(_screens.begin(), _screens.end(), otk::PointerAssassin());
183
184 delete _bindings;
185 delete _actions;
186
187 python_destroy();
188
189 XSetInputFocus(**otk::display, PointerRoot, RevertToNone,
190 CurrentTime);
191 XSync(**otk::display, false);
192
193 // this tends to block.. i honestly am not sure why. causing an x error in
194 // the shutdown process unblocks it. blackbox simply did a ::exit(0), so
195 // all im gunna do is the same.
196 //otk::display->destroy();
197
198 otk::Timer::destroy();
199
200 if (_restart) {
201 if (!_restart_prog.empty()) {
202 otk::putenv(otk::display->screenInfo(first_screen)->displayString());
203 execl("/bin/sh", "/bin/sh", "-c", _restart_prog.c_str(), NULL);
204 perror(_restart_prog.c_str());
205 }
206
207 // fall back in case the above execlp doesn't work
208 execvp(_argv[0], _argv);
209 execvp(otk::basename(_argv[0]).c_str(), _argv);
210 }
211 }
212
213
214 void Openbox::parseCommandLine(int argc, char **argv)
215 {
216 bool err = false;
217
218 for (int i = 1; i < argc; ++i) {
219 std::string arg(argv[i]);
220
221 if (arg == "-display") {
222 if (++i >= argc)
223 err = true;
224 else
225 _displayreq = argv[i];
226 } else if (arg == "-rc") {
227 if (++i >= argc)
228 err = true;
229 else
230 _rcfilepath = argv[i];
231 } else if (arg == "-menu") {
232 if (++i >= argc)
233 err = true;
234 else
235 _menufilepath = argv[i];
236 } else if (arg == "-script") {
237 if (++i >= argc)
238 err = true;
239 else
240 _scriptfilepath = argv[i];
241 } else if (arg == "-sync") {
242 _sync = true;
243 } else if (arg == "-single") {
244 _single = true;
245 } else if (arg == "-version") {
246 showVersion();
247 ::exit(0);
248 } else if (arg == "-help") {
249 showHelp();
250 ::exit(0);
251 } else
252 err = true;
253
254 if (err) {
255 showHelp();
256 exit(1);
257 }
258 }
259 }
260
261
262 void Openbox::showVersion()
263 {
264 printf(_("Openbox - version %s\n"), VERSION);
265 printf(" (c) 2002 - 2002 Ben Jansens\n\n");
266 }
267
268
269 void Openbox::showHelp()
270 {
271 showVersion(); // show the version string and copyright
272
273 // print program usage and command line options
274 printf(_("Usage: %s [OPTIONS...]\n\
275 Options:\n\
276 -display <string> use display connection.\n\
277 -single run on a single screen (default is to run every one).\n\
278 -rc <string> use alternate resource file.\n\
279 -menu <string> use alternate menu file.\n\
280 -script <string> use alternate startup script file.\n\
281 -sync run in synchronous mode (for debugging).\n\
282 -version display version and exit.\n\
283 -help display this help text and exit.\n\n"), _argv[0]);
284
285 printf(_("Compile time options:\n\
286 Debugging: %s\n\
287 Shape: %s\n\
288 Xinerama: %s\n\
289 Xkb: %s\n"),
290 #ifdef DEBUG
291 _("yes"),
292 #else // !DEBUG
293 _("no"),
294 #endif // DEBUG
295
296 #ifdef SHAPE
297 _("yes"),
298 #else // !SHAPE
299 _("no"),
300 #endif // SHAPE
301
302 #ifdef XINERAMA
303 _("yes"),
304 #else // !XINERAMA
305 _("no"),
306 #endif // XINERAMA
307
308 #ifdef XKB
309 _("yes")
310 #else // !XKB
311 _("no")
312 #endif // XKB
313 );
314 }
315
316
317 void Openbox::eventLoop()
318 {
319 while (true) {
320 dispatchEvents(); // from otk::EventDispatcher
321 XFlush(**otk::display); // flush here before we go wait for timers
322 // don't wait if we're to shutdown
323 if (_shutdown) break;
324 otk::Timer::dispatchTimers(!_sync); // wait if not in sync mode
325 }
326 }
327
328
329 void Openbox::addClient(Window window, Client *client)
330 {
331 _clients[window] = client;
332 }
333
334
335 void Openbox::removeClient(Window window)
336 {
337 _clients.erase(window);
338 }
339
340
341 Client *Openbox::findClient(Window window)
342 {
343 /*
344 NOTE: we dont use _clients[] to find the value because that will insert
345 a new null into the hash, which really sucks when we want to clean up the
346 hash at shutdown!
347 */
348 ClientMap::iterator it = _clients.find(window);
349 if (it != _clients.end())
350 return it->second;
351 else
352 return (Client*) 0;
353 }
354
355
356 void Openbox::setFocusedClient(Client *c)
357 {
358 _focused_client = c;
359 if (c) {
360 _focused_screen = _screens[c->screen()];
361 } else {
362 assert(_focused_screen);
363 XSetInputFocus(**otk::display, _focused_screen->focuswindow(),
364 RevertToNone, CurrentTime);
365 }
366 // set the NET_ACTIVE_WINDOW hint for all screens
367 ScreenList::iterator it, end = _screens.end();
368 for (it = _screens.begin(); it != end; ++it) {
369 int num = (*it)->number();
370 Window root = otk::display->screenInfo(num)->rootWindow();
371 otk::Property::set(root, otk::Property::atoms.net_active_window,
372 otk::Property::atoms.window,
373 (c && _focused_screen == *it) ? c->window() : None);
374 }
375
376 // call the python Focus callbacks
377 EventData data(_focused_screen->number(), c, EventFocus, 0);
378 _bindings->fireEvent(&data);
379 }
380
381 void Openbox::execute(int screen, const std::string &bin)
382 {
383 if (screen >= ScreenCount(**otk::display))
384 screen = 0;
385 otk::bexec(bin, otk::display->screenInfo(screen)->displayString());
386 }
387
388 }
389
This page took 0.05526 seconds and 4 git commands to generate.