]> icculus.org git repositories - dana/openbox.git/blob - openbox/openbox.c
the kernel is using th gl shit to render itself, but with the old style frame shit...
[dana/openbox.git] / openbox / openbox.c
1 #include "openbox.h"
2 #include "dock.h"
3 #include "event.h"
4 #include "menu.h"
5 #include "client.h"
6 #include "dispatch.h"
7 #include "xerror.h"
8 #include "prop.h"
9 #include "startup.h"
10 #include "screen.h"
11 #include "focus.h"
12 #include "moveresize.h"
13 #include "frame.h"
14 #include "extensions.h"
15 #include "grab.h"
16 #include "plugin.h"
17 #include "timer.h"
18 #include "group.h"
19 #include "config.h"
20 #include "gettext.h"
21 #include "parser/parse.h"
22 #include "render2/render.h"
23 #include "render2/theme.h"
24
25 #ifdef HAVE_FCNTL_H
26 #  include <fcntl.h>
27 #endif
28 #ifdef HAVE_SIGNAL_H
29 #  include <signal.h>
30 #endif
31 #ifdef HAVE_STDLIB_H
32 #  include <stdlib.h>
33 #endif
34 #ifdef HAVE_LOCALE_H
35 #  include <locale.h>
36 #endif
37 #ifdef HAVE_UNISTD_H
38 #  include <unistd.h>
39 #endif
40 #ifdef HAVE_SYS_STAT_H
41 #  include <sys/stat.h>
42 #  include <sys/types.h>
43 #endif
44
45 #include <X11/cursorfont.h>
46
47 struct RrInstance *ob_render_inst;
48 struct RrTheme    *ob_theme;
49
50 Display *ob_display  = NULL;
51 int      ob_screen;
52 Window   ob_root;
53 State    ob_state;
54 gboolean ob_shutdown = FALSE;
55 gboolean ob_restart  = FALSE;
56 char    *ob_restart_path = NULL;
57 gboolean ob_remote   = TRUE;
58 gboolean ob_sync     = FALSE;
59 Cursors  ob_cursors;
60 char    *ob_rc_path  = NULL;
61
62 void signal_handler(const ObEvent *e, void *data);
63 void parse_args(int argc, char **argv);
64
65 int main(int argc, char **argv)
66 {
67     struct sigaction action;
68     sigset_t sigset;
69     char *path;
70     xmlDocPtr doc;
71     xmlNodePtr node;
72
73     ob_state = State_Starting;
74
75     /* initialize the locale */
76     if (!setlocale(LC_ALL, ""))
77         g_warning("Couldn't set locale from environment.\n");
78     bindtextdomain(PACKAGE_NAME, LOCALEDIR);
79     bind_textdomain_codeset(PACKAGE_NAME, "UTF-8");
80     textdomain(PACKAGE_NAME);
81
82     /* start our event dispatcher and register for signals */
83     dispatch_startup();
84     dispatch_register(Event_Signal, signal_handler, NULL);
85
86     /* set up signal handler */
87     sigemptyset(&sigset);
88     action.sa_handler = dispatch_signal;
89     action.sa_mask = sigset;
90     action.sa_flags = SA_NOCLDSTOP;
91     sigaction(SIGUSR1, &action, (struct sigaction *) NULL);
92     sigaction(SIGPIPE, &action, (struct sigaction *) NULL);
93     sigaction(SIGSEGV, &action, (struct sigaction *) NULL);
94     sigaction(SIGFPE, &action, (struct sigaction *) NULL);
95     sigaction(SIGTERM, &action, (struct sigaction *) NULL);
96     sigaction(SIGINT, &action, (struct sigaction *) NULL);
97     sigaction(SIGHUP, &action, (struct sigaction *) NULL);
98
99     /* create the ~/.openbox dir */
100     path = g_build_filename(g_get_home_dir(), ".openbox", NULL);
101     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
102                  S_IROTH | S_IWOTH | S_IXOTH));
103     g_free(path);
104     /* create the ~/.openbox/themes dir */
105     path = g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL);
106     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
107                  S_IROTH | S_IWOTH | S_IXOTH));
108     g_free(path);
109      
110     /* parse out command line args */
111     parse_args(argc, argv);
112
113     ob_display = XOpenDisplay(NULL);
114     if (ob_display == NULL) {
115         /* print a message and exit */
116         g_critical("Failed to open the display.");
117         exit(1);
118     }
119     if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1) {
120         /* print a message and exit */
121         g_critical("Failed to set display as close-on-exec.");
122         exit(1);
123     }
124
125 #ifdef USE_LIBSN
126     ob_sn_display = sn_display_new(ob_display, NULL, NULL);
127 #endif
128
129     ob_screen = DefaultScreen(ob_display);
130     ob_root = RootWindow(ob_display, ob_screen);
131
132     /* XXX fork self onto other screens */
133      
134     XSynchronize(ob_display, ob_sync);
135
136     /* check for locale support */
137     if (!XSupportsLocale())
138         g_warning("X server does not support locale.");
139     if (!XSetLocaleModifiers(""))
140         g_warning("Cannot set locale modifiers for the X server.");
141
142     /* set our error handler */
143     XSetErrorHandler(xerror_handler);
144
145     ob_render_inst = RrInstanceNew(ob_display, ob_screen);
146     if (!ob_render_inst) {
147         g_critical("Unable to initialize GL rendering subsystem.");
148         exit(1);
149     }
150
151     /* set the DISPLAY environment variable for any lauched children, to the
152        display we're using, so they open in the right place. */
153     putenv(g_strdup_printf("DISPLAY=%s", DisplayString(ob_display)));
154
155     ob_cursors.ptr = XCreateFontCursor(ob_display, XC_left_ptr);
156     ob_cursors.busy = XCreateFontCursor(ob_display, XC_watch);
157     ob_cursors.move = XCreateFontCursor(ob_display, XC_fleur);
158     ob_cursors.tl = XCreateFontCursor(ob_display, XC_top_left_corner);
159     ob_cursors.tr = XCreateFontCursor(ob_display, XC_top_right_corner);
160     ob_cursors.bl = XCreateFontCursor(ob_display, XC_bottom_left_corner);
161     ob_cursors.br = XCreateFontCursor(ob_display, XC_bottom_right_corner);
162     ob_cursors.t = XCreateFontCursor(ob_display, XC_top_side);
163     ob_cursors.r = XCreateFontCursor(ob_display, XC_right_side);
164     ob_cursors.b = XCreateFontCursor(ob_display, XC_bottom_side);
165     ob_cursors.l = XCreateFontCursor(ob_display, XC_left_side);
166
167     prop_startup(); /* get atoms values for the display */
168     extensions_query_all(); /* find which extensions are present */
169
170     /* save stuff that we can use to restore state */
171     startup_save();
172
173     if (screen_annex()) { /* it will be ours! */
174         /* startup the parsing so everything can register sections of the rc */
175         parse_startup();
176
177         /* anything that is going to read data from the rc file needs to be 
178            in this group */
179         timer_startup();
180         event_startup();
181         grab_startup();
182         plugin_startup();
183         /* load the plugins specified in the pluginrc */
184         plugin_loadall();
185
186         /* set up the kernel config shit */
187         config_startup();
188         /* parse/load user options */
189         if (parse_load_rc(&doc, &node))
190             parse_tree(doc, node->xmlChildrenNode, NULL);
191         /* we're done with parsing now, kill it */
192         parse_shutdown();
193
194         /* load the theme specified in the rc file */
195         ob_theme = RrThemeLoad(ob_render_inst, config_theme);
196         if (!ob_theme) {
197             g_critical("Unable to load a theme.");
198             exit(1);
199         }
200
201         window_startup();
202         menu_startup();
203         frame_startup();
204         moveresize_startup();
205         focus_startup();
206         screen_startup();
207         group_startup();
208         client_startup();
209         dock_startup();
210
211         /* call startup for all the plugins */
212         plugin_startall();
213
214         /* get all the existing windows */
215         client_manage_all();
216
217         ob_state = State_Running;
218         while (!ob_shutdown)
219             event_loop();
220         ob_state = State_Exiting;
221
222         dock_remove_all();
223         client_unmanage_all();
224
225         plugin_shutdown(); /* calls all the plugins' shutdown functions */
226         dock_shutdown();
227         client_shutdown();
228         group_shutdown();
229         screen_shutdown();
230         focus_shutdown();
231         moveresize_shutdown();
232         frame_shutdown();
233         menu_shutdown();
234         window_shutdown();
235         grab_shutdown();
236         event_shutdown();
237         timer_shutdown();
238         config_shutdown();
239     }
240
241     RrInstanceFree(ob_render_inst);
242
243     dispatch_shutdown();
244
245     XCloseDisplay(ob_display);
246
247     if (ob_restart) {
248         if (ob_restart_path != NULL) {
249             int argcp;
250             char **argvp;
251             GError *err = NULL;
252
253             /* run other shit */
254             if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) {
255                 execvp(argvp[0], argvp);
256                 g_strfreev(argvp);
257             } else {
258                 g_warning("failed to execute '%s': %s", ob_restart_path,
259                           err->message);
260             }
261         }
262
263         /* re-run me */
264         execvp(argv[0], argv); /* try how we were run */
265         execlp(BINARY, BINARY, NULL); /* try this as a last resort */
266     }
267      
268     return 0;
269 }
270
271 void signal_handler(const ObEvent *e, void *data)
272 {
273     int s;
274
275     s = e->data.s.signal;
276     switch (s) {
277     case SIGUSR1:
278         g_message("Caught SIGUSR1 signal. Restarting.");
279         ob_shutdown = ob_restart = TRUE;
280         break;
281
282     case SIGHUP:
283     case SIGINT:
284     case SIGTERM:
285     case SIGPIPE:
286         g_message("Caught signal %d. Exiting.", s);
287         ob_shutdown = TRUE;
288         break;
289
290     case SIGFPE:
291     case SIGSEGV:
292         g_message("Caught signal %d. Aborting and dumping core.", s);
293         abort();
294     }
295 }
296
297 void print_version()
298 {
299     g_print("Openbox %s\n\n", PACKAGE_VERSION);
300     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
301     g_print("This is free software, and you are welcome to redistribute it\n");
302     g_print("under certain conditions. See the file COPYING for details.\n\n");
303 }
304
305 void print_help()
306 {
307     print_version();
308     g_print("Syntax: %s [options]\n\n", BINARY);
309     g_print("Options:\n\n");
310     g_print("  -rc PATH     Specify the path to the rc file to use\n");
311     g_print("  -help        Display this help and exit\n");
312     g_print("  -version     Display the version and exit\n");
313     g_print("  -sync        Run in synchronous mode (this is slow and meant\n"
314             "               for debugging X routines)\n");
315     g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT);
316 }
317
318 void parse_args(int argc, char **argv)
319 {
320     int i;
321
322     for (i = 1; i < argc; ++i) {
323         if (!strcmp(argv[i], "-version")) {
324             print_version();
325             exit(0);
326         } else if (!strcmp(argv[i], "-help")) {
327             print_help();
328             exit(0);
329         } else if (!strcmp(argv[i], "-sync")) {
330             ob_sync = TRUE;
331         } else if (!strcmp(argv[i], "-rc")) {
332             if (i == argc - 1) /* no args left */
333                 g_printerr("-rc requires an argument\n");
334             else
335                 ob_rc_path = argv[++i];
336         } else {
337             g_printerr("Invalid option: '%s'\n\n", argv[i]);
338             print_help();
339             exit(1);
340         }
341     }
342 }
343
344 gboolean ob_pointer_pos(int *x, int *y)
345 {
346     Window w;
347     int i;
348     guint u;
349
350     return !!XQueryPointer(ob_display, ob_root, &w, &w, x, y, &i, &i, &u);
351 }