2009-11-18 13:16:33 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-11-18 13:16:33 +00:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2014-01-22 14:43:42 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <vis.h>
|
2009-11-18 13:16:33 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show client message log.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_show_messages_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-11-18 13:16:33 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_show_messages_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "show-messages",
|
|
|
|
.alias = "showmsgs",
|
|
|
|
|
|
|
|
.args = { "JTt:", 0, 0 },
|
|
|
|
.usage = "[-JT] " CMD_TARGET_CLIENT_USAGE,
|
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_show_messages_exec
|
2009-11-18 13:16:33 +00:00
|
|
|
};
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static int cmd_show_messages_terminals(struct cmdq_item *, int);
|
2014-01-22 14:43:42 +00:00
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static int
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_show_messages_terminals(struct cmdq_item *item, int blank)
|
2014-01-22 14:43:42 +00:00
|
|
|
{
|
2015-07-28 15:18:10 +00:00
|
|
|
struct tty_term *term;
|
|
|
|
u_int i, n;
|
2014-01-22 14:43:42 +00:00
|
|
|
|
|
|
|
n = 0;
|
|
|
|
LIST_FOREACH(term, &tty_terms, entry) {
|
2015-05-12 19:36:08 +00:00
|
|
|
if (blank) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "%s", "");
|
2015-05-12 19:36:08 +00:00
|
|
|
blank = 0;
|
|
|
|
}
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "Terminal %u: %s [references=%u, flags=0x%x]:",
|
2014-01-22 14:43:42 +00:00
|
|
|
n, term->name, term->references, term->flags);
|
|
|
|
n++;
|
2015-07-28 15:18:10 +00:00
|
|
|
for (i = 0; i < tty_term_ncodes(); i++)
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "%s", tty_term_describe(term, i));
|
2014-01-22 14:43:42 +00:00
|
|
|
}
|
2015-05-12 19:36:08 +00:00
|
|
|
return (n != 0);
|
2014-01-22 14:43:42 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_show_messages_exec(struct cmd *self, struct cmdq_item *item)
|
2009-11-18 13:16:33 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2017-04-22 10:22:39 +00:00
|
|
|
struct client *c;
|
2011-01-04 00:42:46 +00:00
|
|
|
struct message_entry *msg;
|
|
|
|
char *tim;
|
2015-05-12 19:36:08 +00:00
|
|
|
int done, blank;
|
2014-01-22 14:43:42 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
if ((c = cmd_find_client(item, args_get(args, 't'), 0)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
|
2015-05-12 19:36:08 +00:00
|
|
|
done = blank = 0;
|
2017-01-24 19:59:19 +00:00
|
|
|
if (args_has(args, 'T')) {
|
2016-10-16 19:04:05 +00:00
|
|
|
blank = cmd_show_messages_terminals(item, blank);
|
2014-01-22 14:43:42 +00:00
|
|
|
done = 1;
|
|
|
|
}
|
2017-01-24 19:59:19 +00:00
|
|
|
if (args_has(args, 'J')) {
|
2018-08-23 15:45:05 +00:00
|
|
|
job_print_summary(item, blank);
|
2014-01-22 14:43:42 +00:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
if (done)
|
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-11-18 13:16:33 +00:00
|
|
|
|
2015-04-25 18:33:59 +00:00
|
|
|
TAILQ_FOREACH(msg, &c->message_log, entry) {
|
2009-11-18 13:16:33 +00:00
|
|
|
tim = ctime(&msg->msg_time);
|
|
|
|
*strchr(tim, '\n') = '\0';
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "%s %s", tim, msg->msg);
|
2009-11-18 13:16:33 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-11-18 13:16:33 +00:00
|
|
|
}
|