2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 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>
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2019-05-23 11:13:30 +00:00
|
|
|
static u_int cmd_list_next_group = 1;
|
|
|
|
|
|
|
|
struct cmd_list *
|
2019-05-20 11:34:37 +00:00
|
|
|
cmd_list_new(void)
|
|
|
|
{
|
|
|
|
struct cmd_list *cmdlist;
|
|
|
|
|
|
|
|
cmdlist = xcalloc(1, sizeof *cmdlist);
|
|
|
|
cmdlist->references = 1;
|
2019-05-23 11:13:30 +00:00
|
|
|
cmdlist->group = cmd_list_next_group++;
|
2019-05-20 11:34:37 +00:00
|
|
|
TAILQ_INIT(&cmdlist->list);
|
|
|
|
return (cmdlist);
|
|
|
|
}
|
|
|
|
|
2019-05-23 11:13:30 +00:00
|
|
|
void
|
|
|
|
cmd_list_append(struct cmd_list *cmdlist, struct cmd *cmd)
|
|
|
|
{
|
|
|
|
cmd->group = cmdlist->group;
|
|
|
|
TAILQ_INSERT_TAIL(&cmdlist->list, cmd, qentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cmd_list_move(struct cmd_list *cmdlist, struct cmd_list *from)
|
|
|
|
{
|
|
|
|
struct cmd *cmd, *cmd1;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(cmd, &from->list, qentry, cmd1) {
|
|
|
|
TAILQ_REMOVE(&from->list, cmd, qentry);
|
|
|
|
TAILQ_INSERT_TAIL(&cmdlist->list, cmd, qentry);
|
|
|
|
}
|
|
|
|
cmdlist->group = cmd_list_next_group++;
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
|
|
|
cmd_list_free(struct cmd_list *cmdlist)
|
|
|
|
{
|
2013-03-24 09:54:10 +00:00
|
|
|
struct cmd *cmd, *cmd1;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-06-26 18:20:53 +00:00
|
|
|
if (--cmdlist->references != 0)
|
|
|
|
return;
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
TAILQ_FOREACH_SAFE(cmd, &cmdlist->list, qentry, cmd1) {
|
2010-06-26 18:20:53 +00:00
|
|
|
TAILQ_REMOVE(&cmdlist->list, cmd, qentry);
|
2019-05-23 11:13:30 +00:00
|
|
|
cmd_free(cmd);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cmdlist);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2015-11-27 15:06:43 +00:00
|
|
|
char *
|
2019-05-23 14:03:44 +00:00
|
|
|
cmd_list_print(struct cmd_list *cmdlist, int escaped)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
|
|
|
struct cmd *cmd;
|
2015-11-27 15:06:43 +00:00
|
|
|
char *buf, *this;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = 1;
|
|
|
|
buf = xcalloc(1, len);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-06-26 18:20:53 +00:00
|
|
|
TAILQ_FOREACH(cmd, &cmdlist->list, qentry) {
|
2015-11-27 15:06:43 +00:00
|
|
|
this = cmd_print(cmd);
|
|
|
|
|
2019-05-23 14:03:44 +00:00
|
|
|
len += strlen(this) + 4;
|
2015-11-27 15:06:43 +00:00
|
|
|
buf = xrealloc(buf, len);
|
|
|
|
|
|
|
|
strlcat(buf, this, len);
|
2019-05-23 14:03:44 +00:00
|
|
|
if (TAILQ_NEXT(cmd, qentry) != NULL) {
|
|
|
|
if (escaped)
|
|
|
|
strlcat(buf, " \\; ", len);
|
|
|
|
else
|
|
|
|
strlcat(buf, " ; ", len);
|
|
|
|
}
|
2015-11-27 15:06:43 +00:00
|
|
|
|
|
|
|
free(this);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2015-11-27 15:06:43 +00:00
|
|
|
|
|
|
|
return (buf);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|