[BACK]Return to cmd-attach-session.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/cmd-attach-session.c, Revision 1.73

1.73    ! nicm        1: /* $OpenBSD: cmd-attach-session.c,v 1.72 2017/04/22 08:56:24 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.61      nicm        4:  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      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.
                      9:  *
                     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.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
1.27      nicm       21: #include <errno.h>
                     22: #include <fcntl.h>
1.21      nicm       23: #include <stdlib.h>
1.27      nicm       24: #include <string.h>
                     25: #include <unistd.h>
1.21      nicm       26:
1.1       nicm       27: #include "tmux.h"
                     28:
                     29: /*
                     30:  * Attach existing session to the current terminal.
                     31:  */
                     32:
1.64      nicm       33: static enum cmd_retval cmd_attach_session_exec(struct cmd *,
                     34:                            struct cmdq_item *);
1.1       nicm       35:
                     36: const struct cmd_entry cmd_attach_session_entry = {
1.56      nicm       37:        .name = "attach-session",
                     38:        .alias = "attach",
                     39:
                     40:        .args = { "c:dErt:", 0, 0 },
                     41:        .usage = "[-dEr] [-c working-directory] " CMD_TARGET_SESSION_USAGE,
                     42:
1.73    ! nicm       43:        /* -t is special */
1.57      nicm       44:
                     45:        .flags = CMD_STARTSERVER,
1.56      nicm       46:        .exec = cmd_attach_session_exec
1.1       nicm       47: };
                     48:
1.22      nicm       49: enum cmd_retval
1.73    ! nicm       50: cmd_attach_session(struct cmdq_item *item, const char *tflag, int dflag,
        !            51:     int rflag, const char *cflag, int Eflag)
