]> icculus.org git repositories - dana/openbox.git/blob - openbox/openbox.c
load the engine out of the config shit. tho the ordering is fucked atm
[dana/openbox.git] / openbox / openbox.c
1 #include "openbox.h"
2 #include "event.h"
3 #include "client.h"
4 #include "dispatch.h"
5 #include "xerror.h"
6 #include "prop.h"
7 #include "screen.h"
8 #include "focus.h"
9 #include "extensions.h"
10 #include "gettext.h"
11 #include "config.h"
12 #include "grab.h"
13 #include "engine.h"
14 #include "themerc.h"
15 #include "plugin.h"
16 #include "timer.h"
17 #include "../render/render.h"
18 #include "../render/font.h"
19
20 #ifdef HAVE_FCNTL_H
21 #  include <fcntl.h>
22 #endif
23 #ifdef HAVE_SIGNAL_H
24 #  include <signal.h>
25 #endif
26 #ifdef HAVE_STDLIB_H
27 #  include <stdlib.h>
28 #endif
29 #ifdef HAVE_SYS_WAIT_H
30 #  include <sys/types.h>
31 #  include <sys/wait.h>
32 #endif
33 #ifdef HAVE_LOCALE_H
34 #  include <locale.h>
35 #endif
36 #ifdef HAVE_UNISTD_H
37 #  include <unistd.h>
38 #endif
39 #ifdef HAVE_SYS_STAT_H
40 #  include <sys/stat.h>
41 #  include <sys/types.h>
42 #endif
43
44 #include <X11/cursorfont.h>
45
46 Display *ob_display  = NULL;
47 int      ob_screen;
48 Window   ob_root;
49 State    ob_state;
50 gboolean ob_shutdown = FALSE;
51 gboolean ob_restart  = FALSE;
52 char    *ob_restart_path = NULL;
53 gboolean ob_remote   = FALSE;
54 gboolean ob_sync     = FALSE;
55 Cursors  ob_cursors;
56 char    *ob_rc_path  = NULL;
57
58 void signal_handler(const ObEvent *e, void *data);
59 void parse_args(int argc, char **argv);
60
61 int main(int argc, char **argv)
62 {
63     struct sigaction action;
64     sigset_t sigset;
65     char *path;
66
67     ob_state = State_Starting;
68
69     /* initialize the locale */
70     if (!setlocale(LC_ALL, ""))
71         g_warning("Couldn't set locale from environment.\n");
72     bindtextdomain(PACKAGE, LOCALEDIR);
73     bind_textdomain_codeset(PACKAGE, "UTF-8");
74     textdomain(PACKAGE);
75
76     /* start our event dispatcher and register for signals */
77     dispatch_startup();
78     dispatch_register(Event_Signal, signal_handler, NULL);
79
80     /* set up signal handler */
81     sigemptyset(&sigset);
82     action.sa_handler = dispatch_signal;
83     action.sa_mask = sigset;
84     action.sa_flags = SA_NOCLDSTOP;
85     sigaction(SIGUSR1, &action, (struct sigaction *) NULL);
86     sigaction(SIGPIPE, &action, (struct sigaction *) NULL);
87     sigaction(SIGSEGV, &action, (struct sigaction *) NULL);
88     sigaction(SIGFPE, &action, (struct sigaction *) NULL);
89     sigaction(SIGTERM, &action, (struct sigaction *) NULL);
90     sigaction(SIGINT, &action, (struct sigaction *) NULL);
91     sigaction(SIGHUP, &action, (struct sigaction *) NULL);
92     sigaction(SIGCHLD, &action, (struct sigaction *) NULL);
93
94     /* anything that died while we were restarting won't give us a SIGCHLD */
95     while (waitpid(-1, NULL, WNOHANG) > 0);
96
97     /* create the ~/.openbox dir */
98     path = g_build_filename(g_get_home_dir(), ".openbox", NULL);
99     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
100                  S_IROTH | S_IWOTH | S_IXOTH));
101     g_free(path);
102      
103     /* parse out command line args */
104     parse_args(argc, argv);
105
106     ob_display = XOpenDisplay(NULL);
107     if (ob_display == NULL) {
108         /* print a message and exit */
109         g_critical("Failed to open the display.");
110         exit(1);
111     }
112     if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1) {
113         /* print a message and exit */
114         g_critical("Failed to set display as close-on-exec.");
115         exit(1);
116     }
117           
118     ob_screen = DefaultScreen(ob_display);
119     ob_root = RootWindow(ob_display, ob_screen);
120
121     /* XXX fork self onto other screens */
122      
123     XSynchronize(ob_display, ob_sync);
124
125     /* check for locale support */
126     if (!XSupportsLocale())
127         g_warning("X server does not support locale.");
128     if (!XSetLocaleModifiers(""))
129         g_warning("Cannot set locale modifiers for the X server.");
130
131     /* set our error handler */
132     XSetErrorHandler(xerror_handler);
133
134     /* set the DISPLAY environment variable for any lauched children, to the
135        display we're using, so they open in the right place. */
136     putenv(g_strdup_printf("DISPLAY=%s", DisplayString(ob_display)));
137
138     ob_cursors.left_ptr = XCreateFontCursor(ob_display, XC_left_ptr);
139     ob_cursors.ll_angle = XCreateFontCursor(ob_display, XC_ll_angle);
140     ob_cursors.lr_angle = XCreateFontCursor(ob_display, XC_lr_angle);
141
142     prop_startup(); /* get atoms values for the display */
143     extensions_query_all(); /* find which extensions are present */
144      
145     if (screen_annex()) { /* it will be ours! */
146         timer_startup();
147         config_startup();
148         render_startup();
149         font_startup();
150         themerc_startup();
151         engine_startup();
152         event_startup();
153         screen_startup();
154         focus_startup();
155         client_startup();
156         grab_startup();
157         plugin_startup();
158
159         /* XXX load all plugins!! */
160         plugin_open("focus");
161         plugin_open("keyboard");
162         plugin_open("mouse");
163         plugin_open("placement");
164         plugin_open("resistance");
165
166         config_parse();
167
168         /* get all the existing windows */
169         client_manage_all();
170
171         ob_state = State_Running;
172         while (!ob_shutdown)
173             event_loop();
174         ob_state = State_Exiting;
175
176         client_unmanage_all();
177
178         plugin_shutdown(); /* calls all the plugins' shutdown functions */
179         grab_shutdown();
180         client_shutdown();
181         focus_shutdown();
182         screen_shutdown();
183         event_shutdown();
184         engine_shutdown();
185         themerc_shutdown();
186         render_shutdown();
187         config_shutdown();
188         timer_shutdown();
189     }
190
191     dispatch_shutdown();
192
193     XCloseDisplay(ob_display);
194
195     if (ob_restart) {
196         if (ob_restart_path != NULL) {
197             int argcp;
198             char **argvp;
199             GError *err = NULL;
200
201             /* run other shit */
202             if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) {
203                 execvp(argvp[0], argvp);
204                 g_strfreev(argvp);
205             } else {
206                 g_warning("failed to execute '%s': %s", ob_restart_path,
207                           err->message);
208             }
209         }
210
211         /* re-run me */
212         execvp(argv[0], argv); /* try how we were run */
213         execlp(BINARY, BINARY, NULL); /* try this as a last resort */
214     }
215      
216     return 0;
217 }
218
219 void signal_handler(const ObEvent *e, void *data)
220 {
221     int s;
222
223     s = e->data.s.signal;
224     switch (s) {
225     case SIGUSR1:
226         g_message("Caught SIGUSR1 signal. Restarting.");
227         ob_shutdown = ob_restart = TRUE;
228         break;
229
230     case SIGCHLD:
231         wait(NULL);
232         break;
233
234     case SIGHUP:
235     case SIGINT:
236     case SIGTERM:
237     case SIGPIPE:
238         g_message("Caught signal %d. Exiting.", s);
239         ob_shutdown = TRUE;
240         break;
241
242     case SIGFPE:
243     case SIGSEGV:
244         g_error("Caught signal %d. Aborting and dumping core.", s);
245     }
246 }
247
248 void print_version()
249 {
250     g_print("Openbox %s\n\n", VERSION);
251     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
252     g_print("This is free software, and you are welcome to redistribute it\n");
253     g_print("under certain conditions. See the file COPYING for details.\n\n");
254 }
255
256 void print_help()
257 {
258     print_version();
259     g_print("Syntax: %s [options]\n\n", BINARY);
260     g_print("Options:\n\n");
261     g_print("  -rc PATH     Specify the path to the rc file to use\n");
262     g_print("  -help        Display this help and exit\n");
263     g_print("  -version     Display the version and exit\n");
264     g_print("  -sync        Run in synchronous mode (this is slow and meant\n"
265             "               for debugging X routines)\n");
266     g_print("\nPlease report bugs at %s\n", BUGURL);
267 }
268
269 void parse_args(int argc, char **argv)
270 {
271     int i;
272
273     for (i = 1; i < argc; ++i) {
274         if (!strcmp(argv[i], "-version")) {
275             print_version();
276             exit(0);
277         } else if (!strcmp(argv[i], "-help")) {
278             print_help();
279             exit(0);
280         } else if (!strcmp(argv[i], "-sync")) {
281             ob_sync = TRUE;
282         } else if (!strcmp(argv[i], "-rc")) {
283             if (i == argc - 1) /* no args left */
284                 g_printerr("-rc requires an argument\n");
285             else
286                 ob_rc_path = argv[++i];
287         } else {
288             g_printerr("Invalid option: '%s'\n\n", argv[i]);
289             print_help();
290             exit(1);
291         }
292     }
293 }