]> icculus.org git repositories - mikachu/openbox.git/blob - src/openbox.cc
rm the old bb src
[mikachu/openbox.git] / 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 "../version.h"
8 #include "openbox.hh"
9 #include "client.hh"
10 #include "screen.hh"
11 #include "actions.hh"
12 #include "bindings.hh"
13 #include "python.hh"
14 #include "otk/property.hh"
15 #include "otk/display.hh"
16 #include "otk/assassin.hh"
17 #include "otk/util.hh" // TEMPORARY
18
19 extern "C" {
20 #include <X11/cursorfont.h>
21
22 #ifdef    HAVE_STDIO_H
23 #  include <stdio.h>
24 #endif // HAVE_STDIO_H
25
26 #ifdef    HAVE_STDLIB_H
27 #  include <stdlib.h>
28 #endif // HAVE_STDLIB_H
29
30 #ifdef    HAVE_SIGNAL_H
31 #  include <signal.h>
32 #endif // HAVE_SIGNAL_H
33
34 #ifdef    HAVE_FCNTL_H
35 #  include <fcntl.h>
36 #endif // HAVE_FCNTL_H
37
38 #ifdef    HAVE_UNISTD_H
39 #  include <sys/types.h>
40 #  include <unistd.h>
41 #endif // HAVE_UNISTD_H
42
43 #ifdef    HAVE_SYS_SELECT_H
44 #  include <sys/select.h>
45 #endif // HAVE_SYS_SELECT_H
46
47 #include "gettext.h"
48 #define _(str) gettext(str)
49 }
50
51 #include <algorithm>
52
53 namespace ob {
54
55 Openbox *Openbox::instance  = (Openbox *) 0;
56
57
58 void Openbox::signalHandler(int signal)
59 {
60   switch (signal) {
61   case SIGHUP:
62     // XXX: Do something with HUP? Really shouldn't, we get this when X shuts
63     //      down and hangs-up on us.
64     
65   case SIGINT:
66   case SIGTERM:
67   case SIGPIPE:
68     printf("Caught signal %d. Exiting.\n", signal);
69     instance->shutdown();
70
71     break;
72   case SIGFPE:
73   case SIGSEGV:
74     printf("Caught signal %d. Aborting and dumping core.\n", signal);
75     abort();
76   }
77 }
78
79
80 Openbox::Openbox(int argc, char **argv)
81   : otk::OtkEventDispatcher(),
82     otk::OtkEventHandler()
83 {
84   struct sigaction action;
85
86   _state = State_Starting; // initializing everything
87
88   Openbox::instance = this;
89
90   _displayreq = (char*) 0;
91   _argv0 = argv[0];
92   _doshutdown = false;
93   _rcfilepath = otk::expandTilde("~/.openbox/rc3");
94   _scriptfilepath = otk::expandTilde("~/.openbox/user.py");
95   _focused_client = 0;
96   _sync = false;
97
98   parseCommandLine(argc, argv);
99
100   // open the X display (and gets some info about it, and its screens)
101   otk::OBDisplay::initialize(_displayreq);
102   assert(otk::OBDisplay::display);
103
104   XSynchronize(otk::OBDisplay::display, _sync);
105   
106   // set up the signal handler
107   action.sa_handler = Openbox::signalHandler;
108   action.sa_mask = sigset_t();
109   action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
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   _property = new otk::OBProperty();
118   _actions = new OBActions();
119   _bindings = new OBBindings();
120
121   setMasterHandler(_actions); // set as the master event handler
122
123   // create the mouse cursors we'll use
124   _cursors.session = XCreateFontCursor(otk::OBDisplay::display, XC_left_ptr);
125   _cursors.move = XCreateFontCursor(otk::OBDisplay::display, XC_fleur);
126   _cursors.ll_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ll_angle);
127   _cursors.lr_angle = XCreateFontCursor(otk::OBDisplay::display, XC_lr_angle);
128   _cursors.ul_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ul_angle);
129   _cursors.ur_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ur_angle);
130
131   // initialize scripting
132   python_init(argv[0]);
133   
134   // load config values
135   python_exec(SCRIPTDIR"/config.py"); // load openbox config values
136   // run all of the python scripts
137   python_exec(SCRIPTDIR"/builtins.py"); // builtin callbacks
138   // run the user's script
139   python_exec(_scriptfilepath.c_str());
140
141   // initialize all the screens
142   OBScreen *screen;
143   screen = new OBScreen(0);
144   if (screen->managed()) {
145     _screens.push_back(screen);
146     // XXX: "change to" the first workspace on the screen to initialize stuff
147   } else
148     delete screen;
149
150   if (_screens.empty()) {
151     printf(_("No screens were found without a window manager. Exiting.\n"));
152     ::exit(1);
153   }
154
155   ScreenList::iterator it, end = _screens.end();
156   for (it = _screens.begin(); it != end; ++it) {
157     (*it)->manageExisting();
158   }
159  
160   // grab any keys set up before the screens existed
161   _bindings->grabKeys(true);
162
163   // set up input focus
164   _focused_screen = _screens[0];
165   setFocusedClient(0);
166   
167   _state = State_Normal; // done starting
168 }
169
170
171 Openbox::~Openbox()
172 {
173   _state = State_Exiting; // time to kill everything
174
175   // return input focus to the root
176   XSetInputFocus(otk::OBDisplay::display, PointerRoot, None, CurrentTime);
177   
178   std::for_each(_screens.begin(), _screens.end(), otk::PointerAssassin());
179
180   delete _bindings;
181   delete _actions;
182   delete _property;
183
184   python_destroy();
185
186   XSync(otk::OBDisplay::display, False);
187   
188   // close the X display
189   otk::OBDisplay::destroy();
190   printf("Exiting!\n");
191 }
192
193
194 void Openbox::parseCommandLine(int argc, char **argv)
195 {
196   bool err = false;
197
198   for (int i = 1; i < argc; ++i) {
199     std::string arg(argv[i]);
200
201     if (arg == "-display") {
202       if (++i >= argc)
203         err = true;
204       else
205         _displayreq = argv[i];
206     } else if (arg == "-rc") {
207       if (++i >= argc)
208         err = true;
209       else
210         _rcfilepath = argv[i];
211     } else if (arg == "-menu") {
212       if (++i >= argc)
213         err = true;
214       else
215         _menufilepath = argv[i];
216     } else if (arg == "-script") {
217       if (++i >= argc)
218         err = true;
219       else
220         _scriptfilepath = argv[i];
221     } else if (arg == "-sync") {
222       _sync = true;
223     } else if (arg == "-version") {
224       showVersion();
225       ::exit(0);
226     } else if (arg == "-help") {
227       showHelp();
228       ::exit(0);
229     } else
230       err = true;
231
232     if (err) {
233       showHelp();
234       exit(1);
235     }
236   }
237 }
238
239
240 void Openbox::showVersion()
241 {
242   printf(_("Openbox - version %s\n"), OPENBOX_VERSION);
243   printf("    (c) 2002 - 2002 Ben Jansens\n\n");
244 }
245
246
247 void Openbox::showHelp()
248 {
249   showVersion(); // show the version string and copyright
250
251   // print program usage and command line options
252   printf(_("Usage: %s [OPTIONS...]\n\
253   Options:\n\
254   -display <string>  use display connection.\n\
255   -rc <string>       use alternate resource file.\n\
256   -menu <string>     use alternate menu file.\n\
257   -script <string>   use alternate startup script file.\n\
258   -version           display version and exit.\n\
259   -help              display this help text and exit.\n\n"), _argv0);
260
261   printf(_("Compile time options:\n\
262   Debugging: %s\n\
263   Shape:     %s\n\
264   Xinerama:  %s\n"),
265 #ifdef    DEBUG
266          _("yes"),
267 #else // !DEBUG
268          _("no"),
269 #endif // DEBUG
270
271 #ifdef    SHAPE
272          _("yes"),
273 #else // !SHAPE
274          _("no"),
275 #endif // SHAPE
276
277 #ifdef    XINERAMA
278          _("yes")
279 #else // !XINERAMA
280          _("no")
281 #endif // XINERAMA
282     );
283 }
284
285
286 void Openbox::eventLoop()
287 {
288   while (!_doshutdown) {
289     dispatchEvents(); // from OtkEventDispatcher
290     XFlush(otk::OBDisplay::display); // flush here before we go wait for timers
291     _timermanager.fire();
292   }
293 }
294
295
296 void Openbox::addClient(Window window, OBClient *client)
297 {
298   _clients[window] = client;
299 }
300
301
302 void Openbox::removeClient(Window window)
303 {
304   _clients.erase(window);
305 }
306
307
308 OBClient *Openbox::findClient(Window window)
309 {
310   /*
311     NOTE: we dont use _clients[] to find the value because that will insert
312     a new null into the hash, which really sucks when we want to clean up the
313     hash at shutdown!
314   */
315   ClientMap::iterator it = _clients.find(window);
316   if (it != _clients.end())
317     return it->second;
318   else
319     return (OBClient*) 0;
320 }
321
322
323 void Openbox::setFocusedClient(OBClient *c)
324 {
325   _focused_client = c;
326   if (c) {
327     _focused_screen = _screens[c->screen()];
328   } else {
329     assert(_focused_screen);
330     XSetInputFocus(otk::OBDisplay::display, _focused_screen->focuswindow(),
331                    RevertToNone, CurrentTime);
332   }
333 }
334
335 void Openbox::execute(int screen, const std::string &bin)
336 {
337 #ifdef    __EMX__
338   // XXX: whats this for? windows?
339   spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", bin.c_str(), NULL);
340 #else //  __EMX__
341   if (screen >= ScreenCount(otk::OBDisplay::display))
342     screen = 0;
343   const std::string &dstr =
344     otk::OBDisplay::screenInfo(screen)->displayString();
345   
346   if (! fork()) {
347       setsid();
348       int ret = putenv(const_cast<char *>(dstr.c_str()));
349       assert(ret != -1);
350       ret = execl("/bin/sh", "/bin/sh", "-c", bin.c_str(), NULL);
351       exit(ret);
352     }
353 #endif // __EMX__
354 }
355
356 }
357