2009-10-10 17:19:38 +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>
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-10-10 17:19:38 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2009-12-03 22:50:09 +00:00
|
|
|
* List panes on given window.
|
2009-10-10 17:19:38 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_list_panes_exec(struct cmd *, struct cmd_q *);
|
2009-10-10 17:19:38 +00:00
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
void cmd_list_panes_server(struct cmd *, struct cmd_q *);
|
2011-08-26 10:53:16 +00:00
|
|
|
void cmd_list_panes_session(
|
2013-03-24 09:54:10 +00:00
|
|
|
struct cmd *, struct session *, struct cmd_q *, int);
|
2011-08-26 10:53:16 +00:00
|
|
|
void cmd_list_panes_window(struct cmd *,
|
2013-03-24 09:54:10 +00:00
|
|
|
struct session *, struct winlink *, struct cmd_q *, int);
|
2011-03-28 23:13:00 +00:00
|
|
|
|
2009-10-10 17:19:38 +00:00
|
|
|
const struct cmd_entry cmd_list_panes_entry = {
|
|
|
|
"list-panes", "lsp",
|
2011-08-26 10:53:16 +00:00
|
|
|
"asF:t:", 0, 0,
|
2012-12-09 23:17:35 +00:00
|
|
|
"[-as] [-F format] " CMD_TARGET_WINDOW_USAGE,
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_list_panes_exec
|
2009-10-10 17:19:38 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-10-10 17:19:38 +00:00
|
|
|
{
|
2011-03-28 23:13:00 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
|
|
|
|
|
|
|
if (args_has(args, 'a'))
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_server(self, cmdq);
|
2011-03-28 23:13:00 +00:00
|
|
|
else if (args_has(args, 's')) {
|
2013-03-24 09:54:10 +00:00
|
|
|
s = cmd_find_session(cmdq, args_get(args, 't'), 0);
|
2011-03-28 23:13:00 +00:00
|
|
|
if (s == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_session(self, s, cmdq, 1);
|
2011-03-28 23:13:00 +00:00
|
|
|
} else {
|
2013-03-24 09:54:10 +00:00
|
|
|
wl = cmd_find_window(cmdq, args_get(args, 't'), &s);
|
2011-03-28 23:13:00 +00:00
|
|
|
if (wl == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_window(self, s, wl, cmdq, 0);
|
2011-03-28 23:13:00 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2011-03-28 23:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_server(struct cmd *self, struct cmd_q *cmdq)
|
2011-03-28 23:13:00 +00:00
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
|
|
|
|
RB_FOREACH(s, sessions, &sessions)
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_session(self, s, cmdq, 2);
|
2011-03-28 23:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-08-26 10:53:16 +00:00
|
|
|
cmd_list_panes_session(
|
2013-03-24 09:54:10 +00:00
|
|
|
struct cmd *self, struct session *s, struct cmd_q *cmdq, int type)
|
2011-03-28 23:13:00 +00:00
|
|
|
{
|
|
|
|
struct winlink *wl;
|
|
|
|
|
|
|
|
RB_FOREACH(wl, winlinks, &s->windows)
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_list_panes_window(self, s, wl, cmdq, type);
|
2011-03-28 23:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-08-26 10:53:16 +00:00
|
|
|
cmd_list_panes_window(struct cmd *self,
|
2013-03-24 09:54:10 +00:00
|
|
|
struct session *s, struct winlink *wl, struct cmd_q *cmdq, int type)
|
2011-03-28 23:13:00 +00:00
|
|
|
{
|
2011-08-26 10:53:16 +00:00
|
|
|
struct args *args = self->args;
|
2009-10-10 17:19:38 +00:00
|
|
|
struct window_pane *wp;
|
2011-08-26 10:53:16 +00:00
|
|
|
u_int n;
|
|
|
|
struct format_tree *ft;
|
|
|
|
const char *template;
|
|
|
|
char *line;
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2011-08-26 10:53:16 +00:00
|
|
|
template = args_get(args, 'F');
|
|
|
|
if (template == NULL) {
|
2011-07-04 14:04:40 +00:00
|
|
|
switch (type) {
|
|
|
|
case 0:
|
2011-11-15 23:21:52 +00:00
|
|
|
template = "#{pane_index}: "
|
2011-08-26 10:53:16 +00:00
|
|
|
"[#{pane_width}x#{pane_height}] [history "
|
|
|
|
"#{history_size}/#{history_limit}, "
|
|
|
|
"#{history_bytes} bytes] #{pane_id}"
|
|
|
|
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
2011-07-04 14:04:40 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-11-15 23:21:52 +00:00
|
|
|
template = "#{window_index}.#{pane_index}: "
|
2011-08-26 10:53:16 +00:00
|
|
|
"[#{pane_width}x#{pane_height}] [history "
|
|
|
|
"#{history_size}/#{history_limit}, "
|
|
|
|
"#{history_bytes} bytes] #{pane_id}"
|
|
|
|
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
2011-07-04 14:04:40 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2011-11-15 23:21:52 +00:00
|
|
|
template = "#{session_name}:#{window_index}.#{pane_index}: "
|
2011-08-26 10:53:16 +00:00
|
|
|
"[#{pane_width}x#{pane_height}] [history "
|
|
|
|
"#{history_size}/#{history_limit}, "
|
|
|
|
"#{history_bytes} bytes] #{pane_id}"
|
|
|
|
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
2011-07-04 14:04:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-08-26 10:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
TAILQ_FOREACH(wp, &wl->window->panes, entry) {
|
|
|
|
ft = format_create();
|
|
|
|
format_add(ft, "line", "%u", n);
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults(ft, NULL, s, wl, wp);
|
2011-08-26 10:53:16 +00:00
|
|
|
|
|
|
|
line = format_expand(ft, template);
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_print(cmdq, "%s", line);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(line);
|
2011-08-26 10:53:16 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
2009-10-15 07:05:38 +00:00
|
|
|
n++;
|
2009-10-10 17:19:38 +00:00
|
|
|
}
|
|
|
|
}
|