Revision: 2617
http://tmux.svn.sourceforge.net/tmux/?rev=2617&view=rev
Author: tcunha
Date: 2011-10-23 15:03:50 +0000 (Sun, 23 Oct 2011)
Log Message:
-----------
Sync OpenBSD patchset 965:
Add client formats, from Ben Boeckel.
Modified Paths:
--------------
trunk/cmd-list-clients.c
trunk/format.c
trunk/tmux.1
trunk/tmux.h
Modified: trunk/cmd-list-clients.c
===================================================================
--- trunk/cmd-list-clients.c 2011-10-23 15:02:20 UTC (rev 2616)
+++ trunk/cmd-list-clients.c 2011-10-23 15:03:50 UTC (rev 2617)
@@ -31,8 +31,8 @@
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 @@
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 @@
} 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);
Modified: trunk/format.c
===================================================================
--- trunk/format.c 2011-10-23 15:02:20 UTC (rev 2616)
+++ trunk/format.c 2011-10-23 15:03:50 UTC (rev 2617)
@@ -295,6 +295,42 @@
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)
Modified: trunk/tmux.1
===================================================================
--- trunk/tmux.1 2011-10-23 15:02:20 UTC (rev 2616)
+++ trunk/tmux.1 2011-10-23 15:03:50 UTC (rev 2617)
@@ -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 @@
.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 @@
.El
.Sh FORMATS
The
+.Ic list-clients ,
.Ic list-sessions ,
.Ic list-windows
and
@@ -2601,6 +2609,17 @@
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"
Modified: trunk/tmux.h
===================================================================
--- trunk/tmux.h 2011-10-23 15:02:20 UTC (rev 2616)
+++ trunk/tmux.h 2011-10-23 15:03:50 UTC (rev 2617)
@@ -1360,6 +1360,7 @@
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 *);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning@Cisco Self-Assessment and learn
about Cisco certifications, training, and career opportunities.
http://p.sf.net/sfu/cisco-dev2dev
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs