[BACK]Return to format.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/format.c, Revision 1.230

1.230   ! nicm        1: /* $OpenBSD: format.c,v 1.229 2020/03/20 18:35:53 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.104     nicm        4:  * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
1.55      nicm       20: #include <sys/wait.h>
1.1       nicm       21:
1.157     nicm       22: #include <ctype.h>
1.30      nicm       23: #include <errno.h>
1.139     nicm       24: #include <fnmatch.h>
1.87      nicm       25: #include <libgen.h>
1.226     nicm       26: #include <math.h>
1.202     nicm       27: #include <regex.h>
1.1       nicm       28: #include <stdarg.h>
1.9       nicm       29: #include <stdlib.h>
1.1       nicm       30: #include <string.h>
                     31: #include <time.h>
                     32: #include <unistd.h>
                     33:
                     34: #include "tmux.h"
                     35:
                     36: /*
                     37:  * Build a list of key-value pairs and use them to expand #{key} entries in a
                     38:  * string.
                     39:  */
                     40:
1.79      nicm       41: struct format_entry;
                     42: typedef void (*format_cb)(struct format_tree *, struct format_entry *);
                     43:
1.108     nicm       44: static char    *format_job_get(struct format_tree *, const char *);
                     45: static void     format_job_timer(int, short, void *);
                     46:
                     47: static char    *format_find(struct format_tree *, const char *, int);
                     48: static void     format_add_cb(struct format_tree *, const char *, format_cb);
                     49: static void     format_add_tv(struct format_tree *, const char *,
                     50:                     struct timeval *);
                     51: static int      format_replace(struct format_tree *, const char *, size_t,
                     52:                     char **, size_t *, size_t *);
                     53: static void     format_defaults_session(struct format_tree *,
                     54:                     struct session *);
                     55: static void     format_defaults_client(struct format_tree *, struct client *);
1.164     nicm       56: static void     format_defaults_winlink(struct format_tree *, struct winlink *);
1.1       nicm       57:
1.68      nicm       58: /* Entry in format job tree. */
                     59: struct format_job {
1.131     nicm       60:        struct client           *client;
1.120     nicm       61:        u_int                    tag;
1.68      nicm       62:        const char              *cmd;
1.113     nicm       63:        const char              *expanded;
1.68      nicm       64:
                     65:        time_t                   last;
                     66:        char                    *out;
1.127     nicm       67:        int                      updated;
1.68      nicm       68:
                     69:        struct job              *job;
                     70:        int                      status;
                     71:
                     72:        RB_ENTRY(format_job)     entry;
                     73: };
                     74:
                     75: /* Format job tree. */
1.108     nicm       76: static struct event format_job_event;
                     77: static int format_job_cmp(struct format_job *, struct format_job *);
1.109     nicm       78: static RB_HEAD(format_job_tree, format_job) format_jobs = RB_INITIALIZER();
1.108     nicm       79: RB_GENERATE_STATIC(format_job_tree, format_job, entry, format_job_cmp);
1.68      nicm       80:
                     81: /* Format job tree comparison function. */
1.108     nicm       82: static int
1.68      nicm       83: format_job_cmp(struct format_job *fj1, struct format_job *fj2)
                     84: {
1.120     nicm       85:        if (fj1->tag < fj2->tag)
                     86:                return (-1);
                     87:        if (fj1->tag > fj2->tag)
                     88:                return (1);
1.68      nicm       89:        return (strcmp(fj1->cmd, fj2->cmd));
                     90: }
                     91:
1.87      nicm       92: /* Format modifiers. */
                     93: #define FORMAT_TIMESTRING 0x1
                     94: #define FORMAT_BASENAME 0x2
                     95: #define FORMAT_DIRNAME 0x4
1.169     nicm       96: #define FORMAT_QUOTE 0x8
                     97: #define FORMAT_LITERAL 0x10
1.170     nicm       98: #define FORMAT_EXPAND 0x20
1.175     nicm       99: #define FORMAT_EXPANDTIME 0x40
                    100: #define FORMAT_SESSIONS 0x80
                    101: #define FORMAT_WINDOWS 0x100
                    102: #define FORMAT_PANES 0x200
1.87      nicm      103:
1.178     nicm      104: /* Limit on recursion. */
                    105: #define FORMAT_LOOP_LIMIT 10
                    106:
1.54      nicm      107: /* Entry in format tree. */
                    108: struct format_entry {
1.79      nicm      109:        char                    *key;
                    110:        char                    *value;
1.87      nicm      111:        time_t                   t;
1.79      nicm      112:        format_cb                cb;
                    113:        RB_ENTRY(format_entry)   entry;
1.54      nicm      114: };
                    115:
1.68      nicm      116: /* Format entry tree. */
1.54      nicm      117: struct format_tree {
1.164     nicm      118:        struct client           *c;
                    119:        struct session          *s;
                    120:        struct winlink          *wl;
1.79      nicm      121:        struct window           *w;
                    122:        struct window_pane      *wp;
1.54      nicm      123:
1.172     nicm      124:        struct cmdq_item        *item;
1.131     nicm      125:        struct client           *client;
1.120     nicm      126:        u_int                    tag;
1.84      nicm      127:        int                      flags;
1.177     nicm      128:        time_t                   time;
1.178     nicm      129:        u_int                    loop;
1.68      nicm      130:
1.197     nicm      131:        struct mouse_event       m;
                    132:
1.68      nicm      133:        RB_HEAD(format_entry_tree, format_entry) tree;
1.54      nicm      134: };
1.108     nicm      135: static int format_entry_cmp(struct format_entry *, struct format_entry *);
                    136: RB_GENERATE_STATIC(format_entry_tree, format_entry, entry, format_entry_cmp);
1.54      nicm      137:
1.180     nicm      138: /* Format modifier. */
1.169     nicm      139: struct format_modifier {
                    140:        char      modifier[3];
                    141:        u_int     size;
                    142:
                    143:        char    **argv;
                    144:        int       argc;
                    145: };
                    146:
1.68      nicm      147: /* Format entry tree comparison function. */
1.108     nicm      148: static int
1.68      nicm      149: format_entry_cmp(struct format_entry *fe1, struct format_entry *fe2)
1.1       nicm      150: {
                    151:        return (strcmp(fe1->key, fe2->key));
                    152: }
                    153:
1.25      nicm      154: /* Single-character uppercase aliases. */
1.108     nicm      155: static const char *format_upper[] = {
1.1       nicm      156:        NULL,           /* A */
                    157:        NULL,           /* B */
                    158:        NULL,           /* C */
                    159:        "pane_id",      /* D */
                    160:        NULL,           /* E */
                    161:        "window_flags", /* F */
                    162:        NULL,           /* G */
                    163:        "host",         /* H */
                    164:        "window_index", /* I */
                    165:        NULL,           /* J */
                    166:        NULL,           /* K */
                    167:        NULL,           /* L */
                    168:        NULL,           /* M */
                    169:        NULL,           /* N */
                    170:        NULL,           /* O */
                    171:        "pane_index",   /* P */
                    172:        NULL,           /* Q */
                    173:        NULL,           /* R */
                    174:        "session_name", /* S */
                    175:        "pane_title",   /* T */
                    176:        NULL,           /* U */
                    177:        NULL,           /* V */
                    178:        "window_name",  /* W */
                    179:        NULL,           /* X */
                    180:        NULL,           /* Y */
                    181:        NULL            /* Z */
                    182: };
                    183:
1.25      nicm      184: /* Single-character lowercase aliases. */
1.108     nicm      185: static const char *format_lower[] = {
1.25      nicm      186:        NULL,           /* a */
                    187:        NULL,           /* b */
                    188:        NULL,           /* c */
                    189:        NULL,           /* d */
                    190:        NULL,           /* e */
                    191:        NULL,           /* f */
                    192:        NULL,           /* g */
                    193:        "host_short",   /* h */
                    194:        NULL,           /* i */
                    195:        NULL,           /* j */
                    196:        NULL,           /* k */
                    197:        NULL,           /* l */
                    198:        NULL,           /* m */
                    199:        NULL,           /* n */
                    200:        NULL,           /* o */
                    201:        NULL,           /* p */
                    202:        NULL,           /* q */
                    203:        NULL,           /* r */
                    204:        NULL,           /* s */
                    205:        NULL,           /* t */
                    206:        NULL,           /* u */
                    207:        NULL,           /* v */
                    208:        NULL,           /* w */
                    209:        NULL,           /* x */
                    210:        NULL,           /* y */
                    211:        NULL            /* z */
                    212: };
                    213:
1.179     nicm      214: /* Is logging enabled? */
                    215: static inline int
                    216: format_logging(struct format_tree *ft)
                    217: {
                    218:        return (log_get_level() != 0 || (ft->flags & FORMAT_VERBOSE));
                    219: }
                    220:
                    221: /* Log a message if verbose. */
                    222: static void printflike(3, 4)
                    223: format_log1(struct format_tree *ft, const char *from, const char *fmt, ...)
                    224: {
                    225:        va_list                  ap;
                    226:        char                    *s;
                    227:        static const char        spaces[] = "          ";
                    228:
                    229:        if (!format_logging(ft))
                    230:                return;
                    231:
                    232:        va_start(ap, fmt);
                    233:        vasprintf(&s, fmt, ap);
                    234:        va_end(ap);
                    235:
                    236:        log_debug("%s: %s", from, s);
1.181     nicm      237:        if (ft->item != NULL && (ft->flags & FORMAT_VERBOSE))
1.179     nicm      238:                cmdq_print(ft->item, "#%.*s%s", ft->loop, spaces, s);
                    239:
                    240:        free(s);
                    241: }
                    242: #define format_log(ft, fmt, ...) format_log1(ft, __func__, fmt, ##__VA_ARGS__)
                    243:
1.127     nicm      244: /* Format job update callback. */
1.108     nicm      245: static void
1.127     nicm      246: format_job_update(struct job *job)
                    247: {
1.160     nicm      248:        struct format_job       *fj = job_get_data(job);
                    249:        struct evbuffer         *evb = job_get_event(job)->input;
1.151     nicm      250:        char                    *line = NULL, *next;
1.127     nicm      251:        time_t                   t;
                    252:
1.151     nicm      253:        while ((next = evbuffer_readline(evb)) != NULL) {
                    254:                free(line);
                    255:                line = next;
                    256:        }
                    257:        if (line == NULL)
1.127     nicm      258:                return;
                    259:        fj->updated = 1;
                    260:
                    261:        free(fj->out);
                    262:        fj->out = line;
                    263:
1.136     nicm      264:        log_debug("%s: %p %s: %s", __func__, fj, fj->cmd, fj->out);
1.127     nicm      265:
1.142     nicm      266:        t = time(NULL);
1.127     nicm      267:        if (fj->status && fj->last != t) {
1.136     nicm      268:                if (fj->client != NULL)
                    269:                        server_status_client(fj->client);
1.127     nicm      270:                fj->last = t;
                    271:        }
                    272: }
                    273:
                    274: /* Format job complete callback. */
                    275: static void
                    276: format_job_complete(struct job *job)
1.68      nicm      277: {
1.160     nicm      278:        struct format_job       *fj = job_get_data(job);
                    279:        struct evbuffer         *evb = job_get_event(job)->input;
1.68      nicm      280:        char                    *line, *buf;
                    281:        size_t                   len;
                    282:
                    283:        fj->job = NULL;
                    284:
                    285:        buf = NULL;
1.160     nicm      286:        if ((line = evbuffer_readline(evb)) == NULL) {
                    287:                len = EVBUFFER_LENGTH(evb);
1.68      nicm      288:                buf = xmalloc(len + 1);
                    289:                if (len != 0)
1.160     nicm      290:                        memcpy(buf, EVBUFFER_DATA(evb), len);
1.68      nicm      291:                buf[len] = '\0';
                    292:        } else
                    293:                buf = line;
1.127     nicm      294:
1.136     nicm      295:        log_debug("%s: %p %s: %s", __func__, fj, fj->cmd, buf);
                    296:
1.127     nicm      297:        if (*buf != '\0' || !fj->updated) {
                    298:                free(fj->out);
                    299:                fj->out = buf;
                    300:        } else
                    301:                free(buf);
1.68      nicm      302:
                    303:        if (fj->status) {
1.131     nicm      304:                if (fj->client != NULL)
                    305:                        server_status_client(fj->client);
1.68      nicm      306:                fj->status = 0;
                    307:        }
                    308: }
                    309:
                    310: /* Find a job. */
1.108     nicm      311: static char *
1.68      nicm      312: format_job_get(struct format_tree *ft, const char *cmd)
                    313: {
1.131     nicm      314:        struct format_job_tree  *jobs;
1.113     nicm      315:        struct format_job        fj0, *fj;
                    316:        time_t                   t;
                    317:        char                    *expanded;
                    318:        int                      force;
1.68      nicm      319:
1.131     nicm      320:        if (ft->client == NULL)
                    321:                jobs = &format_jobs;
                    322:        else if (ft->client->jobs != NULL)
                    323:                jobs = ft->client->jobs;
                    324:        else {
                    325:                jobs = ft->client->jobs = xmalloc(sizeof *ft->client->jobs);
                    326:                RB_INIT(jobs);
                    327:        }
                    328:
1.120     nicm      329:        fj0.tag = ft->tag;
1.68      nicm      330:        fj0.cmd = cmd;
1.131     nicm      331:        if ((fj = RB_FIND(format_job_tree, jobs, &fj0)) == NULL) {
1.68      nicm      332:                fj = xcalloc(1, sizeof *fj);
1.131     nicm      333:                fj->client = ft->client;
1.120     nicm      334:                fj->tag = ft->tag;
1.68      nicm      335:                fj->cmd = xstrdup(cmd);
1.113     nicm      336:                fj->expanded = NULL;
1.68      nicm      337:
                    338:                xasprintf(&fj->out, "<'%s' not ready>", fj->cmd);
                    339:
1.131     nicm      340:                RB_INSERT(format_job_tree, jobs, fj);
1.68      nicm      341:        }
                    342:
1.113     nicm      343:        expanded = format_expand(ft, cmd);
                    344:        if (fj->expanded == NULL || strcmp(expanded, fj->expanded) != 0) {
                    345:                free((void *)fj->expanded);
                    346:                fj->expanded = xstrdup(expanded);
                    347:                force = 1;
                    348:        } else
                    349:                force = (ft->flags & FORMAT_FORCE);
                    350:
1.84      nicm      351:        t = time(NULL);
1.183     nicm      352:        if (force && fj->job != NULL)
                    353:               job_free(fj->job);
                    354:        if (force || (fj->job == NULL && fj->last != t)) {
1.163     nicm      355:                fj->job = job_run(expanded, NULL,
                    356:                    server_client_get_cwd(ft->client, NULL), format_job_update,
1.227     nicm      357:                    format_job_complete, NULL, fj, JOB_NOWAIT, -1, -1);
1.68      nicm      358:                if (fj->job == NULL) {
                    359:                        free(fj->out);
                    360:                        xasprintf(&fj->out, "<'%s' didn't start>", fj->cmd);
                    361:                }
1.84      nicm      362:                fj->last = t;
1.137     nicm      363:                fj->updated = 0;
1.68      nicm      364:        }
1.84      nicm      365:
                    366:        if (ft->flags & FORMAT_STATUS)
                    367:                fj->status = 1;
1.68      nicm      368:
1.113     nicm      369:        free(expanded);
1.86      nicm      370:        return (format_expand(ft, fj->out));
1.68      nicm      371: }
                    372:
                    373: /* Remove old jobs. */