1.1       nicm       52: {
1.72      nicm       53:        struct cmd_find_state   *current = &item->shared->current;
1.73    ! nicm       54:        enum cmd_find_type       type;
        !            55:        int                      flags;
1.64      nicm       56:        struct client           *c = item->client, *c_loop;
1.73    ! nicm       57:        struct session          *s;
        !            58:        struct winlink          *wl;
        !            59:        struct window_pane      *wp;
1.70      nicm       60:        char                    *cause;
1.1       nicm       61:
1.13      nicm       62:        if (RB_EMPTY(&sessions)) {
1.64      nicm       63:                cmdq_error(item, "no sessions");
1.22      nicm       64:                return (CMD_RETURN_ERROR);
1.1       nicm       65:        }
1.15      nicm       66:
1.36      nicm       67:        if (c == NULL)
1.22      nicm       68:                return (CMD_RETURN_NORMAL);
1.36      nicm       69:        if (server_client_check_nested(c)) {
1.64      nicm       70:                cmdq_error(item, "sessions should be nested with care, "
1.35      nicm       71:                    "unset $TMUX to force");
                     72:                return (CMD_RETURN_ERROR);
                     73:        }
1.29      nicm       74:
1.73    ! nicm       75:        if (tflag != NULL && tflag[strcspn(tflag, ":.")] != '\0') {
        !            76:                type = CMD_FIND_PANE;
        !            77:                flags = 0;
        !            78:        } else {
        !            79:                type = CMD_FIND_SESSION;
        !            80:                flags = CMD_FIND_PREFER_UNATTACHED;
        !            81:        }
        !            82:        if (cmd_find_target(&item->target, item, tflag, type, flags) != 0)
        !            83:                return (CMD_RETURN_ERROR);
        !            84:        s = item->target.s;
        !            85:        wl = item->target.wl;
        !            86:        wp = item->target.wp;
        !            87:
1.29      nicm       88:        if (wl != NULL) {
                     89:                if (wp != NULL)
                     90:                        window_set_active_pane(wp->window, wp);
                     91:                session_set_current(s, wl);
1.72      nicm       92:                if (wp != NULL)
                     93:                        cmd_find_from_winlink_pane(current, wl, wp);
                     94:                else
                     95:                        cmd_find_from_winlink(current, wl);
1.29      nicm       96:        }
1.1       nicm       97:
1.42      nicm       98:        if (cflag != NULL) {
1.46      nicm       99:                free((void *)s->cwd);
1.70      nicm      100:                s->cwd = format_single(item, cflag, c, s, wl, wp);
1.42      nicm      101:        }
                    102:
1.36      nicm      103:        if (c->session != NULL) {
1.24      nicm      104:                if (dflag) {
1.36      nicm      105:                        TAILQ_FOREACH(c_loop, &clients, entry) {
1.37      nicm      106:                                if (c_loop->session != s || c == c_loop)
1.4       nicm      107:                                        continue;
1.60      nicm      108:                                server_client_detach(c_loop, MSG_DETACH);
1.4       nicm      109:                        }
                    110:                }
1.66      nicm      111:                if (!Eflag)
                    112:                        environ_update(s->options, c->environ, s->environ);
1.27      nicm      113:
1.36      nicm      114:                c->session = s;
1.71      nicm      115:                if (~item->shared->flags & CMDQ_SHARED_REPEAT)
1.69      nicm      116:                        server_client_set_key_table(c, NULL);
1.39      nicm      117:                status_timer_start(c);
1.65      nicm      118:                notify_client("client-session-changed", c);
1.40      nicm      119:                session_update_activity(s, NULL);
1.41      nicm      120:                gettimeofday(&s->last_attached_time, NULL);
1.36      nicm      121:                server_redraw_client(c);
1.17      nicm      122:                s->curw->flags &= ~WINLINK_ALERTFLAGS;
1.4       nicm      123:        } else {
1.36      nicm      124:                if (server_client_open(c, &cause) != 0) {
1.64      nicm      125:                        cmdq_error(item, "open terminal failed: %s", cause);
1.21      nicm      126:                        free(cause);
1.22      nicm      127:                        return (CMD_RETURN_ERROR);
1.27      nicm      128:                }
1.24      nicm      129:                if (rflag)
1.36      nicm      130:                        c->flags |= CLIENT_READONLY;
1.4       nicm      131:
1.28      nicm      132:                if (dflag) {
1.43      nicm      133:                        TAILQ_FOREACH(c_loop, &clients, entry) {
                    134:                                if (c_loop->session != s || c == c_loop)
                    135:                                        continue;
1.51      nicm      136:                                server_client_detach(c_loop, MSG_DETACH);
1.43      nicm      137:                        }
1.28      nicm      138:                }
1.66      nicm      139:                if (!Eflag)
                    140:                        environ_update(s->options, c->environ, s->environ);
1.8       nicm      141:
1.36      nicm      142:                c->session = s;
1.54      nicm      143:                server_client_set_key_table(c, NULL);
1.39      nicm      144:                status_timer_start(c);
1.65      nicm      145:                notify_client("client-session-changed", c);
1.40      nicm      146:                session_update_activity(s, NULL);
1.41      nicm      147:                gettimeofday(&s->last_attached_time, NULL);
1.36      nicm      148:                server_redraw_client(c);
1.17      nicm      149:                s->curw->flags &= ~WINLINK_ALERTFLAGS;
1.23      nicm      150:
1.43      nicm      151:                if (~c->flags & CLIENT_CONTROL)
                    152:                        proc_send(c->peer, MSG_READY, -1, NULL, 0);
1.65      nicm      153:                notify_client("client-attached", c);
1.63      nicm      154:                c->flags |= CLIENT_ATTACHED;
1.1       nicm      155:        }
                    156:        recalculate_sizes();
1.50      nicm      157:        alerts_check_session(s);
1.9       nicm      158:        server_update_socket();
1.1       nicm      159:
1.23      nicm      160:        return (CMD_RETURN_NORMAL);
1.24      nicm      161: }
                    162:
1.62      nicm      163: static enum cmd_retval
1.64      nicm      164: cmd_attach_session_exec(struct cmd *self, struct cmdq_item *item)
1.24      nicm      165: {
                    166:        struct args     *args = self->args;
                    167:
1.73    ! nicm      168:        return (cmd_attach_session(item, args_get(args, 't'),
        !           169:            args_has(args, 'd'), args_has(args, 'r'), args_get(args, 'c'),
        !           170:            args_has(args, 'E')));
1.1       nicm      171: }