summaryrefslogtreecommitdiffstats
path: root/cmd-list-panes.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-03-28 23:13:00 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-03-28 23:13:00 +0000
commitf19a4bf9d1af2f512b841ca9dabdf81592e0f4ea (patch)
tree09529a3f2f5a5811f95fbf1c408302b1404b3121 /cmd-list-panes.c
parent82e0165c49b85ab95663d677fc7d0249b2a4efae (diff)
Add -a and -s options to lsp to list all panes in the server or session
respectively. Likewise add -s to lsw. From Ben Boeckel.
Diffstat (limited to 'cmd-list-panes.c')
-rw-r--r--cmd-list-panes.c60
1 files changed, 50 insertions, 10 deletions
diff --git a/cmd-list-panes.c b/cmd-list-panes.c
index e58fd671..830b8620 100644
--- a/cmd-list-panes.c
+++ b/cmd-list-panes.c
@@ -28,10 +28,14 @@
int cmd_list_panes_exec(struct cmd *, struct cmd_ctx *);
+void cmd_list_panes_server(struct cmd_ctx *);
+void cmd_list_panes_session(struct session *, struct cmd_ctx *);
+void cmd_list_panes_window(struct winlink *, struct cmd_ctx *);
+
const struct cmd_entry cmd_list_panes_entry = {
"list-panes", "lsp",
- "t:", 0, 0,
- CMD_TARGET_WINDOW_USAGE,
+ "ast:", 0, 0,
+ "[-as] [-t target]",
0,
NULL,
NULL,
@@ -41,17 +45,54 @@ const struct cmd_entry cmd_list_panes_entry = {
int
cmd_list_panes_exec(struct cmd *self, struct cmd_ctx *ctx)
{
- struct args *args = self->args;
- struct winlink *wl;
+ struct args *args = self->args;
+ struct session *s;
+ struct winlink *wl;
+
+ if (args_has(args, 'a'))
+ cmd_list_panes_server(ctx);
+ else if (args_has(args, 's')) {
+ s = cmd_find_session(ctx, args_get(args, 't'));
+ if (s == NULL)
+ return (-1);
+ cmd_list_panes_session(s, ctx);
+ } else {
+ wl = cmd_find_window(ctx, args_get(args, 't'), NULL);
+ if (wl == NULL)
+ return (-1);
+ cmd_list_panes_window(wl, ctx);
+ }
+
+ return (0);
+}
+
+void
+cmd_list_panes_server(struct cmd_ctx *ctx)
+{
+ struct session *s;
+
+ RB_FOREACH(s, sessions, &sessions)
+ cmd_list_panes_session(s, ctx);
+}
+
+void
+cmd_list_panes_session(struct session *s, struct cmd_ctx *ctx)
+{
+ struct winlink *wl;
+
+ RB_FOREACH(wl, winlinks, &s->windows)
+ cmd_list_panes_window(wl, ctx);
+}
+
+void
+cmd_list_panes_window(struct winlink *wl, struct cmd_ctx *ctx)
+{
struct window_pane *wp;
struct grid *gd;
struct grid_line *gl;
u_int i, n;
unsigned long long size;
- if ((wl = cmd_find_window(ctx, args_get(args, 't'), NULL)) == NULL)
- return (-1);
-
n = 0;
TAILQ_FOREACH(wp, &wl->window->panes, entry) {
gd = wp->base.grid;
@@ -64,12 +105,11 @@ cmd_list_panes_exec(struct cmd *self, struct cmd_ctx *ctx)
}
size += gd->hsize * sizeof *gd->linedata;
- ctx->print(ctx, "%u: [%ux%u] [history %u/%u, %llu bytes] %%%u%s%s",
+ ctx->print(ctx,
+ "%u: [%ux%u] [history %u/%u, %llu bytes] %%%u%s%s",
n, wp->sx, wp->sy, gd->hsize, gd->hlimit, size, wp->id,
wp == wp->window->active ? " (active)" : "",
wp->fd == -1 ? " (dead)" : "");
n++;
}
-
- return (0);
}