1.108     nicm      374: static void
1.131     nicm      375: format_job_tidy(struct format_job_tree *jobs, int force)
1.68      nicm      376: {
                    377:        struct format_job       *fj, *fj1;
                    378:        time_t                   now;
                    379:
                    380:        now = time(NULL);
1.131     nicm      381:        RB_FOREACH_SAFE(fj, format_job_tree, jobs, fj1) {
                    382:                if (!force && (fj->last > now || now - fj->last < 3600))
1.68      nicm      383:                        continue;
1.131     nicm      384:                RB_REMOVE(format_job_tree, jobs, fj);
1.68      nicm      385:
1.77      nicm      386:                log_debug("%s: %s", __func__, fj->cmd);
                    387:
1.68      nicm      388:                if (fj->job != NULL)
                    389:                        job_free(fj->job);
                    390:
1.113     nicm      391:                free((void *)fj->expanded);
1.78      nicm      392:                free((void *)fj->cmd);
1.68      nicm      393:                free(fj->out);
                    394:
                    395:                free(fj);
                    396:        }
1.131     nicm      397: }
                    398:
                    399: /* Remove old jobs for client. */
                    400: void
                    401: format_lost_client(struct client *c)
                    402: {
                    403:        if (c->jobs != NULL)
                    404:                format_job_tidy(c->jobs, 1);
                    405:        free(c->jobs);
                    406: }
                    407:
                    408: /* Remove old jobs periodically. */
                    409: static void
                    410: format_job_timer(__unused int fd, __unused short events, __unused void *arg)
                    411: {
                    412:        struct client   *c;
                    413:        struct timeval   tv = { .tv_sec = 60 };
                    414:
                    415:        format_job_tidy(&format_jobs, 0);
                    416:        TAILQ_FOREACH(c, &clients, entry) {
                    417:                if (c->jobs != NULL)
                    418:                        format_job_tidy(c->jobs, 0);
                    419:        }
1.77      nicm      420:
                    421:        evtimer_del(&format_job_event);
                    422:        evtimer_add(&format_job_event, &tv);
1.68      nicm      423: }
                    424:
1.79      nicm      425: /* Callback for host. */
1.108     nicm      426: static void
1.99      nicm      427: format_cb_host(__unused struct format_tree *ft, struct format_entry *fe)
1.79      nicm      428: {
                    429:        char host[HOST_NAME_MAX + 1];
                    430:
                    431:        if (gethostname(host, sizeof host) != 0)
                    432:                fe->value = xstrdup("");
                    433:        else
                    434:                fe->value = xstrdup(host);
                    435: }
                    436:
                    437: /* Callback for host_short. */
1.108     nicm      438: static void
1.99      nicm      439: format_cb_host_short(__unused struct format_tree *ft, struct format_entry *fe)
1.79      nicm      440: {
                    441:        char host[HOST_NAME_MAX + 1], *cp;
                    442:
                    443:        if (gethostname(host, sizeof host) != 0)
                    444:                fe->value = xstrdup("");
                    445:        else {
                    446:                if ((cp = strchr(host, '.')) != NULL)
                    447:                        *cp = '\0';
                    448:                fe->value = xstrdup(host);
                    449:        }
                    450: }
                    451:
                    452: /* Callback for pid. */
1.108     nicm      453: static void
1.99      nicm      454: format_cb_pid(__unused struct format_tree *ft, struct format_entry *fe)
1.79      nicm      455: {
                    456:        xasprintf(&fe->value, "%ld", (long)getpid());
                    457: }
                    458:
1.221     nicm      459: /* Callback for session_attached_list. */
                    460: static void
                    461: format_cb_session_attached_list(struct format_tree *ft, struct format_entry *fe)
                    462: {
                    463:        struct session  *s = ft->s;
                    464:        struct client   *loop;
                    465:        struct evbuffer *buffer;
                    466:        int              size;
                    467:
                    468:        if (s == NULL)
                    469:                return;
                    470:
                    471:        buffer = evbuffer_new();
                    472:        if (buffer == NULL)
                    473:                fatalx("out of memory");
                    474:
                    475:        TAILQ_FOREACH(loop, &clients, entry) {
                    476:                if (loop->session == s) {
                    477:                        if (EVBUFFER_LENGTH(buffer) > 0)
                    478:                                evbuffer_add(buffer, ",", 1);
                    479:                        evbuffer_add_printf(buffer, "%s", loop->name);
                    480:                }
                    481:        }
                    482:
                    483:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    484:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    485:        evbuffer_free(buffer);
                    486: }
                    487:
1.80      nicm      488: /* Callback for session_alerts. */
1.108     nicm      489: static void
1.80      nicm      490: format_cb_session_alerts(struct format_tree *ft, struct format_entry *fe)
                    491: {
                    492:        struct session  *s = ft->s;
                    493:        struct winlink  *wl;
1.133     nicm      494:        char             alerts[1024], tmp[16];
1.80      nicm      495:
                    496:        if (s == NULL)
                    497:                return;
                    498:
                    499:        *alerts = '\0';
                    500:        RB_FOREACH(wl, winlinks, &s->windows) {
                    501:                if ((wl->flags & WINLINK_ALERTFLAGS) == 0)
                    502:                        continue;
                    503:                xsnprintf(tmp, sizeof tmp, "%u", wl->idx);
                    504:
                    505:                if (*alerts != '\0')
                    506:                        strlcat(alerts, ",", sizeof alerts);
                    507:                strlcat(alerts, tmp, sizeof alerts);
                    508:                if (wl->flags & WINLINK_ACTIVITY)
                    509:                        strlcat(alerts, "#", sizeof alerts);
                    510:                if (wl->flags & WINLINK_BELL)
                    511:                        strlcat(alerts, "!", sizeof alerts);
                    512:                if (wl->flags & WINLINK_SILENCE)
                    513:                        strlcat(alerts, "~", sizeof alerts);
                    514:        }
                    515:        fe->value = xstrdup(alerts);
                    516: }
                    517:
1.133     nicm      518: /* Callback for session_stack. */
                    519: static void
                    520: format_cb_session_stack(struct format_tree *ft, struct format_entry *fe)
                    521: {
                    522:        struct session  *s = ft->s;
                    523:        struct winlink  *wl;
                    524:        char             result[1024], tmp[16];
                    525:
                    526:        if (s == NULL)
                    527:                return;
                    528:
                    529:        xsnprintf(result, sizeof result, "%u", s->curw->idx);
                    530:        TAILQ_FOREACH(wl, &s->lastw, sentry) {
                    531:                xsnprintf(tmp, sizeof tmp, "%u", wl->idx);
                    532:
                    533:                if (*result != '\0')
                    534:                        strlcat(result, ",", sizeof result);
                    535:                strlcat(result, tmp, sizeof result);
                    536:        }
                    537:        fe->value = xstrdup(result);
                    538: }
                    539:
                    540: /* Callback for window_stack_index. */
                    541: static void
                    542: format_cb_window_stack_index(struct format_tree *ft, struct format_entry *fe)
                    543: {
                    544:        struct session  *s = ft->wl->session;
                    545:        struct winlink  *wl;
                    546:        u_int            idx;
                    547:
                    548:        idx = 0;
                    549:        TAILQ_FOREACH(wl, &s->lastw, sentry) {
                    550:                idx++;
                    551:                if (wl == ft->wl)
                    552:                        break;
                    553:        }
                    554:        if (wl != NULL)
                    555:                xasprintf(&fe->value, "%u", idx);
                    556:        else
                    557:                fe->value = xstrdup("0");
                    558: }
                    559:
1.221     nicm      560: /* Callback for window_linked_sessions_list. */
                    561: static void
                    562: format_cb_window_linked_sessions_list(struct format_tree *ft,
                    563:     struct format_entry *fe)
                    564: {
                    565:        struct window   *w = ft->wl->window;
                    566:        struct winlink  *wl;
                    567:        struct evbuffer *buffer;
                    568:        int              size;
                    569:
                    570:        buffer = evbuffer_new();
                    571:        if (buffer == NULL)
                    572:                fatalx("out of memory");
                    573:
                    574:        TAILQ_FOREACH(wl, &w->winlinks, wentry) {
                    575:                if (EVBUFFER_LENGTH(buffer) > 0)
                    576:                        evbuffer_add(buffer, ",", 1);
                    577:                evbuffer_add_printf(buffer, "%s", wl->session->name);
                    578:        }
                    579:
                    580:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    581:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    582:        evbuffer_free(buffer);
                    583: }
                    584:
                    585: /* Callback for window_active_sessions. */
                    586: static void
                    587: format_cb_window_active_sessions(struct format_tree *ft,
                    588:     struct format_entry *fe)
                    589: {
                    590:        struct window   *w = ft->wl->window;
                    591:        struct winlink  *wl;
                    592:        u_int            n = 0;
                    593:
                    594:        TAILQ_FOREACH(wl, &w->winlinks, wentry) {
                    595:                if (wl->session->curw == wl)
                    596:                        n++;
                    597:        }
                    598:
                    599:        xasprintf(&fe->value, "%u", n);
                    600: }
                    601:
                    602: /* Callback for window_active_sessions_list. */
                    603: static void
                    604: format_cb_window_active_sessions_list(struct format_tree *ft,
                    605:     struct format_entry *fe)
                    606: {
                    607:        struct window   *w = ft->wl->window;
                    608:        struct winlink  *wl;
                    609:        struct evbuffer *buffer;
                    610:        int              size;
                    611:
                    612:        buffer = evbuffer_new();
                    613:        if (buffer == NULL)
                    614:                fatalx("out of memory");
                    615:
                    616:        TAILQ_FOREACH(wl, &w->winlinks, wentry) {
                    617:                if (wl->session->curw == wl) {
                    618:                        if (EVBUFFER_LENGTH(buffer) > 0)
                    619:                                evbuffer_add(buffer, ",", 1);
                    620:                        evbuffer_add_printf(buffer, "%s", wl->session->name);
                    621:                }
                    622:        }
                    623:
                    624:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    625:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    626:        evbuffer_free(buffer);
                    627: }
                    628:
                    629: /* Callback for window_active_clients. */
                    630: static void
                    631: format_cb_window_active_clients(struct format_tree *ft, struct format_entry *fe)
                    632: {
                    633:        struct window   *w = ft->wl->window;
                    634:        struct client   *loop;
                    635:        struct session  *client_session;
                    636:        u_int            n = 0;
                    637:
                    638:        TAILQ_FOREACH(loop, &clients, entry) {
                    639:                client_session = loop->session;
                    640:                if (client_session == NULL)
                    641:                        continue;
                    642:
                    643:                if (w == client_session->curw->window)
                    644:                        n++;
                    645:        }
                    646:
                    647:        xasprintf(&fe->value, "%u", n);
                    648: }
                    649:
                    650: /* Callback for window_active_clients_list. */
                    651: static void
                    652: format_cb_window_active_clients_list(struct format_tree *ft,
                    653:     struct format_entry *fe)
                    654: {
                    655:        struct window   *w = ft->wl->window;
                    656:        struct client   *loop;
                    657:        struct session  *client_session;
                    658:        struct evbuffer *buffer;
                    659:        int              size;
                    660:
                    661:        buffer = evbuffer_new();
                    662:        if (buffer == NULL)
                    663:                fatalx("out of memory");
                    664:
                    665:        TAILQ_FOREACH(loop, &clients, entry) {
                    666:                client_session = loop->session;
                    667:                if (client_session == NULL)
                    668:                        continue;
                    669:
                    670:                if (w == client_session->curw->window) {
                    671:                        if (EVBUFFER_LENGTH(buffer) > 0)
                    672:                                evbuffer_add(buffer, ",", 1);
                    673:                        evbuffer_add_printf(buffer, "%s", loop->name);
                    674:                }
                    675:        }
                    676:
                    677:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    678:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    679:        evbuffer_free(buffer);
                    680: }
                    681:
1.80      nicm      682: /* Callback for window_layout. */
1.108     nicm      683: static void
1.80      nicm      684: format_cb_window_layout(struct format_tree *ft, struct format_entry *fe)
                    685: {
                    686:        struct window   *w = ft->w;
                    687:
                    688:        if (w == NULL)
                    689:                return;
                    690:
                    691:        if (w->saved_layout_root != NULL)
                    692:                fe->value = layout_dump(w->saved_layout_root);
                    693:        else
                    694:                fe->value = layout_dump(w->layout_root);
                    695: }
                    696:
1.96      nicm      697: /* Callback for window_visible_layout. */
1.108     nicm      698: static void
1.96      nicm      699: format_cb_window_visible_layout(struct format_tree *ft, struct format_entry *fe)
                    700: {
                    701:        struct window   *w = ft->w;
                    702:
                    703:        if (w == NULL)
                    704:                return;
                    705:
                    706:        fe->value = layout_dump(w->layout_root);
                    707: }
                    708:
1.79      nicm      709: /* Callback for pane_start_command. */
1.108     nicm      710: static void
1.79      nicm      711: format_cb_start_command(struct format_tree *ft, struct format_entry *fe)
                    712: {
                    713:        struct window_pane      *wp = ft->wp;
                    714:
                    715:        if (wp == NULL)
                    716:                return;
                    717:
                    718:        fe->value = cmd_stringify_argv(wp->argc, wp->argv);
                    719: }
                    720:
                    721: /* Callback for pane_current_command. */
1.108     nicm      722: static void
1.79      nicm      723: format_cb_current_command(struct format_tree *ft, struct format_entry *fe)
                    724: {
                    725:        struct window_pane      *wp = ft->wp;
                    726:        char                    *cmd;
                    727:
1.212     nicm      728:        if (wp == NULL || wp->shell == NULL)
1.79      nicm      729:                return;
                    730:
                    731:        cmd = get_proc_name(wp->fd, wp->tty);
                    732:        if (cmd == NULL || *cmd == '\0') {
                    733:                free(cmd);
                    734:                cmd = cmd_stringify_argv(wp->argc, wp->argv);
                    735:                if (cmd == NULL || *cmd == '\0') {
                    736:                        free(cmd);
                    737:                        cmd = xstrdup(wp->shell);
                    738:                }
                    739:        }
                    740:        fe->value = parse_window_name(cmd);
                    741:        free(cmd);
                    742: }
                    743:
1.80      nicm      744: /* Callback for history_bytes. */
1.108     nicm      745: static void
1.80      nicm      746: format_cb_history_bytes(struct format_tree *ft, struct format_entry *fe)
                    747: {
                    748:        struct window_pane      *wp = ft->wp;
                    749:        struct grid             *gd;
                    750:        struct grid_line        *gl;
                    751:        unsigned long long       size;
                    752:        u_int                    i;
                    753:
                    754:        if (wp == NULL)
                    755:                return;
                    756:        gd = wp->base.grid;
                    757:
                    758:        size = 0;
                    759:        for (i = 0; i < gd->hsize; i++) {
1.158     nicm      760:                gl = grid_get_line(gd, i);
1.80      nicm      761:                size += gl->cellsize * sizeof *gl->celldata;
1.95      nicm      762:                size += gl->extdsize * sizeof *gl->extddata;
1.80      nicm      763:        }
1.158     nicm      764:        size += gd->hsize * sizeof *gl;
1.80      nicm      765:
                    766:        xasprintf(&fe->value, "%llu", size);
                    767: }
                    768:
                    769: /* Callback for pane_tabs. */
1.108     nicm      770: static void
1.80      nicm      771: format_cb_pane_tabs(struct format_tree *ft, struct format_entry *fe)
                    772: {
                    773:        struct window_pane      *wp = ft->wp;
                    774:        struct evbuffer         *buffer;
                    775:        u_int                    i;
                    776:        int                      size;
                    777:
                    778:        if (wp == NULL)
                    779:                return;
                    780:
                    781:        buffer = evbuffer_new();
1.165     nicm      782:        if (buffer == NULL)
                    783:                fatalx("out of memory");
1.80      nicm      784:        for (i = 0; i < wp->base.grid->sx; i++) {
                    785:                if (!bit_test(wp->base.tabs, i))
                    786:                        continue;
                    787:
                    788:                if (EVBUFFER_LENGTH(buffer) > 0)
                    789:                        evbuffer_add(buffer, ",", 1);
                    790:                evbuffer_add_printf(buffer, "%u", i);
                    791:        }
1.148     nicm      792:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    793:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    794:        evbuffer_free(buffer);
                    795: }
                    796:
