2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 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 <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prompt for command in client.
|
|
|
|
*/
|
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
void cmd_command_prompt_init(struct cmd *, int);
|
|
|
|
int cmd_command_prompt_parse(struct cmd *, int, char **, char **);
|
|
|
|
int cmd_command_prompt_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_command_prompt_free(struct cmd *);
|
|
|
|
size_t cmd_command_prompt_print(struct cmd *, char *, size_t);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
int cmd_command_prompt_callback(void *, const char *);
|
|
|
|
void cmd_command_prompt_cfree(void *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_command_prompt_entry = {
|
|
|
|
"command-prompt", NULL,
|
2009-08-19 10:39:50 +00:00
|
|
|
CMD_TARGET_CLIENT_USAGE " [-p prompts] [template]",
|
2009-11-13 19:53:28 +00:00
|
|
|
0, "",
|
2009-06-01 22:58:49 +00:00
|
|
|
cmd_command_prompt_init,
|
2009-08-19 10:39:50 +00:00
|
|
|
cmd_command_prompt_parse,
|
2009-06-01 22:58:49 +00:00
|
|
|
cmd_command_prompt_exec,
|
2009-08-19 10:39:50 +00:00
|
|
|
cmd_command_prompt_free,
|
|
|
|
cmd_command_prompt_print
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cmd_command_prompt_data {
|
2009-08-19 10:39:50 +00:00
|
|
|
char *prompts;
|
|
|
|
char *target;
|
|
|
|
char *template;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cmd_command_prompt_cdata {
|
2009-06-01 22:58:49 +00:00
|
|
|
struct client *c;
|
2009-08-19 10:39:50 +00:00
|
|
|
char *next_prompt;
|
|
|
|
char *prompts;
|
2009-06-01 22:58:49 +00:00
|
|
|
char *template;
|
2009-08-19 10:39:50 +00:00
|
|
|
int idx;
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
cmd_command_prompt_init(struct cmd *self, int key)
|
|
|
|
{
|
2009-08-19 10:39:50 +00:00
|
|
|
struct cmd_command_prompt_data *data;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
|
|
|
data->prompts = NULL;
|
|
|
|
data->target = NULL;
|
|
|
|
data->template = NULL;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case ',':
|
2009-08-19 10:39:50 +00:00
|
|
|
data->template = xstrdup("rename-window '%%'");
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
|
|
|
case '.':
|
2009-08-19 10:39:50 +00:00
|
|
|
data->template = xstrdup("move-window -t '%%'");
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
2009-08-19 10:39:50 +00:00
|
|
|
data->template = xstrdup("find-window '%%'");
|
2009-06-01 22:58:49 +00:00
|
|
|
break;
|
2010-05-05 23:24:23 +00:00
|
|
|
case '\'':
|
|
|
|
data->template = xstrdup("select-window -t ':%%'");
|
|
|
|
data->prompts = xstrdup("index");
|
|
|
|
break;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
int
|
|
|
|
cmd_command_prompt_parse(struct cmd *self, int argc, char **argv, char **cause)
|
|
|
|
{
|
|
|
|
struct cmd_command_prompt_data *data;
|
|
|
|
int opt;
|
|
|
|
|
2009-09-21 15:32:06 +00:00
|
|
|
self->entry->init(self, KEYC_NONE);
|
2009-08-19 10:39:50 +00:00
|
|
|
data = self->data;
|
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "p:t:")) != -1) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'p':
|
|
|
|
if (data->prompts == NULL)
|
|
|
|
data->prompts = xstrdup(optarg);
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
if (data->target == NULL)
|
|
|
|
data->target = xstrdup(optarg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc != 0 && argc != 1)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
data->template = xstrdup(argv[0]);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
|
|
|
|
|
|
|
self->entry->free(self);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
int
|
|
|
|
cmd_command_prompt_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2009-08-19 10:39:50 +00:00
|
|
|
struct cmd_command_prompt_data *data = self->data;
|
|
|
|
struct cmd_command_prompt_cdata *cdata;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct client *c;
|
2009-08-19 10:39:50 +00:00
|
|
|
char *prompt, *ptr;
|
|
|
|
size_t n;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if ((c = cmd_find_client(ctx, data->target)) == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (c->prompt_string != NULL)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
cdata = xmalloc(sizeof *cdata);
|
|
|
|
cdata->c = c;
|
2009-08-19 10:39:50 +00:00
|
|
|
cdata->idx = 1;
|
|
|
|
cdata->next_prompt = NULL;
|
|
|
|
cdata->prompts = NULL;
|
|
|
|
cdata->template = NULL;
|
|
|
|
|
|
|
|
if (data->template != NULL)
|
|
|
|
cdata->template = xstrdup(data->template);
|
|
|
|
else
|
|
|
|
cdata->template = xstrdup("%1");
|
|
|
|
if (data->prompts != NULL)
|
|
|
|
cdata->prompts = xstrdup(data->prompts);
|
|
|
|
else if (data->template != NULL) {
|
|
|
|
n = strcspn(data->template, " ,");
|
|
|
|
xasprintf(&cdata->prompts, "(%.*s) ", (int) n, data->template);
|
|
|
|
} else
|
|
|
|
cdata->prompts = xstrdup(":");
|
|
|
|
|
|
|
|
cdata->next_prompt = cdata->prompts;
|
|
|
|
ptr = strsep(&cdata->next_prompt, ",");
|
|
|
|
if (data->prompts == NULL)
|
|
|
|
prompt = xstrdup(ptr);
|
|
|
|
else
|
|
|
|
xasprintf(&prompt, "%s ", ptr);
|
|
|
|
status_prompt_set(c, prompt, cmd_command_prompt_callback,
|
|
|
|
cmd_command_prompt_cfree, cdata, 0);
|
|
|
|
xfree(prompt);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
void
|
|
|
|
cmd_command_prompt_free(struct cmd *self)
|
|
|
|
{
|
|
|
|
struct cmd_command_prompt_data *data = self->data;
|
|
|
|
|
|
|
|
if (data->prompts != NULL)
|
|
|
|
xfree(data->prompts);
|
|
|
|
if (data->target != NULL)
|
|
|
|
xfree(data->target);
|
|
|
|
if (data->template != NULL)
|
|
|
|
xfree(data->template);
|
|
|
|
xfree(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
cmd_command_prompt_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_command_prompt_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
|
|
|
if (data == NULL)
|
|
|
|
return (off);
|
|
|
|
if (off < len && data->prompts != NULL)
|
|
|
|
off += cmd_prarg(buf + off, len - off, " -p ", data->prompts);
|
|
|
|
if (off < len && data->target != NULL)
|
|
|
|
off += cmd_prarg(buf + off, len - off, " -t ", data->target);
|
|
|
|
if (off < len && data->template != NULL)
|
|
|
|
off += cmd_prarg(buf + off, len - off, " ", data->template);
|
|
|
|
return (off);
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
int
|
|
|
|
cmd_command_prompt_callback(void *data, const char *s)
|
|
|
|
{
|
2009-08-19 10:39:50 +00:00
|
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct client *c = cdata->c;
|
|
|
|
struct cmd_list *cmdlist;
|
2009-08-19 10:39:50 +00:00
|
|
|
struct cmd_ctx ctx;
|
|
|
|
char *cause, *newtempl, *prompt, *ptr;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
if (s == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
return (0);
|
|
|
|
|
2009-08-25 12:18:51 +00:00
|
|
|
newtempl = cmd_template_replace(cdata->template, s, cdata->idx);
|
2009-08-19 10:39:50 +00:00
|
|
|
xfree(cdata->template);
|
|
|
|
cdata->template = newtempl;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
if ((ptr = strsep(&cdata->next_prompt, ",")) != NULL) {
|
|
|
|
xasprintf(&prompt, "%s ", ptr);
|
|
|
|
status_prompt_update(c, prompt);
|
|
|
|
xfree(prompt);
|
|
|
|
cdata->idx++;
|
|
|
|
return (1);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
if (cmd_string_parse(newtempl, &cmdlist, &cause) != 0) {
|
|
|
|
if (cause != NULL) {
|
|
|
|
*cause = toupper((u_char) *cause);
|
|
|
|
status_message_set(c, "%s", cause);
|
|
|
|
xfree(cause);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
return (0);
|
2009-08-19 10:39:50 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
ctx.msgdata = NULL;
|
|
|
|
ctx.curclient = c;
|
|
|
|
|
|
|
|
ctx.error = key_bindings_error;
|
|
|
|
ctx.print = key_bindings_print;
|
|
|
|
ctx.info = key_bindings_info;
|
|
|
|
|
|
|
|
ctx.cmdclient = NULL;
|
|
|
|
|
|
|
|
cmd_list_exec(cmdlist, &ctx);
|
|
|
|
cmd_list_free(cmdlist);
|
|
|
|
|
2009-07-17 06:13:27 +00:00
|
|
|
if (c->prompt_callbackfn != (void *) &cmd_command_prompt_callback)
|
2009-06-01 22:58:49 +00:00
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
2009-07-17 06:13:27 +00:00
|
|
|
|
|
|
|
void
|
2009-08-19 10:39:50 +00:00
|
|
|
cmd_command_prompt_cfree(void *data)
|
2009-07-17 06:13:27 +00:00
|
|
|
{
|
2009-08-19 10:39:50 +00:00
|
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
2009-07-17 06:13:27 +00:00
|
|
|
|
2009-08-19 10:39:50 +00:00
|
|
|
if (cdata->prompts != NULL)
|
|
|
|
xfree(cdata->prompts);
|
2009-07-17 06:13:27 +00:00
|
|
|
if (cdata->template != NULL)
|
|
|
|
xfree(cdata->template);
|
|
|
|
xfree(cdata);
|
|
|
|
}
|