12 #include "moveresize.h"
14 #include "extensions.h"
21 #include "parser/parse.h"
22 #include "render/render.h"
23 #include "render/theme.h"
41 #ifdef HAVE_SYS_STAT_H
42 # include <sys/stat.h>
43 # include <sys/types.h>
47 #include <X11/SM/SMlib.h>
50 #include <X11/cursorfont.h>
53 gboolean ob_sm_use
= TRUE
;
58 RrInstance
*ob_rr_inst
;
62 gboolean ob_replace_wm
;
65 static gboolean xsync
;
66 static gboolean shutdown
;
67 static gboolean restart
;
68 static char *restart_path
;
69 static Cursor cursors
[OB_NUM_CURSORS
];
70 static KeyCode keys
[OB_NUM_KEYS
];
72 static void signal_handler(const ObEvent
*e
, void *data
);
73 static void parse_args(int argc
, char **argv
);
75 static void sm_startup(int argc
, char **argv
);
76 static void sm_shutdown();
79 static void sm_save_yourself(SmcConn conn
, SmPointer data
, int save_type
,
80 Bool shutdown
, int interact_style
, Bool fast
);
81 static void sm_die(SmcConn conn
, SmPointer data
);
82 static void sm_save_complete(SmcConn conn
, SmPointer data
);
83 static void sm_shutdown_cancelled(SmcConn conn
, SmPointer data
);
85 static void exit_with_error(gchar
*msg
);
87 int main(int argc
, char **argv
)
89 struct sigaction action
;
95 state
= OB_STATE_STARTING
;
97 /* initialize the locale */
98 if (!setlocale(LC_ALL
, ""))
99 g_warning("Couldn't set locale from environment.\n");
100 bindtextdomain(PACKAGE_NAME
, LOCALEDIR
);
101 bind_textdomain_codeset(PACKAGE_NAME
, "UTF-8");
102 textdomain(PACKAGE_NAME
);
104 /* start our event dispatcher and register for signals */
106 dispatch_register(Event_Signal
, signal_handler
, NULL
);
108 /* set up signal handler */
109 sigemptyset(&sigset
);
110 action
.sa_handler
= dispatch_signal
;
111 action
.sa_mask
= sigset
;
112 action
.sa_flags
= SA_NOCLDSTOP
| SA_NODEFER
;
113 sigaction(SIGUSR1
, &action
, (struct sigaction
*) NULL
);
114 sigaction(SIGPIPE
, &action
, (struct sigaction
*) NULL
);
115 /* sigaction(SIGSEGV, &action, (struct sigaction *) NULL);*/
116 sigaction(SIGFPE
, &action
, (struct sigaction
*) NULL
);
117 sigaction(SIGTERM
, &action
, (struct sigaction
*) NULL
);
118 sigaction(SIGINT
, &action
, (struct sigaction
*) NULL
);
119 sigaction(SIGHUP
, &action
, (struct sigaction
*) NULL
);
121 /* create the ~/.openbox dir */
122 path
= g_build_filename(g_get_home_dir(), ".openbox", NULL
);
123 mkdir(path
, (S_IRUSR
| S_IWUSR
| S_IXUSR
| S_IRGRP
| S_IWGRP
| S_IXGRP
|
124 S_IROTH
| S_IWOTH
| S_IXOTH
));
126 /* create the ~/.openbox/themes dir */
127 path
= g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL
);
128 mkdir(path
, (S_IRUSR
| S_IWUSR
| S_IXUSR
| S_IRGRP
| S_IWGRP
| S_IXGRP
|
129 S_IROTH
| S_IWOTH
| S_IXOTH
));
132 g_set_prgname(argv
[0]);
134 /* parse out command line args */
135 parse_args(argc
, argv
);
137 ob_display
= XOpenDisplay(NULL
);
138 if (ob_display
== NULL
)
139 exit_with_error("Failed to open the display.");
140 if (fcntl(ConnectionNumber(ob_display
), F_SETFD
, 1) == -1)
141 exit_with_error("Failed to set display as close-on-exec.");
143 sm_startup(argc
, argv
);
146 ob_sn_display
= sn_display_new(ob_display
, NULL
, NULL
);
149 ob_screen
= DefaultScreen(ob_display
);
151 ob_rr_inst
= RrInstanceNew(ob_display
, ob_screen
);
152 if (ob_rr_inst
== NULL
)
153 exit_with_error("Failed to initialize the render library.");
155 /* XXX fork self onto other screens */
157 XSynchronize(ob_display
, xsync
);
159 /* check for locale support */
160 if (!XSupportsLocale())
161 g_warning("X server does not support locale.");
162 if (!XSetLocaleModifiers(""))
163 g_warning("Cannot set locale modifiers for the X server.");
165 /* set our error handler */
166 XSetErrorHandler(xerror_handler
);
168 /* set the DISPLAY environment variable for any lauched children, to the
169 display we're using, so they open in the right place. */
170 putenv(g_strdup_printf("DISPLAY=%s", DisplayString(ob_display
)));
172 /* create available cursors */
173 cursors
[OB_CURSOR_POINTER
] =
174 XCreateFontCursor(ob_display
, XC_left_ptr
);
175 cursors
[OB_CURSOR_BUSY
] =
176 XCreateFontCursor(ob_display
, XC_watch
);
177 cursors
[OB_CURSOR_MOVE
] =
178 XCreateFontCursor(ob_display
, XC_fleur
);
179 cursors
[OB_CURSOR_NORTH
] =
180 XCreateFontCursor(ob_display
, XC_top_side
);
181 cursors
[OB_CURSOR_NORTHEAST
] =
182 XCreateFontCursor(ob_display
, XC_top_right_corner
);
183 cursors
[OB_CURSOR_EAST
] =
184 XCreateFontCursor(ob_display
, XC_right_side
);
185 cursors
[OB_CURSOR_SOUTHEAST
] =
186 XCreateFontCursor(ob_display
, XC_bottom_right_corner
);
187 cursors
[OB_CURSOR_SOUTH
] =
188 XCreateFontCursor(ob_display
, XC_bottom_side
);
189 cursors
[OB_CURSOR_SOUTHWEST
] =
190 XCreateFontCursor(ob_display
, XC_bottom_left_corner
);
191 cursors
[OB_CURSOR_WEST
] =
192 XCreateFontCursor(ob_display
, XC_left_side
);
193 cursors
[OB_CURSOR_NORTHWEST
] =
194 XCreateFontCursor(ob_display
, XC_top_left_corner
);
196 /* create available keycodes */
197 keys
[OB_KEY_RETURN
] =
198 XKeysymToKeycode(ob_display
, XStringToKeysym("Return"));
199 keys
[OB_KEY_ESCAPE
] =
200 XKeysymToKeycode(ob_display
, XStringToKeysym("Escape"));
202 XKeysymToKeycode(ob_display
, XStringToKeysym("Left"));
204 XKeysymToKeycode(ob_display
, XStringToKeysym("Right"));
206 XKeysymToKeycode(ob_display
, XStringToKeysym("Up"));
208 XKeysymToKeycode(ob_display
, XStringToKeysym("Down"));
210 prop_startup(); /* get atoms values for the display */
211 extensions_query_all(); /* find which extensions are present */
213 /* save stuff that we can use to restore state */
216 if (screen_annex()) { /* it will be ours! */
217 /* startup the parsing so everything can register sections of the rc */
220 /* anything that is going to read data from the rc file needs to be
225 /* focus_backup is used for stacking, so this needs to come before
226 anything that calls stacking_add */
230 /* load the plugins specified in the pluginrc */
233 /* set up the kernel config shit */
236 /* parse/load user options */
237 if (parse_load_rc(&doc
, &node
))
238 parse_tree(doc
, node
->xmlChildrenNode
, NULL
);
239 /* we're done with parsing now, kill it */
242 /* load the theme specified in the rc file */
243 ob_rr_theme
= RrThemeNew(ob_rr_inst
, config_theme
);
244 if (ob_rr_theme
== NULL
)
245 exit_with_error("Unable to load a theme.");
247 moveresize_startup();
253 /* call startup for all the plugins */
256 /* get all the existing windows */
259 state
= OB_STATE_RUNNING
;
262 state
= OB_STATE_EXITING
;
265 client_unmanage_all();
267 plugin_shutdown(); /* calls all the plugins' shutdown functions */
273 moveresize_shutdown();
284 RrThemeFree(ob_rr_theme
);
285 RrInstanceFree(ob_rr_inst
);
289 XCloseDisplay(ob_display
);
292 if (restart_path
!= NULL
) {
298 if (g_shell_parse_argv(restart_path
, &argcp
, &argvp
, &err
)) {
299 execvp(argvp
[0], argvp
);
302 g_warning("failed to execute '%s': %s", restart_path
,
308 execvp(argv
[0], argv
); /* try how we were run */
314 static void sm_startup(int argc
, char **argv
)
318 #define SM_ERR_LEN 1024
321 char sm_err
[SM_ERR_LEN
];
323 cb
.save_yourself
.callback
= sm_save_yourself
;
324 cb
.save_yourself
.client_data
= NULL
;
326 cb
.die
.callback
= sm_die
;
327 cb
.die
.client_data
= NULL
;
329 cb
.save_complete
.callback
= sm_save_complete
;
330 cb
.save_complete
.client_data
= NULL
;
332 cb
.shutdown_cancelled
.callback
= sm_shutdown_cancelled
;
333 cb
.shutdown_cancelled
.client_data
= NULL
;
335 ob_sm_conn
= SmcOpenConnection(NULL
, NULL
, 1, 0,
336 SmcSaveYourselfProcMask
|
338 SmcSaveCompleteProcMask
|
339 SmcShutdownCancelledProcMask
,
340 &cb
, ob_sm_id
, &ob_sm_id
,
342 if (ob_sm_conn
== NULL
)
343 g_warning("Failed to connect to session manager: %s", sm_err
);
345 SmPropValue val_prog
;
347 SmPropValue val_hint
;
350 SmProp prop_cmd
= { SmCloneCommand
, SmLISTofARRAY8
, 1, };
351 SmProp prop_res
= { SmRestartCommand
, SmLISTofARRAY8
, };
352 SmProp prop_prog
= { SmProgram
, SmARRAY8
, 1, };
353 SmProp prop_uid
= { SmUserID
, SmARRAY8
, 1, };
354 SmProp prop_hint
= { SmRestartStyleHint
, SmCARD8
, 1, };
355 SmProp prop_pid
= { SmProcessID
, SmARRAY8
, 1, };
356 SmProp prop_pri
= { "_GSM_Priority", SmCARD8
, 1, };
363 for (i
= 1; i
< argc
- 1; ++i
)
364 if (strcmp(argv
[i
], "--sm-client-id") == 0)
366 has_id
= (i
< argc
- 1);
368 prop_cmd
.vals
= g_new(SmPropValue
, (has_id
? argc
-2 : argc
));
369 prop_cmd
.num_vals
= (has_id
? argc
-2 : argc
);
370 for (i
= 0, j
= 0; i
< argc
; ++i
, ++j
) {
371 if (strcmp (argv
[i
], "--sm-client-id") == 0) {
372 ++i
, --j
; /* skip the next as well, keep j where it is */
374 prop_cmd
.vals
[j
].value
= argv
[i
];
375 prop_cmd
.vals
[j
].length
= strlen(argv
[i
]);
379 prop_res
.vals
= g_new(SmPropValue
, (has_id
? argc
: argc
+2));
380 prop_res
.num_vals
= (has_id
? argc
: argc
+2);
381 for (i
= 0, j
= 0; i
< argc
; ++i
, ++j
) {
382 if (strcmp (argv
[i
], "--sm-client-id") == 0) {
383 ++i
, --j
; /* skip the next as well, keep j where it is */
385 prop_res
.vals
[j
].value
= argv
[i
];
386 prop_res
.vals
[j
].length
= strlen(argv
[i
]);
389 prop_res
.vals
[j
].value
= "--sm-client-id";
390 prop_res
.vals
[j
++].length
= strlen("--sm-client-id");
391 prop_res
.vals
[j
].value
= ob_sm_id
;
392 prop_res
.vals
[j
++].length
= strlen(ob_sm_id
);
394 val_prog
.value
= argv
[0];
395 val_prog
.length
= strlen(argv
[0]);
397 val_uid
.value
= g_strdup(g_get_user_name());
398 val_uid
.length
= strlen(val_uid
.value
);
400 hint
= SmRestartImmediately
;
401 val_hint
.value
= &hint
;
404 sprintf(pid
, "%ld", (long)getpid());
406 val_pid
.length
= strlen(pid
);
408 /* priority with gnome-session-manager, low to run before other apps */
410 val_pri
.value
= &pri
;
413 prop_prog
.vals
= &val_prog
;
414 prop_uid
.vals
= &val_uid
;
415 prop_hint
.vals
= &val_hint
;
416 prop_pid
.vals
= &val_pid
;
417 prop_pri
.vals
= &val_pri
;
419 props
[0] = &prop_prog
;
420 props
[1] = &prop_cmd
;
421 props
[2] = &prop_res
;
422 props
[3] = &prop_uid
;
423 props
[4] = &prop_hint
;
424 props
[5] = &prop_pid
;
425 props
[6] = &prop_pri
;
427 SmcSetProperties(ob_sm_conn
, 7, props
);
429 g_free(val_uid
.value
);
430 g_free(prop_cmd
.vals
);
431 g_free(prop_res
.vals
);
433 g_message("Connected to session manager with id %s", ob_sm_id
);
439 static void sm_shutdown()
443 SmPropValue val_hint
;
444 SmProp prop_hint
= { SmRestartStyleHint
, SmCARD8
, 1, };
448 /* when we exit, we want to reset this to a more friendly state */
449 hint
= SmRestartIfRunning
;
450 val_hint
.value
= &hint
;
453 prop_hint
.vals
= &val_hint
;
455 props
[0] = &prop_hint
;
457 SmcSetProperties(ob_sm_conn
, 1, props
);
459 SmcCloseConnection(ob_sm_conn
, 0, NULL
);
464 static void signal_handler(const ObEvent
*e
, void *data
)
468 s
= e
->data
.s
.signal
;
471 fprintf(stderr
, "Caught SIGUSR1 signal. Restarting.");
479 fprintf(stderr
, "Caught signal %d. Exiting.", s
);
485 fprintf(stderr
, "Caught signal %d. Aborting and dumping core.", s
);
490 static void print_version()
492 g_print("Openbox %s\n\n", PACKAGE_VERSION
);
493 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
494 g_print("This is free software, and you are welcome to redistribute it\n");
495 g_print("under certain conditions. See the file COPYING for details.\n\n");
498 static void print_help()
501 g_print("Syntax: openbox [options]\n\n");
502 g_print("Options:\n\n");
504 g_print(" --sm-client-id ID Specify session management ID\n");
505 g_print(" --sm-disable Disable connection to session manager\n");
507 g_print(" --replace Replace the currently running window "
509 g_print(" --help Display this help and exit\n");
510 g_print(" --version Display the version and exit\n");
511 g_print(" --sync Run in synchronous mode (this is slow and\n"
512 " meant for debugging X routines)\n");
513 g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT
);
516 static void parse_args(int argc
, char **argv
)
520 for (i
= 1; i
< argc
; ++i
) {
521 if (!strcmp(argv
[i
], "--version")) {
524 } else if (!strcmp(argv
[i
], "--help")) {
527 } else if (!strcmp(argv
[i
], "--g-fatal-warnings")) {
528 g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL
);
529 } else if (!strcmp(argv
[i
], "--replace")) {
530 ob_replace_wm
= TRUE
;
531 } else if (!strcmp(argv
[i
], "--sync")) {
534 } else if (!strcmp(argv
[i
], "--sm-client-id")) {
535 if (i
== argc
- 1) /* no args left */
536 g_printerr(_("--sm-client-id requires an argument\n"));
538 ob_sm_id
= argv
[++i
];
539 } else if (!strcmp(argv
[i
], "--sm-disable")) {
543 g_printerr("Invalid option: '%s'\n\n", argv
[i
]);
551 static void sm_save_yourself(SmcConn conn
, SmPointer data
, int save_type
,
552 Bool shutdown
, int interact_style
, Bool fast
)
554 g_message("got SAVE YOURSELF from session manager");
555 SmcSaveYourselfDone(conn
, TRUE
);
558 static void sm_die(SmcConn conn
, SmPointer data
)
561 g_message("got DIE from session manager");
564 static void sm_save_complete(SmcConn conn
, SmPointer data
)
566 g_message("got SAVE COMPLETE from session manager");
569 static void sm_shutdown_cancelled(SmcConn conn
, SmPointer data
)
571 g_message("got SHUTDOWN CANCELLED from session manager");
575 static void exit_with_error(gchar
*msg
)
582 void ob_restart_other(const gchar
*path
)
584 restart_path
= g_strdup(path
);
599 Cursor
ob_cursor(ObCursor cursor
)
601 g_assert(cursor
< OB_NUM_CURSORS
);
602 return cursors
[cursor
];
605 KeyCode
ob_keycode(ObKey key
)
607 g_assert(key
< OB_NUM_KEYS
);