1.150     nicm      797: /* Callback for session_group_list. */
1.148     nicm      798: static void
1.150     nicm      799: format_cb_session_group_list(struct format_tree *ft, struct format_entry *fe)
1.148     nicm      800: {
                    801:        struct session          *s = ft->s;
                    802:        struct session_group    *sg;
                    803:        struct session          *loop;
                    804:        struct evbuffer         *buffer;
                    805:        int                      size;
                    806:
                    807:        if (s == NULL)
                    808:                return;
                    809:        sg = session_group_contains(s);
                    810:        if (sg == NULL)
                    811:                return;
                    812:
                    813:        buffer = evbuffer_new();
1.165     nicm      814:        if (buffer == NULL)
                    815:                fatalx("out of memory");
1.221     nicm      816:
1.148     nicm      817:        TAILQ_FOREACH(loop, &sg->sessions, gentry) {
                    818:                if (EVBUFFER_LENGTH(buffer) > 0)
                    819:                        evbuffer_add(buffer, ",", 1);
                    820:                evbuffer_add_printf(buffer, "%s", loop->name);
                    821:        }
1.221     nicm      822:
                    823:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    824:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
                    825:        evbuffer_free(buffer);
                    826: }
                    827:
                    828: /* Callback for session_group_attached_list. */
                    829: static void
                    830: format_cb_session_group_attached_list(struct format_tree *ft,
                    831:     struct format_entry *fe)
                    832: {
                    833:        struct session          *s = ft->s, *client_session, *session_loop;
                    834:        struct session_group    *sg;
                    835:        struct client           *loop;
                    836:        struct evbuffer         *buffer;
                    837:        int                      size;
                    838:
                    839:        if (s == NULL)
                    840:                return;
                    841:        sg = session_group_contains(s);
                    842:        if (sg == NULL)
                    843:                return;
                    844:
                    845:        buffer = evbuffer_new();
                    846:        if (buffer == NULL)
                    847:                fatalx("out of memory");
                    848:
                    849:        TAILQ_FOREACH(loop, &clients, entry) {
                    850:                client_session = loop->session;
                    851:                if (client_session == NULL)
                    852:                        continue;
                    853:                TAILQ_FOREACH(session_loop, &sg->sessions, gentry) {
                    854:                        if (session_loop == client_session){
                    855:                                if (EVBUFFER_LENGTH(buffer) > 0)
                    856:                                        evbuffer_add(buffer, ",", 1);
                    857:                                evbuffer_add_printf(buffer, "%s", loop->name);
                    858:                        }
                    859:                }
                    860:        }
                    861:
1.148     nicm      862:        if ((size = EVBUFFER_LENGTH(buffer)) != 0)
                    863:                xasprintf(&fe->value, "%.*s", size, EVBUFFER_DATA(buffer));
1.80      nicm      864:        evbuffer_free(buffer);
                    865: }
                    866:
1.168     nicm      867: /* Callback for pane_in_mode. */
                    868: static void
                    869: format_cb_pane_in_mode(struct format_tree *ft, struct format_entry *fe)
                    870: {
                    871:        struct window_pane              *wp = ft->wp;
                    872:        u_int                            n = 0;
                    873:        struct window_mode_entry        *wme;
                    874:
                    875:        if (wp == NULL)
                    876:                return;
                    877:
                    878:        TAILQ_FOREACH(wme, &wp->modes, entry)
                    879:            n++;
                    880:        xasprintf(&fe->value, "%u", n);
                    881: }
                    882:
1.225     nicm      883: /* Callback for pane_at_top. */
                    884: static void
                    885: format_cb_pane_at_top(struct format_tree *ft, struct format_entry *fe)
                    886: {
                    887:        struct window_pane      *wp = ft->wp;
                    888:        struct window           *w = wp->window;
                    889:        int                      status, flag;
                    890:
                    891:        if (wp == NULL)
                    892:                return;
                    893:
                    894:        status = options_get_number(w->options, "pane-border-status");
                    895:        if (status == PANE_STATUS_TOP)
                    896:                flag = (wp->yoff == 1);
                    897:        else
                    898:                flag = (wp->yoff == 0);
                    899:        xasprintf(&fe->value, "%d", flag);
                    900: }
                    901:
                    902: /* Callback for pane_at_bottom. */
                    903: static void
                    904: format_cb_pane_at_bottom(struct format_tree *ft, struct format_entry *fe)
                    905: {
                    906:        struct window_pane      *wp = ft->wp;
                    907:        struct window           *w = wp->window;
                    908:        int                      status, flag;
                    909:
                    910:        if (wp == NULL)
                    911:                return;
                    912:
                    913:        status = options_get_number(w->options, "pane-border-status");
                    914:        if (status == PANE_STATUS_BOTTOM)
                    915:                flag = (wp->yoff + wp->sy == w->sy - 1);
                    916:        else
                    917:                flag = (wp->yoff + wp->sy == w->sy);
                    918:        xasprintf(&fe->value, "%d", flag);
                    919: }
                    920:
1.186     nicm      921: /* Callback for cursor_character. */
                    922: static void
                    923: format_cb_cursor_character(struct format_tree *ft, struct format_entry *fe)
                    924: {
                    925:        struct window_pane      *wp = ft->wp;
                    926:        struct grid_cell         gc;
                    927:
                    928:        if (wp == NULL)
                    929:                return;
                    930:
                    931:        grid_view_get_cell(wp->base.grid, wp->base.cx, wp->base.cy, &gc);
                    932:        if (~gc.flags & GRID_FLAG_PADDING)
                    933:                xasprintf(&fe->value, "%.*s", (int)gc.data.size, gc.data.data);
                    934: }
                    935:
1.213     nicm      936: /* Return word at given coordinates. Caller frees. */
                    937: char *
                    938: format_grid_word(struct grid *gd, u_int x, u_int y)
1.197     nicm      939: {
                    940:        struct grid_line        *gl;
                    941:        struct grid_cell         gc;
                    942:        const char              *ws;
                    943:        struct utf8_data        *ud = NULL;
1.213     nicm      944:        u_int                    end;
1.197     nicm      945:        size_t                   size = 0;
                    946:        int                      found = 0;
1.213     nicm      947:        char                    *s = NULL;
1.197     nicm      948:
                    949:        ws = options_get_string(global_s_options, "word-separators");
                    950:
                    951:        for (;;) {
                    952:                grid_get_cell(gd, x, y, &gc);
                    953:                if (gc.flags & GRID_FLAG_PADDING)
                    954:                        break;
                    955:                if (utf8_cstrhas(ws, &gc.data)) {
                    956:                        found = 1;
                    957:                        break;
                    958:                }
                    959:
                    960:                if (x == 0) {
                    961:                        if (y == 0)
                    962:                                break;
                    963:                        gl = &gd->linedata[y - 1];
                    964:                        if (~gl->flags & GRID_LINE_WRAPPED)
                    965:                                break;
                    966:                        y--;
                    967:                        x = grid_line_length(gd, y);
                    968:                        if (x == 0)
                    969:                                break;
                    970:                }
                    971:                x--;
                    972:        }
                    973:        for (;;) {
                    974:                if (found) {
                    975:                        end = grid_line_length(gd, y);
                    976:                        if (end == 0 || x == end - 1) {
                    977:                                if (y == gd->hsize + gd->sy - 1)
                    978:                                        break;
                    979:                                gl = &gd->linedata[y];
                    980:                                if (~gl->flags & GRID_LINE_WRAPPED)
                    981:                                        break;
                    982:                                y++;
                    983:                                x = 0;
                    984:                        } else
                    985:                                x++;
                    986:                }
                    987:                found = 1;
                    988:
                    989:                grid_get_cell(gd, x, y, &gc);
                    990:                if (gc.flags & GRID_FLAG_PADDING)
                    991:                        break;
                    992:                if (utf8_cstrhas(ws, &gc.data))
                    993:                        break;
                    994:
                    995:                ud = xreallocarray(ud, size + 2, sizeof *ud);
                    996:                memcpy(&ud[size++], &gc.data, sizeof *ud);
                    997:        }
                    998:        if (size != 0) {
                    999:                ud[size].size = 0;
1.213     nicm     1000:                s = utf8_tocstr(ud);
1.197     nicm     1001:                free(ud);
                   1002:        }
1.213     nicm     1003:        return (s);
1.197     nicm     1004: }
                   1005:
1.213     nicm     1006: /* Callback for mouse_word. */
1.197     nicm     1007: static void
1.213     nicm     1008: format_cb_mouse_word(struct format_tree *ft, struct format_entry *fe)
1.197     nicm     1009: {
                   1010:        struct window_pane      *wp;
1.228     nicm     1011:        struct grid             *gd;
1.197     nicm     1012:        u_int                    x, y;
1.213     nicm     1013:        char                    *s;
1.197     nicm     1014:
                   1015:        if (!ft->m.valid)
                   1016:                return;
                   1017:        wp = cmd_mouse_pane(&ft->m, NULL, NULL);
                   1018:        if (wp == NULL)
1.211     nicm     1019:                return;
1.197     nicm     1020:        if (cmd_mouse_at(wp, &ft->m, &x, &y, 0) != 0)
                   1021:                return;
1.213     nicm     1022:
1.228     nicm     1023:        if (!TAILQ_EMPTY(&wp->modes)) {
1.229     nicm     1024:                if (TAILQ_FIRST(&wp->modes)->mode == &window_copy_mode ||
                   1025:                    TAILQ_FIRST(&wp->modes)->mode == &window_view_mode)
1.228     nicm     1026:                        s = window_copy_get_word(wp, x, y);
                   1027:                else
                   1028:                        s = NULL;
                   1029:        } else {
                   1030:                gd = wp->base.grid;
                   1031:                s = format_grid_word(gd, x, gd->hsize + y);
                   1032:        }
1.213     nicm     1033:        if (s != NULL)
                   1034:                fe->value = s;
                   1035: }
                   1036:
                   1037: /* Return line at given coordinates. Caller frees. */
                   1038: char *
                   1039: format_grid_line(struct grid *gd, u_int y)
                   1040: {
                   1041:        struct grid_cell         gc;
                   1042:        struct utf8_data        *ud = NULL;
                   1043:        u_int                    x;
                   1044:        size_t                   size = 0;
                   1045:        char                    *s = NULL;
1.197     nicm     1046:
                   1047:        for (x = 0; x < grid_line_length(gd, y); x++) {
                   1048:                grid_get_cell(gd, x, y, &gc);
                   1049:                if (gc.flags & GRID_FLAG_PADDING)
                   1050:                        break;
                   1051:
                   1052:                ud = xreallocarray(ud, size + 2, sizeof *ud);
                   1053:                memcpy(&ud[size++], &gc.data, sizeof *ud);
                   1054:        }
                   1055:        if (size != 0) {
                   1056:                ud[size].size = 0;
1.213     nicm     1057:                s = utf8_tocstr(ud);
1.197     nicm     1058:                free(ud);
                   1059:        }
1.213     nicm     1060:        return (s);
                   1061: }
                   1062:
                   1063: /* Callback for mouse_line. */
                   1064: static void
                   1065: format_cb_mouse_line(struct format_tree *ft, struct format_entry *fe)
                   1066: {
                   1067:        struct window_pane      *wp;
1.228     nicm     1068:        struct grid             *gd;
1.213     nicm     1069:        u_int                    x, y;
                   1070:        char                    *s;
                   1071:
                   1072:        if (!ft->m.valid)
                   1073:                return;
                   1074:        wp = cmd_mouse_pane(&ft->m, NULL, NULL);
                   1075:        if (wp == NULL)
                   1076:                return;
                   1077:        if (cmd_mouse_at(wp, &ft->m, &x, &y, 0) != 0)
                   1078:                return;
                   1079:
1.228     nicm     1080:        if (!TAILQ_EMPTY(&wp->modes)) {
1.229     nicm     1081:                if (TAILQ_FIRST(&wp->modes)->mode == &window_copy_mode ||
                   1082:                    TAILQ_FIRST(&wp->modes)->mode == &window_view_mode)
1.228     nicm     1083:                        s = window_copy_get_line(wp, y);
                   1084:                else
                   1085:                        s = NULL;
                   1086:        } else {
                   1087:                gd = wp->base.grid;
                   1088:                s = format_grid_line(gd, gd->hsize + y);
                   1089:        }
1.213     nicm     1090:        if (s != NULL)
                   1091:                fe->value = s;
1.197     nicm     1092: }
                   1093:
1.112     nicm     1094: /* Merge a format tree. */
                   1095: static void
                   1096: format_merge(struct format_tree *ft, struct format_tree *from)
                   1097: {
                   1098:        struct format_entry     *fe;
                   1099:
                   1100:        RB_FOREACH(fe, format_entry_tree, &from->tree) {
                   1101:                if (fe->value != NULL)
                   1102:                        format_add(ft, fe->key, "%s", fe->value);
                   1103:        }
                   1104: }
                   1105:
1.196     nicm     1106: /* Add item bits to tree. */
                   1107: static void
                   1108: format_create_add_item(struct format_tree *ft, struct cmdq_item *item)
                   1109: {
1.197     nicm     1110:        struct mouse_event      *m;
                   1111:        struct window_pane      *wp;
                   1112:        u_int                    x, y;
                   1113:
1.196     nicm     1114:        if (item->cmd != NULL)
                   1115:                format_add(ft, "command", "%s", item->cmd->entry->name);
1.197     nicm     1116:
                   1117:        if (item->shared == NULL)
                   1118:                return;
                   1119:        if (item->shared->formats != NULL)
1.196     nicm     1120:                format_merge(ft, item->shared->formats);
1.197     nicm     1121:
                   1122:        m = &item->shared->mouse;
                   1123:        if (m->valid && ((wp = cmd_mouse_pane(m, NULL, NULL)) != NULL)) {
                   1124:                format_add(ft, "mouse_pane", "%%%u", wp->id);
                   1125:                if (cmd_mouse_at(wp, m, &x, &y, 0) == 0) {
                   1126:                        format_add(ft, "mouse_x", "%u", x);
                   1127:                        format_add(ft, "mouse_y", "%u", y);
                   1128:                        format_add_cb(ft, "mouse_word", format_cb_mouse_word);
                   1129:                        format_add_cb(ft, "mouse_line", format_cb_mouse_line);
                   1130:                }
                   1131:        }
                   1132:        memcpy(&ft->m, m, sizeof ft->m);
1.196     nicm     1133: }
                   1134:
1.1       nicm     1135: /* Create a new tree. */
                   1136: struct format_tree *
