]> Dogcows Code - chaz/openbox/blob - openbox/openbox.c
make the openbox engine use the new config shit instead of the themerc shit.
[chaz/openbox] / 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 plugin_startup();
151
152 /* load the plugins specified in the pluginrc */
153 plugin_loadall();
154 /* parse/load user options */
155 config_parse();
156
157 engine_startup();
158 event_startup();
159 screen_startup();
160 focus_startup();
161 client_startup();
162 grab_startup();
163
164 /* call startup for all the plugins */
165 plugin_startall();
166
167 /* get all the existing windows */
168 client_manage_all();
169
170 ob_state = State_Running;
171 while (!ob_shutdown)
172 event_loop();
173 ob_state = State_Exiting;
174
175 client_unmanage_all();
176
177 plugin_shutdown(); /* calls all the plugins' shutdown functions */
178 grab_shutdown();
179 client_shutdown();
180 focus_shutdown();
181 screen_shutdown();
182 event_shutdown();
183 engine_shutdown();
184 themerc_shutdown();
185 render_shutdown();
186 config_shutdown();
187 timer_shutdown();
188 }
189
190 dispatch_shutdown();
191
192 XCloseDisplay(ob_display);
193
194 if (ob_restart) {
195 if (ob_restart_path != NULL) {
196 int argcp;
197 char **argvp;
198 GError *err = NULL;
199
200 /* run other shit */
201 if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) {
202 execvp(argvp[0], argvp);
203 g_strfreev(argvp);
204 } else {
205 g_warning("failed to execute '%s': %s", ob_restart_path,
206 err->message);
207 }
208 }
209
210 /* re-run me */
211 execvp(argv[0], argv); /* try how we were run */
212 execlp(BINARY, BINARY, NULL); /* try this as a last resort */
213 }
214
215 return 0;
216 }
217
218 void signal_handler(const ObEvent *e, void *data)
219 {
220 int s;
221
222 s = e->data.s.signal;
223 switch (s) {
224 case SIGUSR1:
225 g_message("Caught SIGUSR1 signal. Restarting.");
226 ob_shutdown = ob_restart = TRUE;
227 break;
228
229 case SIGCHLD:
230 wait(NULL);
231 break;
232
233 case SIGHUP:
234 case SIGINT:
235 case SIGTERM:
236 case SIGPIPE:
237 g_message("Caught signal %d. Exiting.", s);
238 ob_shutdown = TRUE;
239 break;
240
241 case SIGFPE:
242 case SIGSEGV:
243 g_error("Caught signal %d. Aborting and dumping core.", s);
244 }
245 }
246
247 void print_version()
248 {
249 g_print("Openbox %s\n\n", VERSION);
250 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
251 g_print("This is free software, and you are welcome to redistribute it\n");
252 g_print("under certain conditions. See the file COPYING for details.\n\n");
253 }
254
255 void print_help()
256 {
257 print_version();
258 g_print("Syntax: %s [options]\n\n", BINARY);
259 g_print("Options:\n\n");
260 g_print(" -rc PATH Specify the path to the rc file to use\n");
261 g_print(" -help Display this help and exit\n");
262 g_print(" -version Display the version and exit\n");
263 g_print(" -sync Run in synchronous mode (this is slow and meant\n"
264 " for debugging X routines)\n");
265 g_print("\nPlease report bugs at %s\n", BUGURL);
266 }
267
268 void parse_args(int argc, char **argv)
269 {
270 int i;
271
272 for (i = 1; i < argc; ++i) {
273 if (!strcmp(argv[i], "-version")) {
274 print_version();
275 exit(0);
276 } else if (!strcmp(argv[i], "-help")) {
277 print_help();
278 exit(0);
279 } else if (!strcmp(argv[i], "-sync")) {
280 ob_sync = TRUE;
281 } else if (!strcmp(argv[i], "-rc")) {
282 if (i == argc - 1) /* no args left */
283 g_printerr("-rc requires an argument\n");
284 else
285 ob_rc_path = argv[++i];
286 } else {
287 g_printerr("Invalid option: '%s'\n\n", argv[i]);
288 print_help();
289 exit(1);
290 }
291 }
292 }
This page took 0.054627 seconds and 5 git commands to generate.