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>
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
,
41 "[-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE
" [template]",
43 cmd_command_prompt_key_binding
,
45 cmd_command_prompt_exec
48 struct cmd_command_prompt_cdata
{
59 cmd_command_prompt_key_binding(struct cmd
*self
, int key
)
63 self
->args
= args_create(1, "rename-session '%%'");
64 args_set(self
->args
, 'I', "#S");
67 self
->args
= args_create(1, "rename-window '%%'");
68 args_set(self
->args
, 'I', "#W");
71 self
->args
= args_create(1, "move-window -t '%%'");
74 self
->args
= args_create(1, "find-window '%%'");
77 self
->args
= args_create(1, "select-window -t ':%%'");
78 args_set(self
->args
, 'p', "index");
81 self
->args
= args_create(0);
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
;
93 char *prompt
, *ptr
, *input
= NULL
;
96 if ((c
= cmd_find_client(ctx
, args_get(args
, 't'))) == NULL
)
99 if (c
->prompt_string
!= NULL
)
102 cdata
= xmalloc(sizeof *cdata
);
105 cdata
->inputs
= NULL
;
106 cdata
->next_input
= NULL
;
107 cdata
->next_prompt
= NULL
;
108 cdata
->prompts
= NULL
;
109 cdata
->template = NULL
;
112 cdata
->template = xstrdup(args
->argv
[0]);
114 cdata
->template = xstrdup("%1");
116 if ((prompts
= args_get(args
, 'p')) != NULL
)
117 cdata
->prompts
= xstrdup(prompts
);
118 else if (args
->argc
!= 0) {
119 n
= strcspn(cdata
->template, " ,");
120 xasprintf(&cdata
->prompts
, "(%.*s) ", (int) n
, cdata
->template);
122 cdata
->prompts
= xstrdup(":");
124 /* Get first prompt. */
125 cdata
->next_prompt
= cdata
->prompts
;
126 ptr
= strsep(&cdata
->next_prompt
, ",");
128 prompt
= xstrdup(ptr
);
130 xasprintf(&prompt
, "%s ", ptr
);
132 /* Get initial prompt input. */
133 if ((inputs
= args_get(args
, 'I')) != NULL
) {
134 cdata
->inputs
= xstrdup(inputs
);
135 cdata
->next_input
= cdata
->inputs
;
136 input
= strsep(&cdata
->next_input
, ",");
139 status_prompt_set(c
, prompt
, input
, cmd_command_prompt_callback
,
140 cmd_command_prompt_free
, cdata
, 0);
147 cmd_command_prompt_callback(void *data
, const char *s
)
149 struct cmd_command_prompt_cdata
*cdata
= data
;
150 struct client
*c
= cdata
->c
;
151 struct cmd_list
*cmdlist
;
153 char *cause
, *new_template
, *prompt
, *ptr
;
159 new_template
= cmd_template_replace(cdata
->template, s
, cdata
->idx
);
160 xfree(cdata
->template);
161 cdata
->template = new_template
;
164 * Check if there are more prompts; if so, get its respective input
165 * and update the prompt data.
167 if ((ptr
= strsep(&cdata
->next_prompt
, ",")) != NULL
) {
168 xasprintf(&prompt
, "%s ", ptr
);
169 input
= strsep(&cdata
->next_input
, ",");
170 status_prompt_update(c
, prompt
, input
);
177 if (cmd_string_parse(new_template
, &cmdlist
, &cause
) != 0) {
179 *cause
= toupper((u_char
) *cause
);
180 status_message_set(c
, "%s", cause
);
189 ctx
.error
= key_bindings_error
;
190 ctx
.print
= key_bindings_print
;
191 ctx
.info
= key_bindings_info
;
193 ctx
.cmdclient
= NULL
;
195 cmd_list_exec(cmdlist
, &ctx
);
196 cmd_list_free(cmdlist
);
198 if (c
->prompt_callbackfn
!= (void *) &cmd_command_prompt_callback
)
204 cmd_command_prompt_free(void *data
)
206 struct cmd_command_prompt_cdata
*cdata
= data
;
208 if (cdata
->inputs
!= NULL
)
209 xfree(cdata
->inputs
);
210 if (cdata
->prompts
!= NULL
)
211 xfree(cdata
->prompts
);
212 if (cdata
->template != NULL
)
213 xfree(cdata
->template);