1.131     nicm     1137: format_create(struct client *c, struct cmdq_item *item, int tag, int flags)
1.68      nicm     1138: {
1.184     nicm     1139:        struct format_tree               *ft;
                   1140:        const struct window_mode        **wm;
                   1141:        char                              tmp[64];
1.77      nicm     1142:
                   1143:        if (!event_initialized(&format_job_event)) {
                   1144:                evtimer_set(&format_job_event, format_job_timer, NULL);
                   1145:                format_job_timer(-1, 0, NULL);
                   1146:        }
1.1       nicm     1147:
1.54      nicm     1148:        ft = xcalloc(1, sizeof *ft);
                   1149:        RB_INIT(&ft->tree);
1.120     nicm     1150:
1.131     nicm     1151:        if (c != NULL) {
                   1152:                ft->client = c;
                   1153:                ft->client->references++;
                   1154:        }
1.172     nicm     1155:        ft->item = item;
1.131     nicm     1156:
1.120     nicm     1157:        ft->tag = tag;
1.84      nicm     1158:        ft->flags = flags;
1.177     nicm     1159:        ft->time = time(NULL);
1.1       nicm     1160:
1.224     nicm     1161:        format_add(ft, "version", "%s", getversion());
1.79      nicm     1162:        format_add_cb(ft, "host", format_cb_host);
                   1163:        format_add_cb(ft, "host_short", format_cb_host_short);
                   1164:        format_add_cb(ft, "pid", format_cb_pid);
1.100     nicm     1165:        format_add(ft, "socket_path", "%s", socket_path);
                   1166:        format_add_tv(ft, "start_time", &start_time);
1.102     nicm     1167:
1.184     nicm     1168:        for (wm = all_window_modes; *wm != NULL; wm++) {
                   1169:                if ((*wm)->default_format != NULL) {
                   1170:                        xsnprintf(tmp, sizeof tmp, "%s_format", (*wm)->name);
                   1171:                        tmp[strcspn(tmp, "-")] = '_';
                   1172:                        format_add(ft, tmp, "%s", (*wm)->default_format);
                   1173:                }
                   1174:        }
                   1175:
1.196     nicm     1176:        if (item != NULL)
                   1177:                format_create_add_item(ft, item);
1.1       nicm     1178:
                   1179:        return (ft);
                   1180: }
                   1181:
                   1182: /* Free a tree. */
                   1183: void
                   1184: format_free(struct format_tree *ft)
                   1185: {
1.54      nicm     1186:        struct format_entry     *fe, *fe1;
1.1       nicm     1187:
1.68      nicm     1188:        RB_FOREACH_SAFE(fe, format_entry_tree, &ft->tree, fe1) {
                   1189:                RB_REMOVE(format_entry_tree, &ft->tree, fe);
1.9       nicm     1190:                free(fe->value);
                   1191:                free(fe->key);
                   1192:                free(fe);
1.1       nicm     1193:        }
                   1194:
1.131     nicm     1195:        if (ft->client != NULL)
                   1196:                server_client_unref(ft->client);
1.25      nicm     1197:        free(ft);
1.1       nicm     1198: }
1.184     nicm     1199:
                   1200: /* Walk each format. */
                   1201: void
                   1202: format_each(struct format_tree *ft, void (*cb)(const char *, const char *,
                   1203:     void *), void *arg)
                   1204: {
                   1205:        struct format_entry     *fe;
1.222     nicm     1206:        char                     s[64];
1.184     nicm     1207:
                   1208:        RB_FOREACH(fe, format_entry_tree, &ft->tree) {
                   1209:                if (fe->t != 0) {
                   1210:                        xsnprintf(s, sizeof s, "%lld", (long long)fe->t);
1.222     nicm     1211:                        cb(fe->key, s, arg);
1.184     nicm     1212:                } else {
                   1213:                        if (fe->value == NULL && fe->cb != NULL) {
                   1214:                                fe->cb(ft, fe);
                   1215:                                if (fe->value == NULL)
                   1216:                                        fe->value = xstrdup("");
                   1217:                        }
                   1218:                        cb(fe->key, fe->value, arg);
                   1219:                }
                   1220:        }
                   1221: }
1.1       nicm     1222:
                   1223: /* Add a key-value pair. */
                   1224: void
                   1225: format_add(struct format_tree *ft, const char *key, const char *fmt, ...)
                   1226: {
                   1227:        struct format_entry     *fe;
1.28      nicm     1228:        struct format_entry     *fe_now;
1.1       nicm     1229:        va_list                  ap;
                   1230:
                   1231:        fe = xmalloc(sizeof *fe);
                   1232:        fe->key = xstrdup(key);
                   1233:
1.79      nicm     1234:        fe_now = RB_INSERT(format_entry_tree, &ft->tree, fe);
                   1235:        if (fe_now != NULL) {
                   1236:                free(fe->key);
                   1237:                free(fe);
                   1238:                free(fe_now->value);
                   1239:                fe = fe_now;
                   1240:        }
                   1241:
                   1242:        fe->cb = NULL;
1.87      nicm     1243:        fe->t = 0;
1.79      nicm     1244:
1.1       nicm     1245:        va_start(ap, fmt);
                   1246:        xvasprintf(&fe->value, fmt, ap);
                   1247:        va_end(ap);
1.79      nicm     1248: }
                   1249:
1.87      nicm     1250: /* Add a key and time. */
1.108     nicm     1251: static void
1.87      nicm     1252: format_add_tv(struct format_tree *ft, const char *key, struct timeval *tv)
                   1253: {
1.222     nicm     1254:        struct format_entry     *fe, *fe_now;
1.87      nicm     1255:
                   1256:        fe = xmalloc(sizeof *fe);
                   1257:        fe->key = xstrdup(key);
                   1258:
                   1259:        fe_now = RB_INSERT(format_entry_tree, &ft->tree, fe);
                   1260:        if (fe_now != NULL) {
                   1261:                free(fe->key);
                   1262:                free(fe);
                   1263:                free(fe_now->value);
                   1264:                fe = fe_now;
                   1265:        }
                   1266:
                   1267:        fe->cb = NULL;
                   1268:        fe->t = tv->tv_sec;
                   1269:
                   1270:        fe->value = NULL;
                   1271: }
                   1272:
1.79      nicm     1273: /* Add a key and function. */
1.108     nicm     1274: static void
1.79      nicm     1275: format_add_cb(struct format_tree *ft, const char *key, format_cb cb)
                   1276: {
                   1277:        struct format_entry     *fe;
                   1278:        struct format_entry     *fe_now;
                   1279:
                   1280:        fe = xmalloc(sizeof *fe);
                   1281:        fe->key = xstrdup(key);
1.1       nicm     1282:
1.68      nicm     1283:        fe_now = RB_INSERT(format_entry_tree, &ft->tree, fe);
1.28      nicm     1284:        if (fe_now != NULL) {
                   1285:                free(fe->key);
                   1286:                free(fe);
1.79      nicm     1287:                free(fe_now->value);
                   1288:                fe = fe_now;
1.28      nicm     1289:        }
1.79      nicm     1290:
                   1291:        fe->cb = cb;
1.87      nicm     1292:        fe->t = 0;
1.79      nicm     1293:
                   1294:        fe->value = NULL;
1.1       nicm     1295: }
                   1296:
1.161     nicm     1297: /* Quote special characters in string. */
                   1298: static char *
                   1299: format_quote(const char *s)
                   1300: {
                   1301:        const char      *cp;
                   1302:        char            *out, *at;
                   1303:
                   1304:        at = out = xmalloc(strlen(s) * 2 + 1);
                   1305:        for (cp = s; *cp != '\0'; cp++) {
                   1306:                if (strchr("|&;<>()$`\\\"'*?[# =%", *cp) != NULL)
                   1307:                        *at++ = '\\';
                   1308:                *at++ = *cp;
                   1309:        }
                   1310:        *at = '\0';
                   1311:        return (out);
                   1312: }
                   1313:
1.1       nicm     1314: /* Find a format entry. */
1.108     nicm     1315: static char *
1.87      nicm     1316: format_find(struct format_tree *ft, const char *key, int modifiers)
1.1       nicm     1317: {
                   1318:        struct format_entry     *fe, fe_find;
1.76      nicm     1319:        struct environ_entry    *envent;
1.87      nicm     1320:        static char              s[64];
1.117     nicm     1321:        struct options_entry    *o;
1.116     nicm     1322:        int                      idx;
1.189     nicm     1323:        char                    *found, *saved;
1.87      nicm     1324:
                   1325:        if (~modifiers & FORMAT_TIMESTRING) {
1.116     nicm     1326:                o = options_parse_get(global_options, key, &idx, 0);
1.206     nicm     1327:                if (o == NULL && ft->wp != NULL)
                   1328:                        o = options_parse_get(ft->wp->options, key, &idx, 0);
1.87      nicm     1329:                if (o == NULL && ft->w != NULL)
1.116     nicm     1330:                        o = options_parse_get(ft->w->options, key, &idx, 0);
1.87      nicm     1331:                if (o == NULL)
1.116     nicm     1332:                        o = options_parse_get(global_w_options, key, &idx, 0);
1.87      nicm     1333:                if (o == NULL && ft->s != NULL)
1.116     nicm     1334:                        o = options_parse_get(ft->s->options, key, &idx, 0);
1.87      nicm     1335:                if (o == NULL)
1.116     nicm     1336:                        o = options_parse_get(global_s_options, key, &idx, 0);
1.87      nicm     1337:                if (o != NULL) {
1.118     nicm     1338:                        found = options_tostring(o, idx, 1);
1.116     nicm     1339:                        goto found;
1.54      nicm     1340:                }
                   1341:        }
1.116     nicm     1342:        found = NULL;
1.1       nicm     1343:
                   1344:        fe_find.key = (char *) key;
1.68      nicm     1345:        fe = RB_FIND(format_entry_tree, &ft->tree, &fe_find);
1.79      nicm     1346:        if (fe != NULL) {
1.87      nicm     1347:                if (modifiers & FORMAT_TIMESTRING) {
                   1348:                        if (fe->t == 0)
                   1349:                                return (NULL);
                   1350:                        ctime_r(&fe->t, s);
                   1351:                        s[strcspn(s, "\n")] = '\0';
1.189     nicm     1352:                        found = xstrdup(s);
1.87      nicm     1353:                        goto found;
                   1354:                }
                   1355:                if (fe->t != 0) {
1.189     nicm     1356:                        xasprintf(&found, "%lld", (long long)fe->t);
1.87      nicm     1357:                        goto found;
                   1358:                }
1.220     nicm     1359:                if (fe->value == NULL && fe->cb != NULL)
1.79      nicm     1360:                        fe->cb(ft, fe);
1.220     nicm     1361:                if (fe->value == NULL)
                   1362:                        fe->value = xstrdup("");
1.189     nicm     1363:                found = xstrdup(fe->value);
1.87      nicm     1364:                goto found;
1.79      nicm     1365:        }
1.76      nicm     1366:
1.87      nicm     1367:        if (~modifiers & FORMAT_TIMESTRING) {
                   1368:                envent = NULL;
                   1369:                if (ft->s != NULL)
1.91      nicm     1370:                        envent = environ_find(ft->s->environ, key);
1.87      nicm     1371:                if (envent == NULL)
1.91      nicm     1372:                        envent = environ_find(global_environ, key);
1.203     nicm     1373:                if (envent != NULL && envent->value != NULL) {
1.189     nicm     1374:                        found = xstrdup(envent->value);
1.87      nicm     1375:                        goto found;
                   1376:                }
                   1377:        }
1.76      nicm     1378:
                   1379:        return (NULL);
1.87      nicm     1380:
                   1381: found:
1.88      nicm     1382:        if (found == NULL)
                   1383:                return (NULL);
1.87      nicm     1384:        if (modifiers & FORMAT_BASENAME) {
1.189     nicm     1385:                saved = found;
                   1386:                found = xstrdup(basename(saved));
1.87      nicm     1387:                free(saved);
                   1388:        }
                   1389:        if (modifiers & FORMAT_DIRNAME) {
1.189     nicm     1390:                saved = found;
                   1391:                found = xstrdup(dirname(saved));
1.87      nicm     1392:                free(saved);
                   1393:        }
1.161     nicm     1394:        if (modifiers & FORMAT_QUOTE) {
1.189     nicm     1395:                saved = found;
                   1396:                found = xstrdup(format_quote(saved));
1.161     nicm     1397:                free(saved);
                   1398:        }
1.189     nicm     1399:        return (found);
1.1       nicm     1400: }
                   1401:
1.155     nicm     1402: /* Skip until end. */
1.185     nicm     1403: const char *
1.169     nicm     1404: format_skip(const char *s, const char *end)
1.114     nicm     1405: {
                   1406:        int     brackets = 0;
                   1407:
                   1408:        for (; *s != '\0'; s++) {
1.155     nicm     1409:                if (*s == '#' && s[1] == '{')
1.114     nicm     1410:                        brackets++;
1.155     nicm     1411:                if (*s == '#' && strchr(",#{}", s[1]) != NULL) {
                   1412:                        s++;
                   1413:                        continue;
                   1414:                }
1.114     nicm     1415:                if (*s == '}')
                   1416:                        brackets--;
1.169     nicm     1417:                if (strchr(end, *s) != NULL && brackets == 0)
1.114     nicm     1418:                        break;
                   1419:        }
                   1420:        if (*s == '\0')
                   1421:                return (NULL);
                   1422:        return (s);
                   1423: }
                   1424:
                   1425: /* Return left and right alternatives separated by commas. */
                   1426: static int
1.169     nicm     1427: format_choose(struct format_tree *ft, const char *s, char **left, char **right,
                   1428:     int expand)
1.114     nicm     1429: {
1.169     nicm     1430:        const char      *cp;
                   1431:        char            *left0, *right0;
1.114     nicm     1432:
1.169     nicm     1433:        cp = format_skip(s, ",");
1.114     nicm     1434:        if (cp == NULL)
                   1435:                return (-1);
1.169     nicm     1436:        left0 = xstrndup(s, cp - s);
                   1437:        right0 = xstrdup(cp + 1);
1.114     nicm     1438:
1.169     nicm     1439:        if (expand) {
                   1440:                *left = format_expand(ft, left0);
1.188     nicm     1441:                free(left0);
1.169     nicm     1442:                *right = format_expand(ft, right0);
1.188     nicm     1443:                free(right0);
1.169     nicm     1444:        } else {
                   1445:                *left = left0;
                   1446:                *right = right0;
                   1447:        }
1.114     nicm     1448:        return (0);
                   1449: }
                   1450:
                   1451: /* Is this true? */
1.141     nicm     1452: int
1.114     nicm     1453: format_true(const char *s)
                   1454: {
                   1455:        if (s != NULL && *s != '\0' && (s[0] != '0' || s[1] != '\0'))
                   1456:                return (1);
                   1457:        return (0);
                   1458: }
                   1459:
