From 1c1797e4f29012a60727a1793e5f75bd769f5d14 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 23 Oct 2011 15:03:50 +0000 Subject: [PATCH] Sync OpenBSD patchset 965: Add client formats, from Ben Boeckel. --- cmd-list-clients.c | 44 ++++++++++++++++++++++++++++---------------- format.c | 36 ++++++++++++++++++++++++++++++++++++ tmux.1 | 23 +++++++++++++++++++++-- tmux.h | 1 + 4 files changed, 86 insertions(+), 18 deletions(-) diff --git a/cmd-list-clients.c b/cmd-list-clients.c index bf16aae1..e5a8e341 100644 --- a/cmd-list-clients.c +++ b/cmd-list-clients.c @@ -31,8 +31,8 @@ int cmd_list_clients_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_list_clients_entry = { "list-clients", "lsc", - "t:", 0, 0, - CMD_TARGET_SESSION_USAGE, + "F:t:", 0, 0, + "[-F format] " CMD_TARGET_SESSION_USAGE, CMD_READONLY, NULL, NULL, @@ -43,11 +43,13 @@ const struct cmd_entry cmd_list_clients_entry = { int cmd_list_clients_exec(struct cmd *self, struct cmd_ctx *ctx) { - struct args *args = self->args; - struct client *c; - struct session *s; - u_int i; - const char *s_utf8; + struct args *args = self->args; + struct client *c; + struct session *s; + struct format_tree *ft; + const char *template; + u_int i; + char *line; if (args_has(args, 't')) { s = cmd_find_session(ctx, args_get(args, 't'), 0); @@ -56,22 +58,32 @@ cmd_list_clients_exec(struct cmd *self, struct cmd_ctx *ctx) } else s = NULL; + template = args_get(args, 'F'); + if (template == NULL) { + template = "#{client_tty}: #{session_name} " + "[#{client_width}x#{client_height} #{client_termname}]" + "#{?client_utf8, (utf8),}" + "#{?client_readonly, (ro),}"; + } + for (i = 0; i < ARRAY_LENGTH(&clients); i++) { c = ARRAY_ITEM(&clients, i); if (c == NULL || c->session == NULL) continue; - if (c->tty.flags & TTY_UTF8) - s_utf8 = " (utf8)"; - else - s_utf8 = ""; - if (s != NULL && s != c->session) continue; - ctx->print(ctx, "%s: %s [%ux%u %s]%s%s", c->tty.path, - c->session->name, c->tty.sx, c->tty.sy, - c->tty.termname, s_utf8, - c->flags & CLIENT_READONLY ? " (ro)" : ""); + + ft = format_create(); + format_add(ft, "line", "%u", i); + format_session(ft, c->session); + format_client(ft, c); + + line = format_expand(ft, template); + ctx->print(ctx, "%s", line); + xfree(line); + + format_free(ft); } return (0); diff --git a/format.c b/format.c index 0aad938f..74df2ab3 100644 --- a/format.c +++ b/format.c @@ -295,6 +295,42 @@ format_session(struct format_tree *ft, struct session *s) format_add(ft, "session_attached", "%d", 1); } +/* Set default format keys for a client. */ +void +format_client(struct format_tree *ft, struct client *c) +{ + char *tim; + time_t t; + + format_add(ft, "client_cwd", "%s", c->cwd); + format_add(ft, "client_height", "%u", c->tty.sx); + format_add(ft, "client_width", "%u", c->tty.sy); + format_add(ft, "client_tty", "%s", c->tty.path); + format_add(ft, "client_termname", "%s", c->tty.termname); + + t = c->creation_time.tv_sec; + format_add(ft, "client_created", "%ld", (long) t); + tim = ctime(&t); + *strchr(tim, '\n') = '\0'; + format_add(ft, "client_created_string", "%s", tim); + + t = c->activity_time.tv_sec; + format_add(ft, "client_activity", "%ld", (long) t); + tim = ctime(&t); + *strchr(tim, '\n') = '\0'; + format_add(ft, "client_activity_string", "%s", tim); + + if (c->tty.flags & TTY_UTF8) + format_add(ft, "client_utf8", "%d", 1); + else + format_add(ft, "client_utf8", "%d", 0); + + if (c->flags & CLIENT_READONLY) + format_add(ft, "client_readonly", "%d", 1); + else + format_add(ft, "client_readonly", "%d", 0); +} + /* Set default format keys for a winlink. */ void format_winlink(struct format_tree *ft, struct session *s, struct winlink *wl) diff --git a/tmux.1 b/tmux.1 index f56cf8d3..b58f4f8d 100644 --- a/tmux.1 +++ b/tmux.1 @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 2 2011 $ +.Dd $Mdocdate: October 23 2011 $ .Dt TMUX 1 .Os .Sh NAME @@ -610,9 +610,16 @@ server and clients and destroy all sessions. .It Ic kill-session Op Fl t Ar target-session Destroy the given session, closing any windows linked to it and no other sessions, and detaching all clients attached to it. -.It Ic list-clients Op Fl t Ar target-session +.It Xo Ic list-clients +.Op Fl F Ar format +.Op Fl t Ar target-session +.Xc .D1 (alias: Ic lsc ) List all clients attached to the server. +For the meaning of the +.Fl F +flag, see the +.Sx FORMATS section. If .Ar target-session is specified, list only clients connected to that session. @@ -2564,6 +2571,7 @@ is used. .El .Sh FORMATS The +.Ic list-clients , .Ic list-sessions , .Ic list-windows and @@ -2601,6 +2609,17 @@ if it is unattached. The following variables are available, where appropriate: .Bl -column "session_created_string" "Replaced with" -offset indent .It Sy "Variable name" Ta Sy "Replaced with" +.It Li "client_activity" Ta "Integer time client last had activity" +.It Li "client_activity_string" Ta "String time client last had activity" +.It Li "client_created" Ta "Integer time client created" +.It Li "client_created_string" Ta "String time client created" +.It Li "client_cwd" Ta "Working directory of client" +.It Li "client_height" Ta "Height of client" +.It Li "client_readonly" Ta "1 if client is readonly" +.It Li "client_termname" Ta "Terminal name of client" +.It Li "client_tty" Ta "Pseudo terminal of client" +.It Li "client_utf8" Ta "1 if client supports utf8" +.It Li "client_width" Ta "Width of client" .It Li "host" Ta "Hostname of local host" .It Li "line" Ta "Line number in the list" .It Li "pane_active" Ta "1 if active pane" diff --git a/tmux.h b/tmux.h index 74add288..12d401ac 100644 --- a/tmux.h +++ b/tmux.h @@ -1360,6 +1360,7 @@ void format_add( const char *format_find(struct format_tree *, const char *); char *format_expand(struct format_tree *, const char *); void format_session(struct format_tree *, struct session *); +void format_client(struct format_tree *, struct client *); void format_winlink( struct format_tree *, struct session *, struct winlink *); void format_window_pane(struct format_tree *, struct window_pane *);