2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change session name.
|
|
|
|
*/
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_rename_session_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_rename_session_entry = {
|
|
|
|
"rename-session", "rename",
|
2011-01-04 00:42:46 +00:00
|
|
|
"t:", 1, 1,
|
2009-06-01 22:58:49 +00:00
|
|
|
CMD_TARGET_SESSION_USAGE " new-name",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_rename_session_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_rename_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *s;
|
|
|
|
const char *newname;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
newname = args->argv[0];
|
2011-04-06 21:51:31 +00:00
|
|
|
if (!session_check_name(newname)) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "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) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "duplicate session: %s", newname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-08-11 07:45:06 +00:00
|
|
|
}
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
if ((s = cmd_find_session(cmdq, args_get(args, 't'), 0)) == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +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);
|
2012-03-17 22:35:09 +00:00
|
|
|
notify_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
|
|
|
}
|