2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2016-11-16 11:41:17 +00:00
|
|
|
#include <string.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change session name.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_rename_session_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_rename_session_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "rename-session",
|
|
|
|
.alias = "rename",
|
|
|
|
|
|
|
|
.args = { "t:", 1, 1 },
|
|
|
|
.usage = CMD_TARGET_SESSION_USAGE " new-name",
|
|
|
|
|
2015-12-14 00:31:54 +00:00
|
|
|
.tflag = CMD_SESSION,
|
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_rename_session_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_rename_session_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2016-10-16 19:04:05 +00:00
|
|
|
struct session *s = item->state.tflag.s;
|
2011-01-04 00:42:46 +00:00
|
|
|
const char *newname;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
newname = args->argv[0];
|
2016-11-16 11:41:17 +00:00
|
|
|
if (strcmp(newname, s->name) == 0)
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
|
2011-04-06 21:51:31 +00:00
|
|
|
if (!session_check_name(newname)) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "bad session name: %s", newname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-04-06 21:51:31 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
if (session_find(newname) != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "duplicate session: %s", newname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-08-11 07:45:06 +00:00
|
|
|
}
|
|
|
|
|
2010-12-21 22:37:59 +00:00
|
|
|
RB_REMOVE(sessions, &sessions, s);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(s->name);
|
2011-01-04 00:42:46 +00:00
|
|
|
s->name = xstrdup(newname);
|
2010-12-21 22:37:59 +00:00
|
|
|
RB_INSERT(sessions, &sessions, s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-10 17:34:51 +00:00
|
|
|
server_status_session(s);
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_session("session-renamed", s);
|
2009-07-10 17:34:51 +00:00
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|