2011-07-09 09:42:33 +00:00
|
|
|
/* $Id$ */
|
2009-01-10 01:30:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 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>
|
2009-01-10 14:43:43 +00:00
|
|
|
#include <sys/utsname.h>
|
2009-01-10 01:30:38 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2009-01-10 14:43:43 +00:00
|
|
|
#include <string.h>
|
2009-01-10 12:52:57 +00:00
|
|
|
#include <time.h>
|
2009-01-10 01:30:38 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show various information about server.
|
|
|
|
*/
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval cmd_server_info_exec(struct cmd *, struct cmd_ctx *);
|
2009-01-10 01:30:38 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_server_info_entry = {
|
|
|
|
"server-info", "info",
|
2011-01-07 14:45:34 +00:00
|
|
|
"", 0, 0,
|
2009-01-10 01:30:38 +00:00
|
|
|
"",
|
2011-01-07 14:45:34 +00:00
|
|
|
0,
|
2009-01-10 01:30:38 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2011-01-07 14:45:34 +00:00
|
|
|
cmd_server_info_exec
|
2009-01-10 01:30:38 +00:00
|
|
|
};
|
|
|
|
|
2009-11-28 14:50:37 +00:00
|
|
|
/* ARGSUSED */
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2009-01-10 01:30:38 +00:00
|
|
|
cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2011-01-03 23:30:43 +00:00
|
|
|
struct tty_term *term;
|
|
|
|
struct client *c;
|
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct window *w;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct tty_code *code;
|
|
|
|
const struct tty_term_code_entry *ent;
|
|
|
|
struct utsname un;
|
|
|
|
struct job *job;
|
|
|
|
struct grid *gd;
|
|
|
|
struct grid_line *gl;
|
|
|
|
u_int i, j, k;
|
|
|
|
char out[80];
|
|
|
|
char *tim;
|
|
|
|
time_t t;
|
|
|
|
u_int lines, ulines;
|
|
|
|
size_t size, usize;
|
2009-01-10 01:30:38 +00:00
|
|
|
|
2009-01-10 14:43:43 +00:00
|
|
|
tim = ctime(&start_time);
|
|
|
|
*strchr(tim, '\n') = '\0';
|
2009-05-04 17:58:27 +00:00
|
|
|
ctx->print(ctx,
|
2010-12-31 22:12:33 +00:00
|
|
|
"tmux " VERSION ", pid %ld, started %s", (long) getpid(), tim);
|
2009-12-10 16:59:02 +00:00
|
|
|
ctx->print(
|
|
|
|
ctx, "socket path %s, debug level %d", socket_path, debug_level);
|
2011-04-25 20:32:03 +00:00
|
|
|
if (uname(&un) >= 0) {
|
2009-10-28 23:12:38 +00:00
|
|
|
ctx->print(ctx, "system is %s %s %s %s",
|
2009-01-10 14:43:43 +00:00
|
|
|
un.sysname, un.release, un.version, un.machine);
|
|
|
|
}
|
2009-01-10 01:30:38 +00:00
|
|
|
if (cfg_file != NULL)
|
2009-01-10 14:43:43 +00:00
|
|
|
ctx->print(ctx, "configuration file is %s", cfg_file);
|
2009-01-10 01:30:38 +00:00
|
|
|
else
|
|
|
|
ctx->print(ctx, "configuration file not specified");
|
2009-03-29 19:09:57 +00:00
|
|
|
ctx->print(ctx, "protocol version is %d", PROTOCOL_VERSION);
|
2009-08-20 11:35:16 +00:00
|
|
|
ctx->print(ctx, "%s", "");
|
2009-01-10 01:30:38 +00:00
|
|
|
|
|
|
|
ctx->print(ctx, "Clients:");
|
2009-01-10 14:43:43 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
|
2012-03-18 01:55:45 +00:00
|
|
|
ctx->print(ctx,"%2d: %s (%d, %d): %s [%ux%u %s bs=%hho "
|
|
|
|
"xterm=%u] [flags=0x%x/0x%x, references=%u]", i,
|
|
|
|
c->tty.path, c->ibuf.fd, c->tty.fd, c->session->name,
|
2011-01-21 23:51:36 +00:00
|
|
|
c->tty.sx, c->tty.sy, c->tty.termname,
|
2012-03-18 01:55:45 +00:00
|
|
|
c->tty.tio.c_cc[VERASE], c->tty.xterm_version,
|
|
|
|
c->flags, c->tty.flags, c->references);
|
2009-01-10 14:43:43 +00:00
|
|
|
}
|
2009-08-20 11:35:16 +00:00
|
|
|
ctx->print(ctx, "%s", "");
|
2009-01-10 01:30:38 +00:00
|
|
|
|
2009-12-04 22:14:47 +00:00
|
|
|
ctx->print(ctx, "Sessions: [%zu/%zu]",
|
2009-03-29 10:51:50 +00:00
|
|
|
sizeof (struct grid_cell), sizeof (struct grid_utf8));
|
2010-12-22 15:36:44 +00:00
|
|
|
RB_FOREACH(s, sessions, &sessions) {
|
2009-11-04 22:42:31 +00:00
|
|
|
t = s->creation_time.tv_sec;
|
2009-01-10 14:43:43 +00:00
|
|
|
tim = ctime(&t);
|
|
|
|
*strchr(tim, '\n') = '\0';
|
|
|
|
|
2009-04-29 22:29:20 +00:00
|
|
|
ctx->print(ctx, "%2u: %s: %u windows (created %s) [%ux%u] "
|
2010-12-22 15:36:44 +00:00
|
|
|
"[flags=0x%x]", s->idx, s->name,
|
|
|
|
winlink_count(&s->windows), tim, s->sx, s->sy, s->flags);
|
2009-03-29 10:51:50 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
|
|
|
w = wl->window;
|
2009-04-29 22:29:20 +00:00
|
|
|
ctx->print(ctx, "%4u: %s [%ux%u] [flags=0x%x, "
|
2009-07-28 23:04:29 +00:00
|
|
|
"references=%u, last layout=%d]", wl->idx, w->name,
|
2009-04-29 22:29:20 +00:00
|
|
|
w->sx, w->sy, w->flags, w->references,
|
2009-07-28 23:04:29 +00:00
|
|
|
w->lastlayout);
|
2009-03-29 10:51:50 +00:00
|
|
|
j = 0;
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
lines = ulines = size = usize = 0;
|
|
|
|
gd = wp->base.grid;
|
|
|
|
for (k = 0; k < gd->hsize + gd->sy; k++) {
|
2009-08-09 17:28:24 +00:00
|
|
|
gl = &gd->linedata[k];
|
|
|
|
if (gl->celldata != NULL) {
|
2009-03-29 10:51:50 +00:00
|
|
|
lines++;
|
2009-08-09 17:28:24 +00:00
|
|
|
size += gl->cellsize *
|
|
|
|
sizeof *gl->celldata;
|
2009-03-29 10:51:50 +00:00
|
|
|
}
|
2009-08-09 17:28:24 +00:00
|
|
|
if (gl->utf8data != NULL) {
|
2009-03-29 10:51:50 +00:00
|
|
|
ulines++;
|
2009-08-09 17:28:24 +00:00
|
|
|
usize += gl->utf8size *
|
|
|
|
sizeof *gl->utf8data;
|
2009-03-29 10:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-29 22:29:20 +00:00
|
|
|
ctx->print(ctx, "%6u: %s %lu %d %u/%u, %zu "
|
|
|
|
"bytes; UTF-8 %u/%u, %zu bytes", j,
|
2009-04-02 23:28:16 +00:00
|
|
|
wp->tty, (u_long) wp->pid, wp->fd, lines,
|
2009-03-29 10:51:50 +00:00
|
|
|
gd->hsize + gd->sy, size, ulines,
|
|
|
|
gd->hsize + gd->sy, usize);
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
2009-01-10 14:43:43 +00:00
|
|
|
}
|
2009-08-20 11:35:16 +00:00
|
|
|
ctx->print(ctx, "%s", "");
|
2009-01-10 01:30:38 +00:00
|
|
|
|
2009-12-04 22:14:47 +00:00
|
|
|
ctx->print(ctx, "Terminals:");
|
2011-02-15 15:12:28 +00:00
|
|
|
LIST_FOREACH(term, &tty_terms, entry) {
|
2009-01-10 01:51:22 +00:00
|
|
|
ctx->print(ctx, "%s [references=%u, flags=0x%x]:",
|
2009-01-10 01:30:38 +00:00
|
|
|
term->name, term->references, term->flags);
|
|
|
|
for (i = 0; i < NTTYCODE; i++) {
|
|
|
|
ent = &tty_term_codes[i];
|
|
|
|
code = &term->codes[ent->code];
|
|
|
|
switch (code->type) {
|
|
|
|
case TTYCODE_NONE:
|
2009-03-29 10:51:50 +00:00
|
|
|
ctx->print(ctx, "%2u: %s: [missing]",
|
2009-01-10 01:30:38 +00:00
|
|
|
ent->code, ent->name);
|
|
|
|
break;
|
|
|
|
case TTYCODE_STRING:
|
2009-06-25 15:50:03 +00:00
|
|
|
strnvis(out, code->value.string, sizeof out,
|
|
|
|
VIS_OCTAL|VIS_TAB|VIS_NL);
|
2009-03-29 10:51:50 +00:00
|
|
|
ctx->print(ctx, "%2u: %s: (string) %s",
|
2009-01-10 14:43:43 +00:00
|
|
|
ent->code, ent->name, out);
|
2009-01-10 01:30:38 +00:00
|
|
|
break;
|
|
|
|
case TTYCODE_NUMBER:
|
2009-03-29 10:51:50 +00:00
|
|
|
ctx->print(ctx, "%2u: %s: (number) %d",
|
2009-01-10 01:30:38 +00:00
|
|
|
ent->code, ent->name, code->value.number);
|
|
|
|
break;
|
|
|
|
case TTYCODE_FLAG:
|
2009-03-29 10:51:50 +00:00
|
|
|
ctx->print(ctx, "%2u: %s: (flag) %s",
|
2009-01-10 01:51:22 +00:00
|
|
|
ent->code, ent->name,
|
2009-01-10 01:30:38 +00:00
|
|
|
code->value.flag ? "true" : "false");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-08-20 11:35:16 +00:00
|
|
|
ctx->print(ctx, "%s", "");
|
2009-01-10 01:51:22 +00:00
|
|
|
|
2009-12-04 22:14:47 +00:00
|
|
|
ctx->print(ctx, "Jobs:");
|
2011-02-15 15:12:28 +00:00
|
|
|
LIST_FOREACH(job, &all_jobs, lentry) {
|
2011-02-15 15:20:03 +00:00
|
|
|
ctx->print(ctx, "%s [fd=%d, pid=%d, status=%d]",
|
|
|
|
job->cmd, job->fd, job->pid, job->status);
|
2009-11-02 21:38:27 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-01-10 01:30:38 +00:00
|
|
|
}
|