2014-11-08 12:27:43 +00:00
|
|
|
/* $OpenBSD$ */
|
2007-11-09 11:02:01 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-02-23 22:25:58 +00:00
|
|
|
enum cmd_retval cmd_rename_session_exec(struct cmd *, struct cmd_q *);
|
2007-11-09 11:02:01 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_rename_session_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"rename-session", "rename",
|
2011-01-07 14:45:34 +00:00
|
|
|
"t:", 1, 1,
|
2008-06-05 21:25:00 +00:00
|
|
|
CMD_TARGET_SESSION_USAGE " new-name",
|
2011-01-07 14:45:34 +00:00
|
|
|
0,
|
|
|
|
cmd_rename_session_exec
|
2007-11-09 11:02:01 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2013-02-23 22:25:58 +00:00
|
|
|
cmd_rename_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
2007-11-09 11:02:01 +00:00
|
|
|
{
|
2011-01-07 14:45:34 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *s;
|
|
|
|
const char *newname;
|
2007-11-09 11:02:01 +00:00
|
|
|
|
2011-01-07 14:45:34 +00:00
|
|
|
newname = args->argv[0];
|
2011-04-06 22:29:26 +00:00
|
|
|
if (!session_check_name(newname)) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "bad session name: %s", newname);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-04-06 22:29:26 +00:00
|
|
|
}
|
2011-01-07 14:45:34 +00:00
|
|
|
if (session_find(newname) != NULL) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "duplicate session: %s", newname);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-08-11 22:19:03 +00:00
|
|
|
}
|
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
if ((s = cmd_find_session(cmdq, args_get(args, 't'), 0)) == NULL)
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2010-12-22 15:36:44 +00:00
|
|
|
RB_REMOVE(sessions, &sessions, s);
|
2012-07-11 19:34:16 +00:00
|
|
|
free(s->name);
|
2011-01-07 14:45:34 +00:00
|
|
|
s->name = xstrdup(newname);
|
2010-12-22 15:36:44 +00:00
|
|
|
RB_INSERT(sessions, &sessions, s);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-07-12 17:09:15 +00:00
|
|
|
server_status_session(s);
|
2012-03-18 02:22:09 +00:00
|
|
|
notify_session_renamed(s);
|
2009-07-12 17:09:15 +00:00
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2007-11-09 11:02:01 +00:00
|
|
|
}
|