2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 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>
|
|
|
|
|
2009-06-24 22:49:56 +00:00
|
|
|
#include <fnmatch.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"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find window containing text.
|
|
|
|
*/
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_find_window_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
void cmd_find_window_callback(struct window_choose_data *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-03-20 17:09:48 +00:00
|
|
|
/* Flags for determining matching behavior. */
|
|
|
|
#define CMD_FIND_WINDOW_BY_TITLE 0x1
|
|
|
|
#define CMD_FIND_WINDOW_BY_CONTENT 0x2
|
|
|
|
#define CMD_FIND_WINDOW_BY_NAME 0x4
|
|
|
|
|
|
|
|
#define CMD_FIND_WINDOW_ALL \
|
|
|
|
(CMD_FIND_WINDOW_BY_TITLE | \
|
|
|
|
CMD_FIND_WINDOW_BY_CONTENT | \
|
|
|
|
CMD_FIND_WINDOW_BY_NAME)
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
const struct cmd_entry cmd_find_window_entry = {
|
|
|
|
"find-window", "findw",
|
2012-05-22 11:35:37 +00:00
|
|
|
"F:CNt:T", 1, 4,
|
|
|
|
"[-CNT] [-F format] " CMD_TARGET_WINDOW_USAGE " match-string",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_find_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
struct cmd_find_window_data {
|
|
|
|
struct winlink *wl;
|
|
|
|
char *list_ctx;
|
|
|
|
u_int pane_id;
|
|
|
|
};
|
|
|
|
ARRAY_DECL(cmd_find_window_data_list, struct cmd_find_window_data);
|
|
|
|
|
|
|
|
u_int cmd_find_window_match_flags(struct args *);
|
|
|
|
void cmd_find_window_match(struct cmd_find_window_data_list *, int,
|
|
|
|
struct winlink *, const char *, const char *);
|
|
|
|
|
2012-03-20 17:09:48 +00:00
|
|
|
u_int
|
|
|
|
cmd_find_window_match_flags(struct args *args)
|
|
|
|
{
|
|
|
|
u_int match_flags = 0;
|
|
|
|
|
|
|
|
/* Turn on flags based on the options. */
|
|
|
|
if (args_has(args, 'T'))
|
|
|
|
match_flags |= CMD_FIND_WINDOW_BY_TITLE;
|
|
|
|
if (args_has(args, 'C'))
|
|
|
|
match_flags |= CMD_FIND_WINDOW_BY_CONTENT;
|
|
|
|
if (args_has(args, 'N'))
|
|
|
|
match_flags |= CMD_FIND_WINDOW_BY_NAME;
|
|
|
|
|
|
|
|
/* If none of the flags were set, default to matching anything. */
|
|
|
|
if (match_flags == 0)
|
|
|
|
match_flags = CMD_FIND_WINDOW_ALL;
|
|
|
|
|
2012-04-01 20:53:47 +00:00
|
|
|
return (match_flags);
|
2012-03-20 17:09:48 +00:00
|
|
|
}
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
void
|
|
|
|
cmd_find_window_match(struct cmd_find_window_data_list *find_list,
|
2014-04-17 14:45:49 +00:00
|
|
|
int match_flags, struct winlink *wl, const char *str,
|
|
|
|
const char *searchstr)
|
2012-09-03 12:20:17 +00:00
|
|
|
{
|
|
|
|
struct cmd_find_window_data find_data;
|
|
|
|
struct window_pane *wp;
|
|
|
|
u_int i, line;
|
|
|
|
char *sres;
|
|
|
|
|
|
|
|
memset(&find_data, 0, sizeof find_data);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
TAILQ_FOREACH(wp, &wl->window->panes, entry) {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if ((match_flags & CMD_FIND_WINDOW_BY_NAME) &&
|
|
|
|
fnmatch(searchstr, wl->window->name, 0) == 0) {
|
|
|
|
find_data.list_ctx = xstrdup("");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((match_flags & CMD_FIND_WINDOW_BY_TITLE) &&
|
|
|
|
fnmatch(searchstr, wp->base.title, 0) == 0) {
|
|
|
|
xasprintf(&find_data.list_ctx,
|
|
|
|
"pane %u title: \"%s\"", i - 1, wp->base.title);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match_flags & CMD_FIND_WINDOW_BY_CONTENT &&
|
|
|
|
(sres = window_pane_search(wp, str, &line)) != NULL) {
|
|
|
|
xasprintf(&find_data.list_ctx,
|
|
|
|
"pane %u line %u: \"%s\"", i - 1, line + 1, sres);
|
|
|
|
free(sres);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (find_data.list_ctx != NULL) {
|
|
|
|
find_data.wl = wl;
|
|
|
|
find_data.pane_id = i - 1;
|
|
|
|
ARRAY_ADD(find_list, find_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_find_window_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2013-03-21 16:09:59 +00:00
|
|
|
struct client *c;
|
2012-06-25 14:08:55 +00:00
|
|
|
struct window_choose_data *cdata;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl, *wm;
|
2012-09-03 12:20:17 +00:00
|
|
|
struct cmd_find_window_data_list find_list;
|
|
|
|
char *str, *searchstr;
|
2012-05-22 11:35:37 +00:00
|
|
|
const char *template;
|
2012-09-03 12:20:17 +00:00
|
|
|
u_int i, match_flags;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
if ((c = cmd_current_client(cmdq)) == NULL) {
|
|
|
|
cmdq_error(cmdq, "no client available");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2013-03-21 16:09:59 +00:00
|
|
|
s = c->session;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
if ((wl = cmd_find_window(cmdq, args_get(args, 't'), NULL)) == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-05-22 11:35:37 +00:00
|
|
|
if ((template = args_get(args, 'F')) == NULL)
|
2012-08-14 08:51:53 +00:00
|
|
|
template = FIND_WINDOW_TEMPLATE;
|
2012-05-22 11:35:37 +00:00
|
|
|
|
2012-03-20 17:09:48 +00:00
|
|
|
match_flags = cmd_find_window_match_flags(args);
|
2011-01-04 00:42:46 +00:00
|
|
|
str = args->argv[0];
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
ARRAY_INIT(&find_list);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
xasprintf(&searchstr, "*%s*", str);
|
2012-09-03 12:20:17 +00:00
|
|
|
RB_FOREACH(wm, winlinks, &s->windows)
|
|
|
|
cmd_find_window_match (&find_list, match_flags, wm, str, searchstr);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(searchstr);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
if (ARRAY_LENGTH(&find_list) == 0) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "no windows matching: %s", str);
|
2012-09-03 12:20:17 +00:00
|
|
|
ARRAY_FREE(&find_list);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
if (ARRAY_LENGTH(&find_list) == 1) {
|
|
|
|
if (session_select(s, ARRAY_FIRST(&find_list).wl->idx) == 0)
|
2009-06-01 22:58:49 +00:00
|
|
|
server_redraw_session(s);
|
|
|
|
recalculate_sizes();
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_pane_set_mode(wl->window->active, &window_choose_mode) != 0)
|
|
|
|
goto out;
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&find_list); i++) {
|
|
|
|
wm = ARRAY_ITEM(&find_list, i).wl;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-03-21 16:09:59 +00:00
|
|
|
cdata = window_choose_data_create(TREE_OTHER, c, c->session);
|
2012-06-25 14:08:55 +00:00
|
|
|
cdata->idx = wm->idx;
|
2012-09-03 12:20:17 +00:00
|
|
|
cdata->wl = wm;
|
2012-05-22 11:35:37 +00:00
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
cdata->ft_template = xstrdup(template);
|
2012-09-03 12:20:17 +00:00
|
|
|
cdata->pane_id = ARRAY_ITEM(&find_list, i).pane_id;
|
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
format_add(cdata->ft, "line", "%u", i);
|
|
|
|
format_add(cdata->ft, "window_find_matches", "%s",
|
2012-09-03 12:20:17 +00:00
|
|
|
ARRAY_ITEM(&find_list, i).list_ctx);
|
2012-06-25 14:08:55 +00:00
|
|
|
format_session(cdata->ft, s);
|
|
|
|
format_winlink(cdata->ft, s, wm);
|
2012-10-25 11:26:47 +00:00
|
|
|
format_window_pane(cdata->ft, wm->window->active);
|
2012-05-22 11:35:37 +00:00
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
window_choose_add(wl->window->active, cdata);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2013-03-21 16:09:59 +00:00
|
|
|
window_choose_ready(wl->window->active, 0, cmd_find_window_callback);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
out:
|
2014-05-08 06:06:07 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&find_list); i++)
|
|
|
|
free(ARRAY_ITEM(&find_list, i).list_ctx);
|
2012-09-03 12:20:17 +00:00
|
|
|
ARRAY_FREE(&find_list);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-25 14:08:55 +00:00
|
|
|
cmd_find_window_callback(struct window_choose_data *cdata)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2012-09-03 12:20:17 +00:00
|
|
|
struct session *s;
|
|
|
|
struct window_pane *wp;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
if (cdata == NULL)
|
2010-12-20 00:03:55 +00:00
|
|
|
return;
|
2012-06-25 14:08:55 +00:00
|
|
|
|
2013-03-21 16:09:59 +00:00
|
|
|
s = cdata->start_session;
|
2010-12-20 00:03:55 +00:00
|
|
|
if (!session_alive(s))
|
|
|
|
return;
|
|
|
|
|
2012-09-03 12:20:17 +00:00
|
|
|
wp = window_pane_at_index(cdata->wl->window, cdata->pane_id);
|
|
|
|
if (wp != NULL && window_pane_visible(wp))
|
|
|
|
window_set_active_pane(cdata->wl->window, wp);
|
|
|
|
|
2012-06-25 14:08:55 +00:00
|
|
|
if (session_select(s, cdata->idx) == 0) {
|
2010-12-20 00:03:55 +00:00
|
|
|
server_redraw_session(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
recalculate_sizes();
|
|
|
|
}
|
|
|
|
}
|