[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.16

1.16    ! nicm        1: /* $OpenBSD: cmd-attach-session.c,v 1.15 2011/01/04 00:42:46 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      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 "tmux.h"
                     22:
                     23: /*
                     24:  * Attach existing session to the current terminal.
                     25:  */
                     26:
                     27: int    cmd_attach_session_exec(struct cmd *, struct cmd_ctx *);
                     28:
                     29: const struct cmd_entry cmd_attach_session_entry = {
                     30:        "attach-session", "attach",
1.15      nicm       31:        "drt:", 0, 0,
1.12      nicm       32:        "[-dr] " CMD_TARGET_SESSION_USAGE,
1.15      nicm       33:        CMD_CANTNEST|CMD_STARTSERVER|CMD_SENDENVIRON,
                     34:        NULL,
                     35:        NULL,
                     36:        cmd_attach_session_exec
1.1       nicm       37: };
                     38:
                     39: int
                     40: cmd_attach_session_exec(struct cmd *self, struct cmd_ctx *ctx)
                     41: {
1.15      nicm       42:        struct args     *args = self->args;
                     43:        struct session  *s;
                     44:        struct client   *c;
                     45:        const char      *update;
                     46:        char            *overrides, *cause;
                     47:        u_int            i;
1.1       nicm       48:
1.13      nicm       49:        if (RB_EMPTY(&sessions)) {
1.1       nicm       50:                ctx->error(ctx, "no sessions");
                     51:                return (-1);
                     52:        }
1.15      nicm       53:
1.16    ! nicm       54:        if ((s = cmd_find_session(ctx, args_get(args, 't'), 1)) == NULL)
1.1       nicm       55:                return (-1);
1.5       nicm       56:
                     57:        if (ctx->cmdclient == NULL && ctx->curclient == NULL)
                     58:                return (0);
1.1       nicm       59:
1.4       nicm       60:        if (ctx->cmdclient == NULL) {
1.15      nicm       61:                if (args_has(self->args, 'd')) {
1.11      nicm       62:                        /*
1.4       nicm       63:                         * Can't use server_write_session in case attaching to
                     64:                         * the same session as currently attached to.
                     65:                         */
                     66:                        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                     67:                                c = ARRAY_ITEM(&clients, i);
                     68:                                if (c == NULL || c->session != s)
                     69:                                        continue;
                     70:                                if (c == ctx->curclient)
                     71:                                        continue;
                     72:                                server_write_client(c, MSG_DETACH, NULL, 0);
                     73:                        }
                     74:                }
1.11      nicm       75:
1.4       nicm       76:                ctx->curclient->session = s;
1.14      nicm       77:                session_update_activity(s);
1.4       nicm       78:                server_redraw_client(ctx->curclient);
                     79:        } else {
                     80:                if (!(ctx->cmdclient->flags & CLIENT_TERMINAL)) {
                     81:                        ctx->error(ctx, "not a terminal");
                     82:                        return (-1);
                     83:                }
                     84:
1.7       nicm       85:                overrides =
                     86:                    options_get_string(&s->options, "terminal-overrides");
                     87:                if (tty_open(&ctx->cmdclient->tty, overrides, &cause) != 0) {
1.4       nicm       88:                        ctx->error(ctx, "terminal open failed: %s", cause);
                     89:                        xfree(cause);
                     90:                        return (-1);
                     91:                }
1.12      nicm       92:
1.15      nicm       93:                if (args_has(self->args, 'r'))
1.12      nicm       94:                        ctx->cmdclient->flags |= CLIENT_READONLY;
1.4       nicm       95:
1.15      nicm       96:                if (args_has(self->args, 'd'))
1.4       nicm       97:                        server_write_session(s, MSG_DETACH, NULL, 0);
                     98:
                     99:                ctx->cmdclient->session = s;
1.14      nicm      100:                session_update_activity(s);
1.4       nicm      101:                server_write_client(ctx->cmdclient, MSG_READY, NULL, 0);
1.8       nicm      102:
                    103:                update = options_get_string(&s->options, "update-environment");
                    104:                environ_update(update, &ctx->cmdclient->environ, &s->environ);
                    105:
1.4       nicm      106:                server_redraw_client(ctx->cmdclient);
1.1       nicm      107:        }
                    108:        recalculate_sizes();
1.9       nicm      109:        server_update_socket();
1.1       nicm      110:
1.4       nicm      111:        return (1);     /* 1 means don't tell command client to exit */
1.1       nicm      112: }