Add window-status-separator option, from Thomas Adam.
[tmux-openbsd.git] / session.c
blob0109fd5d2bbc5ee35fca7621dffda0545be266a8
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/time.h>
22 #include <paths.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <time.h>
28 #include "tmux.h"
30 /* Global session list. */
31 struct sessions sessions;
32 struct sessions dead_sessions;
33 u_int next_session;
34 struct session_groups session_groups;
36 struct winlink *session_next_alert(struct winlink *);
37 struct winlink *session_previous_alert(struct winlink *);
39 RB_GENERATE(sessions, session, entry, session_cmp);
41 int
42 session_cmp(struct session *s1, struct session *s2)
44 return (strcmp(s1->name, s2->name));
48 * Find if session is still alive. This is true if it is still on the global
49 * sessions list.
51 int
52 session_alive(struct session *s)
54 struct session *s_loop;
56 RB_FOREACH(s_loop, sessions, &sessions) {
57 if (s_loop == s)
58 return (1);
60 return (0);
63 /* Find session by name. */
64 struct session *
65 session_find(const char *name)
67 struct session s;
69 s.name = (char *) name;
70 return (RB_FIND(sessions, &sessions, &s));
73 /* Find session by index. */
74 struct session *
75 session_find_by_index(u_int idx)
77 struct session *s;
79 RB_FOREACH(s, sessions, &sessions) {
80 if (s->idx == idx)
81 return (s);
83 return (NULL);
86 /* Create a new session. */
87 struct session *
88 session_create(const char *name, const char *cmd, const char *cwd,
89 struct environ *env, struct termios *tio, int idx, u_int sx, u_int sy,
90 char **cause)
92 struct session *s;
94 s = xmalloc(sizeof *s);
95 s->references = 0;
96 s->flags = 0;
98 if (gettimeofday(&s->creation_time, NULL) != 0)
99 fatal("gettimeofday failed");
100 session_update_activity(s);
102 s->cwd = xstrdup(cwd);
104 s->curw = NULL;
105 TAILQ_INIT(&s->lastw);
106 RB_INIT(&s->windows);
108 options_init(&s->options, &global_s_options);
109 environ_init(&s->environ);
110 if (env != NULL)
111 environ_copy(env, &s->environ);
113 s->tio = NULL;
114 if (tio != NULL) {
115 s->tio = xmalloc(sizeof *s->tio);
116 memcpy(s->tio, tio, sizeof *s->tio);
119 s->sx = sx;
120 s->sy = sy;
122 if (name != NULL) {
123 s->name = xstrdup(name);
124 s->idx = next_session++;
125 } else {
126 s->name = NULL;
127 do {
128 s->idx = next_session++;
129 if (s->name != NULL)
130 xfree (s->name);
131 xasprintf(&s->name, "%u", s->idx);
132 } while (RB_FIND(sessions, &sessions, s) != NULL);
134 RB_INSERT(sessions, &sessions, s);
136 if (cmd != NULL) {
137 if (session_new(s, NULL, cmd, cwd, idx, cause) == NULL) {
138 session_destroy(s);
139 return (NULL);
141 session_select(s, RB_ROOT(&s->windows)->idx);
144 log_debug("session %s created", s->name);
145 notify_session_created(s);
147 return (s);
150 /* Destroy a session. */
151 void
152 session_destroy(struct session *s)
154 struct winlink *wl;
155 log_debug("session %s destroyed", s->name);
157 RB_REMOVE(sessions, &sessions, s);
158 notify_session_closed(s);
160 if (s->tio != NULL)
161 xfree(s->tio);
163 session_group_remove(s);
164 environ_free(&s->environ);
165 options_free(&s->options);
167 while (!TAILQ_EMPTY(&s->lastw))
168 winlink_stack_remove(&s->lastw, TAILQ_FIRST(&s->lastw));
169 while (!RB_EMPTY(&s->windows)) {
170 wl = RB_ROOT(&s->windows);
171 notify_window_unlinked(s, wl->window);
172 winlink_remove(&s->windows, wl);
175 xfree(s->cwd);
177 RB_INSERT(sessions, &dead_sessions, s);
180 /* Check a session name is valid: not empty and no colons. */
182 session_check_name(const char *name)
184 return (*name != '\0' && strchr(name, ':') == NULL);
187 /* Update session active time. */
188 void
189 session_update_activity(struct session *s)
191 if (gettimeofday(&s->activity_time, NULL) != 0)
192 fatal("gettimeofday");
195 /* Find the next usable session. */
196 struct session *
197 session_next_session(struct session *s)
199 struct session *s2;
201 if (RB_EMPTY(&sessions) || !session_alive(s))
202 return (NULL);
204 s2 = RB_NEXT(sessions, &sessions, s);
205 if (s2 == NULL)
206 s2 = RB_MIN(sessions, &sessions);
207 if (s2 == s)
208 return (NULL);
209 return (s2);
212 /* Find the previous usable session. */
213 struct session *
214 session_previous_session(struct session *s)
216 struct session *s2;
218 if (RB_EMPTY(&sessions) || !session_alive(s))
219 return (NULL);
221 s2 = RB_PREV(sessions, &sessions, s);
222 if (s2 == NULL)
223 s2 = RB_MAX(sessions, &sessions);
224 if (s2 == s)
225 return (NULL);
226 return (s2);
229 /* Create a new window on a session. */
230 struct winlink *
231 session_new(struct session *s,
232 const char *name, const char *cmd, const char *cwd, int idx, char **cause)
234 struct window *w;
235 struct winlink *wl;
236 struct environ env;
237 const char *shell;
238 u_int hlimit;
240 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
241 xasprintf(cause, "index in use: %d", idx);
242 return (NULL);
245 environ_init(&env);
246 environ_copy(&global_environ, &env);
247 environ_copy(&s->environ, &env);
248 server_fill_environ(s, &env);
250 shell = options_get_string(&s->options, "default-shell");
251 if (*shell == '\0' || areshell(shell))
252 shell = _PATH_BSHELL;
254 hlimit = options_get_number(&s->options, "history-limit");
255 w = window_create(
256 name, cmd, shell, cwd, &env, s->tio, s->sx, s->sy, hlimit, cause);
257 if (w == NULL) {
258 winlink_remove(&s->windows, wl);
259 environ_free(&env);
260 return (NULL);
262 winlink_set_window(wl, w);
263 notify_window_linked(s, w);
264 environ_free(&env);
266 if (options_get_number(&s->options, "set-remain-on-exit"))
267 options_set_number(&w->options, "remain-on-exit", 1);
269 session_group_synchronize_from(s);
270 return (wl);
273 /* Attach a window to a session. */
274 struct winlink *
275 session_attach(struct session *s, struct window *w, int idx, char **cause)
277 struct winlink *wl;
279 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
280 xasprintf(cause, "index in use: %d", idx);
281 return (NULL);
283 winlink_set_window(wl, w);
284 notify_window_linked(s, w);
286 session_group_synchronize_from(s);
287 return (wl);
290 /* Detach a window from a session. */
292 session_detach(struct session *s, struct winlink *wl)
294 if (s->curw == wl &&
295 session_last(s) != 0 && session_previous(s, 0) != 0)
296 session_next(s, 0);
298 wl->flags &= ~WINLINK_ALERTFLAGS;
299 notify_window_unlinked(s, wl->window);
300 winlink_stack_remove(&s->lastw, wl);
301 winlink_remove(&s->windows, wl);
302 session_group_synchronize_from(s);
303 if (RB_EMPTY(&s->windows)) {
304 session_destroy(s);
305 return (1);
307 return (0);
310 /* Return if session has window. */
311 struct winlink *
312 session_has(struct session *s, struct window *w)
314 struct winlink *wl;
316 RB_FOREACH(wl, winlinks, &s->windows) {
317 if (wl->window == w)
318 return (wl);
320 return (NULL);
323 struct winlink *
324 session_next_alert(struct winlink *wl)
326 while (wl != NULL) {
327 if (wl->flags & WINLINK_ALERTFLAGS)
328 break;
329 wl = winlink_next(wl);
331 return (wl);
334 /* Move session to next window. */
336 session_next(struct session *s, int alert)
338 struct winlink *wl;
340 if (s->curw == NULL)
341 return (-1);
343 wl = winlink_next(s->curw);
344 if (alert)
345 wl = session_next_alert(wl);
346 if (wl == NULL) {
347 wl = RB_MIN(winlinks, &s->windows);
348 if (alert && ((wl = session_next_alert(wl)) == NULL))
349 return (-1);
351 if (wl == s->curw)
352 return (1);
353 winlink_stack_remove(&s->lastw, wl);
354 winlink_stack_push(&s->lastw, s->curw);
355 s->curw = wl;
356 wl->flags &= ~WINLINK_ALERTFLAGS;
357 return (0);
360 struct winlink *
361 session_previous_alert(struct winlink *wl)
363 while (wl != NULL) {
364 if (wl->flags & WINLINK_ALERTFLAGS)
365 break;
366 wl = winlink_previous(wl);
368 return (wl);
371 /* Move session to previous window. */
373 session_previous(struct session *s, int alert)
375 struct winlink *wl;
377 if (s->curw == NULL)
378 return (-1);
380 wl = winlink_previous(s->curw);
381 if (alert)
382 wl = session_previous_alert(wl);
383 if (wl == NULL) {
384 wl = RB_MAX(winlinks, &s->windows);
385 if (alert && (wl = session_previous_alert(wl)) == NULL)
386 return (-1);
388 if (wl == s->curw)
389 return (1);
390 winlink_stack_remove(&s->lastw, wl);
391 winlink_stack_push(&s->lastw, s->curw);
392 s->curw = wl;
393 wl->flags &= ~WINLINK_ALERTFLAGS;
394 return (0);
397 /* Move session to specific window. */
399 session_select(struct session *s, int idx)
401 struct winlink *wl;
403 wl = winlink_find_by_index(&s->windows, idx);
404 if (wl == NULL)
405 return (-1);
406 if (wl == s->curw)
407 return (1);
408 winlink_stack_remove(&s->lastw, wl);
409 winlink_stack_push(&s->lastw, s->curw);
410 s->curw = wl;
411 wl->flags &= ~WINLINK_ALERTFLAGS;
412 return (0);
415 /* Move session to last used window. */
417 session_last(struct session *s)
419 struct winlink *wl;
421 wl = TAILQ_FIRST(&s->lastw);
422 if (wl == NULL)
423 return (-1);
424 if (wl == s->curw)
425 return (1);
427 winlink_stack_remove(&s->lastw, wl);
428 winlink_stack_push(&s->lastw, s->curw);
429 s->curw = wl;
430 wl->flags &= ~WINLINK_ALERTFLAGS;
431 return (0);
434 /* Find the session group containing a session. */
435 struct session_group *
436 session_group_find(struct session *target)
438 struct session_group *sg;
439 struct session *s;
441 TAILQ_FOREACH(sg, &session_groups, entry) {
442 TAILQ_FOREACH(s, &sg->sessions, gentry) {
443 if (s == target)
444 return (sg);
447 return (NULL);
450 /* Find session group index. */
451 u_int
452 session_group_index(struct session_group *sg)
454 struct session_group *sg2;
455 u_int i;
457 i = 0;
458 TAILQ_FOREACH(sg2, &session_groups, entry) {
459 if (sg == sg2)
460 return (i);
461 i++;
464 fatalx("session group not found");
468 * Add a session to the session group containing target, creating it if
469 * necessary.
471 void
472 session_group_add(struct session *target, struct session *s)
474 struct session_group *sg;
476 if ((sg = session_group_find(target)) == NULL) {
477 sg = xmalloc(sizeof *sg);
478 TAILQ_INSERT_TAIL(&session_groups, sg, entry);
479 TAILQ_INIT(&sg->sessions);
480 TAILQ_INSERT_TAIL(&sg->sessions, target, gentry);
482 TAILQ_INSERT_TAIL(&sg->sessions, s, gentry);
485 /* Remove a session from its group and destroy the group if empty. */
486 void
487 session_group_remove(struct session *s)
489 struct session_group *sg;
491 if ((sg = session_group_find(s)) == NULL)
492 return;
493 TAILQ_REMOVE(&sg->sessions, s, gentry);
494 if (TAILQ_NEXT(TAILQ_FIRST(&sg->sessions), gentry) == NULL)
495 TAILQ_REMOVE(&sg->sessions, TAILQ_FIRST(&sg->sessions), gentry);
496 if (TAILQ_EMPTY(&sg->sessions)) {
497 TAILQ_REMOVE(&session_groups, sg, entry);
498 xfree(sg);
502 /* Synchronize a session to its session group. */
503 void
504 session_group_synchronize_to(struct session *s)
506 struct session_group *sg;
507 struct session *target;
509 if ((sg = session_group_find(s)) == NULL)
510 return;
512 target = NULL;
513 TAILQ_FOREACH(target, &sg->sessions, gentry) {
514 if (target != s)
515 break;
517 session_group_synchronize1(target, s);
520 /* Synchronize a session group to a session. */
521 void
522 session_group_synchronize_from(struct session *target)
524 struct session_group *sg;
525 struct session *s;
527 if ((sg = session_group_find(target)) == NULL)
528 return;
530 TAILQ_FOREACH(s, &sg->sessions, gentry) {
531 if (s != target)
532 session_group_synchronize1(target, s);
537 * Synchronize a session with a target session. This means destroying all
538 * winlinks then recreating them, then updating the current window, last window
539 * stack and alerts.
541 void
542 session_group_synchronize1(struct session *target, struct session *s)
544 struct winlinks old_windows, *ww;
545 struct winlink_stack old_lastw;
546 struct winlink *wl, *wl2;
548 /* Don't do anything if the session is empty (it'll be destroyed). */
549 ww = &target->windows;
550 if (RB_EMPTY(ww))
551 return;
553 /* If the current window has vanished, move to the next now. */
554 if (s->curw != NULL &&
555 winlink_find_by_index(ww, s->curw->idx) == NULL &&
556 session_last(s) != 0 && session_previous(s, 0) != 0)
557 session_next(s, 0);
559 /* Save the old pointer and reset it. */
560 memcpy(&old_windows, &s->windows, sizeof old_windows);
561 RB_INIT(&s->windows);
563 /* Link all the windows from the target. */
564 RB_FOREACH(wl, winlinks, ww) {
565 wl2 = winlink_add(&s->windows, wl->idx);
566 winlink_set_window(wl2, wl->window);
567 notify_window_linked(s, wl2->window);
568 wl2->flags |= wl->flags & WINLINK_ALERTFLAGS;
571 /* Fix up the current window. */
572 if (s->curw != NULL)
573 s->curw = winlink_find_by_index(&s->windows, s->curw->idx);
574 else
575 s->curw = winlink_find_by_index(&s->windows, target->curw->idx);
577 /* Fix up the last window stack. */
578 memcpy(&old_lastw, &s->lastw, sizeof old_lastw);
579 TAILQ_INIT(&s->lastw);
580 TAILQ_FOREACH(wl, &old_lastw, sentry) {
581 wl2 = winlink_find_by_index(&s->windows, wl->idx);
582 if (wl2 != NULL)
583 TAILQ_INSERT_TAIL(&s->lastw, wl2, sentry);
586 /* Then free the old winlinks list. */
587 while (!RB_EMPTY(&old_windows)) {
588 wl = RB_ROOT(&old_windows);
589 if (winlink_find_by_window_id(&s->windows, wl->window->id) == NULL)
590 notify_window_unlinked(s, wl->window);
591 winlink_remove(&old_windows, wl);