4 * Copyright (c) 2009 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>
26 * List panes on given window.
29 int cmd_list_panes_exec(struct cmd
*, struct cmd_ctx
*);
31 void cmd_list_panes_server(struct cmd_ctx
*);
32 void cmd_list_panes_session(struct session
*, struct cmd_ctx
*, int);
33 void cmd_list_panes_window(
34 struct session
*, struct winlink
*, struct cmd_ctx
*, int);
36 const struct cmd_entry cmd_list_panes_entry
= {
47 cmd_list_panes_exec(struct cmd
*self
, struct cmd_ctx
*ctx
)
49 struct args
*args
= self
->args
;
53 if (args_has(args
, 'a'))
54 cmd_list_panes_server(ctx
);
55 else if (args_has(args
, 's')) {
56 s
= cmd_find_session(ctx
, args_get(args
, 't'), 0);
59 cmd_list_panes_session(s
, ctx
, 1);
61 wl
= cmd_find_window(ctx
, args_get(args
, 't'), &s
);
64 cmd_list_panes_window(s
, wl
, ctx
, 0);
71 cmd_list_panes_server(struct cmd_ctx
*ctx
)
75 RB_FOREACH(s
, sessions
, &sessions
)
76 cmd_list_panes_session(s
, ctx
, 2);
80 cmd_list_panes_session(struct session
*s
, struct cmd_ctx
*ctx
, int type
)
84 RB_FOREACH(wl
, winlinks
, &s
->windows
)
85 cmd_list_panes_window(s
, wl
, ctx
, type
);
89 cmd_list_panes_window(
90 struct session
*s
, struct winlink
*wl
, struct cmd_ctx
*ctx
, int type
)
92 struct window_pane
*wp
;
96 unsigned long long size
;
99 TAILQ_FOREACH(wp
, &wl
->window
->panes
, entry
) {
103 for (i
= 0; i
< gd
->hsize
; i
++) {
104 gl
= &gd
->linedata
[i
];
105 size
+= gl
->cellsize
* sizeof *gl
->celldata
;
106 size
+= gl
->utf8size
* sizeof *gl
->utf8data
;
108 size
+= gd
->hsize
* sizeof *gd
->linedata
;
113 "%u: [%ux%u] [history %u/%u, %llu bytes] %%%u%s%s",
114 n
, wp
->sx
, wp
->sy
, gd
->hsize
, gd
->hlimit
, size
,
115 wp
->id
, wp
== wp
->window
->active
? " (active)" : "",
116 wp
->fd
== -1 ? " (dead)" : "");
120 "%d.%u: [%ux%u] [history %u/%u, %llu bytes] "
122 n
, wp
->sx
, wp
->sy
, gd
->hsize
, gd
->hlimit
, size
,
123 wp
->id
, wp
== wp
->window
->active
? " (active)" : "",
124 wp
->fd
== -1 ? " (dead)" : "");
128 "%s:%d.%u: [%ux%u] [history %u/%u, %llu bytes] "
129 "%%%u%s%s", s
->name
, wl
->idx
,
130 n
, wp
->sx
, wp
->sy
, gd
->hsize
, gd
->hlimit
, size
,
131 wp
->id
, wp
== wp
->window
->active
? " (active)" : "",
132 wp
->fd
== -1 ? " (dead)" : "");