xref: /openbsd-src/usr.bin/tmux/cmd-find-window.c (revision c90a81c56dcebd6a1b73fe4aff9b03385b8e63b3)
1 /* $OpenBSD: cmd-find-window.c,v 1.45 2018/08/20 15:00:42 nicm Exp $ */
2 
3 /*
4  * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
5  *
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.
9  *
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.
17  */
18 
19 #include <sys/types.h>
20 
21 #include <stdlib.h>
22 
23 #include "tmux.h"
24 
25 /*
26  * Find window containing text.
27  */
28 
29 static enum cmd_retval	cmd_find_window_exec(struct cmd *, struct cmdq_item *);
30 
31 const struct cmd_entry cmd_find_window_entry = {
32 	.name = "find-window",
33 	.alias = "findw",
34 
35 	.args = { "CNt:TZ", 1, 1 },
36 	.usage = "[-CNTZ] " CMD_TARGET_PANE_USAGE " match-string",
37 
38 	.target = { 't', CMD_FIND_PANE, 0 },
39 
40 	.flags = 0,
41 	.exec = cmd_find_window_exec
42 };
43 
44 static enum cmd_retval
45 cmd_find_window_exec(struct cmd *self, struct cmdq_item *item)
46 {
47 	struct args		*args = self->args, *new_args;
48 	struct window_pane	*wp = item->target.wp;
49 	const char		*s = args->argv[0];
50 	char			*filter, *argv = { NULL };
51 	int			 C, N, T;
52 
53 	C = args_has(args, 'C');
54 	N = args_has(args, 'N');
55 	T = args_has(args, 'T');
56 
57 	if (!C && !N && !T)
58 		C = N = T = 1;
59 
60 	if (C && N && T) {
61 		xasprintf(&filter,
62 		    "#{||:"
63 		    "#{C:%s},#{||:#{m:*%s*,#{window_name}},"
64 		    "#{m:*%s*,#{pane_title}}}}",
65 		    s, s, s);
66 	} else if (C && N) {
67 		xasprintf(&filter,
68 		    "#{||:#{C:%s},#{m:*%s*,#{window_name}}}",
69 		    s, s);
70 	} else if (C && T) {
71 		xasprintf(&filter,
72 		    "#{||:#{C:%s},#{m:*%s*,#{pane_title}}}",
73 		    s, s);
74 	} else if (N && T) {
75 		xasprintf(&filter,
76 		    "#{||:#{m:*%s*,#{window_name}},#{m:*%s*,#{pane_title}}}",
77 		    s, s);
78 	} else if (C)
79 		xasprintf(&filter, "#{C:%s}", s);
80 	else if (N)
81 		xasprintf(&filter, "#{m:*%s*,#{window_name}}", s);
82 	else
83 		xasprintf(&filter, "#{m:*%s*,#{pane_title}}", s);
84 
85 	new_args = args_parse("", 1, &argv);
86 	if (args_has(args, 'Z'))
87 		args_set(new_args, 'Z', NULL);
88 	args_set(new_args, 'f', filter);
89 
90 	window_pane_set_mode(wp, &window_tree_mode, &item->target, new_args);
91 
92 	args_free(new_args);
93 	free(filter);
94 
95 	return (CMD_RETURN_NORMAL);
96 }
97