2010-12-22 15:36:44 +00:00
|
|
|
/* $Id: cmd-list-sessions.c,v 1.26 2010-12-22 15:36:44 tcunha Exp $ */
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 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>
|
|
|
|
|
2008-06-03 05:35:51 +00:00
|
|
|
#include <string.h>
|
2007-10-19 22:32:54 +00:00
|
|
|
#include <time.h>
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List all sessions.
|
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_list_sessions_exec(struct cmd *, struct cmd_ctx *);
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_list_sessions_entry = {
|
2007-10-04 22:04:01 +00:00
|
|
|
"list-sessions", "ls", "",
|
2009-11-14 17:56:39 +00:00
|
|
|
0, "",
|
2007-10-03 21:31:07 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_list_sessions_exec,
|
2007-10-03 21:31:07 +00:00
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-11-28 14:50:37 +00:00
|
|
|
/* ARGSUSED */
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_list_sessions_exec(unused struct cmd *self, struct cmd_ctx *ctx)
|
2007-10-03 21:31:07 +00:00
|
|
|
{
|
2009-10-11 23:38:16 +00:00
|
|
|
struct session *s;
|
|
|
|
struct session_group *sg;
|
|
|
|
char *tim, tmp[64];
|
2010-12-22 15:36:44 +00:00
|
|
|
u_int idx;
|
2009-10-11 23:38:16 +00:00
|
|
|
time_t t;
|
2007-10-03 21:31:07 +00:00
|
|
|
|
2010-12-22 15:36:44 +00:00
|
|
|
RB_FOREACH(s, sessions, &sessions) {
|
2009-10-11 23:38:16 +00:00
|
|
|
sg = session_group_find(s);
|
|
|
|
if (sg == NULL)
|
|
|
|
*tmp = '\0';
|
|
|
|
else {
|
|
|
|
idx = session_group_index(sg);
|
|
|
|
xsnprintf(tmp, sizeof tmp, " (group %u)", idx);
|
|
|
|
}
|
|
|
|
|
2009-11-04 22:42:31 +00:00
|
|
|
t = s->creation_time.tv_sec;
|
2008-08-28 17:45:30 +00:00
|
|
|
tim = ctime(&t);
|
2007-10-03 21:31:07 +00:00
|
|
|
*strchr(tim, '\n') = '\0';
|
|
|
|
|
2009-10-11 23:38:16 +00:00
|
|
|
ctx->print(ctx, "%s: %u windows (created %s) [%ux%u]%s%s",
|
2009-01-18 12:13:21 +00:00
|
|
|
s->name, winlink_count(&s->windows), tim, s->sx, s->sy,
|
2009-10-11 23:38:16 +00:00
|
|
|
tmp, s->flags & SESSION_UNATTACHED ? "" : " (attached)");
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|