mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Use client name when logging command queue.
This commit is contained in:
@ -32,11 +32,11 @@ static struct cmdq_list global_queue = TAILQ_HEAD_INITIALIZER(global_queue);
|
|||||||
static const char *
|
static const char *
|
||||||
cmdq_name(struct client *c)
|
cmdq_name(struct client *c)
|
||||||
{
|
{
|
||||||
static char s[32];
|
static char s[256];
|
||||||
|
|
||||||
if (c == NULL)
|
if (c == NULL)
|
||||||
return ("<global>");
|
return ("<global>");
|
||||||
xsnprintf(s, sizeof s, "<%p>", c);
|
xsnprintf(s, sizeof s, "<%s>", c->name);
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
85
cmd.c
85
cmd.c
@ -205,6 +205,8 @@ const struct cmd_entry *cmd_table[] = {
|
|||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static u_int cmd_list_next_group = 1;
|
||||||
|
|
||||||
void printflike(3, 4)
|
void printflike(3, 4)
|
||||||
cmd_log_argv(int argc, char **argv, const char *fmt, ...)
|
cmd_log_argv(int argc, char **argv, const char *fmt, ...)
|
||||||
{
|
{
|
||||||
@ -381,9 +383,9 @@ cmd_get_alias(const char *name)
|
|||||||
static const struct cmd_entry *
|
static const struct cmd_entry *
|
||||||
cmd_find(const char *name, char **cause)
|
cmd_find(const char *name, char **cause)
|
||||||
{
|
{
|
||||||
const struct cmd_entry **loop, *entry, *found = NULL;
|
const struct cmd_entry **loop, *entry, *found = NULL;
|
||||||
int ambiguous;
|
int ambiguous;
|
||||||
char s[BUFSIZ];
|
char s[BUFSIZ];
|
||||||
|
|
||||||
ambiguous = 0;
|
ambiguous = 0;
|
||||||
for (loop = cmd_table; *loop != NULL; loop++) {
|
for (loop = cmd_table; *loop != NULL; loop++) {
|
||||||
@ -502,6 +504,83 @@ cmd_print(struct cmd *cmd)
|
|||||||
return (out);
|
return (out);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct cmd_list *
|
||||||
|
cmd_list_new(void)
|
||||||
|
{
|
||||||
|
struct cmd_list *cmdlist;
|
||||||
|
|
||||||
|
cmdlist = xcalloc(1, sizeof *cmdlist);
|
||||||
|
cmdlist->references = 1;
|
||||||
|
cmdlist->group = cmd_list_next_group++;
|
||||||
|
TAILQ_INIT(&cmdlist->list);
|
||||||
|
return (cmdlist);
|
||||||
|
}
|
||||||
|
|
||||||
|
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++;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
cmd_list_free(struct cmd_list *cmdlist)
|
||||||
|
{
|
||||||
|
struct cmd *cmd, *cmd1;
|
||||||
|
|
||||||
|
if (--cmdlist->references != 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
TAILQ_FOREACH_SAFE(cmd, &cmdlist->list, qentry, cmd1) {
|
||||||
|
TAILQ_REMOVE(&cmdlist->list, cmd, qentry);
|
||||||
|
cmd_free(cmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
free(cmdlist);
|
||||||
|
}
|
||||||
|
|
||||||
|
char *
|
||||||
|
cmd_list_print(struct cmd_list *cmdlist, int escaped)
|
||||||
|
{
|
||||||
|
struct cmd *cmd;
|
||||||
|
char *buf, *this;
|
||||||
|
size_t len;
|
||||||
|
|
||||||
|
len = 1;
|
||||||
|
buf = xcalloc(1, len);
|
||||||
|
|
||||||
|
TAILQ_FOREACH(cmd, &cmdlist->list, qentry) {
|
||||||
|
this = cmd_print(cmd);
|
||||||
|
|
||||||
|
len += strlen(this) + 4;
|
||||||
|
buf = xrealloc(buf, len);
|
||||||
|
|
||||||
|
strlcat(buf, this, len);
|
||||||
|
if (TAILQ_NEXT(cmd, qentry) != NULL) {
|
||||||
|
if (escaped)
|
||||||
|
strlcat(buf, " \\; ", len);
|
||||||
|
else
|
||||||
|
strlcat(buf, " ; ", len);
|
||||||
|
}
|
||||||
|
|
||||||
|
free(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (buf);
|
||||||
|
}
|
||||||
|
|
||||||
/* Adjust current mouse position for a pane. */
|
/* Adjust current mouse position for a pane. */
|
||||||
int
|
int
|
||||||
cmd_mouse_at(struct window_pane *wp, struct mouse_event *m, u_int *xp,
|
cmd_mouse_at(struct window_pane *wp, struct mouse_event *m, u_int *xp,
|
||||||
|
Reference in New Issue
Block a user