1.169     nicm     1460: /* Check if modifier end. */
                   1461: static int
                   1462: format_is_end(char c)
                   1463: {
                   1464:        return (c == ';' || c == ':');
                   1465: }
                   1466:
                   1467: /* Add to modifier list. */
                   1468: static void
                   1469: format_add_modifier(struct format_modifier **list, u_int *count,
                   1470:     const char *c, size_t n, char **argv, int argc)
                   1471: {
                   1472:        struct format_modifier *fm;
                   1473:
                   1474:        *list = xreallocarray(*list, (*count) + 1, sizeof **list);
                   1475:        fm = &(*list)[(*count)++];
                   1476:
                   1477:        memcpy(fm->modifier, c, n);
                   1478:        fm->modifier[n] = '\0';
                   1479:        fm->size = n;
                   1480:
                   1481:        fm->argv = argv;
                   1482:        fm->argc = argc;
                   1483: }
                   1484:
                   1485: /* Free modifier list. */
                   1486: static void
                   1487: format_free_modifiers(struct format_modifier *list, u_int count)
                   1488: {
                   1489:        u_int   i;
                   1490:
                   1491:        for (i = 0; i < count; i++)
                   1492:                cmd_free_argv(list[i].argc, list[i].argv);
                   1493:        free(list);
                   1494: }
                   1495:
                   1496: /* Build modifier list. */
                   1497: static struct format_modifier *
                   1498: format_build_modifiers(struct format_tree *ft, const char **s, u_int *count)
                   1499: {
                   1500:        const char              *cp = *s, *end;
                   1501:        struct format_modifier  *list = NULL;
                   1502:        char                     c, last[] = "X;:", **argv, *value;
                   1503:        int                      argc;
                   1504:
                   1505:        /*
                   1506:         * Modifiers are a ; separated list of the forms:
1.195     nicm     1507:         *      l,m,C,b,d,t,q,E,T,S,W,P,<,>
1.169     nicm     1508:         *      =a
                   1509:         *      =/a
                   1510:         *      =/a/
                   1511:         *      s/a/b/
                   1512:         *      s/a/b
1.195     nicm     1513:         *      ||,&&,!=,==,<=,>=
1.169     nicm     1514:         */
                   1515:
                   1516:        *count = 0;
                   1517:
                   1518:        while (*cp != '\0' && *cp != ':') {
                   1519:                /* Skip and separator character. */
                   1520:                if (*cp == ';')
                   1521:                        cp++;
                   1522:
                   1523:                /* Check single character modifiers with no arguments. */
1.202     nicm     1524:                if (strchr("lbdtqETSWP<>", cp[0]) != NULL &&
1.172     nicm     1525:                    format_is_end(cp[1])) {
1.169     nicm     1526:                        format_add_modifier(&list, count, cp, 1, NULL, 0);
                   1527:                        cp++;
                   1528:                        continue;
                   1529:                }
                   1530:
                   1531:                /* Then try double character with no arguments. */
                   1532:                if ((memcmp("||", cp, 2) == 0 ||
                   1533:                    memcmp("&&", cp, 2) == 0 ||
                   1534:                    memcmp("!=", cp, 2) == 0 ||
1.195     nicm     1535:                    memcmp("==", cp, 2) == 0 ||
                   1536:                    memcmp("<=", cp, 2) == 0 ||
                   1537:                    memcmp(">=", cp, 2) == 0) &&
1.169     nicm     1538:                    format_is_end(cp[2])) {
                   1539:                        format_add_modifier(&list, count, cp, 2, NULL, 0);
                   1540:                        cp += 2;
                   1541:                        continue;
                   1542:                }
                   1543:
                   1544:                /* Now try single character with arguments. */
1.226     nicm     1545:                if (strchr("mCs=pe", cp[0]) == NULL)
1.169     nicm     1546:                        break;
                   1547:                c = cp[0];
                   1548:
                   1549:                /* No arguments provided. */
                   1550:                if (format_is_end(cp[1])) {
                   1551:                        format_add_modifier(&list, count, cp, 1, NULL, 0);
                   1552:                        cp++;
                   1553:                        continue;
                   1554:                }
                   1555:                argv = NULL;
                   1556:                argc = 0;
                   1557:
                   1558:                /* Single argument with no wrapper character. */
                   1559:                if (!ispunct(cp[1]) || cp[1] == '-') {
                   1560:                        end = format_skip(cp + 1, ":;");
                   1561:                        if (end == NULL)
                   1562:                                break;
                   1563:
                   1564:                        argv = xcalloc(1, sizeof *argv);
                   1565:                        value = xstrndup(cp + 1, end - (cp + 1));
                   1566:                        argv[0] = format_expand(ft, value);
                   1567:                        free(value);
                   1568:                        argc = 1;
                   1569:
                   1570:                        format_add_modifier(&list, count, &c, 1, argv, argc);
                   1571:                        cp = end;
                   1572:                        continue;
                   1573:                }
                   1574:
                   1575:                /* Multiple arguments with a wrapper character. */
                   1576:                last[0] = cp[1];
                   1577:                cp++;
                   1578:                do {
                   1579:                        if (cp[0] == last[0] && format_is_end(cp[1])) {
                   1580:                                cp++;
                   1581:                                break;
                   1582:                        }
                   1583:                        end = format_skip(cp + 1, last);
                   1584:                        if (end == NULL)
                   1585:                                break;
                   1586:                        cp++;
                   1587:
                   1588:                        argv = xreallocarray (argv, argc + 1, sizeof *argv);
                   1589:                        value = xstrndup(cp, end - cp);
                   1590:                        argv[argc++] = format_expand(ft, value);
                   1591:                        free(value);
                   1592:
                   1593:                        cp = end;
                   1594:                } while (!format_is_end(cp[0]));
                   1595:                format_add_modifier(&list, count, &c, 1, argv, argc);
                   1596:        }
                   1597:        if (*cp != ':') {
                   1598:                format_free_modifiers(list, *count);
                   1599:                *count = 0;
                   1600:                return (NULL);
                   1601:        }
                   1602:        *s = cp + 1;
                   1603:        return list;
                   1604: }
                   1605:
1.202     nicm     1606: /* Match against an fnmatch(3) pattern or regular expression. */
                   1607: static char *
                   1608: format_match(struct format_modifier *fm, const char *pattern, const char *text)
                   1609: {
                   1610:        const char      *s = "";
                   1611:        regex_t          r;
                   1612:        int              flags = 0;
                   1613:
                   1614:        if (fm->argc >= 1)
                   1615:                s = fm->argv[0];
                   1616:        if (strchr(s, 'r') == NULL) {
                   1617:                if (strchr(s, 'i') != NULL)
                   1618:                        flags |= FNM_CASEFOLD;
                   1619:                if (fnmatch(pattern, text, flags) != 0)
                   1620:                        return (xstrdup("0"));
                   1621:        } else {
                   1622:                flags = REG_EXTENDED|REG_NOSUB;
                   1623:                if (strchr(s, 'i') != NULL)
                   1624:                        flags |= REG_ICASE;
                   1625:                if (regcomp(&r, pattern, flags) != 0)
                   1626:                        return (xstrdup("0"));
                   1627:                if (regexec(&r, text, 0, NULL, 0) != 0) {
                   1628:                        regfree(&r);
                   1629:                        return (xstrdup("0"));
                   1630:                }
                   1631:                regfree(&r);
                   1632:        }
                   1633:        return (xstrdup("1"));
                   1634: }
                   1635:
1.169     nicm     1636: /* Perform substitution in string. */
                   1637: static char *
1.202     nicm     1638: format_sub(struct format_modifier *fm, const char *text, const char *pattern,
                   1639:     const char *with)
1.169     nicm     1640: {
1.202     nicm     1641:        char    *value;
                   1642:        int      flags = REG_EXTENDED;
1.169     nicm     1643:
1.202     nicm     1644:        if (fm->argc >= 3 && strchr(fm->argv[2], 'i') != NULL)
                   1645:                flags |= REG_ICASE;
                   1646:        value = regsub(pattern, with, text, flags);
                   1647:        if (value == NULL)
                   1648:                return (xstrdup(text));
                   1649:        return (value);
                   1650: }
1.169     nicm     1651:
1.202     nicm     1652: /* Search inside pane. */
                   1653: static char *
                   1654: format_search(struct format_modifier *fm, struct window_pane *wp, const char *s)
                   1655: {
                   1656:        int      ignore = 0, regex = 0;
                   1657:        char    *value;
1.169     nicm     1658:
1.202     nicm     1659:        if (fm->argc >= 1) {
                   1660:                if (strchr(fm->argv[0], 'i') != NULL)
                   1661:                        ignore = 1;
                   1662:                if (strchr(fm->argv[0], 'r') != NULL)
                   1663:                        regex = 1;
1.169     nicm     1664:        }
1.202     nicm     1665:        xasprintf(&value, "%u", window_pane_search(wp, s, regex, ignore));
                   1666:        return (value);
1.169     nicm     1667: }
                   1668:
1.172     nicm     1669: /* Loop over sessions. */
                   1670: static char *
                   1671: format_loop_sessions(struct format_tree *ft, const char *fmt)
                   1672: {
1.180     nicm     1673:        struct client           *c = ft->client;
1.172     nicm     1674:        struct cmdq_item        *item = ft->item;
1.180     nicm     1675:        struct format_tree      *nft;
1.172     nicm     1676:        char                    *expanded, *value;
                   1677:        size_t                   valuelen;
                   1678:        struct session          *s;
                   1679:
                   1680:        value = xcalloc(1, 1);
                   1681:        valuelen = 1;
                   1682:
                   1683:        RB_FOREACH(s, sessions, &sessions) {
1.179     nicm     1684:                format_log(ft, "session loop: $%u", s->id);
1.180     nicm     1685:                nft = format_create(c, item, FORMAT_NONE, ft->flags);
1.182     nicm     1686:                nft->loop = ft->loop;
1.180     nicm     1687:                format_defaults(nft, ft->c, s, NULL, NULL);
                   1688:                expanded = format_expand(nft, fmt);
                   1689:                format_free(nft);
1.172     nicm     1690:
                   1691:                valuelen += strlen(expanded);
                   1692:                value = xrealloc(value, valuelen);
                   1693:
                   1694:                strlcat(value, expanded, valuelen);
                   1695:                free(expanded);
                   1696:        }
                   1697:
                   1698:        return (value);
                   1699: }
                   1700:
                   1701: /* Loop over windows. */
                   1702: static char *
                   1703: format_loop_windows(struct format_tree *ft, const char *fmt)
                   1704: {
1.180     nicm     1705:        struct client           *c = ft->client;
1.172     nicm     1706:        struct cmdq_item        *item = ft->item;
1.180     nicm     1707:        struct format_tree      *nft;
1.172     nicm     1708:        char                    *all, *active, *use, *expanded, *value;
                   1709:        size_t                   valuelen;
                   1710:        struct winlink          *wl;
1.180     nicm     1711:        struct window           *w;
1.172     nicm     1712:
1.179     nicm     1713:        if (ft->s == NULL) {
                   1714:                format_log(ft, "window loop but no session");
1.172     nicm     1715:                return (NULL);
1.179     nicm     1716:        }
1.172     nicm     1717:
                   1718:        if (format_choose(ft, fmt, &all, &active, 0) != 0) {
                   1719:                all = xstrdup(fmt);
                   1720:                active = NULL;
                   1721:        }
                   1722:
                   1723:        value = xcalloc(1, 1);
                   1724:        valuelen = 1;
                   1725:
                   1726:        RB_FOREACH(wl, winlinks, &ft->s->windows) {
1.180     nicm     1727:                w = wl->window;
                   1728:                format_log(ft, "window loop: %u @%u", wl->idx, w->id);
1.172     nicm     1729:                if (active != NULL && wl == ft->s->curw)
                   1730:                        use = active;
                   1731:                else
                   1732:                        use = all;
1.180     nicm     1733:                nft = format_create(c, item, FORMAT_WINDOW|w->id, ft->flags);
1.182     nicm     1734:                nft->loop = ft->loop;
1.180     nicm     1735:                format_defaults(nft, ft->c, ft->s, wl, NULL);
                   1736:                expanded = format_expand(nft, use);
                   1737:                format_free(nft);
1.172     nicm     1738:
                   1739:                valuelen += strlen(expanded);
                   1740:                value = xrealloc(value, valuelen);
                   1741:
                   1742:                strlcat(value, expanded, valuelen);
                   1743:                free(expanded);
                   1744:        }
                   1745:
                   1746:        free(active);
                   1747:        free(all);
                   1748:
                   1749:        return (value);
                   1750: }
                   1751:
                   1752: /* Loop over panes. */
                   1753: static char *
                   1754: format_loop_panes(struct format_tree *ft, const char *fmt)
                   1755: {
1.180     nicm     1756:        struct client           *c = ft->client;
1.172     nicm     1757:        struct cmdq_item        *item = ft->item;
1.180     nicm     1758:        struct format_tree      *nft;
1.172     nicm     1759:        char                    *all, *active, *use, *expanded, *value;
                   1760:        size_t                   valuelen;
                   1761:        struct window_pane      *wp;
                   1762:
1.179     nicm     1763:        if (ft->w == NULL) {
                   1764:                format_log(ft, "pane loop but no window");
1.172     nicm     1765:                return (NULL);
1.179     nicm     1766:        }
1.172     nicm     1767:
                   1768:        if (format_choose(ft, fmt, &all, &active, 0) != 0) {
                   1769:                all = xstrdup(fmt);
                   1770:                active = NULL;
                   1771:        }
                   1772:
                   1773:        value = xcalloc(1, 1);
                   1774:        valuelen = 1;
                   1775:
                   1776:        TAILQ_FOREACH(wp, &ft->w->panes, entry) {
1.179     nicm     1777:                format_log(ft, "pane loop: %%%u", wp->id);
1.172     nicm     1778:                if (active != NULL && wp == ft->w->active)
                   1779:                        use = active;
                   1780:                else
                   1781:                        use = all;
1.180     nicm     1782:                nft = format_create(c, item, FORMAT_PANE|wp->id, ft->flags);
1.182     nicm     1783:                nft->loop = ft->loop;
1.180     nicm     1784:                format_defaults(nft, ft->c, ft->s, ft->wl, wp);
                   1785:                expanded = format_expand(nft, use);
                   1786:                format_free(nft);
1.172     nicm     1787:
                   1788:                valuelen += strlen(expanded);
                   1789:                value = xrealloc(value, valuelen);
                   1790:
                   1791:                strlcat(value, expanded, valuelen);
                   1792:                free(expanded);
                   1793:        }
                   1794:
                   1795:        free(active);
                   1796:        free(all);
                   1797:
                   1798:        return (value);
                   1799: }
                   1800:
1.226     nicm     1801: static char *
                   1802: format_replace_expression(struct format_modifier *mexp, struct format_tree *ft,
                   1803:     const char *copy)
                   1804: {
                   1805:        int              argc = mexp->argc;
                   1806:        const char      *errstr;
                   1807:        char            *endch, *value, *left = NULL, *right = NULL;
                   1808:        int              use_fp = 0;
                   1809:        u_int            prec = 0;
                   1810:        double           mleft, mright, result;
                   1811:        enum { ADD, SUBTRACT, MULTIPLY, DIVIDE, MODULUS } operator;
                   1812:
                   1813:        if (strcmp(mexp->argv[0], "+") == 0)
                   1814:                operator = ADD;
                   1815:        else if (strcmp(mexp->argv[0], "-") == 0)
                   1816:                operator = SUBTRACT;
                   1817:        else if (strcmp(mexp->argv[0], "*") == 0)
                   1818:                operator = MULTIPLY;
                   1819:        else if (strcmp(mexp->argv[0], "/") == 0)
                   1820:                operator = DIVIDE;
                   1821:        else if (strcmp(mexp->argv[0], "%") == 0 ||
                   1822:            strcmp(mexp->argv[0], "m") == 0)
                   1823:                operator = MODULUS;
                   1824:        else {
                   1825:                format_log(ft, "expression has no valid operator: '%s'",
                   1826:                    mexp->argv[0]);
                   1827:                goto fail;
                   1828:        }
                   1829:
                   1830:        /* The second argument may be flags. */
                   1831:        if (argc >= 2 && strchr(mexp->argv[1], 'f') != NULL) {
                   1832:                use_fp = 1;
                   1833:                prec = 2;
                   1834:        }
                   1835:
                   1836:        /* The third argument may be precision. */
                   1837:        if (argc >= 3) {
                   1838:                prec = strtonum(mexp->argv[2], INT_MIN, INT_MAX, &errstr);
                   1839:                if (errstr != NULL) {
                   1840:                        format_log (ft, "expression precision %s: %s", errstr,
                   1841:                            mexp->argv[2]);
                   1842:                        goto fail;
                   1843:                }
                   1844:        }
                   1845:
                   1846:        if (format_choose(ft, copy, &left, &right, 1) != 0) {
                   1847:                format_log(ft, "expression syntax error");
                   1848:                goto fail;
                   1849:        }
                   1850:
                   1851:        mleft = strtod(left, &endch);
                   1852:        if (*endch != '\0') {
                   1853:                format_log(ft, "expression left side is invalid: %s", left);
                   1854:                goto fail;
                   1855:        }
                   1856:
                   1857:        mright = strtod(right, &endch);
                   1858:        if (*endch != '\0') {
                   1859:                format_log(ft, "expression right side is invalid: %s", right);
                   1860:                goto fail;
                   1861:        }
                   1862:
                   1863:        if (!use_fp) {
                   1864:                mleft = (long long)mleft;
                   1865:                mright = (long long)mright;
                   1866:        }
                   1867:        format_log(ft, "expression left side is: %.*f", prec, mleft);
                   1868:        format_log(ft, "expression right side is:  %.*f", prec, mright);
                   1869:
                   1870:        switch (operator) {
                   1871:        case ADD:
                   1872:                result = mleft + mright;
                   1873:                break;
                   1874:        case SUBTRACT:
                   1875:                result = mleft - mright;
                   1876:                break;
                   1877:        case MULTIPLY:
                   1878:                result = mleft * mright;
                   1879:                break;
                   1880:        case DIVIDE:
                   1881:                result = mleft / mright;
                   1882:                break;
                   1883:        case MODULUS:
                   1884:                result = fmod(mleft, mright);
                   1885:                break;
                   1886:        }
                   1887:        if (use_fp)
                   1888:                xasprintf(&value, "%.*f", prec, result);
                   1889:        else
                   1890:                xasprintf(&value, "%.*f", prec, (double)(long long)result);
                   1891:        format_log(ft, "expression result is %s", value);
                   1892:
                   1893:        free(right);
                   1894:        free(left);
                   1895:        return value;
                   1896:
                   1897: fail:
                   1898:        free(right);
                   1899:        free(left);
                   1900:        return (NULL);
                   1901: }
                   1902:
