2014-11-08 12:27:43 +00:00
|
|
|
/* $OpenBSD$ */
|
2009-11-19 22:20:04 +00:00
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-11-19 22:20:04 +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>
|
|
|
|
|
2020-05-06 12:43:22 +00:00
|
|
|
#include <stdlib.h>
|
2009-11-19 22:20:04 +00:00
|
|
|
#include <string.h>
|
2014-01-22 14:43:42 +00:00
|
|
|
#include <unistd.h>
|
2009-11-19 22:20:04 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2020-05-06 12:43:22 +00:00
|
|
|
* Show message log.
|
2009-11-19 22:20:04 +00:00
|
|
|
*/
|
|
|
|
|
2020-05-06 12:43:22 +00:00
|
|
|
#define SHOW_MESSAGES_TEMPLATE \
|
|
|
|
"#{t/p:message_time}: #{message_text}"
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_show_messages_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-11-19 22:20:04 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_show_messages_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "show-messages",
|
|
|
|
.alias = "showmsgs",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "JTt:", 0, 0, NULL },
|
2015-12-13 21:53:57 +00:00
|
|
|
.usage = "[-JT] " CMD_TARGET_CLIENT_USAGE,
|
|
|
|
|
2020-04-13 20:54:15 +00:00
|
|
|
.flags = CMD_AFTERHOOK|CMD_CLIENT_TFLAG,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_show_messages_exec
|
2009-11-19 22:20:04 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static int
|
2020-04-20 13:25:36 +00:00
|
|
|
cmd_show_messages_terminals(struct cmd *self, struct cmdq_item *item, int blank)
|
2014-01-22 14:43:42 +00:00
|
|
|
{
|
2020-04-20 13:25:36 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
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) {
|
2020-04-20 13:25:36 +00:00
|
|
|
if (args_has(args, 't') && term != tc->tty.term)
|
|
|
|
continue;
|
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;
|
|
|
|
}
|
2020-04-20 13:25:36 +00:00
|
|
|
cmdq_print(item, "Terminal %u: %s for %s, flags=0x%x:", n,
|
|
|
|
term->name, term->tty->client->name, term->flags);
|
2014-01-22 14:43:42 +00:00
|
|
|
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-19 22:20:04 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2011-01-07 14:45:34 +00:00
|
|
|
struct message_entry *msg;
|
2020-05-06 12:43:22 +00:00
|
|
|
char *s;
|
2015-05-12 19:36:08 +00:00
|
|
|
int done, blank;
|
2020-05-06 12:43:22 +00:00
|
|
|
struct format_tree *ft;
|
2014-01-22 14:43:42 +00:00
|
|
|
|
2015-05-12 19:36:08 +00:00
|
|
|
done = blank = 0;
|
2017-01-24 19:59:19 +00:00
|
|
|
if (args_has(args, 'T')) {
|
2020-04-20 13:25:36 +00:00
|
|
|
blank = cmd_show_messages_terminals(self, 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-19 22:20:04 +00:00
|
|
|
|
2020-05-06 12:43:22 +00:00
|
|
|
ft = format_create_from_target(item);
|
|
|
|
TAILQ_FOREACH_REVERSE(msg, &message_log, message_list, entry) {
|
|
|
|
format_add(ft, "message_text", "%s", msg->msg);
|
|
|
|
format_add(ft, "message_number", "%u", msg->msg_num);
|
|
|
|
format_add_tv(ft, "message_time", &msg->msg_time);
|
|
|
|
|
|
|
|
s = format_expand(ft, SHOW_MESSAGES_TEMPLATE);
|
|
|
|
cmdq_print(item, "%s", s);
|
|
|
|
free(s);
|
2009-11-19 22:20:04 +00:00
|
|
|
}
|
2020-05-06 12:43:22 +00:00
|
|
|
format_free(ft);
|
2009-11-19 22:20:04 +00:00
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-11-19 22:20:04 +00:00
|
|
|
}
|