2008-06-03 05:35:51 +00:00
|
|
|
/* $Id: cmd-list-sessions.c,v 1.12 2008-06-03 05:35:51 nicm 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.
|
|
|
|
*/
|
|
|
|
|
2007-10-04 00:02:10 +00:00
|
|
|
void cmd_list_sessions_exec(void *, 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", "",
|
2008-06-02 18:08:17 +00:00
|
|
|
0,
|
2007-10-03 21:31:07 +00:00
|
|
|
NULL,
|
|
|
|
cmd_list_sessions_exec,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-06-03 05:35:51 +00:00
|
|
|
NULL,
|
2007-10-03 21:31:07 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
cmd_list_sessions_exec(unused void *ptr, struct cmd_ctx *ctx)
|
|
|
|
{
|
2007-11-13 09:53:47 +00:00
|
|
|
struct session *s;
|
2007-10-26 12:29:07 +00:00
|
|
|
struct winlink *wl;
|
2007-10-03 21:31:07 +00:00
|
|
|
char *tim;
|
2007-10-26 12:29:07 +00:00
|
|
|
u_int i, n;
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
|
|
|
if (s == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
n = 0;
|
2007-10-26 12:29:07 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows)
|
|
|
|
n++;
|
2007-10-03 21:31:07 +00:00
|
|
|
tim = ctime(&s->tim);
|
|
|
|
*strchr(tim, '\n') = '\0';
|
|
|
|
|
2007-11-13 09:53:47 +00:00
|
|
|
ctx->print(ctx, "%s: %u windows"
|
|
|
|
" (created %s) [%ux%u]", s->name, n, tim, s->sx, s->sy);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
|
|
|
|
2007-11-16 21:12:31 +00:00
|
|
|
if (ctx->cmdclient != NULL)
|
|
|
|
server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|