1.140     nicm     1903: /* Replace a key. */
1.108     nicm     1904: static int
1.30      nicm     1905: format_replace(struct format_tree *ft, const char *key, size_t keylen,
                   1906:     char **buf, size_t *len, size_t *off)
1.1       nicm     1907: {
1.216     nicm     1908:        struct window_pane       *wp = ft->wp;
                   1909:        const char               *errptr, *copy, *cp, *marker = NULL;
                   1910:        char                     *copy0, *condition, *found, *new;
                   1911:        char                     *value, *left, *right;
                   1912:        size_t                    valuelen;
1.217     nicm     1913:        int                       modifiers = 0, limit = 0, width = 0, j;
1.216     nicm     1914:        struct format_modifier   *list, *fm, *cmp = NULL, *search = NULL;
1.226     nicm     1915:        struct format_modifier  **sub = NULL, *mexp = NULL;
1.216     nicm     1916:        u_int                     i, count, nsub = 0;
1.1       nicm     1917:
                   1918:        /* Make a copy of the key. */
1.169     nicm     1919:        copy = copy0 = xstrndup(key, keylen);
                   1920:
                   1921:        /* Process modifier list. */
                   1922:        list = format_build_modifiers(ft, &copy, &count);
                   1923:        for (i = 0; i < count; i++) {
                   1924:                fm = &list[i];
1.179     nicm     1925:                if (format_logging(ft)) {
                   1926:                        format_log(ft, "modifier %u is %s", i, fm->modifier);
                   1927:                        for (j = 0; j < fm->argc; j++) {
                   1928:                                format_log(ft, "modifier %u argument %d: %s", i,
                   1929:                                    j, fm->argv[j]);
                   1930:                        }
                   1931:                }
1.169     nicm     1932:                if (fm->size == 1) {
                   1933:                        switch (fm->modifier[0]) {
                   1934:                        case 'm':
1.195     nicm     1935:                        case '<':
                   1936:                        case '>':
1.169     nicm     1937:                                cmp = fm;
                   1938:                                break;
                   1939:                        case 'C':
                   1940:                                search = fm;
                   1941:                                break;
                   1942:                        case 's':
1.202     nicm     1943:                                if (fm->argc < 2)
1.169     nicm     1944:                                        break;
1.216     nicm     1945:                                sub = xreallocarray (sub, nsub + 1,
                   1946:                                    sizeof *sub);
                   1947:                                sub[nsub++] = fm;
1.169     nicm     1948:                                break;
                   1949:                        case '=':
1.202     nicm     1950:                                if (fm->argc < 1)
1.169     nicm     1951:                                        break;
                   1952:                                limit = strtonum(fm->argv[0], INT_MIN, INT_MAX,
                   1953:                                    &errptr);
                   1954:                                if (errptr != NULL)
                   1955:                                        limit = 0;
1.202     nicm     1956:                                if (fm->argc >= 2 && fm->argv[1] != NULL)
1.196     nicm     1957:                                        marker = fm->argv[1];
1.169     nicm     1958:                                break;
1.217     nicm     1959:                        case 'p':
                   1960:                                if (fm->argc < 1)
                   1961:                                        break;
                   1962:                                width = strtonum(fm->argv[0], INT_MIN, INT_MAX,
                   1963:                                    &errptr);
                   1964:                                if (errptr != NULL)
                   1965:                                        width = 0;
                   1966:                                break;
1.226     nicm     1967:                        case 'e':
                   1968:                                if (fm->argc < 1 || fm->argc > 3)
                   1969:                                        break;
                   1970:                            mexp = fm;
                   1971:                                break;
1.169     nicm     1972:                        case 'l':
                   1973:                                modifiers |= FORMAT_LITERAL;
                   1974:                                break;
                   1975:                        case 'b':
                   1976:                                modifiers |= FORMAT_BASENAME;
                   1977:                                break;
                   1978:                        case 'd':
                   1979:                                modifiers |= FORMAT_DIRNAME;
                   1980:                                break;
                   1981:                        case 't':
                   1982:                                modifiers |= FORMAT_TIMESTRING;
                   1983:                                break;
                   1984:                        case 'q':
                   1985:                                modifiers |= FORMAT_QUOTE;
                   1986:                                break;
1.170     nicm     1987:                        case 'E':
                   1988:                                modifiers |= FORMAT_EXPAND;
                   1989:                                break;
1.175     nicm     1990:                        case 'T':
                   1991:                                modifiers |= FORMAT_EXPANDTIME;
                   1992:                                break;
1.172     nicm     1993:                        case 'S':
                   1994:                                modifiers |= FORMAT_SESSIONS;
                   1995:                                break;
                   1996:                        case 'W':
                   1997:                                modifiers |= FORMAT_WINDOWS;
                   1998:                                break;
                   1999:                        case 'P':
                   2000:                                modifiers |= FORMAT_PANES;
                   2001:                                break;
1.169     nicm     2002:                        }
                   2003:                } else if (fm->size == 2) {
                   2004:                        if (strcmp(fm->modifier, "||") == 0 ||
                   2005:                            strcmp(fm->modifier, "&&") == 0 ||
                   2006:                            strcmp(fm->modifier, "==") == 0 ||
1.195     nicm     2007:                            strcmp(fm->modifier, "!=") == 0 ||
                   2008:                            strcmp(fm->modifier, ">=") == 0 ||
                   2009:                            strcmp(fm->modifier, "<=") == 0)
1.169     nicm     2010:                                cmp = fm;
1.98      nicm     2011:                }
1.30      nicm     2012:        }
                   2013:
1.155     nicm     2014:        /* Is this a literal string? */
1.169     nicm     2015:        if (modifiers & FORMAT_LITERAL) {
1.155     nicm     2016:                value = xstrdup(copy);
                   2017:                goto done;
                   2018:        }
                   2019:
1.172     nicm     2020:        /* Is this a loop, comparison or condition? */
                   2021:        if (modifiers & FORMAT_SESSIONS) {
                   2022:                value = format_loop_sessions(ft, copy);
                   2023:                if (value == NULL)
                   2024:                        goto fail;
                   2025:        } else if (modifiers & FORMAT_WINDOWS) {
                   2026:                value = format_loop_windows(ft, copy);
                   2027:                if (value == NULL)
                   2028:                        goto fail;
                   2029:        } else if (modifiers & FORMAT_PANES) {
                   2030:                value = format_loop_panes(ft, copy);
                   2031:                if (value == NULL)
                   2032:                        goto fail;
                   2033:        } else if (search != NULL) {
1.140     nicm     2034:                /* Search in pane. */
1.207     nicm     2035:                new = format_expand(ft, copy);
1.179     nicm     2036:                if (wp == NULL) {
1.207     nicm     2037:                        format_log(ft, "search '%s' but no pane", new);
1.140     nicm     2038:                        value = xstrdup("0");
1.179     nicm     2039:                } else {
1.207     nicm     2040:                        format_log(ft, "search '%s' pane %%%u", new,  wp->id);
                   2041:                        value = format_search(fm, wp, new);
1.179     nicm     2042:                }
1.207     nicm     2043:                free(new);
1.169     nicm     2044:        } else if (cmp != NULL) {
                   2045:                /* Comparison of left and right. */
1.179     nicm     2046:                if (format_choose(ft, copy, &left, &right, 1) != 0) {
                   2047:                        format_log(ft, "compare %s syntax error: %s",
                   2048:                            cmp->modifier, copy);
1.114     nicm     2049:                        goto fail;
1.179     nicm     2050:                }
                   2051:                format_log(ft, "compare %s left is: %s", cmp->modifier, left);
                   2052:                format_log(ft, "compare %s right is: %s", cmp->modifier, right);
1.169     nicm     2053:
                   2054:                if (strcmp(cmp->modifier, "||") == 0) {
                   2055:                        if (format_true(left) || format_true(right))
                   2056:                                value = xstrdup("1");
                   2057:                        else
                   2058:                                value = xstrdup("0");
                   2059:                } else if (strcmp(cmp->modifier, "&&") == 0) {
                   2060:                        if (format_true(left) && format_true(right))
                   2061:                                value = xstrdup("1");
                   2062:                        else
                   2063:                                value = xstrdup("0");
                   2064:                } else if (strcmp(cmp->modifier, "==") == 0) {
                   2065:                        if (strcmp(left, right) == 0)
                   2066:                                value = xstrdup("1");
                   2067:                        else
                   2068:                                value = xstrdup("0");
                   2069:                } else if (strcmp(cmp->modifier, "!=") == 0) {
                   2070:                        if (strcmp(left, right) != 0)
                   2071:                                value = xstrdup("1");
                   2072:                        else
                   2073:                                value = xstrdup("0");
1.195     nicm     2074:                } else if (strcmp(cmp->modifier, "<") == 0) {
                   2075:                        if (strcmp(left, right) < 0)
                   2076:                                value = xstrdup("1");
                   2077:                        else
                   2078:                                value = xstrdup("0");
                   2079:                } else if (strcmp(cmp->modifier, ">") == 0) {
                   2080:                        if (strcmp(left, right) > 0)
                   2081:                                value = xstrdup("1");
                   2082:                        else
                   2083:                                value = xstrdup("0");
                   2084:                } else if (strcmp(cmp->modifier, "<=") == 0) {
                   2085:                        if (strcmp(left, right) <= 0)
                   2086:                                value = xstrdup("1");
                   2087:                        else
                   2088:                                value = xstrdup("0");
                   2089:                } else if (strcmp(cmp->modifier, ">=") == 0) {
                   2090:                        if (strcmp(left, right) >= 0)
                   2091:                                value = xstrdup("1");
                   2092:                        else
                   2093:                                value = xstrdup("0");
1.202     nicm     2094:                } else if (strcmp(cmp->modifier, "m") == 0)
1.204     nicm     2095:                        value = format_match(cmp, left, right);
1.169     nicm     2096:
1.114     nicm     2097:                free(right);
                   2098:                free(left);
                   2099:        } else if (*copy == '?') {
                   2100:                /* Conditional: check first and choose second or third. */
1.169     nicm     2101:                cp = format_skip(copy + 1, ",");
1.179     nicm     2102:                if (cp == NULL) {
                   2103:                        format_log(ft, "condition syntax error: %s", copy + 1);
1.1       nicm     2104:                        goto fail;
1.179     nicm     2105:                }
1.169     nicm     2106:                condition = xstrndup(copy + 1, cp - (copy + 1));
1.179     nicm     2107:                format_log(ft, "condition is: %s", condition);
1.1       nicm     2108:
1.169     nicm     2109:                found = format_find(ft, condition, modifiers);
1.156     nicm     2110:                if (found == NULL) {
                   2111:                        /*
1.169     nicm     2112:                         * If the condition not found, try to expand it. If
1.156     nicm     2113:                         * the expansion doesn't have any effect, then assume
                   2114:                         * false.
                   2115:                         */
1.169     nicm     2116:                        found = format_expand(ft, condition);
                   2117:                        if (strcmp(found, condition) == 0) {
1.156     nicm     2118:                                free(found);
                   2119:                                found = xstrdup("");
1.179     nicm     2120:                                format_log(ft, "condition '%s' found: %s",
                   2121:                                    condition, found);
                   2122:                        } else {
                   2123:                                format_log(ft,
                   2124:                                    "condition '%s' not found; assuming false",
                   2125:                                    condition);
1.156     nicm     2126:                        }
1.179     nicm     2127:                } else
                   2128:                        format_log(ft, "condition '%s' found", condition);
1.169     nicm     2129:
                   2130:                if (format_choose(ft, cp + 1, &left, &right, 0) != 0) {
1.179     nicm     2131:                        format_log(ft, "condition '%s' syntax error: %s",
                   2132:                            condition, cp + 1);
1.162     nicm     2133:                        free(found);
1.89      nicm     2134:                        goto fail;
1.162     nicm     2135:                }
1.179     nicm     2136:                if (format_true(found)) {
                   2137:                        format_log(ft, "condition '%s' is true", condition);
1.114     nicm     2138:                        value = format_expand(ft, left);
1.179     nicm     2139:                } else {
                   2140:                        format_log(ft, "condition '%s' is false", condition);
1.114     nicm     2141:                        value = format_expand(ft, right);
1.179     nicm     2142:                }
1.169     nicm     2143:                free(right);
                   2144:                free(left);
                   2145:
1.179     nicm     2146:                free(condition);
1.98      nicm     2147:                free(found);
1.226     nicm     2148:        } else if (mexp != NULL) {
                   2149:                value = format_replace_expression(mexp, ft, copy);
                   2150:                if (value == NULL)
                   2151:                        value = xstrdup("");
1.1       nicm     2152:        } else {
1.114     nicm     2153:                /* Neither: look up directly. */
1.98      nicm     2154:                value = format_find(ft, copy, modifiers);
1.179     nicm     2155:                if (value == NULL) {
                   2156:                        format_log(ft, "format '%s' not found", copy);
1.98      nicm     2157:                        value = xstrdup("");
1.179     nicm     2158:                } else
                   2159:                        format_log(ft, "format '%s' found: %s", copy, value);
1.170     nicm     2160:        }
                   2161:
1.171     nicm     2162: done:
1.170     nicm     2163:        /* Expand again if required. */
                   2164:        if (modifiers & FORMAT_EXPAND) {
                   2165:                new = format_expand(ft, value);
1.175     nicm     2166:                free(value);
                   2167:                value = new;
                   2168:        }
                   2169:        else if (modifiers & FORMAT_EXPANDTIME) {
1.177     nicm     2170:                new = format_expand_time(ft, value);
1.170     nicm     2171:                free(value);
                   2172:                value = new;
1.98      nicm     2173:        }
                   2174:
                   2175:        /* Perform substitution if any. */
1.216     nicm     2176:        for (i = 0; i < nsub; i++) {
                   2177:                left = format_expand(ft, sub[i]->argv[0]);
                   2178:                right = format_expand(ft, sub[i]->argv[1]);
                   2179:                new = format_sub(sub[i], value, left, right);
1.207     nicm     2180:                format_log(ft, "substitute '%s' to '%s': %s", left, right, new);
1.98      nicm     2181:                free(value);
1.169     nicm     2182:                value = new;
1.207     nicm     2183:                free(right);
                   2184:                free(left);
1.1       nicm     2185:        }
                   2186:
1.30      nicm     2187:        /* Truncate the value if needed. */
1.105     nicm     2188:        if (limit > 0) {
1.185     nicm     2189:                new = format_trim_left(value, limit);
1.196     nicm     2190:                if (marker != NULL && strcmp(new, value) != 0) {
                   2191:                        free(value);
                   2192:                        xasprintf(&value, "%s%s", new, marker);
                   2193:                } else {
                   2194:                        free(value);
                   2195:                        value = new;
                   2196:                }
                   2197:                format_log(ft, "applied length limit %d: %s", limit, value);
1.105     nicm     2198:        } else if (limit < 0) {
1.185     nicm     2199:                new = format_trim_right(value, -limit);
1.196     nicm     2200:                if (marker != NULL && strcmp(new, value) != 0) {
                   2201:                        free(value);
                   2202:                        xasprintf(&value, "%s%s", marker, new);
                   2203:                } else {
                   2204:                        free(value);
                   2205:                        value = new;
                   2206:                }
                   2207:                format_log(ft, "applied length limit %d: %s", limit, value);
1.217     nicm     2208:        }
                   2209:
                   2210:        /* Pad the value if needed. */
                   2211:        if (width > 0) {
                   2212:                new = utf8_padcstr(value, width);
                   2213:                free(value);
                   2214:                value = new;
                   2215:                format_log(ft, "applied padding width %d: %s", width, value);
                   2216:        } else if (width < 0) {
                   2217:                new = utf8_rpadcstr(value, -width);
                   2218:                free(value);
                   2219:                value = new;
                   2220:                format_log(ft, "applied padding width %d: %s", width, value);
1.44      nicm     2221:        }
1.30      nicm     2222:
1.1       nicm     2223:        /* Expand the buffer and copy in the value. */
1.98      nicm     2224:        valuelen = strlen(value);
1.1       nicm     2225:        while (*len - *off < valuelen + 1) {
1.50      nicm     2226:                *buf = xreallocarray(*buf, 2, *len);
1.1       nicm     2227:                *len *= 2;
                   2228:        }
                   2229:        memcpy(*buf + *off, value, valuelen);
                   2230:        *off += valuelen;
                   2231:
1.179     nicm     2232:        format_log(ft, "replaced '%s' with '%s'", copy0, value);
1.98      nicm     2233:        free(value);
1.179     nicm     2234:
1.216     nicm     2235:        free(sub);
1.169     nicm     2236:        format_free_modifiers(list, count);
1.30      nicm     2237:        free(copy0);
1.1       nicm     2238:        return (0);
                   2239:
                   2240: fail:
1.179     nicm     2241:        format_log(ft, "failed %s", copy0);
1.216     nicm     2242:
                   2243:        free(sub);
1.169     nicm     2244:        format_free_modifiers(list, count);
1.30      nicm     2245:        free(copy0);
1.1       nicm     2246:        return (-1);
                   2247: }
                   2248:
                   2249: /* Expand keys in a template. */
