Fix a couple of comments.
[tmux-openbsd.git] / cmd-command-prompt.c
blobf0f1d12d2a149486858ed93d4e68d760720443a0
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
21 #include <ctype.h>
22 #include <string.h>
23 #include <time.h>
25 #include "tmux.h"
28 * Prompt for command in client.
31 void cmd_command_prompt_key_binding(struct cmd *, int);
32 int cmd_command_prompt_check(struct args *);
33 int cmd_command_prompt_exec(struct cmd *, struct cmd_ctx *);
35 int cmd_command_prompt_callback(void *, const char *);
36 void cmd_command_prompt_free(void *);
38 const struct cmd_entry cmd_command_prompt_entry = {
39 "command-prompt", NULL,
40 "I:p:t:", 0, 1,
41 "[-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE " [template]",
43 cmd_command_prompt_key_binding,
44 NULL,
45 cmd_command_prompt_exec
48 struct cmd_command_prompt_cdata {
49 struct client *c;
50 char *inputs;
51 char *next_input;
52 char *next_prompt;
53 char *prompts;
54 char *template;
55 int idx;
58 void
59 cmd_command_prompt_key_binding(struct cmd *self, int key)
61 switch (key) {
62 case '$':
63 self->args = args_create(1, "rename-session '%%'");
64 args_set(self->args, 'I', "#S");
65 break;
66 case ',':
67 self->args = args_create(1, "rename-window '%%'");
68 args_set(self->args, 'I', "#W");
69 break;
70 case '.':
71 self->args = args_create(1, "move-window -t '%%'");
72 break;
73 case 'f':
74 self->args = args_create(1, "find-window '%%'");
75 break;
76 case '\'':
77 self->args = args_create(1, "select-window -t ':%%'");
78 args_set(self->args, 'p', "index");
79 break;
80 default:
81 self->args = args_create(0);
82 break;
86 int
87 cmd_command_prompt_exec(struct cmd *self, struct cmd_ctx *ctx)
89 struct args *args = self->args;
90 const char *inputs, *prompts;
91 struct cmd_command_prompt_cdata *cdata;
92 struct client *c;
93 char *input = NULL;
94 char *prompt, *prompt_replaced, *ptr;
95 size_t n;
97 if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)
98 return (-1);
100 if (c->prompt_string != NULL)
101 return (0);
103 cdata = xmalloc(sizeof *cdata);
104 cdata->c = c;
105 cdata->idx = 1;
106 cdata->inputs = NULL;
107 cdata->next_input = NULL;
108 cdata->next_prompt = NULL;
109 cdata->prompts = NULL;
110 cdata->template = NULL;
112 if (args->argc != 0)
113 cdata->template = xstrdup(args->argv[0]);
114 else
115 cdata->template = xstrdup("%1");
117 if ((prompts = args_get(args, 'p')) != NULL)
118 cdata->prompts = xstrdup(prompts);
119 else if (args->argc != 0) {
120 n = strcspn(cdata->template, " ,");
121 xasprintf(&cdata->prompts, "(%.*s) ", (int) n, cdata->template);
122 } else
123 cdata->prompts = xstrdup(":");
125 /* Get first prompt. */
126 cdata->next_prompt = cdata->prompts;
127 ptr = strsep(&cdata->next_prompt, ",");
128 if (prompts == NULL)
129 prompt = xstrdup(ptr);
130 else {
131 prompt_replaced = status_replace(c, NULL, NULL, NULL, ptr,
132 time(NULL), 0);
133 xasprintf(&prompt, "%s ", prompt_replaced);
134 xfree(prompt_replaced);
137 /* Get initial prompt input. */
138 if ((inputs = args_get(args, 'I')) != NULL) {
139 cdata->inputs = xstrdup(inputs);
140 cdata->next_input = cdata->inputs;
141 ptr = strsep(&cdata->next_input, ",");
143 input = status_replace(c, NULL, NULL, NULL, ptr, time(NULL),
147 status_prompt_set(c, prompt, input, cmd_command_prompt_callback,
148 cmd_command_prompt_free, cdata, 0);
150 if (input != NULL)
151 xfree(input);
152 xfree(prompt);
154 return (0);
158 cmd_command_prompt_callback(void *data, const char *s)
160 struct cmd_command_prompt_cdata *cdata = data;
161 struct client *c = cdata->c;
162 struct cmd_list *cmdlist;
163 struct cmd_ctx ctx;
164 char *cause, *new_template, *prompt;
165 char *prompt_replaced, *ptr, *input = NULL;
167 if (s == NULL)
168 return (0);
170 new_template = cmd_template_replace(cdata->template, s, cdata->idx);
171 xfree(cdata->template);
172 cdata->template = new_template;
175 * Check if there are more prompts; if so, get its respective input
176 * and update the prompt data.
178 if ((ptr = strsep(&cdata->next_prompt, ",")) != NULL) {
179 prompt_replaced = status_replace(c, NULL, NULL, NULL, ptr,
180 time(NULL), 0);
181 xasprintf(&prompt, "%s ", prompt_replaced);
183 /* Find next input and expand special sequences. */
184 if ((ptr = strsep(&cdata->next_input, ",")) != NULL) {
185 input = status_replace(c, NULL, NULL, NULL, ptr,
186 time(NULL), 0);
189 status_prompt_update(c, prompt, input);
191 if (input != NULL)
192 xfree(input);
193 xfree(prompt_replaced);
194 xfree(prompt);
196 cdata->idx++;
197 return (1);
200 if (cmd_string_parse(new_template, &cmdlist, &cause) != 0) {
201 if (cause != NULL) {
202 *cause = toupper((u_char) *cause);
203 status_message_set(c, "%s", cause);
204 xfree(cause);
206 return (0);
209 ctx.msgdata = NULL;
210 ctx.curclient = c;
212 ctx.error = key_bindings_error;
213 ctx.print = key_bindings_print;
214 ctx.info = key_bindings_info;
216 ctx.cmdclient = NULL;
218 cmd_list_exec(cmdlist, &ctx);
219 cmd_list_free(cmdlist);
221 if (c->prompt_callbackfn != (void *) &cmd_command_prompt_callback)
222 return (1);
223 return (0);
226 void
227 cmd_command_prompt_free(void *data)
229 struct cmd_command_prompt_cdata *cdata = data;
231 if (cdata->inputs != NULL)
232 xfree(cdata->inputs);
233 if (cdata->prompts != NULL)
234 xfree(cdata->prompts);
235 if (cdata->template != NULL)
236 xfree(cdata->template);
237 xfree(cdata);