2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +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 <ctype.h>
|
|
|
|
#include <libgen.h>
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2016-10-11 13:21:59 +00:00
|
|
|
static void name_time_callback(int, short, void *);
|
|
|
|
static int name_time_expired(struct window *, struct timeval *);
|
|
|
|
|
|
|
|
static char *format_window_name(struct window *);
|
2015-08-28 16:10:46 +00:00
|
|
|
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-11-18 14:27:44 +00:00
|
|
|
name_time_callback(__unused int fd, __unused short events, void *arg)
|
2015-08-28 16:10:46 +00:00
|
|
|
{
|
2015-08-29 00:29:15 +00:00
|
|
|
struct window *w = arg;
|
2015-08-28 16:10:46 +00:00
|
|
|
|
2015-08-29 00:29:15 +00:00
|
|
|
/* The event loop will call check_window_name for us on the way out. */
|
|
|
|
log_debug("@%u name timer expired", w->id);
|
|
|
|
}
|
|
|
|
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2015-08-29 00:29:15 +00:00
|
|
|
name_time_expired(struct window *w, struct timeval *tv)
|
|
|
|
{
|
|
|
|
struct timeval offset;
|
2015-08-28 16:10:46 +00:00
|
|
|
|
2015-08-29 00:29:15 +00:00
|
|
|
timersub(tv, &w->name_time, &offset);
|
|
|
|
if (offset.tv_sec != 0 || offset.tv_usec > NAME_INTERVAL)
|
|
|
|
return (0);
|
|
|
|
return (NAME_INTERVAL - offset.tv_usec);
|
2015-08-28 16:10:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 23:54:57 +00:00
|
|
|
void
|
2015-08-29 00:29:15 +00:00
|
|
|
check_window_name(struct window *w)
|
2009-11-04 23:54:57 +00:00
|
|
|
{
|
2015-08-29 00:29:15 +00:00
|
|
|
struct timeval tv, next;
|
2015-08-28 16:10:46 +00:00
|
|
|
char *name;
|
2015-08-29 00:29:15 +00:00
|
|
|
int left;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-08-21 10:00:33 +00:00
|
|
|
if (w->active == NULL)
|
|
|
|
return;
|
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
if (!options_get_number(w->options, "automatic-rename"))
|
2015-08-29 00:29:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (~w->active->flags & PANE_CHANGED) {
|
|
|
|
log_debug("@%u active pane not changed", w->id);
|
2012-04-11 07:45:30 +00:00
|
|
|
return;
|
2015-08-28 16:10:46 +00:00
|
|
|
}
|
2015-08-29 00:29:15 +00:00
|
|
|
log_debug("@%u active pane changed", w->id);
|
2009-08-18 21:18:20 +00:00
|
|
|
|
2015-08-29 00:29:15 +00:00
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
left = name_time_expired(w, &tv);
|
|
|
|
if (left != 0) {
|
|
|
|
if (!event_initialized(&w->name_event))
|
|
|
|
evtimer_set(&w->name_event, name_time_callback, w);
|
|
|
|
if (!evtimer_pending(&w->name_event, NULL)) {
|
2016-07-15 09:27:35 +00:00
|
|
|
log_debug("@%u name timer queued (%d left)", w->id,
|
|
|
|
left);
|
2015-08-29 00:29:15 +00:00
|
|
|
timerclear(&next);
|
|
|
|
next.tv_usec = left;
|
|
|
|
event_add(&w->name_event, &next);
|
2016-07-15 09:27:35 +00:00
|
|
|
} else {
|
|
|
|
log_debug("@%u name timer already queued (%d left)",
|
|
|
|
w->id, left);
|
|
|
|
}
|
2015-08-28 13:26:41 +00:00
|
|
|
return;
|
2015-08-29 00:29:15 +00:00
|
|
|
}
|
|
|
|
memcpy(&w->name_time, &tv, sizeof w->name_time);
|
|
|
|
if (event_initialized(&w->name_event))
|
|
|
|
evtimer_del(&w->name_event);
|
|
|
|
|
2015-08-28 13:26:41 +00:00
|
|
|
w->active->flags &= ~PANE_CHANGED;
|
|
|
|
|
2013-10-10 11:56:50 +00:00
|
|
|
name = format_window_name(w);
|
|
|
|
if (strcmp(name, w->name) != 0) {
|
2015-08-29 00:29:15 +00:00
|
|
|
log_debug("@%u new name %s (was %s)", w->id, name, w->name);
|
2013-10-10 11:56:50 +00:00
|
|
|
window_set_name(w, name);
|
2020-05-16 15:01:30 +00:00
|
|
|
server_redraw_window_borders(w);
|
2009-11-04 23:54:57 +00:00
|
|
|
server_status_window(w);
|
2015-08-29 00:29:15 +00:00
|
|
|
} else
|
|
|
|
log_debug("@%u name not changed (still %s)", w->id, w->name);
|
|
|
|
|
2013-10-10 11:56:50 +00:00
|
|
|
free(name);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
default_window_name(struct window *w)
|
|
|
|
{
|
2020-10-05 11:04:40 +00:00
|
|
|
char *cmd, *s;
|
2014-05-13 08:08:32 +00:00
|
|
|
|
2021-03-02 11:00:38 +00:00
|
|
|
if (w->active == NULL)
|
|
|
|
return (xstrdup(""));
|
2014-05-13 08:08:32 +00:00
|
|
|
cmd = cmd_stringify_argv(w->active->argc, w->active->argv);
|
|
|
|
if (cmd != NULL && *cmd != '\0')
|
|
|
|
s = parse_window_name(cmd);
|
|
|
|
else
|
|
|
|
s = parse_window_name(w->active->shell);
|
|
|
|
free(cmd);
|
|
|
|
return (s);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 13:21:59 +00:00
|
|
|
static char *
|
2013-10-10 11:56:50 +00:00
|
|
|
format_window_name(struct window *w)
|
|
|
|
{
|
|
|
|
struct format_tree *ft;
|
2017-01-13 11:56:43 +00:00
|
|
|
const char *fmt;
|
|
|
|
char *name;
|
2013-10-10 11:56:50 +00:00
|
|
|
|
2017-05-01 12:20:55 +00:00
|
|
|
ft = format_create(NULL, NULL, FORMAT_WINDOW|w->id, 0);
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults_window(ft, w);
|
|
|
|
format_defaults_pane(ft, w->active);
|
2013-10-10 11:56:50 +00:00
|
|
|
|
2015-10-27 15:58:42 +00:00
|
|
|
fmt = options_get_string(w->options, "automatic-rename-format");
|
2013-10-10 11:56:50 +00:00
|
|
|
name = format_expand(ft, fmt);
|
|
|
|
|
|
|
|
format_free(ft);
|
|
|
|
return (name);
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
char *
|
2013-03-25 15:59:57 +00:00
|
|
|
parse_window_name(const char *in)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2013-03-25 15:59:57 +00:00
|
|
|
char *copy, *name, *ptr;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
name = copy = xstrdup(in);
|
2020-10-05 11:04:40 +00:00
|
|
|
if (*name == '"')
|
|
|
|
name++;
|
2021-08-20 17:50:42 +00:00
|
|
|
name[strcspn(name, "\"")] = '\0';
|
2020-10-05 11:04:40 +00:00
|
|
|
|
2013-03-25 15:59:57 +00:00
|
|
|
if (strncmp(name, "exec ", (sizeof "exec ") - 1) == 0)
|
|
|
|
name = name + (sizeof "exec ") - 1;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-10-10 11:56:50 +00:00
|
|
|
while (*name == ' ' || *name == '-')
|
2009-06-01 22:58:49 +00:00
|
|
|
name++;
|
|
|
|
if ((ptr = strchr(name, ' ')) != NULL)
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
if (*name != '\0') {
|
|
|
|
ptr = name + strlen(name) - 1;
|
2017-07-21 12:58:02 +00:00
|
|
|
while (ptr > name &&
|
|
|
|
!isalnum((u_char)*ptr) &&
|
|
|
|
!ispunct((u_char)*ptr))
|
2009-06-01 22:58:49 +00:00
|
|
|
*ptr-- = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*name == '/')
|
|
|
|
name = basename(name);
|
|
|
|
name = xstrdup(name);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(copy);
|
2009-06-01 22:58:49 +00:00
|
|
|
return (name);
|
|
|
|
}
|