1.179     nicm     2250: static char *
                   2251: format_expand1(struct format_tree *ft, const char *fmt, int time)
1.1       nicm     2252: {
1.152     nicm     2253:        char            *buf, *out, *name;
1.179     nicm     2254:        const char      *ptr, *s;
1.86      nicm     2255:        size_t           off, len, n, outlen;
1.31      nicm     2256:        int              ch, brackets;
1.179     nicm     2257:        struct tm       *tm;
                   2258:        char             expanded[8192];
1.58      nicm     2259:
1.179     nicm     2260:        if (fmt == NULL || *fmt == '\0')
1.58      nicm     2261:                return (xstrdup(""));
1.1       nicm     2262:
1.178     nicm     2263:        if (ft->loop == FORMAT_LOOP_LIMIT)
                   2264:                return (xstrdup(""));
                   2265:        ft->loop++;
                   2266:
1.179     nicm     2267:        format_log(ft, "expanding format: %s", fmt);
                   2268:
                   2269:        if (time) {
                   2270:                tm = localtime(&ft->time);
                   2271:                if (strftime(expanded, sizeof expanded, fmt, tm) == 0) {
                   2272:                        format_log(ft, "format is too long");
                   2273:                        return (xstrdup(""));
                   2274:                }
                   2275:                if (format_logging(ft) && strcmp(expanded, fmt) != 0)
                   2276:                        format_log(ft, "after time expanded: %s", expanded);
                   2277:                fmt = expanded;
                   2278:        }
                   2279:
1.1       nicm     2280:        len = 64;
                   2281:        buf = xmalloc(len);
                   2282:        off = 0;
                   2283:
                   2284:        while (*fmt != '\0') {
                   2285:                if (*fmt != '#') {
                   2286:                        while (len - off < 2) {
1.50      nicm     2287:                                buf = xreallocarray(buf, 2, len);
1.1       nicm     2288:                                len *= 2;
                   2289:                        }
                   2290:                        buf[off++] = *fmt++;
                   2291:                        continue;
                   2292:                }
                   2293:                fmt++;
                   2294:
1.179     nicm     2295:                ch = (u_char)*fmt++;
1.1       nicm     2296:                switch (ch) {
1.68      nicm     2297:                case '(':
                   2298:                        brackets = 1;
                   2299:                        for (ptr = fmt; *ptr != '\0'; ptr++) {
                   2300:                                if (*ptr == '(')
                   2301:                                        brackets++;
                   2302:                                if (*ptr == ')' && --brackets == 0)
                   2303:                                        break;
                   2304:                        }
                   2305:                        if (*ptr != ')' || brackets != 0)
                   2306:                                break;
                   2307:                        n = ptr - fmt;
                   2308:
1.179     nicm     2309:                        name = xstrndup(fmt, n);
                   2310:                        format_log(ft, "found #(): %s", name);
                   2311:
                   2312:                        if (ft->flags & FORMAT_NOJOBS) {
1.114     nicm     2313:                                out = xstrdup("");
1.179     nicm     2314:                                format_log(ft, "#() is disabled");
                   2315:                        } else {
1.152     nicm     2316:                                out = format_job_get(ft, name);
1.179     nicm     2317:                                format_log(ft, "#() result: %s", out);
1.152     nicm     2318:                        }
1.179     nicm     2319:                        free(name);
                   2320:
1.86      nicm     2321:                        outlen = strlen(out);
                   2322:                        while (len - off < outlen + 1) {
1.68      nicm     2323:                                buf = xreallocarray(buf, 2, len);
                   2324:                                len *= 2;
                   2325:                        }
1.86      nicm     2326:                        memcpy(buf + off, out, outlen);
                   2327:                        off += outlen;
                   2328:
                   2329:                        free(out);
1.68      nicm     2330:
                   2331:                        fmt += n + 1;
                   2332:                        continue;
1.1       nicm     2333:                case '{':
1.169     nicm     2334:                        ptr = format_skip((char *)fmt - 2, "}");
1.155     nicm     2335:                        if (ptr == NULL)
1.1       nicm     2336:                                break;
                   2337:                        n = ptr - fmt;
                   2338:
1.179     nicm     2339:                        format_log(ft, "found #{}: %.*s", (int)n, fmt);
1.1       nicm     2340:                        if (format_replace(ft, fmt, n, &buf, &len, &off) != 0)
                   2341:                                break;
                   2342:                        fmt += n + 1;
1.40      nicm     2343:                        continue;
1.155     nicm     2344:                case '}':
1.40      nicm     2345:                case '#':
1.155     nicm     2346:                case ',':
1.179     nicm     2347:                        format_log(ft, "found #%c", ch);
1.40      nicm     2348:                        while (len - off < 2) {
1.50      nicm     2349:                                buf = xreallocarray(buf, 2, len);
1.40      nicm     2350:                                len *= 2;
                   2351:                        }
1.155     nicm     2352:                        buf[off++] = ch;
1.1       nicm     2353:                        continue;
                   2354:                default:
1.25      nicm     2355:                        s = NULL;
                   2356:                        if (ch >= 'A' && ch <= 'Z')
                   2357:                                s = format_upper[ch - 'A'];
                   2358:                        else if (ch >= 'a' && ch <= 'z')
                   2359:                                s = format_lower[ch - 'a'];
                   2360:                        if (s == NULL) {
                   2361:                                while (len - off < 3) {
1.50      nicm     2362:                                        buf = xreallocarray(buf, 2, len);
1.25      nicm     2363:                                        len *= 2;
1.1       nicm     2364:                                }
1.25      nicm     2365:                                buf[off++] = '#';
                   2366:                                buf[off++] = ch;
                   2367:                                continue;
1.1       nicm     2368:                        }
1.25      nicm     2369:                        n = strlen(s);
1.179     nicm     2370:                        format_log(ft, "found #%c: %s", ch, s);
1.25      nicm     2371:                        if (format_replace(ft, s, n, &buf, &len, &off) != 0)
                   2372:                                break;
1.1       nicm     2373:                        continue;
                   2374:                }
                   2375:
                   2376:                break;
                   2377:        }
                   2378:        buf[off] = '\0';
                   2379:
1.179     nicm     2380:        format_log(ft, "result is: %s", buf);
                   2381:        ft->loop--;
1.178     nicm     2382:
1.1       nicm     2383:        return (buf);
1.179     nicm     2384: }
                   2385:
                   2386: /* Expand keys in a template, passing through strftime first. */
                   2387: char *
                   2388: format_expand_time(struct format_tree *ft, const char *fmt)
                   2389: {
                   2390:        return (format_expand1(ft, fmt, 1));
                   2391: }
                   2392:
                   2393: /* Expand keys in a template. */
                   2394: char *
                   2395: format_expand(struct format_tree *ft, const char *fmt)
                   2396: {
                   2397:        return (format_expand1(ft, fmt, 0));
1.123     nicm     2398: }
                   2399:
                   2400: /* Expand a single string. */
                   2401: char *
                   2402: format_single(struct cmdq_item *item, const char *fmt, struct client *c,
                   2403:     struct session *s, struct winlink *wl, struct window_pane *wp)
                   2404: {
                   2405:        struct format_tree      *ft;
                   2406:        char                    *expanded;
                   2407:
1.131     nicm     2408:        if (item != NULL)
                   2409:                ft = format_create(item->client, item, FORMAT_NONE, 0);
                   2410:        else
                   2411:                ft = format_create(NULL, item, FORMAT_NONE, 0);
1.123     nicm     2412:        format_defaults(ft, c, s, wl, wp);
                   2413:
                   2414:        expanded = format_expand(ft, fmt);
                   2415:        format_free(ft);
                   2416:        return (expanded);
1.1       nicm     2417: }
                   2418:
1.57      nicm     2419: /* Set defaults for any of arguments that are not NULL. */
                   2420: void
                   2421: format_defaults(struct format_tree *ft, struct client *c, struct session *s,
                   2422:     struct winlink *wl, struct window_pane *wp)
                   2423: {
1.230   ! nicm     2424:        struct paste_buffer     *pb;
        !          2425:
1.205     nicm     2426:        if (c != NULL && c->name != NULL)
1.187     nicm     2427:                log_debug("%s: c=%s", __func__, c->name);
                   2428:        else
1.205     nicm     2429:                log_debug("%s: c=none", __func__);
1.187     nicm     2430:        if (s != NULL)
                   2431:                log_debug("%s: s=$%u", __func__, s->id);
                   2432:        else
                   2433:                log_debug("%s: s=none", __func__);
                   2434:        if (wl != NULL)
                   2435:                log_debug("%s: wl=%u w=@%u", __func__, wl->idx, wl->window->id);
                   2436:        else
                   2437:                log_debug("%s: wl=none", __func__);
                   2438:        if (wp != NULL)
                   2439:                log_debug("%s: wp=%%%u", __func__, wp->id);
                   2440:        else
                   2441:                log_debug("%s: wp=none", __func__);
                   2442:
1.154     nicm     2443:        if (c != NULL && s != NULL && c->session != s)
                   2444:                log_debug("%s: session does not match", __func__);
                   2445:
1.146     nicm     2446:        format_add(ft, "session_format", "%d", s != NULL);
                   2447:        format_add(ft, "window_format", "%d", wl != NULL);
                   2448:        format_add(ft, "pane_format", "%d", wp != NULL);
                   2449:
1.57      nicm     2450:        if (s == NULL && c != NULL)
                   2451:                s = c->session;
                   2452:        if (wl == NULL && s != NULL)
                   2453:                wl = s->curw;
                   2454:        if (wp == NULL && wl != NULL)
                   2455:                wp = wl->window->active;
                   2456:
                   2457:        if (c != NULL)
                   2458:                format_defaults_client(ft, c);
                   2459:        if (s != NULL)
                   2460:                format_defaults_session(ft, s);
1.129     nicm     2461:        if (wl != NULL)
                   2462:                format_defaults_winlink(ft, wl);
1.57      nicm     2463:        if (wp != NULL)
                   2464:                format_defaults_pane(ft, wp);
1.230   ! nicm     2465:
        !          2466:        pb = paste_get_top (NULL);
        !          2467:        if (pb != NULL)
        !          2468:                format_defaults_paste_buffer(ft, pb);
1.57      nicm     2469: }
                   2470:
1.1       nicm     2471: /* Set default format keys for a session. */
1.108     nicm     2472: static void
1.57      nicm     2473: format_defaults_session(struct format_tree *ft, struct session *s)
1.1       nicm     2474: {
                   2475:        struct session_group    *sg;
                   2476:
1.54      nicm     2477:        ft->s = s;
                   2478:
1.1       nicm     2479:        format_add(ft, "session_name", "%s", s->name);
                   2480:        format_add(ft, "session_windows", "%u", winlink_count(&s->windows));
1.23      nicm     2481:        format_add(ft, "session_id", "$%u", s->id);
1.1       nicm     2482:
1.122     nicm     2483:        sg = session_group_contains(s);
1.1       nicm     2484:        format_add(ft, "session_grouped", "%d", sg != NULL);
1.148     nicm     2485:        if (sg != NULL) {
1.122     nicm     2486:                format_add(ft, "session_group", "%s", sg->name);
1.148     nicm     2487:                format_add(ft, "session_group_size", "%u",
                   2488:                    session_group_count (sg));
1.221     nicm     2489:                format_add(ft, "session_group_attached", "%u",
                   2490:                    session_group_attached_count (sg));
                   2491:                format_add(ft, "session_group_many_attached", "%u",
                   2492:                    session_group_attached_count (sg) > 1);
1.150     nicm     2493:                format_add_cb(ft, "session_group_list",
                   2494:                    format_cb_session_group_list);
1.221     nicm     2495:                format_add_cb(ft, "session_group_attached_list",
                   2496:                    format_cb_session_group_attached_list);
1.148     nicm     2497:        }
1.1       nicm     2498:
1.87      nicm     2499:        format_add_tv(ft, "session_created", &s->creation_time);
                   2500:        format_add_tv(ft, "session_last_attached", &s->last_attached_time);
                   2501:        format_add_tv(ft, "session_activity", &s->activity_time);
1.1       nicm     2502:
1.41      nicm     2503:        format_add(ft, "session_attached", "%u", s->attached);
1.59      nicm     2504:        format_add(ft, "session_many_attached", "%d", s->attached > 1);
1.221     nicm     2505:        format_add_cb(ft, "session_attached_list",
                   2506:            format_cb_session_attached_list);
1.66      nicm     2507:
1.80      nicm     2508:        format_add_cb(ft, "session_alerts", format_cb_session_alerts);
1.133     nicm     2509:        format_add_cb(ft, "session_stack", format_cb_session_stack);
1.3       nicm     2510: }
                   2511:
                   2512: /* Set default format keys for a client. */
