]> git.sur5r.net Git - i3/i3/blob - src/startup.c
Add a --no-startup-id flag for exec (command), exec (config), exec_always (config)
[i3/i3] / src / startup.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * startup.c: Startup notification code. Ensures a startup notification context
8  *            is setup when launching applications. We store the current
9  *            workspace to open windows in that startup notification context on
10  *            the appropriate workspace.
11  *
12  */
13 #include "all.h"
14
15 #include <sys/types.h>
16 #include <sys/wait.h>
17
18 #define SN_API_NOT_YET_FROZEN 1
19 #include <libsn/sn-launcher.h>
20
21 static TAILQ_HEAD(startup_sequence_head, Startup_Sequence) startup_sequences =
22     TAILQ_HEAD_INITIALIZER(startup_sequences);
23
24 /*
25  * After 60 seconds, a timeout will be triggered for each startup sequence.
26  *
27  * The timeout will just trigger completion of the sequence, so the normal
28  * completion process takes place (startup_monitor_event will free it).
29  *
30  */
31 static void startup_timeout(EV_P_ ev_timer *w, int revents) {
32     const char *id = sn_launcher_context_get_startup_id(w->data);
33     DLOG("Timeout for startup sequence %s\n", id);
34
35     struct Startup_Sequence *current, *sequence = NULL;
36     TAILQ_FOREACH(current, &startup_sequences, sequences) {
37         if (strcmp(current->id, id) != 0)
38             continue;
39
40         sequence = current;
41         break;
42     }
43
44     /* Unref the context (for the timeout itself, see start_application) */
45     sn_launcher_context_unref(w->data);
46
47     if (!sequence) {
48         DLOG("Sequence already deleted, nevermind.\n");
49         return;
50     }
51
52     /* Complete the startup sequence, will trigger its deletion. */
53     sn_launcher_context_complete(w->data);
54     free(w);
55 }
56
57 /*
58  * Starts the given application by passing it through a shell. We use double fork
59  * to avoid zombie processes. As the started application’s parent exits (immediately),
60  * the application is reparented to init (process-id 1), which correctly handles
61  * childs, so we don’t have to do it :-).
62  *
63  * The shell is determined by looking for the SHELL environment variable. If it
64  * does not exist, /bin/sh is used.
65  *
66  * The no_startup_id flag determines whether a startup notification context
67  * (and ID) should be created, which is the default and encouraged behavior.
68  *
69  */
70 void start_application(const char *command, bool no_startup_id) {
71     SnLauncherContext *context;
72
73     if (!no_startup_id) {
74         /* Create a startup notification context to monitor the progress of this
75          * startup. */
76         context = sn_launcher_context_new(sndisplay, conn_screen);
77         sn_launcher_context_set_name(context, "i3");
78         sn_launcher_context_set_description(context, "exec command in i3");
79         /* Chop off everything starting from the first space (if there are any
80          * spaces in the command), since we don’t want the parameters. */
81         char *first_word = sstrdup(command);
82         char *space = strchr(first_word, ' ');
83         if (space)
84             *space = '\0';
85         sn_launcher_context_initiate(context, "i3", first_word, last_timestamp);
86         free(first_word);
87
88         /* Trigger a timeout after 60 seconds */
89         struct ev_timer *timeout = scalloc(sizeof(struct ev_timer));
90         ev_timer_init(timeout, startup_timeout, 60.0, 0.);
91         timeout->data = context;
92         ev_timer_start(main_loop, timeout);
93
94         LOG("startup id = %s\n", sn_launcher_context_get_startup_id(context));
95
96         /* Save the ID and current workspace in our internal list of startup
97          * sequences */
98         Con *ws = con_get_workspace(focused);
99         struct Startup_Sequence *sequence = scalloc(sizeof(struct Startup_Sequence));
100         sequence->id = sstrdup(sn_launcher_context_get_startup_id(context));
101         sequence->workspace = sstrdup(ws->name);
102         sequence->context = context;
103         TAILQ_INSERT_TAIL(&startup_sequences, sequence, sequences);
104
105         /* Increase the refcount once (it starts with 1, so it will be 2 now) for
106          * the timeout. Even if the sequence gets completed, the timeout still
107          * needs the context (but will unref it then) */
108         sn_launcher_context_ref(context);
109     }
110
111     LOG("executing: %s\n", command);
112     if (fork() == 0) {
113         /* Child process */
114         setsid();
115         if (fork() == 0) {
116             /* Setup the environment variable(s) */
117             if (!no_startup_id)
118                 sn_launcher_context_setup_child_process(context);
119
120             /* Stores the path of the shell */
121             static const char *shell = NULL;
122
123             if (shell == NULL)
124                 if ((shell = getenv("SHELL")) == NULL)
125                     shell = "/bin/sh";
126
127             /* This is the child */
128             execl(shell, shell, "-c", command, (void*)NULL);
129             /* not reached */
130         }
131         _exit(0);
132     }
133     wait(0);
134
135     if (!no_startup_id) {
136         /* Change the pointer of the root window to indicate progress */
137         if (xcursor_supported)
138             xcursor_set_root_cursor(XCURSOR_CURSOR_WATCH);
139         else xcb_set_root_cursor(XCURSOR_CURSOR_WATCH);
140     }
141 }
142
143 /*
144  * Called by libstartup-notification when something happens
145  *
146  */
147 void startup_monitor_event(SnMonitorEvent *event, void *userdata) {
148     SnStartupSequence *snsequence;
149
150     snsequence = sn_monitor_event_get_startup_sequence(event);
151
152     /* Get the corresponding internal startup sequence */
153     const char *id = sn_startup_sequence_get_id(snsequence);
154     struct Startup_Sequence *current, *sequence = NULL;
155     TAILQ_FOREACH(current, &startup_sequences, sequences) {
156         if (strcmp(current->id, id) != 0)
157             continue;
158
159         sequence = current;
160         break;
161     }
162
163     if (!sequence) {
164         DLOG("Got event for startup sequence that we did not initiate (ID = %s). Ignoring.\n", id);
165         return;
166     }
167
168     switch (sn_monitor_event_get_type(event)) {
169         case SN_MONITOR_EVENT_COMPLETED:
170             DLOG("startup sequence %s completed\n", sn_startup_sequence_get_id(snsequence));
171
172             /* Unref the context, will be free()d */
173             sn_launcher_context_unref(sequence->context);
174
175             /* Delete our internal sequence */
176             TAILQ_REMOVE(&startup_sequences, sequence, sequences);
177
178             if (TAILQ_EMPTY(&startup_sequences)) {
179                 DLOG("No more startup sequences running, changing root window cursor to default pointer.\n");
180                 /* Change the pointer of the root window to indicate progress */
181                 if (xcursor_supported)
182                     xcursor_set_root_cursor(XCURSOR_CURSOR_POINTER);
183                 else xcb_set_root_cursor(XCURSOR_CURSOR_POINTER);
184             }
185             break;
186         default:
187             /* ignore */
188             break;
189     }
190 }
191
192 /*
193  * Checks if the given window belongs to a startup notification by checking if
194  * the _NET_STARTUP_ID property is set on the window (or on its leader, if it’s
195  * unset).
196  *
197  * If so, returns the workspace on which the startup was initiated.
198  * Returns NULL otherwise.
199  *
200  */
201 char *startup_workspace_for_window(i3Window *cwindow, xcb_get_property_reply_t *startup_id_reply) {
202     /* The _NET_STARTUP_ID is only needed during this function, so we get it
203      * here and don’t save it in the 'cwindow'. */
204     if (startup_id_reply == NULL || xcb_get_property_value_length(startup_id_reply) == 0) {
205         FREE(startup_id_reply);
206         DLOG("No _NET_STARTUP_ID set on this window\n");
207         if (cwindow->leader == XCB_NONE)
208             return NULL;
209
210         xcb_get_property_cookie_t cookie;
211         cookie = xcb_get_property(conn, false, cwindow->leader, A__NET_STARTUP_ID, XCB_GET_PROPERTY_TYPE_ANY, 0, 512);
212         DLOG("Checking leader window 0x%08x\n", cwindow->leader);
213         startup_id_reply = xcb_get_property_reply(conn, cookie, NULL);
214
215         if (startup_id_reply == NULL || xcb_get_property_value_length(startup_id_reply) == 0) {
216             DLOG("No _NET_STARTUP_ID set on the leader either\n");
217             FREE(startup_id_reply);
218             return NULL;
219         }
220     }
221
222     char *startup_id;
223     if (asprintf(&startup_id, "%.*s", xcb_get_property_value_length(startup_id_reply),
224                  (char*)xcb_get_property_value(startup_id_reply)) == -1) {
225         perror("asprintf()");
226         DLOG("Could not get _NET_STARTUP_ID\n");
227         free(startup_id_reply);
228         return NULL;
229     }
230
231     struct Startup_Sequence *current, *sequence = NULL;
232     TAILQ_FOREACH(current, &startup_sequences, sequences) {
233         if (strcmp(current->id, startup_id) != 0)
234             continue;
235
236         sequence = current;
237         break;
238     }
239
240     free(startup_id);
241     free(startup_id_reply);
242
243     if (!sequence) {
244         DLOG("WARNING: This sequence (ID %s) was not found\n", startup_id);
245         return NULL;
246     }
247
248     return sequence->workspace;
249 }