4 * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
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.
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.
19 #include <sys/types.h>
38 * Build a list of key-value pairs and use them to expand #{key} entries in a
42 struct format_expand_state
;
44 static char *format_job_get(struct format_expand_state
*, const char *);
45 static char *format_expand1(struct format_expand_state
*, const char *);
46 static int format_replace(struct format_expand_state
*, const char *,
47 size_t, char **, size_t *, size_t *);
48 static void format_defaults_session(struct format_tree
*,
50 static void format_defaults_client(struct format_tree
*, struct client
*);
51 static void format_defaults_winlink(struct format_tree
*,
54 /* Entry in format job tree. */
56 struct client
*client
;
68 RB_ENTRY(format_job
) entry
;
71 /* Format job tree. */
72 static int format_job_cmp(struct format_job
*, struct format_job
*);
73 static RB_HEAD(format_job_tree
, format_job
) format_jobs
= RB_INITIALIZER();
74 RB_GENERATE_STATIC(format_job_tree
, format_job
, entry
, format_job_cmp
);
76 /* Format job tree comparison function. */
78 format_job_cmp(struct format_job
*fj1
, struct format_job
*fj2
)
80 if (fj1
->tag
< fj2
->tag
)
82 if (fj1
->tag
> fj2
->tag
)
84 return (strcmp(fj1
->cmd
, fj2
->cmd
));
87 /* Format modifiers. */
88 #define FORMAT_TIMESTRING 0x1
89 #define FORMAT_BASENAME 0x2
90 #define FORMAT_DIRNAME 0x4
91 #define FORMAT_QUOTE_SHELL 0x8
92 #define FORMAT_LITERAL 0x10
93 #define FORMAT_EXPAND 0x20
94 #define FORMAT_EXPANDTIME 0x40
95 #define FORMAT_SESSIONS 0x80
96 #define FORMAT_WINDOWS 0x100
97 #define FORMAT_PANES 0x200
98 #define FORMAT_PRETTY 0x400
99 #define FORMAT_LENGTH 0x800
100 #define FORMAT_WIDTH 0x1000
101 #define FORMAT_QUOTE_STYLE 0x2000
102 #define FORMAT_WINDOW_NAME 0x4000
103 #define FORMAT_SESSION_NAME 0x8000
104 #define FORMAT_CHARACTER 0x10000
105 #define FORMAT_COLOUR 0x20000
106 #define FORMAT_CLIENTS 0x40000
108 /* Limit on recursion. */
109 #define FORMAT_LOOP_LIMIT 100
111 /* Format expand flags. */
112 #define FORMAT_EXPAND_TIME 0x1
113 #define FORMAT_EXPAND_NOJOBS 0x2
115 /* Entry in format tree. */
116 struct format_entry
{
121 RB_ENTRY(format_entry
) entry
;
133 enum format_type type
;
139 struct window_pane
*wp
;
140 struct paste_buffer
*pb
;
142 struct cmdq_item
*item
;
143 struct client
*client
;
147 struct mouse_event m
;
149 RB_HEAD(format_entry_tree
, format_entry
) tree
;
151 static int format_entry_cmp(struct format_entry
*, struct format_entry
*);
152 RB_GENERATE_STATIC(format_entry_tree
, format_entry
, entry
, format_entry_cmp
);
154 /* Format expand state. */
155 struct format_expand_state
{
156 struct format_tree
*ft
;
163 /* Format modifier. */
164 struct format_modifier
{
172 /* Format entry tree comparison function. */
174 format_entry_cmp(struct format_entry
*fe1
, struct format_entry
*fe2
)
176 return (strcmp(fe1
->key
, fe2
->key
));
179 /* Single-character uppercase aliases. */
180 static const char *format_upper
[] = {
186 "window_flags", /* F */
189 "window_index", /* I */
196 "pane_index", /* P */
199 "session_name", /* S */
200 "pane_title", /* T */
203 "window_name", /* W */
209 /* Single-character lowercase aliases. */
210 static const char *format_lower
[] = {
218 "host_short", /* h */
239 /* Is logging enabled? */
241 format_logging(struct format_tree
*ft
)
243 return (log_get_level() != 0 || (ft
->flags
& FORMAT_VERBOSE
));
246 /* Log a message if verbose. */
247 static void printflike(3, 4)
248 format_log1(struct format_expand_state
*es
, const char *from
, const char *fmt
,
251 struct format_tree
*ft
= es
->ft
;
254 static const char spaces
[] = " ";
256 if (!format_logging(ft
))
260 xvasprintf(&s
, fmt
, ap
);
263 log_debug("%s: %s", from
, s
);
264 if (ft
->item
!= NULL
&& (ft
->flags
& FORMAT_VERBOSE
))
265 cmdq_print(ft
->item
, "#%.*s%s", es
->loop
, spaces
, s
);
269 #define format_log(es, fmt, ...) format_log1(es, __func__, fmt, ##__VA_ARGS__)
271 /* Copy expand state. */
273 format_copy_state(struct format_expand_state
*to
,
274 struct format_expand_state
*from
, int flags
)
277 to
->loop
= from
->loop
;
278 to
->time
= from
->time
;
279 memcpy(&to
->tm
, &from
->tm
, sizeof to
->tm
);
280 to
->flags
= from
->flags
|flags
;
283 /* Format job update callback. */
285 format_job_update(struct job
*job
)
287 struct format_job
*fj
= job_get_data(job
);
288 struct evbuffer
*evb
= job_get_event(job
)->input
;
289 char *line
= NULL
, *next
;
292 while ((next
= evbuffer_readline(evb
)) != NULL
) {
303 log_debug("%s: %p %s: %s", __func__
, fj
, fj
->cmd
, fj
->out
);
306 if (fj
->status
&& fj
->last
!= t
) {
307 if (fj
->client
!= NULL
)
308 server_status_client(fj
->client
);
313 /* Format job complete callback. */
315 format_job_complete(struct job
*job
)
317 struct format_job
*fj
= job_get_data(job
);
318 struct evbuffer
*evb
= job_get_event(job
)->input
;
325 if ((line
= evbuffer_readline(evb
)) == NULL
) {
326 len
= EVBUFFER_LENGTH(evb
);
327 buf
= xmalloc(len
+ 1);
329 memcpy(buf
, EVBUFFER_DATA(evb
), len
);
334 log_debug("%s: %p %s: %s", __func__
, fj
, fj
->cmd
, buf
);
336 if (*buf
!= '\0' || !fj
->updated
) {
343 if (fj
->client
!= NULL
)
344 server_status_client(fj
->client
);
351 format_job_get(struct format_expand_state
*es
, const char *cmd
)
353 struct format_tree
*ft
= es
->ft
;
354 struct format_job_tree
*jobs
;
355 struct format_job fj0
, *fj
;
359 struct format_expand_state next
;
361 if (ft
->client
== NULL
)
363 else if (ft
->client
->jobs
!= NULL
)
364 jobs
= ft
->client
->jobs
;
366 jobs
= ft
->client
->jobs
= xmalloc(sizeof *ft
->client
->jobs
);
372 if ((fj
= RB_FIND(format_job_tree
, jobs
, &fj0
)) == NULL
) {
373 fj
= xcalloc(1, sizeof *fj
);
374 fj
->client
= ft
->client
;
376 fj
->cmd
= xstrdup(cmd
);
378 RB_INSERT(format_job_tree
, jobs
, fj
);
381 format_copy_state(&next
, es
, FORMAT_EXPAND_NOJOBS
);
382 next
.flags
&= ~FORMAT_EXPAND_TIME
;
384 expanded
= format_expand1(&next
, cmd
);
385 if (fj
->expanded
== NULL
|| strcmp(expanded
, fj
->expanded
) != 0) {
386 free((void *)fj
->expanded
);
387 fj
->expanded
= xstrdup(expanded
);
390 force
= (ft
->flags
& FORMAT_FORCE
);
393 if (force
&& fj
->job
!= NULL
)
395 if (force
|| (fj
->job
== NULL
&& fj
->last
!= t
)) {
396 fj
->job
= job_run(expanded
, 0, NULL
, NULL
, NULL
,
397 server_client_get_cwd(ft
->client
, NULL
), format_job_update
,
398 format_job_complete
, NULL
, fj
, JOB_NOWAIT
, -1, -1);
399 if (fj
->job
== NULL
) {
401 xasprintf(&fj
->out
, "<'%s' didn't start>", fj
->cmd
);
405 } else if (fj
->job
!= NULL
&& (t
- fj
->last
) > 1 && fj
->out
== NULL
)
406 xasprintf(&fj
->out
, "<'%s' not ready>", fj
->cmd
);
409 if (ft
->flags
& FORMAT_STATUS
)
412 return (xstrdup(""));
413 return (format_expand1(&next
, fj
->out
));
416 /* Remove old jobs. */
418 format_job_tidy(struct format_job_tree
*jobs
, int force
)
420 struct format_job
*fj
, *fj1
;
424 RB_FOREACH_SAFE(fj
, format_job_tree
, jobs
, fj1
) {
425 if (!force
&& (fj
->last
> now
|| now
- fj
->last
< 3600))
427 RB_REMOVE(format_job_tree
, jobs
, fj
);
429 log_debug("%s: %s", __func__
, fj
->cmd
);
434 free((void *)fj
->expanded
);
435 free((void *)fj
->cmd
);
442 /* Tidy old jobs for all clients. */
444 format_tidy_jobs(void)
448 format_job_tidy(&format_jobs
, 0);
449 TAILQ_FOREACH(c
, &clients
, entry
) {
451 format_job_tidy(c
->jobs
, 0);
455 /* Remove old jobs for client. */
457 format_lost_client(struct client
*c
)
460 format_job_tidy(c
->jobs
, 1);
464 /* Wrapper for asprintf. */
465 static char * printflike(1, 2)
466 format_printf(const char *fmt
, ...)
472 xvasprintf(&s
, fmt
, ap
);
477 /* Callback for host. */
479 format_cb_host(__unused
struct format_tree
*ft
)
481 char host
[HOST_NAME_MAX
+ 1];
483 if (gethostname(host
, sizeof host
) != 0)
484 return (xstrdup(""));
485 return (xstrdup(host
));
488 /* Callback for host_short. */
490 format_cb_host_short(__unused
struct format_tree
*ft
)
492 char host
[HOST_NAME_MAX
+ 1], *cp
;
494 if (gethostname(host
, sizeof host
) != 0)
495 return (xstrdup(""));
496 if ((cp
= strchr(host
, '.')) != NULL
)
498 return (xstrdup(host
));
501 /* Callback for pid. */
503 format_cb_pid(__unused
struct format_tree
*ft
)
507 xasprintf(&value
, "%ld", (long)getpid());
511 /* Callback for session_attached_list. */
513 format_cb_session_attached_list(struct format_tree
*ft
)
515 struct session
*s
= ft
->s
;
517 struct evbuffer
*buffer
;
524 buffer
= evbuffer_new();
526 fatalx("out of memory");
528 TAILQ_FOREACH(loop
, &clients
, entry
) {
529 if (loop
->session
== s
) {
530 if (EVBUFFER_LENGTH(buffer
) > 0)
531 evbuffer_add(buffer
, ",", 1);
532 evbuffer_add_printf(buffer
, "%s", loop
->name
);
536 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
537 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
538 evbuffer_free(buffer
);
542 /* Callback for session_alerts. */
544 format_cb_session_alerts(struct format_tree
*ft
)
546 struct session
*s
= ft
->s
;
548 char alerts
[1024], tmp
[16];
554 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
555 if ((wl
->flags
& WINLINK_ALERTFLAGS
) == 0)
557 xsnprintf(tmp
, sizeof tmp
, "%u", wl
->idx
);
560 strlcat(alerts
, ",", sizeof alerts
);
561 strlcat(alerts
, tmp
, sizeof alerts
);
562 if (wl
->flags
& WINLINK_ACTIVITY
)
563 strlcat(alerts
, "#", sizeof alerts
);
564 if (wl
->flags
& WINLINK_BELL
)
565 strlcat(alerts
, "!", sizeof alerts
);
566 if (wl
->flags
& WINLINK_SILENCE
)
567 strlcat(alerts
, "~", sizeof alerts
);
569 return (xstrdup(alerts
));
572 /* Callback for session_stack. */
574 format_cb_session_stack(struct format_tree
*ft
)
576 struct session
*s
= ft
->s
;
578 char result
[1024], tmp
[16];
583 xsnprintf(result
, sizeof result
, "%u", s
->curw
->idx
);
584 TAILQ_FOREACH(wl
, &s
->lastw
, sentry
) {
585 xsnprintf(tmp
, sizeof tmp
, "%u", wl
->idx
);
588 strlcat(result
, ",", sizeof result
);
589 strlcat(result
, tmp
, sizeof result
);
591 return (xstrdup(result
));
594 /* Callback for window_stack_index. */
596 format_cb_window_stack_index(struct format_tree
*ft
)
608 TAILQ_FOREACH(wl
, &s
->lastw
, sentry
) {
614 return (xstrdup("0"));
615 xasprintf(&value
, "%u", idx
);
619 /* Callback for window_linked_sessions_list. */
621 format_cb_window_linked_sessions_list(struct format_tree
*ft
)
625 struct evbuffer
*buffer
;
633 buffer
= evbuffer_new();
635 fatalx("out of memory");
637 TAILQ_FOREACH(wl
, &w
->winlinks
, wentry
) {
638 if (EVBUFFER_LENGTH(buffer
) > 0)
639 evbuffer_add(buffer
, ",", 1);
640 evbuffer_add_printf(buffer
, "%s", wl
->session
->name
);
643 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
644 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
645 evbuffer_free(buffer
);
649 /* Callback for window_active_sessions. */
651 format_cb_window_active_sessions(struct format_tree
*ft
)
662 TAILQ_FOREACH(wl
, &w
->winlinks
, wentry
) {
663 if (wl
->session
->curw
== wl
)
667 xasprintf(&value
, "%u", n
);
671 /* Callback for window_active_sessions_list. */
673 format_cb_window_active_sessions_list(struct format_tree
*ft
)
677 struct evbuffer
*buffer
;
685 buffer
= evbuffer_new();
687 fatalx("out of memory");
689 TAILQ_FOREACH(wl
, &w
->winlinks
, wentry
) {
690 if (wl
->session
->curw
== wl
) {
691 if (EVBUFFER_LENGTH(buffer
) > 0)
692 evbuffer_add(buffer
, ",", 1);
693 evbuffer_add_printf(buffer
, "%s", wl
->session
->name
);
697 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
698 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
699 evbuffer_free(buffer
);
703 /* Callback for window_active_clients. */
705 format_cb_window_active_clients(struct format_tree
*ft
)
709 struct session
*client_session
;
717 TAILQ_FOREACH(loop
, &clients
, entry
) {
718 client_session
= loop
->session
;
719 if (client_session
== NULL
)
722 if (w
== client_session
->curw
->window
)
726 xasprintf(&value
, "%u", n
);
730 /* Callback for window_active_clients_list. */
732 format_cb_window_active_clients_list(struct format_tree
*ft
)
736 struct session
*client_session
;
737 struct evbuffer
*buffer
;
745 buffer
= evbuffer_new();
747 fatalx("out of memory");
749 TAILQ_FOREACH(loop
, &clients
, entry
) {
750 client_session
= loop
->session
;
751 if (client_session
== NULL
)
754 if (w
== client_session
->curw
->window
) {
755 if (EVBUFFER_LENGTH(buffer
) > 0)
756 evbuffer_add(buffer
, ",", 1);
757 evbuffer_add_printf(buffer
, "%s", loop
->name
);
761 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
762 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
763 evbuffer_free(buffer
);
767 /* Callback for window_layout. */
769 format_cb_window_layout(struct format_tree
*ft
)
771 struct window
*w
= ft
->w
;
776 if (w
->saved_layout_root
!= NULL
)
777 return (layout_dump(w
->saved_layout_root
));
778 return (layout_dump(w
->layout_root
));
781 /* Callback for window_visible_layout. */
783 format_cb_window_visible_layout(struct format_tree
*ft
)
785 struct window
*w
= ft
->w
;
790 return (layout_dump(w
->layout_root
));
793 /* Callback for pane_start_command. */
795 format_cb_start_command(struct format_tree
*ft
)
797 struct window_pane
*wp
= ft
->wp
;
802 return (cmd_stringify_argv(wp
->argc
, wp
->argv
));
805 /* Callback for pane_start_path. */
807 format_cb_start_path(struct format_tree
*ft
)
809 struct window_pane
*wp
= ft
->wp
;
815 return (xstrdup(""));
816 return (xstrdup(wp
->cwd
));
819 /* Callback for pane_current_command. */
821 format_cb_current_command(struct format_tree
*ft
)
823 struct window_pane
*wp
= ft
->wp
;
826 if (wp
== NULL
|| wp
->shell
== NULL
)
829 cmd
= get_proc_name(wp
->fd
, wp
->tty
);
830 if (cmd
== NULL
|| *cmd
== '\0') {
832 cmd
= cmd_stringify_argv(wp
->argc
, wp
->argv
);
833 if (cmd
== NULL
|| *cmd
== '\0') {
835 cmd
= xstrdup(wp
->shell
);
838 value
= parse_window_name(cmd
);
843 /* Callback for pane_current_path. */
845 format_cb_current_path(struct format_tree
*ft
)
847 struct window_pane
*wp
= ft
->wp
;
853 cwd
= get_proc_cwd(wp
->fd
);
856 return (xstrdup(cwd
));
859 /* Callback for history_bytes. */
861 format_cb_history_bytes(struct format_tree
*ft
)
863 struct window_pane
*wp
= ft
->wp
;
865 struct grid_line
*gl
;
874 for (i
= 0; i
< gd
->hsize
+ gd
->sy
; i
++) {
875 gl
= grid_get_line(gd
, i
);
876 size
+= gl
->cellsize
* sizeof *gl
->celldata
;
877 size
+= gl
->extdsize
* sizeof *gl
->extddata
;
879 size
+= (gd
->hsize
+ gd
->sy
) * sizeof *gl
;
881 xasprintf(&value
, "%zu", size
);
885 /* Callback for history_all_bytes. */
887 format_cb_history_all_bytes(struct format_tree
*ft
)
889 struct window_pane
*wp
= ft
->wp
;
891 struct grid_line
*gl
;
892 u_int i
, lines
, cells
= 0, extended_cells
= 0;
899 lines
= gd
->hsize
+ gd
->sy
;
900 for (i
= 0; i
< lines
; i
++) {
901 gl
= grid_get_line(gd
, i
);
902 cells
+= gl
->cellsize
;
903 extended_cells
+= gl
->extdsize
;
906 xasprintf(&value
, "%u,%zu,%u,%zu,%u,%zu", lines
,
907 lines
* sizeof *gl
, cells
, cells
* sizeof *gl
->celldata
,
908 extended_cells
, extended_cells
* sizeof *gl
->extddata
);
912 /* Callback for pane_tabs. */
914 format_cb_pane_tabs(struct format_tree
*ft
)
916 struct window_pane
*wp
= ft
->wp
;
917 struct evbuffer
*buffer
;
925 buffer
= evbuffer_new();
927 fatalx("out of memory");
928 for (i
= 0; i
< wp
->base
.grid
->sx
; i
++) {
929 if (!bit_test(wp
->base
.tabs
, i
))
932 if (EVBUFFER_LENGTH(buffer
) > 0)
933 evbuffer_add(buffer
, ",", 1);
934 evbuffer_add_printf(buffer
, "%u", i
);
936 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
937 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
938 evbuffer_free(buffer
);
942 /* Callback for pane_fg. */
944 format_cb_pane_fg(struct format_tree
*ft
)
946 struct window_pane
*wp
= ft
->wp
;
952 tty_default_colours(&gc
, wp
);
953 return (xstrdup(colour_tostring(gc
.fg
)));
956 /* Callback for pane_bg. */
958 format_cb_pane_bg(struct format_tree
*ft
)
960 struct window_pane
*wp
= ft
->wp
;
966 tty_default_colours(&gc
, wp
);
967 return (xstrdup(colour_tostring(gc
.bg
)));
970 /* Callback for session_group_list. */
972 format_cb_session_group_list(struct format_tree
*ft
)
974 struct session
*s
= ft
->s
;
975 struct session_group
*sg
;
976 struct session
*loop
;
977 struct evbuffer
*buffer
;
983 sg
= session_group_contains(s
);
987 buffer
= evbuffer_new();
989 fatalx("out of memory");
991 TAILQ_FOREACH(loop
, &sg
->sessions
, gentry
) {
992 if (EVBUFFER_LENGTH(buffer
) > 0)
993 evbuffer_add(buffer
, ",", 1);
994 evbuffer_add_printf(buffer
, "%s", loop
->name
);
997 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
998 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
999 evbuffer_free(buffer
);
1003 /* Callback for session_group_attached_list. */
1005 format_cb_session_group_attached_list(struct format_tree
*ft
)
1007 struct session
*s
= ft
->s
, *client_session
, *session_loop
;
1008 struct session_group
*sg
;
1009 struct client
*loop
;
1010 struct evbuffer
*buffer
;
1016 sg
= session_group_contains(s
);
1020 buffer
= evbuffer_new();
1022 fatalx("out of memory");
1024 TAILQ_FOREACH(loop
, &clients
, entry
) {
1025 client_session
= loop
->session
;
1026 if (client_session
== NULL
)
1028 TAILQ_FOREACH(session_loop
, &sg
->sessions
, gentry
) {
1029 if (session_loop
== client_session
){
1030 if (EVBUFFER_LENGTH(buffer
) > 0)
1031 evbuffer_add(buffer
, ",", 1);
1032 evbuffer_add_printf(buffer
, "%s", loop
->name
);
1037 if ((size
= EVBUFFER_LENGTH(buffer
)) != 0)
1038 xasprintf(&value
, "%.*s", size
, EVBUFFER_DATA(buffer
));
1039 evbuffer_free(buffer
);
1043 /* Callback for pane_in_mode. */
1045 format_cb_pane_in_mode(struct format_tree
*ft
)
1047 struct window_pane
*wp
= ft
->wp
;
1049 struct window_mode_entry
*wme
;
1055 TAILQ_FOREACH(wme
, &wp
->modes
, entry
)
1057 xasprintf(&value
, "%u", n
);
1061 /* Callback for pane_at_top. */
1063 format_cb_pane_at_top(struct format_tree
*ft
)
1065 struct window_pane
*wp
= ft
->wp
;
1074 status
= options_get_number(w
->options
, "pane-border-status");
1075 if (status
== PANE_STATUS_TOP
)
1076 flag
= (wp
->yoff
== 1);
1078 flag
= (wp
->yoff
== 0);
1079 xasprintf(&value
, "%d", flag
);
1083 /* Callback for pane_at_bottom. */
1085 format_cb_pane_at_bottom(struct format_tree
*ft
)
1087 struct window_pane
*wp
= ft
->wp
;
1096 status
= options_get_number(w
->options
, "pane-border-status");
1097 if (status
== PANE_STATUS_BOTTOM
)
1098 flag
= (wp
->yoff
+ wp
->sy
== w
->sy
- 1);
1100 flag
= (wp
->yoff
+ wp
->sy
== w
->sy
);
1101 xasprintf(&value
, "%d", flag
);
1105 /* Callback for cursor_character. */
1107 format_cb_cursor_character(struct format_tree
*ft
)
1109 struct window_pane
*wp
= ft
->wp
;
1110 struct grid_cell gc
;
1116 grid_view_get_cell(wp
->base
.grid
, wp
->base
.cx
, wp
->base
.cy
, &gc
);
1117 if (~gc
.flags
& GRID_FLAG_PADDING
)
1118 xasprintf(&value
, "%.*s", (int)gc
.data
.size
, gc
.data
.data
);
1122 /* Callback for mouse_word. */
1124 format_cb_mouse_word(struct format_tree
*ft
)
1126 struct window_pane
*wp
;
1133 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1136 if (cmd_mouse_at(wp
, &ft
->m
, &x
, &y
, 0) != 0)
1139 if (!TAILQ_EMPTY(&wp
->modes
)) {
1140 if (TAILQ_FIRST(&wp
->modes
)->mode
== &window_copy_mode
||
1141 TAILQ_FIRST(&wp
->modes
)->mode
== &window_view_mode
)
1142 return (s
= window_copy_get_word(wp
, x
, y
));
1146 return (format_grid_word(gd
, x
, gd
->hsize
+ y
));
1149 /* Callback for mouse_hyperlink. */
1151 format_cb_mouse_hyperlink(struct format_tree
*ft
)
1153 struct window_pane
*wp
;
1159 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1162 if (cmd_mouse_at(wp
, &ft
->m
, &x
, &y
, 0) != 0)
1165 return (format_grid_hyperlink(gd
, x
, gd
->hsize
+ y
, wp
->screen
));
1168 /* Callback for mouse_line. */
1170 format_cb_mouse_line(struct format_tree
*ft
)
1172 struct window_pane
*wp
;
1178 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1181 if (cmd_mouse_at(wp
, &ft
->m
, &x
, &y
, 0) != 0)
1184 if (!TAILQ_EMPTY(&wp
->modes
)) {
1185 if (TAILQ_FIRST(&wp
->modes
)->mode
== &window_copy_mode
||
1186 TAILQ_FIRST(&wp
->modes
)->mode
== &window_view_mode
)
1187 return (window_copy_get_line(wp
, y
));
1191 return (format_grid_line(gd
, gd
->hsize
+ y
));
1194 /* Callback for alternate_on. */
1196 format_cb_alternate_on(struct format_tree
*ft
)
1198 if (ft
->wp
!= NULL
) {
1199 if (ft
->wp
->base
.saved_grid
!= NULL
)
1200 return (xstrdup("1"));
1201 return (xstrdup("0"));
1206 /* Callback for alternate_saved_x. */
1208 format_cb_alternate_saved_x(struct format_tree
*ft
)
1211 return (format_printf("%u", ft
->wp
->base
.saved_cx
));
1215 /* Callback for alternate_saved_y. */
1217 format_cb_alternate_saved_y(struct format_tree
*ft
)
1220 return (format_printf("%u", ft
->wp
->base
.saved_cy
));
1224 /* Callback for buffer_name. */
1226 format_cb_buffer_name(struct format_tree
*ft
)
1229 return (xstrdup(paste_buffer_name(ft
->pb
)));
1233 /* Callback for buffer_sample. */
1235 format_cb_buffer_sample(struct format_tree
*ft
)
1238 return (paste_make_sample(ft
->pb
));
1242 /* Callback for buffer_size. */
1244 format_cb_buffer_size(struct format_tree
*ft
)
1248 if (ft
->pb
!= NULL
) {
1249 paste_buffer_data(ft
->pb
, &size
);
1250 return (format_printf("%zu", size
));
1255 /* Callback for client_cell_height. */
1257 format_cb_client_cell_height(struct format_tree
*ft
)
1259 if (ft
->c
!= NULL
&& (ft
->c
->tty
.flags
& TTY_STARTED
))
1260 return (format_printf("%u", ft
->c
->tty
.ypixel
));
1264 /* Callback for client_cell_width. */
1266 format_cb_client_cell_width(struct format_tree
*ft
)
1268 if (ft
->c
!= NULL
&& (ft
->c
->tty
.flags
& TTY_STARTED
))
1269 return (format_printf("%u", ft
->c
->tty
.xpixel
));
1273 /* Callback for client_control_mode. */
1275 format_cb_client_control_mode(struct format_tree
*ft
)
1277 if (ft
->c
!= NULL
) {
1278 if (ft
->c
->flags
& CLIENT_CONTROL
)
1279 return (xstrdup("1"));
1280 return (xstrdup("0"));
1285 /* Callback for client_discarded. */
1287 format_cb_client_discarded(struct format_tree
*ft
)
1290 return (format_printf("%zu", ft
->c
->discarded
));
1294 /* Callback for client_flags. */
1296 format_cb_client_flags(struct format_tree
*ft
)
1299 return (xstrdup(server_client_get_flags(ft
->c
)));
1303 /* Callback for client_height. */
1305 format_cb_client_height(struct format_tree
*ft
)
1307 if (ft
->c
!= NULL
&& (ft
->c
->tty
.flags
& TTY_STARTED
))
1308 return (format_printf("%u", ft
->c
->tty
.sy
));
1312 /* Callback for client_key_table. */
1314 format_cb_client_key_table(struct format_tree
*ft
)
1317 return (xstrdup(ft
->c
->keytable
->name
));
1321 /* Callback for client_last_session. */
1323 format_cb_client_last_session(struct format_tree
*ft
)
1325 if (ft
->c
!= NULL
&&
1326 ft
->c
->last_session
!= NULL
&&
1327 session_alive(ft
->c
->last_session
))
1328 return (xstrdup(ft
->c
->last_session
->name
));
1332 /* Callback for client_name. */
1334 format_cb_client_name(struct format_tree
*ft
)
1337 return (xstrdup(ft
->c
->name
));
1341 /* Callback for client_pid. */
1343 format_cb_client_pid(struct format_tree
*ft
)
1346 return (format_printf("%ld", (long)ft
->c
->pid
));
1350 /* Callback for client_prefix. */
1352 format_cb_client_prefix(struct format_tree
*ft
)
1356 if (ft
->c
!= NULL
) {
1357 name
= server_client_get_key_table(ft
->c
);
1358 if (strcmp(ft
->c
->keytable
->name
, name
) == 0)
1359 return (xstrdup("0"));
1360 return (xstrdup("1"));
1365 /* Callback for client_readonly. */
1367 format_cb_client_readonly(struct format_tree
*ft
)
1369 if (ft
->c
!= NULL
) {
1370 if (ft
->c
->flags
& CLIENT_READONLY
)
1371 return (xstrdup("1"));
1372 return (xstrdup("0"));
1377 /* Callback for client_session. */
1379 format_cb_client_session(struct format_tree
*ft
)
1381 if (ft
->c
!= NULL
&& ft
->c
->session
!= NULL
)
1382 return (xstrdup(ft
->c
->session
->name
));
1386 /* Callback for client_termfeatures. */
1388 format_cb_client_termfeatures(struct format_tree
*ft
)
1391 return (xstrdup(tty_get_features(ft
->c
->term_features
)));
1395 /* Callback for client_termname. */
1397 format_cb_client_termname(struct format_tree
*ft
)
1400 return (xstrdup(ft
->c
->term_name
));
1404 /* Callback for client_termtype. */
1406 format_cb_client_termtype(struct format_tree
*ft
)
1408 if (ft
->c
!= NULL
) {
1409 if (ft
->c
->term_type
== NULL
)
1410 return (xstrdup(""));
1411 return (xstrdup(ft
->c
->term_type
));
1416 /* Callback for client_tty. */
1418 format_cb_client_tty(struct format_tree
*ft
)
1421 return (xstrdup(ft
->c
->ttyname
));
1425 /* Callback for client_uid. */
1427 format_cb_client_uid(struct format_tree
*ft
)
1431 if (ft
->c
!= NULL
) {
1432 uid
= proc_get_peer_uid(ft
->c
->peer
);
1433 if (uid
!= (uid_t
)-1)
1434 return (format_printf("%ld", (long)uid
));
1439 /* Callback for client_user. */
1441 format_cb_client_user(struct format_tree
*ft
)
1446 if (ft
->c
!= NULL
) {
1447 uid
= proc_get_peer_uid(ft
->c
->peer
);
1448 if (uid
!= (uid_t
)-1 && (pw
= getpwuid(uid
)) != NULL
)
1449 return (xstrdup(pw
->pw_name
));
1454 /* Callback for client_utf8. */
1456 format_cb_client_utf8(struct format_tree
*ft
)
1458 if (ft
->c
!= NULL
) {
1459 if (ft
->c
->flags
& CLIENT_UTF8
)
1460 return (xstrdup("1"));
1461 return (xstrdup("0"));
1466 /* Callback for client_width. */
1468 format_cb_client_width(struct format_tree
*ft
)
1471 return (format_printf("%u", ft
->c
->tty
.sx
));
1475 /* Callback for client_written. */
1477 format_cb_client_written(struct format_tree
*ft
)
1480 return (format_printf("%zu", ft
->c
->written
));
1484 /* Callback for config_files. */
1486 format_cb_config_files(__unused
struct format_tree
*ft
)
1493 for (i
= 0; i
< cfg_nfiles
; i
++) {
1494 n
= strlen(cfg_files
[i
]) + 1;
1495 s
= xrealloc(s
, slen
+ n
+ 1);
1496 slen
+= xsnprintf(s
+ slen
, n
+ 1, "%s,", cfg_files
[i
]);
1499 return (xstrdup(""));
1504 /* Callback for cursor_flag. */
1506 format_cb_cursor_flag(struct format_tree
*ft
)
1508 if (ft
->wp
!= NULL
) {
1509 if (ft
->wp
->base
.mode
& MODE_CURSOR
)
1510 return (xstrdup("1"));
1511 return (xstrdup("0"));
1516 /* Callback for cursor_x. */
1518 format_cb_cursor_x(struct format_tree
*ft
)
1521 return (format_printf("%u", ft
->wp
->base
.cx
));
1525 /* Callback for cursor_y. */
1527 format_cb_cursor_y(struct format_tree
*ft
)
1530 return (format_printf("%u", ft
->wp
->base
.cy
));
1534 /* Callback for history_limit. */
1536 format_cb_history_limit(struct format_tree
*ft
)
1539 return (format_printf("%u", ft
->wp
->base
.grid
->hlimit
));
1543 /* Callback for history_size. */
1545 format_cb_history_size(struct format_tree
*ft
)
1548 return (format_printf("%u", ft
->wp
->base
.grid
->hsize
));
1552 /* Callback for insert_flag. */
1554 format_cb_insert_flag(struct format_tree
*ft
)
1556 if (ft
->wp
!= NULL
) {
1557 if (ft
->wp
->base
.mode
& MODE_INSERT
)
1558 return (xstrdup("1"));
1559 return (xstrdup("0"));
1564 /* Callback for keypad_cursor_flag. */
1566 format_cb_keypad_cursor_flag(struct format_tree
*ft
)
1568 if (ft
->wp
!= NULL
) {
1569 if (ft
->wp
->base
.mode
& MODE_KCURSOR
)
1570 return (xstrdup("1"));
1571 return (xstrdup("0"));
1576 /* Callback for keypad_flag. */
1578 format_cb_keypad_flag(struct format_tree
*ft
)
1580 if (ft
->wp
!= NULL
) {
1581 if (ft
->wp
->base
.mode
& MODE_KKEYPAD
)
1582 return (xstrdup("1"));
1583 return (xstrdup("0"));
1588 /* Callback for mouse_all_flag. */
1590 format_cb_mouse_all_flag(struct format_tree
*ft
)
1592 if (ft
->wp
!= NULL
) {
1593 if (ft
->wp
->base
.mode
& MODE_MOUSE_ALL
)
1594 return (xstrdup("1"));
1595 return (xstrdup("0"));
1600 /* Callback for mouse_any_flag. */
1602 format_cb_mouse_any_flag(struct format_tree
*ft
)
1604 if (ft
->wp
!= NULL
) {
1605 if (ft
->wp
->base
.mode
& ALL_MOUSE_MODES
)
1606 return (xstrdup("1"));
1607 return (xstrdup("0"));
1612 /* Callback for mouse_button_flag. */
1614 format_cb_mouse_button_flag(struct format_tree
*ft
)
1616 if (ft
->wp
!= NULL
) {
1617 if (ft
->wp
->base
.mode
& MODE_MOUSE_BUTTON
)
1618 return (xstrdup("1"));
1619 return (xstrdup("0"));
1624 /* Callback for mouse_pane. */
1626 format_cb_mouse_pane(struct format_tree
*ft
)
1628 struct window_pane
*wp
;
1631 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1633 return (format_printf("%%%u", wp
->id
));
1639 /* Callback for mouse_sgr_flag. */
1641 format_cb_mouse_sgr_flag(struct format_tree
*ft
)
1643 if (ft
->wp
!= NULL
) {
1644 if (ft
->wp
->base
.mode
& MODE_MOUSE_SGR
)
1645 return (xstrdup("1"));
1646 return (xstrdup("0"));
1651 /* Callback for mouse_standard_flag. */
1653 format_cb_mouse_standard_flag(struct format_tree
*ft
)
1655 if (ft
->wp
!= NULL
) {
1656 if (ft
->wp
->base
.mode
& MODE_MOUSE_STANDARD
)
1657 return (xstrdup("1"));
1658 return (xstrdup("0"));
1663 /* Callback for mouse_utf8_flag. */
1665 format_cb_mouse_utf8_flag(struct format_tree
*ft
)
1667 if (ft
->wp
!= NULL
) {
1668 if (ft
->wp
->base
.mode
& MODE_MOUSE_UTF8
)
1669 return (xstrdup("1"));
1670 return (xstrdup("0"));
1675 /* Callback for mouse_x. */
1677 format_cb_mouse_x(struct format_tree
*ft
)
1679 struct window_pane
*wp
;
1684 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1685 if (wp
!= NULL
&& cmd_mouse_at(wp
, &ft
->m
, &x
, &y
, 0) == 0)
1686 return (format_printf("%u", x
));
1687 if (ft
->c
!= NULL
&& (ft
->c
->tty
.flags
& TTY_STARTED
)) {
1688 if (ft
->m
.statusat
== 0 && ft
->m
.y
< ft
->m
.statuslines
)
1689 return (format_printf("%u", ft
->m
.x
));
1690 if (ft
->m
.statusat
> 0 && ft
->m
.y
>= (u_int
)ft
->m
.statusat
)
1691 return (format_printf("%u", ft
->m
.x
));
1696 /* Callback for mouse_y. */
1698 format_cb_mouse_y(struct format_tree
*ft
)
1700 struct window_pane
*wp
;
1705 wp
= cmd_mouse_pane(&ft
->m
, NULL
, NULL
);
1706 if (wp
!= NULL
&& cmd_mouse_at(wp
, &ft
->m
, &x
, &y
, 0) == 0)
1707 return (format_printf("%u", y
));
1708 if (ft
->c
!= NULL
&& (ft
->c
->tty
.flags
& TTY_STARTED
)) {
1709 if (ft
->m
.statusat
== 0 && ft
->m
.y
< ft
->m
.statuslines
)
1710 return (format_printf("%u", ft
->m
.y
));
1711 if (ft
->m
.statusat
> 0 && ft
->m
.y
>= (u_int
)ft
->m
.statusat
)
1712 return (format_printf("%u", ft
->m
.y
- ft
->m
.statusat
));
1717 /* Callback for next_session_id. */
1719 format_cb_next_session_id(__unused
struct format_tree
*ft
)
1721 return (format_printf("$%u", next_session_id
));
1724 /* Callback for origin_flag. */
1726 format_cb_origin_flag(struct format_tree
*ft
)
1728 if (ft
->wp
!= NULL
) {
1729 if (ft
->wp
->base
.mode
& MODE_ORIGIN
)
1730 return (xstrdup("1"));
1731 return (xstrdup("0"));
1736 /* Callback for pane_active. */
1738 format_cb_pane_active(struct format_tree
*ft
)
1740 if (ft
->wp
!= NULL
) {
1741 if (ft
->wp
== ft
->wp
->window
->active
)
1742 return (xstrdup("1"));
1743 return (xstrdup("0"));
1748 /* Callback for pane_at_left. */
1750 format_cb_pane_at_left(struct format_tree
*ft
)
1752 if (ft
->wp
!= NULL
) {
1753 if (ft
->wp
->xoff
== 0)
1754 return (xstrdup("1"));
1755 return (xstrdup("0"));
1760 /* Callback for pane_at_right. */
1762 format_cb_pane_at_right(struct format_tree
*ft
)
1764 if (ft
->wp
!= NULL
) {
1765 if (ft
->wp
->xoff
+ ft
->wp
->sx
== ft
->wp
->window
->sx
)
1766 return (xstrdup("1"));
1767 return (xstrdup("0"));
1772 /* Callback for pane_bottom. */
1774 format_cb_pane_bottom(struct format_tree
*ft
)
1777 return (format_printf("%u", ft
->wp
->yoff
+ ft
->wp
->sy
- 1));
1781 /* Callback for pane_dead. */
1783 format_cb_pane_dead(struct format_tree
*ft
)
1785 if (ft
->wp
!= NULL
) {
1786 if (ft
->wp
->fd
== -1)
1787 return (xstrdup("1"));
1788 return (xstrdup("0"));
1793 /* Callback for pane_dead_signal. */
1795 format_cb_pane_dead_signal(struct format_tree
*ft
)
1797 struct window_pane
*wp
= ft
->wp
;
1801 if ((wp
->flags
& PANE_STATUSREADY
) && WIFSIGNALED(wp
->status
)) {
1802 name
= sig2name(WTERMSIG(wp
->status
));
1803 return (format_printf("%s", name
));
1810 /* Callback for pane_dead_status. */
1812 format_cb_pane_dead_status(struct format_tree
*ft
)
1814 struct window_pane
*wp
= ft
->wp
;
1817 if ((wp
->flags
& PANE_STATUSREADY
) && WIFEXITED(wp
->status
))
1818 return (format_printf("%d", WEXITSTATUS(wp
->status
)));
1824 /* Callback for pane_dead_time. */
1826 format_cb_pane_dead_time(struct format_tree
*ft
)
1828 struct window_pane
*wp
= ft
->wp
;
1831 if (wp
->flags
& PANE_STATUSDRAWN
)
1832 return (&wp
->dead_time
);
1838 /* Callback for pane_format. */
1840 format_cb_pane_format(struct format_tree
*ft
)
1842 if (ft
->type
== FORMAT_TYPE_PANE
)
1843 return (xstrdup("1"));
1844 return (xstrdup("0"));
1847 /* Callback for pane_height. */
1849 format_cb_pane_height(struct format_tree
*ft
)
1852 return (format_printf("%u", ft
->wp
->sy
));
1856 /* Callback for pane_id. */
1858 format_cb_pane_id(struct format_tree
*ft
)
1861 return (format_printf("%%%u", ft
->wp
->id
));
1865 /* Callback for pane_index. */
1867 format_cb_pane_index(struct format_tree
*ft
)
1871 if (ft
->wp
!= NULL
&& window_pane_index(ft
->wp
, &idx
) == 0)
1872 return (format_printf("%u", idx
));
1876 /* Callback for pane_input_off. */
1878 format_cb_pane_input_off(struct format_tree
*ft
)
1880 if (ft
->wp
!= NULL
) {
1881 if (ft
->wp
->flags
& PANE_INPUTOFF
)
1882 return (xstrdup("1"));
1883 return (xstrdup("0"));
1888 /* Callback for pane_last. */
1890 format_cb_pane_last(struct format_tree
*ft
)
1892 if (ft
->wp
!= NULL
) {
1893 if (ft
->wp
== ft
->wp
->window
->last
)
1894 return (xstrdup("1"));
1895 return (xstrdup("0"));
1900 /* Callback for pane_left. */
1902 format_cb_pane_left(struct format_tree
*ft
)
1905 return (format_printf("%u", ft
->wp
->xoff
));
1909 /* Callback for pane_marked. */
1911 format_cb_pane_marked(struct format_tree
*ft
)
1913 if (ft
->wp
!= NULL
) {
1914 if (server_check_marked() && marked_pane
.wp
== ft
->wp
)
1915 return (xstrdup("1"));
1916 return (xstrdup("0"));
1921 /* Callback for pane_marked_set. */
1923 format_cb_pane_marked_set(struct format_tree
*ft
)
1925 if (ft
->wp
!= NULL
) {
1926 if (server_check_marked())
1927 return (xstrdup("1"));
1928 return (xstrdup("0"));
1933 /* Callback for pane_mode. */
1935 format_cb_pane_mode(struct format_tree
*ft
)
1937 struct window_mode_entry
*wme
;
1939 if (ft
->wp
!= NULL
) {
1940 wme
= TAILQ_FIRST(&ft
->wp
->modes
);
1942 return (xstrdup(wme
->mode
->name
));
1948 /* Callback for pane_path. */
1950 format_cb_pane_path(struct format_tree
*ft
)
1952 if (ft
->wp
!= NULL
) {
1953 if (ft
->wp
->base
.path
== NULL
)
1954 return (xstrdup(""));
1955 return (xstrdup(ft
->wp
->base
.path
));
1960 /* Callback for pane_pid. */
1962 format_cb_pane_pid(struct format_tree
*ft
)
1965 return (format_printf("%ld", (long)ft
->wp
->pid
));
1969 /* Callback for pane_pipe. */
1971 format_cb_pane_pipe(struct format_tree
*ft
)
1973 if (ft
->wp
!= NULL
) {
1974 if (ft
->wp
->pipe_fd
!= -1)
1975 return (xstrdup("1"));
1976 return (xstrdup("0"));
1981 /* Callback for pane_right. */
1983 format_cb_pane_right(struct format_tree
*ft
)
1986 return (format_printf("%u", ft
->wp
->xoff
+ ft
->wp
->sx
- 1));
1990 /* Callback for pane_search_string. */
1992 format_cb_pane_search_string(struct format_tree
*ft
)
1994 if (ft
->wp
!= NULL
) {
1995 if (ft
->wp
->searchstr
== NULL
)
1996 return (xstrdup(""));
1997 return (xstrdup(ft
->wp
->searchstr
));
2002 /* Callback for pane_synchronized. */
2004 format_cb_pane_synchronized(struct format_tree
*ft
)
2006 if (ft
->wp
!= NULL
) {
2007 if (options_get_number(ft
->wp
->options
, "synchronize-panes"))
2008 return (xstrdup("1"));
2009 return (xstrdup("0"));
2014 /* Callback for pane_title. */
2016 format_cb_pane_title(struct format_tree
*ft
)
2019 return (xstrdup(ft
->wp
->base
.title
));
2023 /* Callback for pane_top. */
2025 format_cb_pane_top(struct format_tree
*ft
)
2028 return (format_printf("%u", ft
->wp
->yoff
));
2032 /* Callback for pane_tty. */
2034 format_cb_pane_tty(struct format_tree
*ft
)
2037 return (xstrdup(ft
->wp
->tty
));
2041 /* Callback for pane_width. */
2043 format_cb_pane_width(struct format_tree
*ft
)
2046 return (format_printf("%u", ft
->wp
->sx
));
2050 /* Callback for scroll_region_lower. */
2052 format_cb_scroll_region_lower(struct format_tree
*ft
)
2055 return (format_printf("%u", ft
->wp
->base
.rlower
));
2059 /* Callback for scroll_region_upper. */
2061 format_cb_scroll_region_upper(struct format_tree
*ft
)
2064 return (format_printf("%u", ft
->wp
->base
.rupper
));
2068 /* Callback for session_attached. */
2070 format_cb_session_attached(struct format_tree
*ft
)
2073 return (format_printf("%u", ft
->s
->attached
));
2077 /* Callback for session_format. */
2079 format_cb_session_format(struct format_tree
*ft
)
2081 if (ft
->type
== FORMAT_TYPE_SESSION
)
2082 return (xstrdup("1"));
2083 return (xstrdup("0"));
2086 /* Callback for session_group. */
2088 format_cb_session_group(struct format_tree
*ft
)
2090 struct session_group
*sg
;
2092 if (ft
->s
!= NULL
&& (sg
= session_group_contains(ft
->s
)) != NULL
)
2093 return (xstrdup(sg
->name
));
2097 /* Callback for session_group_attached. */
2099 format_cb_session_group_attached(struct format_tree
*ft
)
2101 struct session_group
*sg
;
2103 if (ft
->s
!= NULL
&& (sg
= session_group_contains(ft
->s
)) != NULL
)
2104 return (format_printf("%u", session_group_attached_count (sg
)));
2108 /* Callback for session_group_many_attached. */
2110 format_cb_session_group_many_attached(struct format_tree
*ft
)
2112 struct session_group
*sg
;
2114 if (ft
->s
!= NULL
&& (sg
= session_group_contains(ft
->s
)) != NULL
) {
2115 if (session_group_attached_count (sg
) > 1)
2116 return (xstrdup("1"));
2117 return (xstrdup("0"));
2122 /* Callback for session_group_size. */
2124 format_cb_session_group_size(struct format_tree
*ft
)
2126 struct session_group
*sg
;
2128 if (ft
->s
!= NULL
&& (sg
= session_group_contains(ft
->s
)) != NULL
)
2129 return (format_printf("%u", session_group_count (sg
)));
2133 /* Callback for session_grouped. */
2135 format_cb_session_grouped(struct format_tree
*ft
)
2137 if (ft
->s
!= NULL
) {
2138 if (session_group_contains(ft
->s
) != NULL
)
2139 return (xstrdup("1"));
2140 return (xstrdup("0"));
2145 /* Callback for session_id. */
2147 format_cb_session_id(struct format_tree
*ft
)
2150 return (format_printf("$%u", ft
->s
->id
));
2154 /* Callback for session_many_attached. */
2156 format_cb_session_many_attached(struct format_tree
*ft
)
2158 if (ft
->s
!= NULL
) {
2159 if (ft
->s
->attached
> 1)
2160 return (xstrdup("1"));
2161 return (xstrdup("0"));
2166 /* Callback for session_marked. */
2168 format_cb_session_marked(struct format_tree
*ft
)
2170 if (ft
->s
!= NULL
) {
2171 if (server_check_marked() && marked_pane
.s
== ft
->s
)
2172 return (xstrdup("1"));
2173 return (xstrdup("0"));
2178 /* Callback for session_name. */
2180 format_cb_session_name(struct format_tree
*ft
)
2183 return (xstrdup(ft
->s
->name
));
2187 /* Callback for session_path. */
2189 format_cb_session_path(struct format_tree
*ft
)
2192 return (xstrdup(ft
->s
->cwd
));
2196 /* Callback for session_windows. */
2198 format_cb_session_windows(struct format_tree
*ft
)
2201 return (format_printf("%u", winlink_count(&ft
->s
->windows
)));
2205 /* Callback for socket_path. */
2207 format_cb_socket_path(__unused
struct format_tree
*ft
)
2209 return (xstrdup(socket_path
));
2212 /* Callback for version. */
2214 format_cb_version(__unused
struct format_tree
*ft
)
2216 return (xstrdup(getversion()));
2219 /* Callback for active_window_index. */
2221 format_cb_active_window_index(struct format_tree
*ft
)
2224 return (format_printf("%u", ft
->s
->curw
->idx
));
2228 /* Callback for last_window_index. */
2230 format_cb_last_window_index(struct format_tree
*ft
)
2234 if (ft
->s
!= NULL
) {
2235 wl
= RB_MAX(winlinks
, &ft
->s
->windows
);
2236 return (format_printf("%u", wl
->idx
));
2241 /* Callback for window_active. */
2243 format_cb_window_active(struct format_tree
*ft
)
2245 if (ft
->wl
!= NULL
) {
2246 if (ft
->wl
== ft
->wl
->session
->curw
)
2247 return (xstrdup("1"));
2248 return (xstrdup("0"));
2253 /* Callback for window_activity_flag. */
2255 format_cb_window_activity_flag(struct format_tree
*ft
)
2257 if (ft
->wl
!= NULL
) {
2258 if (ft
->wl
->flags
& WINLINK_ACTIVITY
)
2259 return (xstrdup("1"));
2260 return (xstrdup("0"));
2265 /* Callback for window_bell_flag. */
2267 format_cb_window_bell_flag(struct format_tree
*ft
)
2269 if (ft
->wl
!= NULL
) {
2270 if (ft
->wl
->flags
& WINLINK_BELL
)
2271 return (xstrdup("1"));
2272 return (xstrdup("0"));
2277 /* Callback for window_bigger. */
2279 format_cb_window_bigger(struct format_tree
*ft
)
2281 u_int ox
, oy
, sx
, sy
;
2283 if (ft
->c
!= NULL
) {
2284 if (tty_window_offset(&ft
->c
->tty
, &ox
, &oy
, &sx
, &sy
))
2285 return (xstrdup("1"));
2286 return (xstrdup("0"));
2291 /* Callback for window_cell_height. */
2293 format_cb_window_cell_height(struct format_tree
*ft
)
2296 return (format_printf("%u", ft
->w
->ypixel
));
2300 /* Callback for window_cell_width. */
2302 format_cb_window_cell_width(struct format_tree
*ft
)
2305 return (format_printf("%u", ft
->w
->xpixel
));
2309 /* Callback for window_end_flag. */
2311 format_cb_window_end_flag(struct format_tree
*ft
)
2313 if (ft
->wl
!= NULL
) {
2314 if (ft
->wl
== RB_MAX(winlinks
, &ft
->wl
->session
->windows
))
2315 return (xstrdup("1"));
2316 return (xstrdup("0"));
2321 /* Callback for window_flags. */
2323 format_cb_window_flags(struct format_tree
*ft
)
2326 return (xstrdup(window_printable_flags(ft
->wl
, 1)));
2330 /* Callback for window_format. */
2332 format_cb_window_format(struct format_tree
*ft
)
2334 if (ft
->type
== FORMAT_TYPE_WINDOW
)
2335 return (xstrdup("1"));
2336 return (xstrdup("0"));
2339 /* Callback for window_height. */
2341 format_cb_window_height(struct format_tree
*ft
)
2344 return (format_printf("%u", ft
->w
->sy
));
2348 /* Callback for window_id. */
2350 format_cb_window_id(struct format_tree
*ft
)
2353 return (format_printf("@%u", ft
->w
->id
));
2357 /* Callback for window_index. */
2359 format_cb_window_index(struct format_tree
*ft
)
2362 return (format_printf("%d", ft
->wl
->idx
));
2366 /* Callback for window_last_flag. */
2368 format_cb_window_last_flag(struct format_tree
*ft
)
2370 if (ft
->wl
!= NULL
) {
2371 if (ft
->wl
== TAILQ_FIRST(&ft
->wl
->session
->lastw
))
2372 return (xstrdup("1"));
2373 return (xstrdup("0"));
2378 /* Callback for window_linked. */
2380 format_cb_window_linked(struct format_tree
*ft
)
2382 if (ft
->wl
!= NULL
) {
2383 if (session_is_linked(ft
->wl
->session
, ft
->wl
->window
))
2384 return (xstrdup("1"));
2385 return (xstrdup("0"));
2390 /* Callback for window_linked_sessions. */
2392 format_cb_window_linked_sessions(struct format_tree
*ft
)
2395 return (format_printf("%u", ft
->wl
->window
->references
));
2399 /* Callback for window_marked_flag. */
2401 format_cb_window_marked_flag(struct format_tree
*ft
)
2403 if (ft
->wl
!= NULL
) {
2404 if (server_check_marked() && marked_pane
.wl
== ft
->wl
)
2405 return (xstrdup("1"));
2406 return (xstrdup("0"));
2411 /* Callback for window_name. */
2413 format_cb_window_name(struct format_tree
*ft
)
2416 return (format_printf("%s", ft
->w
->name
));
2420 /* Callback for window_offset_x. */
2422 format_cb_window_offset_x(struct format_tree
*ft
)
2424 u_int ox
, oy
, sx
, sy
;
2426 if (ft
->c
!= NULL
) {
2427 if (tty_window_offset(&ft
->c
->tty
, &ox
, &oy
, &sx
, &sy
))
2428 return (format_printf("%u", ox
));
2434 /* Callback for window_offset_y. */
2436 format_cb_window_offset_y(struct format_tree
*ft
)
2438 u_int ox
, oy
, sx
, sy
;
2440 if (ft
->c
!= NULL
) {
2441 if (tty_window_offset(&ft
->c
->tty
, &ox
, &oy
, &sx
, &sy
))
2442 return (format_printf("%u", oy
));
2448 /* Callback for window_panes. */
2450 format_cb_window_panes(struct format_tree
*ft
)
2453 return (format_printf("%u", window_count_panes(ft
->w
)));
2457 /* Callback for window_raw_flags. */
2459 format_cb_window_raw_flags(struct format_tree
*ft
)
2462 return (xstrdup(window_printable_flags(ft
->wl
, 0)));
2466 /* Callback for window_silence_flag. */
2468 format_cb_window_silence_flag(struct format_tree
*ft
)
2470 if (ft
->wl
!= NULL
) {
2471 if (ft
->wl
->flags
& WINLINK_SILENCE
)
2472 return (xstrdup("1"));
2473 return (xstrdup("0"));
2478 /* Callback for window_start_flag. */
2480 format_cb_window_start_flag(struct format_tree
*ft
)
2482 if (ft
->wl
!= NULL
) {
2483 if (ft
->wl
== RB_MIN(winlinks
, &ft
->wl
->session
->windows
))
2484 return (xstrdup("1"));
2485 return (xstrdup("0"));
2490 /* Callback for window_width. */
2492 format_cb_window_width(struct format_tree
*ft
)
2495 return (format_printf("%u", ft
->w
->sx
));
2499 /* Callback for window_zoomed_flag. */
2501 format_cb_window_zoomed_flag(struct format_tree
*ft
)
2503 if (ft
->w
!= NULL
) {
2504 if (ft
->w
->flags
& WINDOW_ZOOMED
)
2505 return (xstrdup("1"));
2506 return (xstrdup("0"));
2511 /* Callback for wrap_flag. */
2513 format_cb_wrap_flag(struct format_tree
*ft
)
2515 if (ft
->wp
!= NULL
) {
2516 if (ft
->wp
->base
.mode
& MODE_WRAP
)
2517 return (xstrdup("1"));
2518 return (xstrdup("0"));
2523 /* Callback for buffer_created. */
2525 format_cb_buffer_created(struct format_tree
*ft
)
2527 static struct timeval tv
;
2529 if (ft
->pb
!= NULL
) {
2531 tv
.tv_sec
= paste_buffer_created(ft
->pb
);
2537 /* Callback for client_activity. */
2539 format_cb_client_activity(struct format_tree
*ft
)
2542 return (&ft
->c
->activity_time
);
2546 /* Callback for client_created. */
2548 format_cb_client_created(struct format_tree
*ft
)
2551 return (&ft
->c
->creation_time
);
2555 /* Callback for session_activity. */
2557 format_cb_session_activity(struct format_tree
*ft
)
2560 return (&ft
->s
->activity_time
);
2564 /* Callback for session_created. */
2566 format_cb_session_created(struct format_tree
*ft
)
2569 return (&ft
->s
->creation_time
);
2573 /* Callback for session_last_attached. */
2575 format_cb_session_last_attached(struct format_tree
*ft
)
2578 return (&ft
->s
->last_attached_time
);
2582 /* Callback for start_time. */
2584 format_cb_start_time(__unused
struct format_tree
*ft
)
2586 return (&start_time
);
2589 /* Callback for window_activity. */
2591 format_cb_window_activity(struct format_tree
*ft
)
2594 return (&ft
->w
->activity_time
);
2598 /* Callback for buffer_mode_format, */
2600 format_cb_buffer_mode_format(__unused
struct format_tree
*ft
)
2602 return (xstrdup(window_buffer_mode
.default_format
));
2605 /* Callback for client_mode_format, */
2607 format_cb_client_mode_format(__unused
struct format_tree
*ft
)
2609 return (xstrdup(window_client_mode
.default_format
));
2612 /* Callback for tree_mode_format, */
2614 format_cb_tree_mode_format(__unused
struct format_tree
*ft
)
2616 return (xstrdup(window_tree_mode
.default_format
));
2619 /* Callback for uid. */
2621 format_cb_uid(__unused
struct format_tree
*ft
)
2623 return (format_printf("%ld", (long)getuid()));
2626 /* Callback for user. */
2628 format_cb_user(__unused
struct format_tree
*ft
)
2632 if ((pw
= getpwuid(getuid())) != NULL
)
2633 return (xstrdup(pw
->pw_name
));
2637 /* Format table type. */
2638 enum format_table_type
{
2639 FORMAT_TABLE_STRING
,
2643 /* Format table entry. */
2644 struct format_table_entry
{
2646 enum format_table_type type
;
2651 * Format table. Default format variables (that are almost always in the tree
2652 * and where the value is expanded by a callback in this file) are listed here.
2653 * Only variables which are added by the caller go into the tree.
2655 static const struct format_table_entry format_table
[] = {
2656 { "active_window_index", FORMAT_TABLE_STRING
,
2657 format_cb_active_window_index
2659 { "alternate_on", FORMAT_TABLE_STRING
,
2660 format_cb_alternate_on
2662 { "alternate_saved_x", FORMAT_TABLE_STRING
,
2663 format_cb_alternate_saved_x
2665 { "alternate_saved_y", FORMAT_TABLE_STRING
,
2666 format_cb_alternate_saved_y
2668 { "buffer_created", FORMAT_TABLE_TIME
,
2669 format_cb_buffer_created
2671 { "buffer_mode_format", FORMAT_TABLE_STRING
,
2672 format_cb_buffer_mode_format
2674 { "buffer_name", FORMAT_TABLE_STRING
,
2675 format_cb_buffer_name
2677 { "buffer_sample", FORMAT_TABLE_STRING
,
2678 format_cb_buffer_sample
2680 { "buffer_size", FORMAT_TABLE_STRING
,
2681 format_cb_buffer_size
2683 { "client_activity", FORMAT_TABLE_TIME
,
2684 format_cb_client_activity
2686 { "client_cell_height", FORMAT_TABLE_STRING
,
2687 format_cb_client_cell_height
2689 { "client_cell_width", FORMAT_TABLE_STRING
,
2690 format_cb_client_cell_width
2692 { "client_control_mode", FORMAT_TABLE_STRING
,
2693 format_cb_client_control_mode
2695 { "client_created", FORMAT_TABLE_TIME
,
2696 format_cb_client_created
2698 { "client_discarded", FORMAT_TABLE_STRING
,
2699 format_cb_client_discarded
2701 { "client_flags", FORMAT_TABLE_STRING
,
2702 format_cb_client_flags
2704 { "client_height", FORMAT_TABLE_STRING
,
2705 format_cb_client_height
2707 { "client_key_table", FORMAT_TABLE_STRING
,
2708 format_cb_client_key_table
2710 { "client_last_session", FORMAT_TABLE_STRING
,
2711 format_cb_client_last_session
2713 { "client_mode_format", FORMAT_TABLE_STRING
,
2714 format_cb_client_mode_format
2716 { "client_name", FORMAT_TABLE_STRING
,
2717 format_cb_client_name
2719 { "client_pid", FORMAT_TABLE_STRING
,
2720 format_cb_client_pid
2722 { "client_prefix", FORMAT_TABLE_STRING
,
2723 format_cb_client_prefix
2725 { "client_readonly", FORMAT_TABLE_STRING
,
2726 format_cb_client_readonly
2728 { "client_session", FORMAT_TABLE_STRING
,
2729 format_cb_client_session
2731 { "client_termfeatures", FORMAT_TABLE_STRING
,
2732 format_cb_client_termfeatures
2734 { "client_termname", FORMAT_TABLE_STRING
,
2735 format_cb_client_termname
2737 { "client_termtype", FORMAT_TABLE_STRING
,
2738 format_cb_client_termtype
2740 { "client_tty", FORMAT_TABLE_STRING
,
2741 format_cb_client_tty
2743 { "client_uid", FORMAT_TABLE_STRING
,
2744 format_cb_client_uid
2746 { "client_user", FORMAT_TABLE_STRING
,
2747 format_cb_client_user
2749 { "client_utf8", FORMAT_TABLE_STRING
,
2750 format_cb_client_utf8
2752 { "client_width", FORMAT_TABLE_STRING
,
2753 format_cb_client_width
2755 { "client_written", FORMAT_TABLE_STRING
,
2756 format_cb_client_written
2758 { "config_files", FORMAT_TABLE_STRING
,
2759 format_cb_config_files
2761 { "cursor_character", FORMAT_TABLE_STRING
,
2762 format_cb_cursor_character
2764 { "cursor_flag", FORMAT_TABLE_STRING
,
2765 format_cb_cursor_flag
2767 { "cursor_x", FORMAT_TABLE_STRING
,
2770 { "cursor_y", FORMAT_TABLE_STRING
,
2773 { "history_all_bytes", FORMAT_TABLE_STRING
,
2774 format_cb_history_all_bytes
2776 { "history_bytes", FORMAT_TABLE_STRING
,
2777 format_cb_history_bytes
2779 { "history_limit", FORMAT_TABLE_STRING
,
2780 format_cb_history_limit
2782 { "history_size", FORMAT_TABLE_STRING
,
2783 format_cb_history_size
2785 { "host", FORMAT_TABLE_STRING
,
2788 { "host_short", FORMAT_TABLE_STRING
,
2789 format_cb_host_short
2791 { "insert_flag", FORMAT_TABLE_STRING
,
2792 format_cb_insert_flag
2794 { "keypad_cursor_flag", FORMAT_TABLE_STRING
,
2795 format_cb_keypad_cursor_flag
2797 { "keypad_flag", FORMAT_TABLE_STRING
,
2798 format_cb_keypad_flag
2800 { "last_window_index", FORMAT_TABLE_STRING
,
2801 format_cb_last_window_index
2803 { "mouse_all_flag", FORMAT_TABLE_STRING
,
2804 format_cb_mouse_all_flag
2806 { "mouse_any_flag", FORMAT_TABLE_STRING
,
2807 format_cb_mouse_any_flag
2809 { "mouse_button_flag", FORMAT_TABLE_STRING
,
2810 format_cb_mouse_button_flag
2812 { "mouse_hyperlink", FORMAT_TABLE_STRING
,
2813 format_cb_mouse_hyperlink
2815 { "mouse_line", FORMAT_TABLE_STRING
,
2816 format_cb_mouse_line
2818 { "mouse_pane", FORMAT_TABLE_STRING
,
2819 format_cb_mouse_pane
2821 { "mouse_sgr_flag", FORMAT_TABLE_STRING
,
2822 format_cb_mouse_sgr_flag
2824 { "mouse_standard_flag", FORMAT_TABLE_STRING
,
2825 format_cb_mouse_standard_flag
2827 { "mouse_utf8_flag", FORMAT_TABLE_STRING
,
2828 format_cb_mouse_utf8_flag
2830 { "mouse_word", FORMAT_TABLE_STRING
,
2831 format_cb_mouse_word
2833 { "mouse_x", FORMAT_TABLE_STRING
,
2836 { "mouse_y", FORMAT_TABLE_STRING
,
2839 { "next_session_id", FORMAT_TABLE_STRING
,
2840 format_cb_next_session_id
2842 { "origin_flag", FORMAT_TABLE_STRING
,
2843 format_cb_origin_flag
2845 { "pane_active", FORMAT_TABLE_STRING
,
2846 format_cb_pane_active
2848 { "pane_at_bottom", FORMAT_TABLE_STRING
,
2849 format_cb_pane_at_bottom
2851 { "pane_at_left", FORMAT_TABLE_STRING
,
2852 format_cb_pane_at_left
2854 { "pane_at_right", FORMAT_TABLE_STRING
,
2855 format_cb_pane_at_right
2857 { "pane_at_top", FORMAT_TABLE_STRING
,
2858 format_cb_pane_at_top
2860 { "pane_bg", FORMAT_TABLE_STRING
,
2863 { "pane_bottom", FORMAT_TABLE_STRING
,
2864 format_cb_pane_bottom
2866 { "pane_current_command", FORMAT_TABLE_STRING
,
2867 format_cb_current_command
2869 { "pane_current_path", FORMAT_TABLE_STRING
,
2870 format_cb_current_path
2872 { "pane_dead", FORMAT_TABLE_STRING
,
2875 { "pane_dead_signal", FORMAT_TABLE_STRING
,
2876 format_cb_pane_dead_signal
2878 { "pane_dead_status", FORMAT_TABLE_STRING
,
2879 format_cb_pane_dead_status
2881 { "pane_dead_time", FORMAT_TABLE_TIME
,
2882 format_cb_pane_dead_time
2884 { "pane_fg", FORMAT_TABLE_STRING
,
2887 { "pane_format", FORMAT_TABLE_STRING
,
2888 format_cb_pane_format
2890 { "pane_height", FORMAT_TABLE_STRING
,
2891 format_cb_pane_height
2893 { "pane_id", FORMAT_TABLE_STRING
,
2896 { "pane_in_mode", FORMAT_TABLE_STRING
,
2897 format_cb_pane_in_mode
2899 { "pane_index", FORMAT_TABLE_STRING
,
2900 format_cb_pane_index
2902 { "pane_input_off", FORMAT_TABLE_STRING
,
2903 format_cb_pane_input_off
2905 { "pane_last", FORMAT_TABLE_STRING
,
2908 { "pane_left", FORMAT_TABLE_STRING
,
2911 { "pane_marked", FORMAT_TABLE_STRING
,
2912 format_cb_pane_marked
2914 { "pane_marked_set", FORMAT_TABLE_STRING
,
2915 format_cb_pane_marked_set
2917 { "pane_mode", FORMAT_TABLE_STRING
,
2920 { "pane_path", FORMAT_TABLE_STRING
,
2923 { "pane_pid", FORMAT_TABLE_STRING
,
2926 { "pane_pipe", FORMAT_TABLE_STRING
,
2929 { "pane_right", FORMAT_TABLE_STRING
,
2930 format_cb_pane_right
2932 { "pane_search_string", FORMAT_TABLE_STRING
,
2933 format_cb_pane_search_string
2935 { "pane_start_command", FORMAT_TABLE_STRING
,
2936 format_cb_start_command
2938 { "pane_start_path", FORMAT_TABLE_STRING
,
2939 format_cb_start_path
2941 { "pane_synchronized", FORMAT_TABLE_STRING
,
2942 format_cb_pane_synchronized
2944 { "pane_tabs", FORMAT_TABLE_STRING
,
2947 { "pane_title", FORMAT_TABLE_STRING
,
2948 format_cb_pane_title
2950 { "pane_top", FORMAT_TABLE_STRING
,
2953 { "pane_tty", FORMAT_TABLE_STRING
,
2956 { "pane_width", FORMAT_TABLE_STRING
,
2957 format_cb_pane_width
2959 { "pid", FORMAT_TABLE_STRING
,
2962 { "scroll_region_lower", FORMAT_TABLE_STRING
,
2963 format_cb_scroll_region_lower
2965 { "scroll_region_upper", FORMAT_TABLE_STRING
,
2966 format_cb_scroll_region_upper
2968 { "session_activity", FORMAT_TABLE_TIME
,
2969 format_cb_session_activity
2971 { "session_alerts", FORMAT_TABLE_STRING
,
2972 format_cb_session_alerts
2974 { "session_attached", FORMAT_TABLE_STRING
,
2975 format_cb_session_attached
2977 { "session_attached_list", FORMAT_TABLE_STRING
,
2978 format_cb_session_attached_list
2980 { "session_created", FORMAT_TABLE_TIME
,
2981 format_cb_session_created
2983 { "session_format", FORMAT_TABLE_STRING
,
2984 format_cb_session_format
2986 { "session_group", FORMAT_TABLE_STRING
,
2987 format_cb_session_group
2989 { "session_group_attached", FORMAT_TABLE_STRING
,
2990 format_cb_session_group_attached
2992 { "session_group_attached_list", FORMAT_TABLE_STRING
,
2993 format_cb_session_group_attached_list
2995 { "session_group_list", FORMAT_TABLE_STRING
,
2996 format_cb_session_group_list
2998 { "session_group_many_attached", FORMAT_TABLE_STRING
,
2999 format_cb_session_group_many_attached
3001 { "session_group_size", FORMAT_TABLE_STRING
,
3002 format_cb_session_group_size
3004 { "session_grouped", FORMAT_TABLE_STRING
,
3005 format_cb_session_grouped
3007 { "session_id", FORMAT_TABLE_STRING
,
3008 format_cb_session_id
3010 { "session_last_attached", FORMAT_TABLE_TIME
,
3011 format_cb_session_last_attached
3013 { "session_many_attached", FORMAT_TABLE_STRING
,
3014 format_cb_session_many_attached
3016 { "session_marked", FORMAT_TABLE_STRING
,
3017 format_cb_session_marked
,
3019 { "session_name", FORMAT_TABLE_STRING
,
3020 format_cb_session_name
3022 { "session_path", FORMAT_TABLE_STRING
,
3023 format_cb_session_path
3025 { "session_stack", FORMAT_TABLE_STRING
,
3026 format_cb_session_stack
3028 { "session_windows", FORMAT_TABLE_STRING
,
3029 format_cb_session_windows
3031 { "socket_path", FORMAT_TABLE_STRING
,
3032 format_cb_socket_path
3034 { "start_time", FORMAT_TABLE_TIME
,
3035 format_cb_start_time
3037 { "tree_mode_format", FORMAT_TABLE_STRING
,
3038 format_cb_tree_mode_format
3040 { "uid", FORMAT_TABLE_STRING
,
3043 { "user", FORMAT_TABLE_STRING
,
3046 { "version", FORMAT_TABLE_STRING
,
3049 { "window_active", FORMAT_TABLE_STRING
,
3050 format_cb_window_active
3052 { "window_active_clients", FORMAT_TABLE_STRING
,
3053 format_cb_window_active_clients
3055 { "window_active_clients_list", FORMAT_TABLE_STRING
,
3056 format_cb_window_active_clients_list
3058 { "window_active_sessions", FORMAT_TABLE_STRING
,
3059 format_cb_window_active_sessions
3061 { "window_active_sessions_list", FORMAT_TABLE_STRING
,
3062 format_cb_window_active_sessions_list
3064 { "window_activity", FORMAT_TABLE_TIME
,
3065 format_cb_window_activity
3067 { "window_activity_flag", FORMAT_TABLE_STRING
,
3068 format_cb_window_activity_flag
3070 { "window_bell_flag", FORMAT_TABLE_STRING
,
3071 format_cb_window_bell_flag
3073 { "window_bigger", FORMAT_TABLE_STRING
,
3074 format_cb_window_bigger
3076 { "window_cell_height", FORMAT_TABLE_STRING
,
3077 format_cb_window_cell_height
3079 { "window_cell_width", FORMAT_TABLE_STRING
,
3080 format_cb_window_cell_width
3082 { "window_end_flag", FORMAT_TABLE_STRING
,
3083 format_cb_window_end_flag
3085 { "window_flags", FORMAT_TABLE_STRING
,
3086 format_cb_window_flags
3088 { "window_format", FORMAT_TABLE_STRING
,
3089 format_cb_window_format
3091 { "window_height", FORMAT_TABLE_STRING
,
3092 format_cb_window_height
3094 { "window_id", FORMAT_TABLE_STRING
,
3097 { "window_index", FORMAT_TABLE_STRING
,
3098 format_cb_window_index
3100 { "window_last_flag", FORMAT_TABLE_STRING
,
3101 format_cb_window_last_flag
3103 { "window_layout", FORMAT_TABLE_STRING
,
3104 format_cb_window_layout
3106 { "window_linked", FORMAT_TABLE_STRING
,
3107 format_cb_window_linked
3109 { "window_linked_sessions", FORMAT_TABLE_STRING
,
3110 format_cb_window_linked_sessions
3112 { "window_linked_sessions_list", FORMAT_TABLE_STRING
,
3113 format_cb_window_linked_sessions_list
3115 { "window_marked_flag", FORMAT_TABLE_STRING
,
3116 format_cb_window_marked_flag
3118 { "window_name", FORMAT_TABLE_STRING
,
3119 format_cb_window_name
3121 { "window_offset_x", FORMAT_TABLE_STRING
,
3122 format_cb_window_offset_x
3124 { "window_offset_y", FORMAT_TABLE_STRING
,
3125 format_cb_window_offset_y
3127 { "window_panes", FORMAT_TABLE_STRING
,
3128 format_cb_window_panes
3130 { "window_raw_flags", FORMAT_TABLE_STRING
,
3131 format_cb_window_raw_flags
3133 { "window_silence_flag", FORMAT_TABLE_STRING
,
3134 format_cb_window_silence_flag
3136 { "window_stack_index", FORMAT_TABLE_STRING
,
3137 format_cb_window_stack_index
3139 { "window_start_flag", FORMAT_TABLE_STRING
,
3140 format_cb_window_start_flag
3142 { "window_visible_layout", FORMAT_TABLE_STRING
,
3143 format_cb_window_visible_layout
3145 { "window_width", FORMAT_TABLE_STRING
,
3146 format_cb_window_width
3148 { "window_zoomed_flag", FORMAT_TABLE_STRING
,
3149 format_cb_window_zoomed_flag
3151 { "wrap_flag", FORMAT_TABLE_STRING
,
3156 /* Compare format table entries. */
3158 format_table_compare(const void *key0
, const void *entry0
)
3160 const char *key
= key0
;
3161 const struct format_table_entry
*entry
= entry0
;
3163 return (strcmp(key
, entry
->key
));
3166 /* Get a format callback. */
3167 static struct format_table_entry
*
3168 format_table_get(const char *key
)
3170 return (bsearch(key
, format_table
, nitems(format_table
),
3171 sizeof *format_table
, format_table_compare
));
3174 /* Merge one format tree into another. */
3176 format_merge(struct format_tree
*ft
, struct format_tree
*from
)
3178 struct format_entry
*fe
;
3180 RB_FOREACH(fe
, format_entry_tree
, &from
->tree
) {
3181 if (fe
->value
!= NULL
)
3182 format_add(ft
, fe
->key
, "%s", fe
->value
);
3186 /* Get format pane. */
3187 struct window_pane
*
3188 format_get_pane(struct format_tree
*ft
)
3193 /* Add item bits to tree. */
3195 format_create_add_item(struct format_tree
*ft
, struct cmdq_item
*item
)
3197 struct key_event
*event
= cmdq_get_event(item
);
3198 struct mouse_event
*m
= &event
->m
;
3200 cmdq_merge_formats(item
, ft
);
3201 memcpy(&ft
->m
, m
, sizeof ft
->m
);
3204 /* Create a new tree. */
3205 struct format_tree
*
3206 format_create(struct client
*c
, struct cmdq_item
*item
, int tag
, int flags
)
3208 struct format_tree
*ft
;
3210 ft
= xcalloc(1, sizeof *ft
);
3215 ft
->client
->references
++;
3223 format_create_add_item(ft
, item
);
3230 format_free(struct format_tree
*ft
)
3232 struct format_entry
*fe
, *fe1
;
3234 RB_FOREACH_SAFE(fe
, format_entry_tree
, &ft
->tree
, fe1
) {
3235 RB_REMOVE(format_entry_tree
, &ft
->tree
, fe
);
3241 if (ft
->client
!= NULL
)
3242 server_client_unref(ft
->client
);
3246 /* Log each format. */
3248 format_log_debug_cb(const char *key
, const char *value
, void *arg
)
3250 const char *prefix
= arg
;
3252 log_debug("%s: %s=%s", prefix
, key
, value
);
3255 /* Log a format tree. */
3257 format_log_debug(struct format_tree
*ft
, const char *prefix
)
3259 format_each(ft
, format_log_debug_cb
, (void *)prefix
);
3262 /* Walk each format. */
3264 format_each(struct format_tree
*ft
, void (*cb
)(const char *, const char *,
3267 const struct format_table_entry
*fte
;
3268 struct format_entry
*fe
;
3274 for (i
= 0; i
< nitems(format_table
); i
++) {
3275 fte
= &format_table
[i
];
3277 value
= fte
->cb(ft
);
3280 if (fte
->type
== FORMAT_TABLE_TIME
) {
3282 xsnprintf(s
, sizeof s
, "%lld", (long long)tv
->tv_sec
);
3283 cb(fte
->key
, s
, arg
);
3285 cb(fte
->key
, value
, arg
);
3289 RB_FOREACH(fe
, format_entry_tree
, &ft
->tree
) {
3290 if (fe
->time
!= 0) {
3291 xsnprintf(s
, sizeof s
, "%lld", (long long)fe
->time
);
3292 cb(fe
->key
, s
, arg
);
3294 if (fe
->value
== NULL
&& fe
->cb
!= NULL
) {
3295 fe
->value
= fe
->cb(ft
);
3296 if (fe
->value
== NULL
)
3297 fe
->value
= xstrdup("");
3299 cb(fe
->key
, fe
->value
, arg
);
3304 /* Add a key-value pair. */
3306 format_add(struct format_tree
*ft
, const char *key
, const char *fmt
, ...)
3308 struct format_entry
*fe
;
3309 struct format_entry
*fe_now
;
3312 fe
= xmalloc(sizeof *fe
);
3313 fe
->key
= xstrdup(key
);
3315 fe_now
= RB_INSERT(format_entry_tree
, &ft
->tree
, fe
);
3316 if (fe_now
!= NULL
) {
3319 free(fe_now
->value
);
3327 xvasprintf(&fe
->value
, fmt
, ap
);
3331 /* Add a key and time. */
3333 format_add_tv(struct format_tree
*ft
, const char *key
, struct timeval
*tv
)
3335 struct format_entry
*fe
, *fe_now
;
3337 fe
= xmalloc(sizeof *fe
);
3338 fe
->key
= xstrdup(key
);
3340 fe_now
= RB_INSERT(format_entry_tree
, &ft
->tree
, fe
);
3341 if (fe_now
!= NULL
) {
3344 free(fe_now
->value
);
3349 fe
->time
= tv
->tv_sec
;
3354 /* Add a key and function. */
3356 format_add_cb(struct format_tree
*ft
, const char *key
, format_cb cb
)
3358 struct format_entry
*fe
;
3359 struct format_entry
*fe_now
;
3361 fe
= xmalloc(sizeof *fe
);
3362 fe
->key
= xstrdup(key
);
3364 fe_now
= RB_INSERT(format_entry_tree
, &ft
->tree
, fe
);
3365 if (fe_now
!= NULL
) {
3368 free(fe_now
->value
);
3378 /* Quote shell special characters in string. */
3380 format_quote_shell(const char *s
)
3385 at
= out
= xmalloc(strlen(s
) * 2 + 1);
3386 for (cp
= s
; *cp
!= '\0'; cp
++) {
3387 if (strchr("|&;<>()$`\\\"'*?[# =%", *cp
) != NULL
)
3395 /* Quote #s in string. */
3397 format_quote_style(const char *s
)
3402 at
= out
= xmalloc(strlen(s
) * 2 + 1);
3403 for (cp
= s
; *cp
!= '\0'; cp
++) {
3412 /* Make a prettier time. */
3414 format_pretty_time(time_t t
, int seconds
)
3416 struct tm now_tm
, tm
;
3425 localtime_r(&now
, &now_tm
);
3426 localtime_r(&t
, &tm
);
3428 /* Last 24 hours. */
3429 if (age
< 24 * 3600) {
3431 strftime(s
, sizeof s
, "%H:%M:%S", &tm
);
3433 strftime(s
, sizeof s
, "%H:%M", &tm
);
3434 return (xstrdup(s
));
3437 /* This month or last 28 days. */
3438 if ((tm
.tm_year
== now_tm
.tm_year
&& tm
.tm_mon
== now_tm
.tm_mon
) ||
3439 age
< 28 * 24 * 3600) {
3440 strftime(s
, sizeof s
, "%a%d", &tm
);
3441 return (xstrdup(s
));
3444 /* Last 12 months. */
3445 if ((tm
.tm_year
== now_tm
.tm_year
&& tm
.tm_mon
< now_tm
.tm_mon
) ||
3446 (tm
.tm_year
== now_tm
.tm_year
- 1 && tm
.tm_mon
> now_tm
.tm_mon
)) {
3447 strftime(s
, sizeof s
, "%d%b", &tm
);
3448 return (xstrdup(s
));
3451 /* Older than that. */
3452 strftime(s
, sizeof s
, "%h%y", &tm
);
3453 return (xstrdup(s
));
3456 /* Find a format entry. */
3458 format_find(struct format_tree
*ft
, const char *key
, int modifiers
,
3459 const char *time_format
)
3461 struct format_table_entry
*fte
;
3463 struct format_entry
*fe
, fe_find
;
3464 struct environ_entry
*envent
;
3465 struct options_entry
*o
;
3467 char *found
= NULL
, *saved
, s
[512];
3472 o
= options_parse_get(global_options
, key
, &idx
, 0);
3473 if (o
== NULL
&& ft
->wp
!= NULL
)
3474 o
= options_parse_get(ft
->wp
->options
, key
, &idx
, 0);
3475 if (o
== NULL
&& ft
->w
!= NULL
)
3476 o
= options_parse_get(ft
->w
->options
, key
, &idx
, 0);
3478 o
= options_parse_get(global_w_options
, key
, &idx
, 0);
3479 if (o
== NULL
&& ft
->s
!= NULL
)
3480 o
= options_parse_get(ft
->s
->options
, key
, &idx
, 0);
3482 o
= options_parse_get(global_s_options
, key
, &idx
, 0);
3484 found
= options_to_string(o
, idx
, 1);
3488 fte
= format_table_get(key
);
3490 value
= fte
->cb(ft
);
3491 if (fte
->type
== FORMAT_TABLE_TIME
&& value
!= NULL
)
3492 t
= ((struct timeval
*)value
)->tv_sec
;
3497 fe_find
.key
= (char *)key
;
3498 fe
= RB_FIND(format_entry_tree
, &ft
->tree
, &fe_find
);
3500 if (fe
->time
!= 0) {
3504 if (fe
->value
== NULL
&& fe
->cb
!= NULL
) {
3505 fe
->value
= fe
->cb(ft
);
3506 if (fe
->value
== NULL
)
3507 fe
->value
= xstrdup("");
3509 found
= xstrdup(fe
->value
);
3513 if (~modifiers
& FORMAT_TIMESTRING
) {
3516 envent
= environ_find(ft
->s
->environ
, key
);
3518 envent
= environ_find(global_environ
, key
);
3519 if (envent
!= NULL
&& envent
->value
!= NULL
) {
3520 found
= xstrdup(envent
->value
);
3528 if (modifiers
& FORMAT_TIMESTRING
) {
3529 if (t
== 0 && found
!= NULL
) {
3530 t
= strtonum(found
, 0, INT64_MAX
, &errstr
);
3537 if (modifiers
& FORMAT_PRETTY
)
3538 found
= format_pretty_time(t
, 0);
3540 if (time_format
!= NULL
) {
3541 localtime_r(&t
, &tm
);
3542 strftime(s
, sizeof s
, time_format
, &tm
);
3545 s
[strcspn(s
, "\n")] = '\0';
3553 xasprintf(&found
, "%lld", (long long)t
);
3554 else if (found
== NULL
)
3556 if (modifiers
& FORMAT_BASENAME
) {
3558 found
= xstrdup(basename(saved
));
3561 if (modifiers
& FORMAT_DIRNAME
) {
3563 found
= xstrdup(dirname(saved
));
3566 if (modifiers
& FORMAT_QUOTE_SHELL
) {
3568 found
= format_quote_shell(saved
);
3571 if (modifiers
& FORMAT_QUOTE_STYLE
) {
3573 found
= format_quote_style(saved
);
3579 /* Unescape escaped characters. */
3581 format_unescape(const char *s
)
3586 cp
= out
= xmalloc(strlen(s
) + 1);
3587 for (; *s
!= '\0'; s
++) {
3588 if (*s
== '#' && s
[1] == '{')
3590 if (brackets
== 0 &&
3592 strchr(",#{}:", s
[1]) != NULL
) {
3604 /* Remove escaped characters. */
3606 format_strip(const char *s
)
3611 cp
= out
= xmalloc(strlen(s
) + 1);
3612 for (; *s
!= '\0'; s
++) {
3613 if (*s
== '#' && s
[1] == '{')
3615 if (*s
== '#' && strchr(",#{}:", s
[1]) != NULL
) {
3628 /* Skip until end. */
3630 format_skip(const char *s
, const char *end
)
3634 for (; *s
!= '\0'; s
++) {
3635 if (*s
== '#' && s
[1] == '{')
3637 if (*s
== '#' && strchr(",#{}:", s
[1]) != NULL
) {
3643 if (strchr(end
, *s
) != NULL
&& brackets
== 0)
3651 /* Return left and right alternatives separated by commas. */
3653 format_choose(struct format_expand_state
*es
, const char *s
, char **left
,
3654 char **right
, int expand
)
3657 char *left0
, *right0
;
3659 cp
= format_skip(s
, ",");
3662 left0
= xstrndup(s
, cp
- s
);
3663 right0
= xstrdup(cp
+ 1);
3666 *left
= format_expand1(es
, left0
);
3668 *right
= format_expand1(es
, right0
);
3679 format_true(const char *s
)
3681 if (s
!= NULL
&& *s
!= '\0' && (s
[0] != '0' || s
[1] != '\0'))
3686 /* Check if modifier end. */
3688 format_is_end(char c
)
3690 return (c
== ';' || c
== ':');
3693 /* Add to modifier list. */
3695 format_add_modifier(struct format_modifier
**list
, u_int
*count
,
3696 const char *c
, size_t n
, char **argv
, int argc
)
3698 struct format_modifier
*fm
;
3700 *list
= xreallocarray(*list
, (*count
) + 1, sizeof **list
);
3701 fm
= &(*list
)[(*count
)++];
3703 memcpy(fm
->modifier
, c
, n
);
3704 fm
->modifier
[n
] = '\0';
3711 /* Free modifier list. */
3713 format_free_modifiers(struct format_modifier
*list
, u_int count
)
3717 for (i
= 0; i
< count
; i
++)
3718 cmd_free_argv(list
[i
].argc
, list
[i
].argv
);
3722 /* Build modifier list. */
3723 static struct format_modifier
*
3724 format_build_modifiers(struct format_expand_state
*es
, const char **s
,
3727 const char *cp
= *s
, *end
;
3728 struct format_modifier
*list
= NULL
;
3729 char c
, last
[] = "X;:", **argv
, *value
;
3733 * Modifiers are a ; separated list of the forms:
3734 * l,m,C,a,b,c,d,n,t,w,q,E,T,S,W,P,<,>
3745 while (*cp
!= '\0' && *cp
!= ':') {
3746 /* Skip any separator character. */
3750 /* Check single character modifiers with no arguments. */
3751 if (strchr("labcdnwETSWPL<>", cp
[0]) != NULL
&&
3752 format_is_end(cp
[1])) {
3753 format_add_modifier(&list
, count
, cp
, 1, NULL
, 0);
3758 /* Then try double character with no arguments. */
3759 if ((memcmp("||", cp
, 2) == 0 ||
3760 memcmp("&&", cp
, 2) == 0 ||
3761 memcmp("!=", cp
, 2) == 0 ||
3762 memcmp("==", cp
, 2) == 0 ||
3763 memcmp("<=", cp
, 2) == 0 ||
3764 memcmp(">=", cp
, 2) == 0) &&
3765 format_is_end(cp
[2])) {
3766 format_add_modifier(&list
, count
, cp
, 2, NULL
, 0);
3771 /* Now try single character with arguments. */
3772 if (strchr("mCNst=peq", cp
[0]) == NULL
)
3776 /* No arguments provided. */
3777 if (format_is_end(cp
[1])) {
3778 format_add_modifier(&list
, count
, cp
, 1, NULL
, 0);
3785 /* Single argument with no wrapper character. */
3786 if (!ispunct(cp
[1]) || cp
[1] == '-') {
3787 end
= format_skip(cp
+ 1, ":;");
3791 argv
= xcalloc(1, sizeof *argv
);
3792 value
= xstrndup(cp
+ 1, end
- (cp
+ 1));
3793 argv
[0] = format_expand1(es
, value
);
3797 format_add_modifier(&list
, count
, &c
, 1, argv
, argc
);
3802 /* Multiple arguments with a wrapper character. */
3806 if (cp
[0] == last
[0] && format_is_end(cp
[1])) {
3810 end
= format_skip(cp
+ 1, last
);
3815 argv
= xreallocarray(argv
, argc
+ 1, sizeof *argv
);
3816 value
= xstrndup(cp
, end
- cp
);
3817 argv
[argc
++] = format_expand1(es
, value
);
3821 } while (!format_is_end(cp
[0]));
3822 format_add_modifier(&list
, count
, &c
, 1, argv
, argc
);
3825 format_free_modifiers(list
, *count
);
3833 /* Match against an fnmatch(3) pattern or regular expression. */
3835 format_match(struct format_modifier
*fm
, const char *pattern
, const char *text
)
3843 if (strchr(s
, 'r') == NULL
) {
3844 if (strchr(s
, 'i') != NULL
)
3845 flags
|= FNM_CASEFOLD
;
3846 if (fnmatch(pattern
, text
, flags
) != 0)
3847 return (xstrdup("0"));
3849 flags
= REG_EXTENDED
|REG_NOSUB
;
3850 if (strchr(s
, 'i') != NULL
)
3852 if (regcomp(&r
, pattern
, flags
) != 0)
3853 return (xstrdup("0"));
3854 if (regexec(&r
, text
, 0, NULL
, 0) != 0) {
3856 return (xstrdup("0"));
3860 return (xstrdup("1"));
3863 /* Perform substitution in string. */
3865 format_sub(struct format_modifier
*fm
, const char *text
, const char *pattern
,
3869 int flags
= REG_EXTENDED
;
3871 if (fm
->argc
>= 3 && strchr(fm
->argv
[2], 'i') != NULL
)
3873 value
= regsub(pattern
, with
, text
, flags
);
3875 return (xstrdup(text
));
3879 /* Search inside pane. */
3881 format_search(struct format_modifier
*fm
, struct window_pane
*wp
, const char *s
)
3883 int ignore
= 0, regex
= 0;
3886 if (fm
->argc
>= 1) {
3887 if (strchr(fm
->argv
[0], 'i') != NULL
)
3889 if (strchr(fm
->argv
[0], 'r') != NULL
)
3892 xasprintf(&value
, "%u", window_pane_search(wp
, s
, regex
, ignore
));
3896 /* Does session name exist? */
3898 format_session_name(struct format_expand_state
*es
, const char *fmt
)
3903 name
= format_expand1(es
, fmt
);
3904 RB_FOREACH(s
, sessions
, &sessions
) {
3905 if (strcmp(s
->name
, name
) == 0) {
3907 return (xstrdup("1"));
3911 return (xstrdup("0"));
3914 /* Loop over sessions. */
3916 format_loop_sessions(struct format_expand_state
*es
, const char *fmt
)
3918 struct format_tree
*ft
= es
->ft
;
3919 struct client
*c
= ft
->client
;
3920 struct cmdq_item
*item
= ft
->item
;
3921 struct format_tree
*nft
;
3922 struct format_expand_state next
;
3923 char *expanded
, *value
;
3927 value
= xcalloc(1, 1);
3930 RB_FOREACH(s
, sessions
, &sessions
) {
3931 format_log(es
, "session loop: $%u", s
->id
);
3932 nft
= format_create(c
, item
, FORMAT_NONE
, ft
->flags
);
3933 format_defaults(nft
, ft
->c
, s
, NULL
, NULL
);
3934 format_copy_state(&next
, es
, 0);
3936 expanded
= format_expand1(&next
, fmt
);
3937 format_free(next
.ft
);
3939 valuelen
+= strlen(expanded
);
3940 value
= xrealloc(value
, valuelen
);
3942 strlcat(value
, expanded
, valuelen
);
3949 /* Does window name exist? */
3951 format_window_name(struct format_expand_state
*es
, const char *fmt
)
3953 struct format_tree
*ft
= es
->ft
;
3957 if (ft
->s
== NULL
) {
3958 format_log(es
, "window name but no session");
3962 name
= format_expand1(es
, fmt
);
3963 RB_FOREACH(wl
, winlinks
, &ft
->s
->windows
) {
3964 if (strcmp(wl
->window
->name
, name
) == 0) {
3966 return (xstrdup("1"));
3970 return (xstrdup("0"));
3973 /* Loop over windows. */
3975 format_loop_windows(struct format_expand_state
*es
, const char *fmt
)
3977 struct format_tree
*ft
= es
->ft
;
3978 struct client
*c
= ft
->client
;
3979 struct cmdq_item
*item
= ft
->item
;
3980 struct format_tree
*nft
;
3981 struct format_expand_state next
;
3982 char *all
, *active
, *use
, *expanded
, *value
;
3987 if (ft
->s
== NULL
) {
3988 format_log(es
, "window loop but no session");
3992 if (format_choose(es
, fmt
, &all
, &active
, 0) != 0) {
3997 value
= xcalloc(1, 1);
4000 RB_FOREACH(wl
, winlinks
, &ft
->s
->windows
) {
4002 format_log(es
, "window loop: %u @%u", wl
->idx
, w
->id
);
4003 if (active
!= NULL
&& wl
== ft
->s
->curw
)
4007 nft
= format_create(c
, item
, FORMAT_WINDOW
|w
->id
, ft
->flags
);
4008 format_defaults(nft
, ft
->c
, ft
->s
, wl
, NULL
);
4009 format_copy_state(&next
, es
, 0);
4011 expanded
= format_expand1(&next
, use
);
4014 valuelen
+= strlen(expanded
);
4015 value
= xrealloc(value
, valuelen
);
4017 strlcat(value
, expanded
, valuelen
);
4027 /* Loop over panes. */
4029 format_loop_panes(struct format_expand_state
*es
, const char *fmt
)
4031 struct format_tree
*ft
= es
->ft
;
4032 struct client
*c
= ft
->client
;
4033 struct cmdq_item
*item
= ft
->item
;
4034 struct format_tree
*nft
;
4035 struct format_expand_state next
;
4036 char *all
, *active
, *use
, *expanded
, *value
;
4038 struct window_pane
*wp
;
4040 if (ft
->w
== NULL
) {
4041 format_log(es
, "pane loop but no window");
4045 if (format_choose(es
, fmt
, &all
, &active
, 0) != 0) {
4050 value
= xcalloc(1, 1);
4053 TAILQ_FOREACH(wp
, &ft
->w
->panes
, entry
) {
4054 format_log(es
, "pane loop: %%%u", wp
->id
);
4055 if (active
!= NULL
&& wp
== ft
->w
->active
)
4059 nft
= format_create(c
, item
, FORMAT_PANE
|wp
->id
, ft
->flags
);
4060 format_defaults(nft
, ft
->c
, ft
->s
, ft
->wl
, wp
);
4061 format_copy_state(&next
, es
, 0);
4063 expanded
= format_expand1(&next
, use
);
4066 valuelen
+= strlen(expanded
);
4067 value
= xrealloc(value
, valuelen
);
4069 strlcat(value
, expanded
, valuelen
);
4079 /* Loop over clients. */
4081 format_loop_clients(struct format_expand_state
*es
, const char *fmt
)
4083 struct format_tree
*ft
= es
->ft
;
4084 struct client
*c
= ft
->client
;
4085 struct cmdq_item
*item
= ft
->item
;
4086 struct format_tree
*nft
;
4087 struct format_expand_state next
;
4088 char *expanded
, *value
;
4091 value
= xcalloc(1, 1);
4094 TAILQ_FOREACH(c
, &clients
, entry
) {
4095 format_log(es
, "client loop: %s", c
->name
);
4096 nft
= format_create(c
, item
, 0, ft
->flags
);
4097 format_defaults(nft
, c
, ft
->s
, ft
->wl
, ft
->wp
);
4098 format_copy_state(&next
, es
, 0);
4100 expanded
= format_expand1(&next
, fmt
);
4103 valuelen
+= strlen(expanded
);
4104 value
= xrealloc(value
, valuelen
);
4106 strlcat(value
, expanded
, valuelen
);
4114 format_replace_expression(struct format_modifier
*mexp
,
4115 struct format_expand_state
*es
, const char *copy
)
4117 int argc
= mexp
->argc
;
4119 char *endch
, *value
, *left
= NULL
, *right
= NULL
;
4122 double mleft
, mright
, result
;
4133 LESS_THAN_EQUAL
} operator;
4135 if (strcmp(mexp
->argv
[0], "+") == 0)
4137 else if (strcmp(mexp
->argv
[0], "-") == 0)
4138 operator = SUBTRACT
;
4139 else if (strcmp(mexp
->argv
[0], "*") == 0)
4140 operator = MULTIPLY
;
4141 else if (strcmp(mexp
->argv
[0], "/") == 0)
4143 else if (strcmp(mexp
->argv
[0], "%") == 0 ||
4144 strcmp(mexp
->argv
[0], "m") == 0)
4146 else if (strcmp(mexp
->argv
[0], "==") == 0)
4148 else if (strcmp(mexp
->argv
[0], "!=") == 0)
4149 operator = NOT_EQUAL
;
4150 else if (strcmp(mexp
->argv
[0], ">") == 0)
4151 operator = GREATER_THAN
;
4152 else if (strcmp(mexp
->argv
[0], "<") == 0)
4153 operator = LESS_THAN
;
4154 else if (strcmp(mexp
->argv
[0], ">=") == 0)
4155 operator = GREATER_THAN_EQUAL
;
4156 else if (strcmp(mexp
->argv
[0], "<=") == 0)
4157 operator = LESS_THAN_EQUAL
;
4159 format_log(es
, "expression has no valid operator: '%s'",
4164 /* The second argument may be flags. */
4165 if (argc
>= 2 && strchr(mexp
->argv
[1], 'f') != NULL
) {
4170 /* The third argument may be precision. */
4172 prec
= strtonum(mexp
->argv
[2], INT_MIN
, INT_MAX
, &errstr
);
4173 if (errstr
!= NULL
) {
4174 format_log(es
, "expression precision %s: %s", errstr
,
4180 if (format_choose(es
, copy
, &left
, &right
, 1) != 0) {
4181 format_log(es
, "expression syntax error");
4185 mleft
= strtod(left
, &endch
);
4186 if (*endch
!= '\0') {
4187 format_log(es
, "expression left side is invalid: %s", left
);
4191 mright
= strtod(right
, &endch
);
4192 if (*endch
!= '\0') {
4193 format_log(es
, "expression right side is invalid: %s", right
);
4198 mleft
= (long long)mleft
;
4199 mright
= (long long)mright
;
4201 format_log(es
, "expression left side is: %.*f", prec
, mleft
);
4202 format_log(es
, "expression right side is: %.*f", prec
, mright
);
4206 result
= mleft
+ mright
;
4209 result
= mleft
- mright
;
4212 result
= mleft
* mright
;
4215 result
= mleft
/ mright
;
4218 result
= fmod(mleft
, mright
);
4221 result
= fabs(mleft
- mright
) < 1e-9;
4224 result
= fabs(mleft
- mright
) > 1e-9;
4227 result
= (mleft
> mright
);
4229 case GREATER_THAN_EQUAL
:
4230 result
= (mleft
>= mright
);
4233 result
= (mleft
< mright
);
4235 case LESS_THAN_EQUAL
:
4236 result
= (mleft
<= mright
);
4240 xasprintf(&value
, "%.*f", prec
, result
);
4242 xasprintf(&value
, "%.*f", prec
, (double)(long long)result
);
4243 format_log(es
, "expression result is %s", value
);
4255 /* Replace a key. */
4257 format_replace(struct format_expand_state
*es
, const char *key
, size_t keylen
,
4258 char **buf
, size_t *len
, size_t *off
)
4260 struct format_tree
*ft
= es
->ft
;
4261 struct window_pane
*wp
= ft
->wp
;
4262 const char *errstr
, *copy
, *cp
, *marker
= NULL
;
4263 const char *time_format
= NULL
;
4264 char *copy0
, *condition
, *found
, *new;
4265 char *value
, *left
, *right
;
4267 int modifiers
= 0, limit
= 0, width
= 0;
4269 struct format_modifier
*list
, *cmp
= NULL
, *search
= NULL
;
4270 struct format_modifier
**sub
= NULL
, *mexp
= NULL
, *fm
;
4271 u_int i
, count
, nsub
= 0;
4272 struct format_expand_state next
;
4274 /* Make a copy of the key. */
4275 copy
= copy0
= xstrndup(key
, keylen
);
4277 /* Process modifier list. */
4278 list
= format_build_modifiers(es
, ©
, &count
);
4279 for (i
= 0; i
< count
; i
++) {
4281 if (format_logging(ft
)) {
4282 format_log(es
, "modifier %u is %s", i
, fm
->modifier
);
4283 for (j
= 0; j
< fm
->argc
; j
++) {
4284 format_log(es
, "modifier %u argument %d: %s", i
,
4288 if (fm
->size
== 1) {
4289 switch (fm
->modifier
[0]) {
4301 sub
= xreallocarray(sub
, nsub
+ 1, sizeof *sub
);
4307 limit
= strtonum(fm
->argv
[0], INT_MIN
, INT_MAX
,
4311 if (fm
->argc
>= 2 && fm
->argv
[1] != NULL
)
4312 marker
= fm
->argv
[1];
4317 width
= strtonum(fm
->argv
[0], INT_MIN
, INT_MAX
,
4323 modifiers
|= FORMAT_WIDTH
;
4326 if (fm
->argc
< 1 || fm
->argc
> 3)
4331 modifiers
|= FORMAT_LITERAL
;
4334 modifiers
|= FORMAT_CHARACTER
;
4337 modifiers
|= FORMAT_BASENAME
;
4340 modifiers
|= FORMAT_COLOUR
;
4343 modifiers
|= FORMAT_DIRNAME
;
4346 modifiers
|= FORMAT_LENGTH
;
4349 modifiers
|= FORMAT_TIMESTRING
;
4352 if (strchr(fm
->argv
[0], 'p') != NULL
)
4353 modifiers
|= FORMAT_PRETTY
;
4354 else if (fm
->argc
>= 2 &&
4355 strchr(fm
->argv
[0], 'f') != NULL
)
4356 time_format
= format_strip(fm
->argv
[1]);
4360 modifiers
|= FORMAT_QUOTE_SHELL
;
4361 else if (strchr(fm
->argv
[0], 'e') != NULL
||
4362 strchr(fm
->argv
[0], 'h') != NULL
)
4363 modifiers
|= FORMAT_QUOTE_STYLE
;
4366 modifiers
|= FORMAT_EXPAND
;
4369 modifiers
|= FORMAT_EXPANDTIME
;
4373 strchr(fm
->argv
[0], 'w') != NULL
)
4374 modifiers
|= FORMAT_WINDOW_NAME
;
4375 else if (strchr(fm
->argv
[0], 's') != NULL
)
4376 modifiers
|= FORMAT_SESSION_NAME
;
4379 modifiers
|= FORMAT_SESSIONS
;
4382 modifiers
|= FORMAT_WINDOWS
;
4385 modifiers
|= FORMAT_PANES
;
4388 modifiers
|= FORMAT_CLIENTS
;
4391 } else if (fm
->size
== 2) {
4392 if (strcmp(fm
->modifier
, "||") == 0 ||
4393 strcmp(fm
->modifier
, "&&") == 0 ||
4394 strcmp(fm
->modifier
, "==") == 0 ||
4395 strcmp(fm
->modifier
, "!=") == 0 ||
4396 strcmp(fm
->modifier
, ">=") == 0 ||
4397 strcmp(fm
->modifier
, "<=") == 0)
4402 /* Is this a literal string? */
4403 if (modifiers
& FORMAT_LITERAL
) {
4404 format_log(es
, "literal string is '%s'", copy
);
4405 value
= format_unescape(copy
);
4409 /* Is this a character? */
4410 if (modifiers
& FORMAT_CHARACTER
) {
4411 new = format_expand1(es
, copy
);
4412 c
= strtonum(new, 32, 126, &errstr
);
4414 value
= xstrdup("");
4416 xasprintf(&value
, "%c", c
);
4421 /* Is this a colour? */
4422 if (modifiers
& FORMAT_COLOUR
) {
4423 new = format_expand1(es
, copy
);
4424 c
= colour_fromstring(new);
4425 if (c
== -1 || (c
= colour_force_rgb(c
)) == -1)
4426 value
= xstrdup("");
4428 xasprintf(&value
, "%06x", c
& 0xffffff);
4433 /* Is this a loop, comparison or condition? */
4434 if (modifiers
& FORMAT_SESSIONS
) {
4435 value
= format_loop_sessions(es
, copy
);
4438 } else if (modifiers
& FORMAT_WINDOWS
) {
4439 value
= format_loop_windows(es
, copy
);
4442 } else if (modifiers
& FORMAT_PANES
) {
4443 value
= format_loop_panes(es
, copy
);
4446 } else if (modifiers
& FORMAT_CLIENTS
) {
4447 value
= format_loop_clients(es
, copy
);
4450 } else if (modifiers
& FORMAT_WINDOW_NAME
) {
4451 value
= format_window_name(es
, copy
);
4454 } else if (modifiers
& FORMAT_SESSION_NAME
) {
4455 value
= format_session_name(es
, copy
);
4458 } else if (search
!= NULL
) {
4459 /* Search in pane. */
4460 new = format_expand1(es
, copy
);
4462 format_log(es
, "search '%s' but no pane", new);
4463 value
= xstrdup("0");
4465 format_log(es
, "search '%s' pane %%%u", new, wp
->id
);
4466 value
= format_search(search
, wp
, new);
4469 } else if (cmp
!= NULL
) {
4470 /* Comparison of left and right. */
4471 if (format_choose(es
, copy
, &left
, &right
, 1) != 0) {
4472 format_log(es
, "compare %s syntax error: %s",
4473 cmp
->modifier
, copy
);
4476 format_log(es
, "compare %s left is: %s", cmp
->modifier
, left
);
4477 format_log(es
, "compare %s right is: %s", cmp
->modifier
, right
);
4479 if (strcmp(cmp
->modifier
, "||") == 0) {
4480 if (format_true(left
) || format_true(right
))
4481 value
= xstrdup("1");
4483 value
= xstrdup("0");
4484 } else if (strcmp(cmp
->modifier
, "&&") == 0) {
4485 if (format_true(left
) && format_true(right
))
4486 value
= xstrdup("1");
4488 value
= xstrdup("0");
4489 } else if (strcmp(cmp
->modifier
, "==") == 0) {
4490 if (strcmp(left
, right
) == 0)
4491 value
= xstrdup("1");
4493 value
= xstrdup("0");
4494 } else if (strcmp(cmp
->modifier
, "!=") == 0) {
4495 if (strcmp(left
, right
) != 0)
4496 value
= xstrdup("1");
4498 value
= xstrdup("0");
4499 } else if (strcmp(cmp
->modifier
, "<") == 0) {
4500 if (strcmp(left
, right
) < 0)
4501 value
= xstrdup("1");
4503 value
= xstrdup("0");
4504 } else if (strcmp(cmp
->modifier
, ">") == 0) {
4505 if (strcmp(left
, right
) > 0)
4506 value
= xstrdup("1");
4508 value
= xstrdup("0");
4509 } else if (strcmp(cmp
->modifier
, "<=") == 0) {
4510 if (strcmp(left
, right
) <= 0)
4511 value
= xstrdup("1");
4513 value
= xstrdup("0");
4514 } else if (strcmp(cmp
->modifier
, ">=") == 0) {
4515 if (strcmp(left
, right
) >= 0)
4516 value
= xstrdup("1");
4518 value
= xstrdup("0");
4519 } else if (strcmp(cmp
->modifier
, "m") == 0)
4520 value
= format_match(cmp
, left
, right
);
4524 } else if (*copy
== '?') {
4525 /* Conditional: check first and choose second or third. */
4526 cp
= format_skip(copy
+ 1, ",");
4528 format_log(es
, "condition syntax error: %s", copy
+ 1);
4531 condition
= xstrndup(copy
+ 1, cp
- (copy
+ 1));
4532 format_log(es
, "condition is: %s", condition
);
4534 found
= format_find(ft
, condition
, modifiers
, time_format
);
4535 if (found
== NULL
) {
4537 * If the condition not found, try to expand it. If
4538 * the expansion doesn't have any effect, then assume
4541 found
= format_expand1(es
, condition
);
4542 if (strcmp(found
, condition
) == 0) {
4544 found
= xstrdup("");
4546 "condition '%s' not found; assuming false",
4550 format_log(es
, "condition '%s' found: %s", condition
,
4554 if (format_choose(es
, cp
+ 1, &left
, &right
, 0) != 0) {
4555 format_log(es
, "condition '%s' syntax error: %s",
4560 if (format_true(found
)) {
4561 format_log(es
, "condition '%s' is true", condition
);
4562 value
= format_expand1(es
, left
);
4564 format_log(es
, "condition '%s' is false", condition
);
4565 value
= format_expand1(es
, right
);
4572 } else if (mexp
!= NULL
) {
4573 value
= format_replace_expression(mexp
, es
, copy
);
4575 value
= xstrdup("");
4577 if (strstr(copy
, "#{") != 0) {
4578 format_log(es
, "expanding inner format '%s'", copy
);
4579 value
= format_expand1(es
, copy
);
4581 value
= format_find(ft
, copy
, modifiers
, time_format
);
4582 if (value
== NULL
) {
4583 format_log(es
, "format '%s' not found", copy
);
4584 value
= xstrdup("");
4586 format_log(es
, "format '%s' found: %s", copy
,
4593 /* Expand again if required. */
4594 if (modifiers
& FORMAT_EXPAND
) {
4595 new = format_expand1(es
, value
);
4598 } else if (modifiers
& FORMAT_EXPANDTIME
) {
4599 format_copy_state(&next
, es
, FORMAT_EXPAND_TIME
);
4600 new = format_expand1(&next
, value
);
4605 /* Perform substitution if any. */
4606 for (i
= 0; i
< nsub
; i
++) {
4607 left
= format_expand1(es
, sub
[i
]->argv
[0]);
4608 right
= format_expand1(es
, sub
[i
]->argv
[1]);
4609 new = format_sub(sub
[i
], value
, left
, right
);
4610 format_log(es
, "substitute '%s' to '%s': %s", left
, right
, new);
4617 /* Truncate the value if needed. */
4619 new = format_trim_left(value
, limit
);
4620 if (marker
!= NULL
&& strcmp(new, value
) != 0) {
4622 xasprintf(&value
, "%s%s", new, marker
);
4627 format_log(es
, "applied length limit %d: %s", limit
, value
);
4628 } else if (limit
< 0) {
4629 new = format_trim_right(value
, -limit
);
4630 if (marker
!= NULL
&& strcmp(new, value
) != 0) {
4632 xasprintf(&value
, "%s%s", marker
, new);
4637 format_log(es
, "applied length limit %d: %s", limit
, value
);
4640 /* Pad the value if needed. */
4642 new = utf8_padcstr(value
, width
);
4645 format_log(es
, "applied padding width %d: %s", width
, value
);
4646 } else if (width
< 0) {
4647 new = utf8_rpadcstr(value
, -width
);
4650 format_log(es
, "applied padding width %d: %s", width
, value
);
4653 /* Replace with the length or width if needed. */
4654 if (modifiers
& FORMAT_LENGTH
) {
4655 xasprintf(&new, "%zu", strlen(value
));
4658 format_log(es
, "replacing with length: %s", new);
4660 if (modifiers
& FORMAT_WIDTH
) {
4661 xasprintf(&new, "%u", format_width(value
));
4664 format_log(es
, "replacing with width: %s", new);
4667 /* Expand the buffer and copy in the value. */
4668 valuelen
= strlen(value
);
4669 while (*len
- *off
< valuelen
+ 1) {
4670 *buf
= xreallocarray(*buf
, 2, *len
);
4673 memcpy(*buf
+ *off
, value
, valuelen
);
4676 format_log(es
, "replaced '%s' with '%s'", copy0
, value
);
4680 format_free_modifiers(list
, count
);
4685 format_log(es
, "failed %s", copy0
);
4688 format_free_modifiers(list
, count
);
4693 /* Expand keys in a template. */
4695 format_expand1(struct format_expand_state
*es
, const char *fmt
)
4697 struct format_tree
*ft
= es
->ft
;
4698 char *buf
, *out
, *name
;
4699 const char *ptr
, *s
, *style_end
= NULL
;
4700 size_t off
, len
, n
, outlen
;
4702 char expanded
[8192];
4704 if (fmt
== NULL
|| *fmt
== '\0')
4705 return (xstrdup(""));
4707 if (es
->loop
== FORMAT_LOOP_LIMIT
) {
4708 format_log(es
, "reached loop limit (%u)", FORMAT_LOOP_LIMIT
);
4709 return (xstrdup(""));
4713 format_log(es
, "expanding format: %s", fmt
);
4715 if ((es
->flags
& FORMAT_EXPAND_TIME
) && strchr(fmt
, '%') != NULL
) {
4716 if (es
->time
== 0) {
4717 es
->time
= time(NULL
);
4718 localtime_r(&es
->time
, &es
->tm
);
4720 if (strftime(expanded
, sizeof expanded
, fmt
, &es
->tm
) == 0) {
4721 format_log(es
, "format is too long");
4722 return (xstrdup(""));
4724 if (format_logging(ft
) && strcmp(expanded
, fmt
) != 0)
4725 format_log(es
, "after time expanded: %s", expanded
);
4733 while (*fmt
!= '\0') {
4735 while (len
- off
< 2) {
4736 buf
= xreallocarray(buf
, 2, len
);
4739 buf
[off
++] = *fmt
++;
4744 ch
= (u_char
)*fmt
++;
4748 for (ptr
= fmt
; *ptr
!= '\0'; ptr
++) {
4751 if (*ptr
== ')' && --brackets
== 0)
4754 if (*ptr
!= ')' || brackets
!= 0)
4758 name
= xstrndup(fmt
, n
);
4759 format_log(es
, "found #(): %s", name
);
4761 if ((ft
->flags
& FORMAT_NOJOBS
) ||
4762 (es
->flags
& FORMAT_EXPAND_NOJOBS
)) {
4764 format_log(es
, "#() is disabled");
4766 out
= format_job_get(es
, name
);
4767 format_log(es
, "#() result: %s", out
);
4771 outlen
= strlen(out
);
4772 while (len
- off
< outlen
+ 1) {
4773 buf
= xreallocarray(buf
, 2, len
);
4776 memcpy(buf
+ off
, out
, outlen
);
4784 ptr
= format_skip((char *)fmt
- 2, "}");
4789 format_log(es
, "found #{}: %.*s", (int)n
, fmt
);
4790 if (format_replace(es
, fmt
, n
, &buf
, &len
, &off
) != 0)
4797 * If ##[ (with two or more #s), then it is a style and
4798 * can be left for format_draw to handle.
4800 ptr
= fmt
- (ch
== '[');
4801 n
= 2 - (ch
== '[');
4802 while (*ptr
== '#') {
4807 style_end
= format_skip(fmt
- 2, "]");
4808 format_log(es
, "found #*%zu[", n
);
4809 while (len
- off
< n
+ 2) {
4810 buf
= xreallocarray(buf
, 2, len
);
4813 memcpy(buf
+ off
, fmt
- 2, n
+ 1);
4821 format_log(es
, "found #%c", ch
);
4822 while (len
- off
< 2) {
4823 buf
= xreallocarray(buf
, 2, len
);
4830 if (fmt
> style_end
) { /* skip inside #[] */
4831 if (ch
>= 'A' && ch
<= 'Z')
4832 s
= format_upper
[ch
- 'A'];
4833 else if (ch
>= 'a' && ch
<= 'z')
4834 s
= format_lower
[ch
- 'a'];
4837 while (len
- off
< 3) {
4838 buf
= xreallocarray(buf
, 2, len
);
4846 format_log(es
, "found #%c: %s", ch
, s
);
4847 if (format_replace(es
, s
, n
, &buf
, &len
, &off
) != 0)
4856 format_log(es
, "result is: %s", buf
);
4862 /* Expand keys in a template, passing through strftime first. */
4864 format_expand_time(struct format_tree
*ft
, const char *fmt
)
4866 struct format_expand_state es
;
4868 memset(&es
, 0, sizeof es
);
4870 es
.flags
= FORMAT_EXPAND_TIME
;
4871 return (format_expand1(&es
, fmt
));
4874 /* Expand keys in a template. */
4876 format_expand(struct format_tree
*ft
, const char *fmt
)
4878 struct format_expand_state es
;
4880 memset(&es
, 0, sizeof es
);
4883 return (format_expand1(&es
, fmt
));
4886 /* Expand a single string. */
4888 format_single(struct cmdq_item
*item
, const char *fmt
, struct client
*c
,
4889 struct session
*s
, struct winlink
*wl
, struct window_pane
*wp
)
4891 struct format_tree
*ft
;
4894 ft
= format_create_defaults(item
, c
, s
, wl
, wp
);
4895 expanded
= format_expand(ft
, fmt
);
4900 /* Expand a single string using state. */
4902 format_single_from_state(struct cmdq_item
*item
, const char *fmt
,
4903 struct client
*c
, struct cmd_find_state
*fs
)
4905 return (format_single(item
, fmt
, c
, fs
->s
, fs
->wl
, fs
->wp
));
4908 /* Expand a single string using target. */
4910 format_single_from_target(struct cmdq_item
*item
, const char *fmt
)
4912 struct client
*tc
= cmdq_get_target_client(item
);
4914 return (format_single_from_state(item
, fmt
, tc
, cmdq_get_target(item
)));
4917 /* Create and add defaults. */
4918 struct format_tree
*
4919 format_create_defaults(struct cmdq_item
*item
, struct client
*c
,
4920 struct session
*s
, struct winlink
*wl
, struct window_pane
*wp
)
4922 struct format_tree
*ft
;
4925 ft
= format_create(cmdq_get_client(item
), item
, FORMAT_NONE
, 0);
4927 ft
= format_create(NULL
, item
, FORMAT_NONE
, 0);
4928 format_defaults(ft
, c
, s
, wl
, wp
);
4932 /* Create and add defaults using state. */
4933 struct format_tree
*
4934 format_create_from_state(struct cmdq_item
*item
, struct client
*c
,
4935 struct cmd_find_state
*fs
)
4937 return (format_create_defaults(item
, c
, fs
->s
, fs
->wl
, fs
->wp
));
4940 /* Create and add defaults using target. */
4941 struct format_tree
*
4942 format_create_from_target(struct cmdq_item
*item
)
4944 struct client
*tc
= cmdq_get_target_client(item
);
4946 return (format_create_from_state(item
, tc
, cmdq_get_target(item
)));
4949 /* Set defaults for any of arguments that are not NULL. */
4951 format_defaults(struct format_tree
*ft
, struct client
*c
, struct session
*s
,
4952 struct winlink
*wl
, struct window_pane
*wp
)
4954 struct paste_buffer
*pb
;
4956 if (c
!= NULL
&& c
->name
!= NULL
)
4957 log_debug("%s: c=%s", __func__
, c
->name
);
4959 log_debug("%s: c=none", __func__
);
4961 log_debug("%s: s=$%u", __func__
, s
->id
);
4963 log_debug("%s: s=none", __func__
);
4965 log_debug("%s: wl=%u", __func__
, wl
->idx
);
4967 log_debug("%s: wl=none", __func__
);
4969 log_debug("%s: wp=%%%u", __func__
, wp
->id
);
4971 log_debug("%s: wp=none", __func__
);
4973 if (c
!= NULL
&& s
!= NULL
&& c
->session
!= s
)
4974 log_debug("%s: session does not match", __func__
);
4977 ft
->type
= FORMAT_TYPE_PANE
;
4978 else if (wl
!= NULL
)
4979 ft
->type
= FORMAT_TYPE_WINDOW
;
4981 ft
->type
= FORMAT_TYPE_SESSION
;
4983 ft
->type
= FORMAT_TYPE_UNKNOWN
;
4985 if (s
== NULL
&& c
!= NULL
)
4987 if (wl
== NULL
&& s
!= NULL
)
4989 if (wp
== NULL
&& wl
!= NULL
)
4990 wp
= wl
->window
->active
;
4993 format_defaults_client(ft
, c
);
4995 format_defaults_session(ft
, s
);
4997 format_defaults_winlink(ft
, wl
);
4999 format_defaults_pane(ft
, wp
);
5001 pb
= paste_get_top(NULL
);
5003 format_defaults_paste_buffer(ft
, pb
);
5006 /* Set default format keys for a session. */
5008 format_defaults_session(struct format_tree
*ft
, struct session
*s
)
5013 /* Set default format keys for a client. */
5015 format_defaults_client(struct format_tree
*ft
, struct client
*c
)
5022 /* Set default format keys for a window. */
5024 format_defaults_window(struct format_tree
*ft
, struct window
*w
)
5029 /* Set default format keys for a winlink. */
5031 format_defaults_winlink(struct format_tree
*ft
, struct winlink
*wl
)
5034 format_defaults_window(ft
, wl
->window
);
5038 /* Set default format keys for a window pane. */
5040 format_defaults_pane(struct format_tree
*ft
, struct window_pane
*wp
)
5042 struct window_mode_entry
*wme
;
5045 format_defaults_window(ft
, wp
->window
);
5048 wme
= TAILQ_FIRST(&wp
->modes
);
5049 if (wme
!= NULL
&& wme
->mode
->formats
!= NULL
)
5050 wme
->mode
->formats(wme
, ft
);
5053 /* Set default format keys for paste buffer. */
5055 format_defaults_paste_buffer(struct format_tree
*ft
, struct paste_buffer
*pb
)
5060 /* Return word at given coordinates. Caller frees. */
5062 format_grid_word(struct grid
*gd
, u_int x
, u_int y
)
5064 const struct grid_line
*gl
;
5065 struct grid_cell gc
;
5067 struct utf8_data
*ud
= NULL
;
5073 ws
= options_get_string(global_s_options
, "word-separators");
5076 grid_get_cell(gd
, x
, y
, &gc
);
5077 if (gc
.flags
& GRID_FLAG_PADDING
)
5079 if (utf8_cstrhas(ws
, &gc
.data
) ||
5080 (gc
.data
.size
== 1 && *gc
.data
.data
== ' ')) {
5088 gl
= grid_peek_line(gd
, y
- 1);
5089 if (~gl
->flags
& GRID_LINE_WRAPPED
)
5092 x
= grid_line_length(gd
, y
);
5100 end
= grid_line_length(gd
, y
);
5101 if (end
== 0 || x
== end
- 1) {
5102 if (y
== gd
->hsize
+ gd
->sy
- 1)
5104 gl
= grid_peek_line(gd
, y
);
5105 if (~gl
->flags
& GRID_LINE_WRAPPED
)
5114 grid_get_cell(gd
, x
, y
, &gc
);
5115 if (gc
.flags
& GRID_FLAG_PADDING
)
5117 if (utf8_cstrhas(ws
, &gc
.data
) ||
5118 (gc
.data
.size
== 1 && *gc
.data
.data
== ' '))
5121 ud
= xreallocarray(ud
, size
+ 2, sizeof *ud
);
5122 memcpy(&ud
[size
++], &gc
.data
, sizeof *ud
);
5126 s
= utf8_tocstr(ud
);
5132 /* Return line at given coordinates. Caller frees. */
5134 format_grid_line(struct grid
*gd
, u_int y
)
5136 struct grid_cell gc
;
5137 struct utf8_data
*ud
= NULL
;
5142 for (x
= 0; x
< grid_line_length(gd
, y
); x
++) {
5143 grid_get_cell(gd
, x
, y
, &gc
);
5144 if (gc
.flags
& GRID_FLAG_PADDING
)
5147 ud
= xreallocarray(ud
, size
+ 2, sizeof *ud
);
5148 memcpy(&ud
[size
++], &gc
.data
, sizeof *ud
);
5152 s
= utf8_tocstr(ud
);
5158 /* Return hyperlink at given coordinates. Caller frees. */
5160 format_grid_hyperlink(struct grid
*gd
, u_int x
, u_int y
, struct screen
* s
)
5163 struct grid_cell gc
;
5165 grid_get_cell(gd
, x
, y
, &gc
);
5166 if (gc
.flags
& GRID_FLAG_PADDING
)
5168 if (s
->hyperlinks
== NULL
|| gc
.link
== 0)
5170 if (!hyperlinks_get(s
->hyperlinks
, gc
.link
, &uri
, NULL
, NULL
))
5172 return (xstrdup(uri
));