1.108     nicm     2513: static void
1.57      nicm     2514: format_defaults_client(struct format_tree *ft, struct client *c)
1.3       nicm     2515: {
1.60      nicm     2516:        struct session  *s;
1.103     nicm     2517:        const char      *name;
1.115     nicm     2518:        struct tty      *tty = &c->tty;
1.3       nicm     2519:
1.54      nicm     2520:        if (ft->s == NULL)
                   2521:                ft->s = c->session;
1.164     nicm     2522:        ft->c = c;
1.54      nicm     2523:
1.124     nicm     2524:        format_add(ft, "client_name", "%s", c->name);
1.72      nicm     2525:        format_add(ft, "client_pid", "%ld", (long) c->pid);
1.115     nicm     2526:        format_add(ft, "client_height", "%u", tty->sy);
                   2527:        format_add(ft, "client_width", "%u", tty->sx);
1.218     nicm     2528:        format_add(ft, "client_cell_width", "%u", tty->xpixel);
                   2529:        format_add(ft, "client_cell_height", "%u", tty->ypixel);
1.124     nicm     2530:        format_add(ft, "client_tty", "%s", c->ttyname);
1.75      nicm     2531:        format_add(ft, "client_control_mode", "%d",
                   2532:                !!(c->flags & CLIENT_CONTROL));
1.3       nicm     2533:
1.115     nicm     2534:        if (tty->term_name != NULL)
                   2535:                format_add(ft, "client_termname", "%s", tty->term_name);
                   2536:
1.87      nicm     2537:        format_add_tv(ft, "client_created", &c->creation_time);
                   2538:        format_add_tv(ft, "client_activity", &c->activity_time);
1.126     nicm     2539:
                   2540:        format_add(ft, "client_written", "%zu", c->written);
                   2541:        format_add(ft, "client_discarded", "%zu", c->discarded);
1.14      nicm     2542:
1.103     nicm     2543:        name = server_client_get_key_table(c);
                   2544:        if (strcmp(c->keytable->name, name) == 0)
1.61      nicm     2545:                format_add(ft, "client_prefix", "%d", 0);
                   2546:        else
                   2547:                format_add(ft, "client_prefix", "%d", 1);
                   2548:        format_add(ft, "client_key_table", "%s", c->keytable->name);
1.3       nicm     2549:
1.115     nicm     2550:        if (tty->flags & TTY_UTF8)
1.3       nicm     2551:                format_add(ft, "client_utf8", "%d", 1);
                   2552:        else
                   2553:                format_add(ft, "client_utf8", "%d", 0);
                   2554:
                   2555:        if (c->flags & CLIENT_READONLY)
                   2556:                format_add(ft, "client_readonly", "%d", 1);
                   2557:        else
                   2558:                format_add(ft, "client_readonly", "%d", 0);
1.15      nicm     2559:
                   2560:        s = c->session;
                   2561:        if (s != NULL)
                   2562:                format_add(ft, "client_session", "%s", s->name);
                   2563:        s = c->last_session;
                   2564:        if (s != NULL && session_alive(s))
                   2565:                format_add(ft, "client_last_session", "%s", s->name);
1.1       nicm     2566: }
                   2567:
1.32      nicm     2568: /* Set default format keys for a window. */
                   2569: void
1.57      nicm     2570: format_defaults_window(struct format_tree *ft, struct window *w)
1.32      nicm     2571: {
1.54      nicm     2572:        ft->w = w;
                   2573:
1.87      nicm     2574:        format_add_tv(ft, "window_activity", &w->activity_time);
1.32      nicm     2575:        format_add(ft, "window_id", "@%u", w->id);
                   2576:        format_add(ft, "window_name", "%s", w->name);
                   2577:        format_add(ft, "window_width", "%u", w->sx);
                   2578:        format_add(ft, "window_height", "%u", w->sy);
1.219     nicm     2579:        format_add(ft, "window_cell_width", "%u", w->xpixel);
                   2580:        format_add(ft, "window_cell_height", "%u", w->ypixel);
1.80      nicm     2581:        format_add_cb(ft, "window_layout", format_cb_window_layout);
1.96      nicm     2582:        format_add_cb(ft, "window_visible_layout",
                   2583:            format_cb_window_visible_layout);
1.32      nicm     2584:        format_add(ft, "window_panes", "%u", window_count_panes(w));
1.59      nicm     2585:        format_add(ft, "window_zoomed_flag", "%d",
1.53      nicm     2586:            !!(w->flags & WINDOW_ZOOMED));
1.32      nicm     2587: }
                   2588:
1.1       nicm     2589: /* Set default format keys for a winlink. */
1.108     nicm     2590: static void
1.129     nicm     2591: format_defaults_winlink(struct format_tree *ft, struct winlink *wl)
1.1       nicm     2592: {
1.164     nicm     2593:        struct client   *c = ft->c;
1.129     nicm     2594:        struct session  *s = wl->session;
1.1       nicm     2595:        struct window   *w = wl->window;
1.164     nicm     2596:        int              flag;
                   2597:        u_int            ox, oy, sx, sy;
1.1       nicm     2598:
1.54      nicm     2599:        if (ft->w == NULL)
                   2600:                ft->w = wl->window;
1.133     nicm     2601:        ft->wl = wl;
1.54      nicm     2602:
1.57      nicm     2603:        format_defaults_window(ft, w);
1.32      nicm     2604:
1.164     nicm     2605:        if (c != NULL) {
                   2606:                flag = tty_window_offset(&c->tty, &ox, &oy, &sx, &sy);
                   2607:                format_add(ft, "window_bigger", "%d", flag);
                   2608:                if (flag) {
                   2609:                        format_add(ft, "window_offset_x", "%u", ox);
                   2610:                        format_add(ft, "window_offset_y", "%u", oy);
                   2611:                }
                   2612:        }
                   2613:
1.1       nicm     2614:        format_add(ft, "window_index", "%d", wl->idx);
1.133     nicm     2615:        format_add_cb(ft, "window_stack_index", format_cb_window_stack_index);
1.129     nicm     2616:        format_add(ft, "window_flags", "%s", window_printable_flags(wl));
1.1       nicm     2617:        format_add(ft, "window_active", "%d", wl == s->curw);
1.221     nicm     2618:        format_add_cb(ft, "window_active_sessions",
                   2619:            format_cb_window_active_sessions);
                   2620:        format_add_cb(ft, "window_active_sessions_list",
                   2621:            format_cb_window_active_sessions_list);
                   2622:        format_add_cb(ft, "window_active_clients",
                   2623:            format_cb_window_active_clients);
                   2624:        format_add_cb(ft, "window_active_clients_list",
                   2625:            format_cb_window_active_clients_list);
1.176     nicm     2626:
                   2627:        format_add(ft, "window_start_flag", "%d",
                   2628:            !!(wl == RB_MIN(winlinks, &s->windows)));
                   2629:        format_add(ft, "window_end_flag", "%d",
                   2630:            !!(wl == RB_MAX(winlinks, &s->windows)));
1.210     nicm     2631:
                   2632:        if (server_check_marked() && marked_pane.wl == wl)
                   2633:            format_add(ft, "window_marked_flag", "1");
                   2634:        else
                   2635:            format_add(ft, "window_marked_flag", "0");
1.29      nicm     2636:
1.59      nicm     2637:        format_add(ft, "window_bell_flag", "%d",
1.29      nicm     2638:            !!(wl->flags & WINLINK_BELL));
1.59      nicm     2639:        format_add(ft, "window_activity_flag", "%d",
1.29      nicm     2640:            !!(wl->flags & WINLINK_ACTIVITY));
1.59      nicm     2641:        format_add(ft, "window_silence_flag", "%d",
1.29      nicm     2642:            !!(wl->flags & WINLINK_SILENCE));
1.59      nicm     2643:        format_add(ft, "window_last_flag", "%d",
1.49      nicm     2644:            !!(wl == TAILQ_FIRST(&s->lastw)));
1.64      nicm     2645:        format_add(ft, "window_linked", "%d", session_is_linked(s, wl->window));
1.221     nicm     2646:
                   2647:        format_add_cb(ft, "window_linked_sessions_list",
                   2648:            format_cb_window_linked_sessions_list);
                   2649:        format_add(ft, "window_linked_sessions", "%u",
                   2650:            wl->window->references);
1.1       nicm     2651: }
                   2652:
                   2653: /* Set default format keys for a window pane. */
                   2654: void
1.57      nicm     2655: format_defaults_pane(struct format_tree *ft, struct window_pane *wp)
1.1       nicm     2656: {
1.168     nicm     2657:        struct window                   *w = wp->window;
                   2658:        struct grid                     *gd = wp->base.grid;
                   2659:        int                              status = wp->status;
                   2660:        u_int                            idx;
                   2661:        struct window_mode_entry        *wme;
1.54      nicm     2662:
                   2663:        if (ft->w == NULL)
1.159     nicm     2664:                ft->w = w;
1.79      nicm     2665:        ft->wp = wp;
1.1       nicm     2666:
1.16      nicm     2667:        format_add(ft, "history_size", "%u", gd->hsize);
                   2668:        format_add(ft, "history_limit", "%u", gd->hlimit);
1.80      nicm     2669:        format_add_cb(ft, "history_bytes", format_cb_history_bytes);
1.1       nicm     2670:
1.4       nicm     2671:        if (window_pane_index(wp, &idx) != 0)
                   2672:                fatalx("index not found");
1.16      nicm     2673:        format_add(ft, "pane_index", "%u", idx);
1.4       nicm     2674:
1.1       nicm     2675:        format_add(ft, "pane_width", "%u", wp->sx);
                   2676:        format_add(ft, "pane_height", "%u", wp->sy);
                   2677:        format_add(ft, "pane_title", "%s", wp->base.title);
1.215     nicm     2678:        if (wp->base.path != NULL)
                   2679:            format_add(ft, "pane_path", "%s", wp->base.path);
1.1       nicm     2680:        format_add(ft, "pane_id", "%%%u", wp->id);
1.159     nicm     2681:        format_add(ft, "pane_active", "%d", wp == w->active);
1.55      nicm     2682:        format_add(ft, "pane_input_off", "%d", !!(wp->flags & PANE_INPUTOFF));
1.143     nicm     2683:        format_add(ft, "pane_pipe", "%d", wp->pipe_fd != -1);
1.55      nicm     2684:
1.147     nicm     2685:        if ((wp->flags & PANE_STATUSREADY) && WIFEXITED(status))
1.55      nicm     2686:                format_add(ft, "pane_dead_status", "%d", WEXITSTATUS(status));
1.190     nicm     2687:        if (~wp->flags & PANE_EMPTY)
                   2688:                format_add(ft, "pane_dead", "%d", wp->fd == -1);
                   2689:        else
                   2690:                format_add(ft, "pane_dead", "0");
1.191     nicm     2691:
                   2692:        if (server_check_marked() && marked_pane.wp == wp)
                   2693:                format_add(ft, "pane_marked", "1");
                   2694:        else
                   2695:                format_add(ft, "pane_marked", "0");
                   2696:        format_add(ft, "pane_marked_set", "%d", server_check_marked());
1.47      nicm     2697:
1.164     nicm     2698:        format_add(ft, "pane_left", "%u", wp->xoff);
                   2699:        format_add(ft, "pane_top", "%u", wp->yoff);
                   2700:        format_add(ft, "pane_right", "%u", wp->xoff + wp->sx - 1);
                   2701:        format_add(ft, "pane_bottom", "%u", wp->yoff + wp->sy - 1);
                   2702:        format_add(ft, "pane_at_left", "%d", wp->xoff == 0);
1.225     nicm     2703:        format_add_cb(ft, "pane_at_top", format_cb_pane_at_top);
1.164     nicm     2704:        format_add(ft, "pane_at_right", "%d", wp->xoff + wp->sx == w->sx);
1.225     nicm     2705:        format_add_cb(ft, "pane_at_bottom", format_cb_pane_at_bottom);
1.16      nicm     2706:
1.168     nicm     2707:        wme = TAILQ_FIRST(&wp->modes);
                   2708:        if (wme != NULL) {
                   2709:                format_add(ft, "pane_mode", "%s", wme->mode->name);
                   2710:                if (wme->mode->formats != NULL)
                   2711:                        wme->mode->formats(wme, ft);
                   2712:        }
                   2713:        format_add_cb(ft, "pane_in_mode", format_cb_pane_in_mode);
1.134     nicm     2714:
1.26      nicm     2715:        format_add(ft, "pane_synchronized", "%d",
1.159     nicm     2716:            !!options_get_number(w->options, "synchronize-panes"));
1.135     nicm     2717:        if (wp->searchstr != NULL)
                   2718:                format_add(ft, "pane_search_string", "%s", wp->searchstr);
1.16      nicm     2719:
1.71      nicm     2720:        format_add(ft, "pane_tty", "%s", wp->tty);
1.16      nicm     2721:        format_add(ft, "pane_pid", "%ld", (long) wp->pid);
1.79      nicm     2722:        format_add_cb(ft, "pane_start_command", format_cb_start_command);
                   2723:        format_add_cb(ft, "pane_current_command", format_cb_current_command);
1.16      nicm     2724:
1.59      nicm     2725:        format_add(ft, "cursor_x", "%u", wp->base.cx);
                   2726:        format_add(ft, "cursor_y", "%u", wp->base.cy);
1.186     nicm     2727:        format_add_cb(ft, "cursor_character", format_cb_cursor_character);
                   2728:
1.59      nicm     2729:        format_add(ft, "scroll_region_upper", "%u", wp->base.rupper);
                   2730:        format_add(ft, "scroll_region_lower", "%u", wp->base.rlower);
1.16      nicm     2731:
                   2732:        format_add(ft, "alternate_on", "%d", wp->saved_grid ? 1 : 0);
1.59      nicm     2733:        format_add(ft, "alternate_saved_x", "%u", wp->saved_cx);
                   2734:        format_add(ft, "alternate_saved_y", "%u", wp->saved_cy);
1.16      nicm     2735:
                   2736:        format_add(ft, "cursor_flag", "%d",
                   2737:            !!(wp->base.mode & MODE_CURSOR));
                   2738:        format_add(ft, "insert_flag", "%d",
                   2739:            !!(wp->base.mode & MODE_INSERT));
                   2740:        format_add(ft, "keypad_cursor_flag", "%d",
                   2741:            !!(wp->base.mode & MODE_KCURSOR));
                   2742:        format_add(ft, "keypad_flag", "%d",
                   2743:            !!(wp->base.mode & MODE_KKEYPAD));
                   2744:        format_add(ft, "wrap_flag", "%d",
                   2745:            !!(wp->base.mode & MODE_WRAP));
1.208     nicm     2746:        format_add(ft, "origin_flag", "%d",
                   2747:            !!(wp->base.mode & MODE_ORIGIN));
1.16      nicm     2748:
1.62      nicm     2749:        format_add(ft, "mouse_any_flag", "%d",
1.119     nicm     2750:            !!(wp->base.mode & ALL_MOUSE_MODES));
1.16      nicm     2751:        format_add(ft, "mouse_standard_flag", "%d",
                   2752:            !!(wp->base.mode & MODE_MOUSE_STANDARD));
                   2753:        format_add(ft, "mouse_button_flag", "%d",
                   2754:            !!(wp->base.mode & MODE_MOUSE_BUTTON));
1.119     nicm     2755:        format_add(ft, "mouse_all_flag", "%d",
                   2756:            !!(wp->base.mode & MODE_MOUSE_ALL));
1.208     nicm     2757:        format_add(ft, "mouse_utf8_flag", "%d",
                   2758:            !!(wp->base.mode & MODE_MOUSE_UTF8));
                   2759:        format_add(ft, "mouse_sgr_flag", "%d",
                   2760:            !!(wp->base.mode & MODE_MOUSE_SGR));
1.19      nicm     2761:
1.80      nicm     2762:        format_add_cb(ft, "pane_tabs", format_cb_pane_tabs);
1.8       nicm     2763: }
                   2764:
1.19      nicm     2765: /* Set default format keys for paste buffer. */
1.8       nicm     2766: void
1.94      nicm     2767: format_defaults_paste_buffer(struct format_tree *ft, struct paste_buffer *pb)
1.8       nicm     2768: {
1.146     nicm     2769:        struct timeval   tv;
                   2770:        size_t           size;
                   2771:        char            *s;
                   2772:
                   2773:        timerclear(&tv);
                   2774:        tv.tv_sec = paste_buffer_created(pb);
                   2775:        paste_buffer_data(pb, &size);
1.8       nicm     2776:
1.146     nicm     2777:        format_add(ft, "buffer_size", "%zu", size);
1.81      nicm     2778:        format_add(ft, "buffer_name", "%s", paste_buffer_name(pb));
1.146     nicm     2779:        format_add_tv(ft, "buffer_created", &tv);
1.8       nicm     2780:
1.94      nicm     2781:        s = paste_make_sample(pb);
1.42      nicm     2782:        format_add(ft, "buffer_sample", "%s", s);
                   2783:        free(s);
1.1       nicm     2784: }