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

Annotation of src/usr.bin/tmux/cmd-switch-client.c, Revision 1.64

1.64    ! nicm        1: /* $OpenBSD: cmd-switch-client.c,v 1.63 2020/04/13 14:04:25 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.42      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:
                     21: #include <stdlib.h>
                     22: #include <string.h>
                     23:
                     24: #include "tmux.h"
                     25:
                     26: /*
                     27:  * Switch client to a different session.
                     28:  */
                     29:
1.44      nicm       30: static enum cmd_retval cmd_switch_client_exec(struct cmd *,
                     31:                            struct cmdq_item *);
1.1       nicm       32:
                     33: const struct cmd_entry cmd_switch_client_entry = {
1.39      nicm       34:        .name = "switch-client",
                     35:        .alias = "switchc",
                     36:
1.58      nicm       37:        .args = { "lc:Enpt:rT:Z", 0, 0 },
                     38:        .usage = "[-ElnprZ] [-c target-client] [-t target-session] "
1.39      nicm       39:                 "[-T key-table]",
                     40:
1.51      nicm       41:        /* -t is special */
1.40      nicm       42:
                     43:        .flags = CMD_READONLY,
1.39      nicm       44:        .exec = cmd_switch_client_exec
1.1       nicm       45: };
1.6       nicm       46:
1.43      nicm       47: static enum cmd_retval
1.44      nicm       48: cmd_switch_client_exec(struct cmd *self, struct cmdq_item *item)
1.1       nicm       49: {
1.61      nicm       50:        struct args             *args = cmd_get_args(self);
1.64    ! nicm       51:        struct cmd_find_state   *current = cmdq_get_current(item);
1.62      nicm       52:        struct cmd_find_state    target;
1.51      nicm       53:        const char              *tflag = args_get(args, 't');
                     54:        enum cmd_find_type       type;
                     55:        int                      flags;
                     56:        struct client           *c;
                     57:        struct session          *s;
                     58:        struct winlink          *wl;
1.58      nicm       59:        struct window           *w;
1.38      nicm       60:        struct window_pane      *wp;
1.46      nicm       61:        const char              *tablename;
1.23      nicm       62:        struct key_table        *table;
1.13      nicm       63:
1.51      nicm       64:        if ((c = cmd_find_client(item, args_get(args, 'c'), 0)) == NULL)
                     65:                return (CMD_RETURN_ERROR);
                     66:
1.57      nicm       67:        if (tflag != NULL && tflag[strcspn(tflag, ":.%")] != '\0') {
1.51      nicm       68:                type = CMD_FIND_PANE;
                     69:                flags = 0;
                     70:        } else {
                     71:                type = CMD_FIND_SESSION;
                     72:                flags = CMD_FIND_PREFER_UNATTACHED;
                     73:        }
1.62      nicm       74:        if (cmd_find_target(&target, item, tflag, type, flags) != 0)
1.51      nicm       75:                return (CMD_RETURN_ERROR);
1.62      nicm       76:        s = target.s;
                     77:        wl = target.wl;
                     78:        wp = target.wp;
1.51      nicm       79:
1.34      mmcc       80:        if (args_has(args, 'r'))
                     81:                c->flags ^= CLIENT_READONLY;
1.23      nicm       82:
                     83:        tablename = args_get(args, 'T');
                     84:        if (tablename != NULL) {
                     85:                table = key_bindings_get_table(tablename, 0);
                     86:                if (table == NULL) {
1.44      nicm       87:                        cmdq_error(item, "table %s doesn't exist", tablename);
1.23      nicm       88:                        return (CMD_RETURN_ERROR);
                     89:                }
                     90:                table->references++;
                     91:                key_bindings_unref_table(c->keytable);
                     92:                c->keytable = table;
1.36      nicm       93:                return (CMD_RETURN_NORMAL);
1.13      nicm       94:        }
1.6       nicm       95:
1.11      nicm       96:        if (args_has(args, 'n')) {
1.6       nicm       97:                if ((s = session_next_session(c->session)) == NULL) {
1.44      nicm       98:                        cmdq_error(item, "can't find next session");
1.15      nicm       99:                        return (CMD_RETURN_ERROR);
1.6       nicm      100:                }
1.11      nicm      101:        } else if (args_has(args, 'p')) {
1.6       nicm      102:                if ((s = session_previous_session(c->session)) == NULL) {
1.44      nicm      103:                        cmdq_error(item, "can't find previous session");
1.15      nicm      104:                        return (CMD_RETURN_ERROR);
1.6       nicm      105:                }
1.11      nicm      106:        } else if (args_has(args, 'l')) {
1.9       nicm      107:                if (c->last_session != NULL && session_alive(c->last_session))
                    108:                        s = c->last_session;
1.38      nicm      109:                else
                    110:                        s = NULL;
1.8       nicm      111:                if (s == NULL) {
1.44      nicm      112:                        cmdq_error(item, "can't find last session");
1.15      nicm      113:                        return (CMD_RETURN_ERROR);
1.8       nicm      114:                }
1.41      nicm      115:        } else {
1.62      nicm      116:                if (cmdq_get_client(item) == NULL)
1.19      nicm      117:                        return (CMD_RETURN_NORMAL);
1.58      nicm      118:                if (wl != NULL && wp != NULL) {
1.60      nicm      119:                        w = wl->window;
1.61      nicm      120:                        if (window_push_zoom(w, args_has(args, 'Z')))
1.58      nicm      121:                                server_redraw_window(w);
                    122:                        window_redraw_active_switch(w, wp);
                    123:                        window_set_active_pane(w, wp, 1);
                    124:                        if (window_pop_zoom(w))
                    125:                                server_redraw_window(w);
                    126:                }
1.51      nicm      127:                if (wl != NULL) {
                    128:                        session_set_current(s, wl);
1.62      nicm      129:                        cmd_find_from_session(current, s, 0);
1.19      nicm      130:                }
1.25      nicm      131:        }
                    132:
1.46      nicm      133:        if (!args_has(args, 'E'))
                    134:                environ_update(s->options, c->environ, s->environ);
1.8       nicm      135:
1.31      nicm      136:        if (c->session != NULL && c->session != s)
1.9       nicm      137:                c->last_session = c->session;
1.1       nicm      138:        c->session = s;
1.64    ! nicm      139:        if (~cmdq_get_flags(item) & CMDQ_STATE_REPEAT)
1.48      nicm      140:                server_client_set_key_table(c, NULL);
1.54      nicm      141:        tty_update_client_offset(c);
1.28      nicm      142:        status_timer_start(c);
1.52      nicm      143:        notify_client("client-session-changed", c);
1.29      nicm      144:        session_update_activity(s, NULL);
1.30      nicm      145:        gettimeofday(&s->last_attached_time, NULL);
1.1       nicm      146:
1.7       nicm      147:        server_check_unattached();
1.1       nicm      148:        server_redraw_client(c);
1.14      nicm      149:        s->curw->flags &= ~WINLINK_ALERTFLAGS;
1.59      nicm      150:        s->curw->window->latest = c;
                    151:        recalculate_sizes();
1.35      nicm      152:        alerts_check_session(s);
1.1       nicm      153:
1.15      nicm      154:        return (CMD_RETURN_NORMAL);
1.1       nicm      155: }