Skip to content

Commit a0a9579

Browse files
author
nicm
committed
Change find-window and monitor-content to use fnmatch(3). For convenience and
compatibility, *s are implicitly added at the start and end of the pattern.
1 parent 1168484 commit a0a9579

File tree

6 files changed

+43
-86
lines changed

6 files changed

+43
-86
lines changed

cmd-find-window.c

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: cmd-find-window.c,v 1.8 2009-05-19 13:32:55 tcunha Exp $ */
1+
/* $OpenBSD: cmd-find-window.c,v 1.2 2009/06/24 22:49:56 nicm Exp $ */
22

33
/*
44
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -18,6 +18,7 @@
1818

1919
#include <sys/types.h>
2020

21+
#include <fnmatch.h>
2122
#include <string.h>
2223

2324
#include "tmux.h"
@@ -58,8 +59,8 @@ cmd_find_window_exec(struct cmd *self, struct cmd_ctx *ctx)
5859
struct window_pane *wp;
5960
ARRAY_DECL(, u_int) list_idx;
6061
ARRAY_DECL(, char *) list_ctx;
61-
char *sres, *sctx;
62-
u_int i;
62+
char *sres, *sctx, *searchstr;
63+
u_int i, line;
6364

6465
if (ctx->curclient == NULL) {
6566
ctx->error(ctx, "must be run interactively");
@@ -73,25 +74,28 @@ cmd_find_window_exec(struct cmd *self, struct cmd_ctx *ctx)
7374
ARRAY_INIT(&list_idx);
7475
ARRAY_INIT(&list_ctx);
7576

77+
xasprintf(&searchstr, "*%s*", data->arg);
7678
RB_FOREACH(wm, winlinks, &s->windows) {
7779
i = 0;
7880
TAILQ_FOREACH(wp, &wm->window->panes, entry) {
7981
i++;
8082

81-
if (strstr(wm->window->name, data->arg) != NULL)
83+
if (fnmatch(searchstr, wm->window->name, 0) == 0)
8284
sctx = xstrdup("");
8385
else {
84-
sres = window_pane_search(wp, data->arg);
86+
sres = window_pane_search(wp, data->arg, &line);
8587
if (sres == NULL &&
86-
strstr(wp->base.title, data->arg) == NULL)
88+
fnmatch(searchstr, wp->base.title, 0) != 0)
8789
continue;
8890

8991
if (sres == NULL) {
9092
xasprintf(&sctx,
9193
"pane %u title: \"%s\"", i - 1,
9294
wp->base.title);
9395
} else {
94-
xasprintf(&sctx, "\"%s\"", sres);
96+
xasprintf(&sctx,
97+
"pane %u line %u: \"%s\"", i - 1,
98+
line + 1, sres);
9599
xfree(sres);
96100
}
97101
}
@@ -100,6 +104,7 @@ cmd_find_window_exec(struct cmd *self, struct cmd_ctx *ctx)
100104
ARRAY_ADD(&list_ctx, sctx);
101105
}
102106
}
107+
xfree(searchstr);
103108

104109
if (ARRAY_LENGTH(&list_idx) == 0) {
105110
ctx->error(ctx, "no windows matching: %s", data->arg);

grid.c

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: grid.c,v 1.3 2009/06/24 22:04:18 nicm Exp $ */
1+
/* $OpenBSD: grid.c,v 1.4 2009/06/24 22:49:56 nicm Exp $ */
22

33
/*
44
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -502,7 +502,7 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx)
502502
const struct grid_utf8 *gu;
503503
char *buf;
504504
size_t len, off;
505-
u_int xx;
505+
u_int xx, i;
506506

507507
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx);
508508

@@ -522,10 +522,11 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx)
522522
}
523523

524524
gu = grid_peek_utf8(gd, xx, py);
525-
memcpy(buf + off, gu->data, UTF8_SIZE);
526-
off += UTF8_SIZE;
527-
while (off > 0 && ((u_char) buf[off]) == 0xff)
528-
off--;
525+
for (i = 0; i < UTF8_SIZE; i++) {
526+
if (gu->data[i] == 0xff)
527+
break;
528+
buf[off++] = gu->data[i];
529+
}
529530
} else {
530531
while (len < off + 2) {
531532
buf = xrealloc(buf, 2, len);
@@ -535,7 +536,9 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx)
535536
buf[off++] = gc->data;
536537
}
537538
}
538-
539+
540+
while (off > 0 && buf[off - 1] == ' ')
541+
off--;
539542
buf[off] = '\0';
540543
return (buf);
541544
}

server.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: server.c,v 1.2 2009/06/24 17:36:15 nicm Exp $ */
1+
/* $OpenBSD: server.c,v 1.3 2009/06/24 22:49:56 nicm Exp $ */
22

33
/*
44
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -973,7 +973,7 @@ server_check_window_content(
973973
return (0);
974974
if (session_alert_has_window(s, w, WINDOW_CONTENT))
975975
return (0);
976-
if ((found = window_pane_search(wp, ptr)) == NULL)
976+
if ((found = window_pane_search(wp, ptr, NULL)) == NULL)
977977
return (0);
978978
session_alert_add(s, w, WINDOW_CONTENT);
979979
xfree(found);

tmux.h

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: tmux.h,v 1.9 2009/06/24 22:04:18 nicm Exp $ */
1+
/* $OpenBSD: tmux.h,v 1.10 2009/06/24 22:49:56 nicm Exp $ */
22

33
/*
44
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1577,7 +1577,8 @@ void window_pane_parse(struct window_pane *);
15771577
void window_pane_key(struct window_pane *, struct client *, int);
15781578
void window_pane_mouse(struct window_pane *,
15791579
struct client *, u_char, u_char, u_char);
1580-
char *window_pane_search(struct window_pane *, const char *);
1580+
char *window_pane_search(
1581+
struct window_pane *, const char *, u_int *);
15811582

15821583
/* layout.c */
15831584
const char * layout_name(struct window *);
@@ -1647,10 +1648,6 @@ int session_last(struct session *);
16471648
void utf8_build(void);
16481649
int utf8_width(const u_char *);
16491650

1650-
/* util.c */
1651-
char *section_string(char *, size_t, size_t, size_t);
1652-
void clean_string(const char *, char *, size_t);
1653-
16541651
/* osdep-*.c */
16551652
char *osdep_get_name(int, char *);
16561653

util.c

-52
This file was deleted.

window.c

+16-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: window.c,v 1.4 2009/06/24 22:04:18 nicm Exp $ */
1+
/* $OpenBSD: window.c,v 1.5 2009/06/24 22:49:56 nicm Exp $ */
22

33
/*
44
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -21,6 +21,7 @@
2121

2222
#include <errno.h>
2323
#include <fcntl.h>
24+
#include <fnmatch.h>
2425
#include <signal.h>
2526
#include <stdint.h>
2627
#include <stdlib.h>
@@ -602,23 +603,26 @@ window_pane_mouse(
602603
}
603604

604605
char *
605-
window_pane_search(struct window_pane *wp, const char *searchstr)
606+
window_pane_search(struct window_pane *wp, const char *searchstr, u_int *lineno)
606607
{
607608
struct screen *s = &wp->base;
608-
char *line, *ptr;
609+
char *newsearchstr, *line, *msg;
609610
u_int i;
610611

611-
ptr = NULL;
612+
msg = NULL;
613+
xasprintf(&newsearchstr, "*%s*", searchstr);
614+
612615
for (i = 0; i < screen_size_y(s); i++) {
613616
line = grid_view_string_cells(s->grid, 0, i, screen_size_x(s));
614-
log_debug("XXX %s", line);
615-
if ((ptr = strstr(line, searchstr)) != NULL)
616-
break;
617-
xfree(line);
618-
}
619-
if (ptr != NULL) {
620-
ptr = section_string(line, strlen(ptr), ptr - line, 40);
617+
if (fnmatch(newsearchstr, line, 0) == 0) {
618+
msg = line;
619+
if (lineno != NULL)
620+
*lineno = i;
621+
break;
622+
}
621623
xfree(line);
622624
}
623-
return (ptr);
625+
626+
xfree(newsearchstr);
627+
return (msg);
624628
}

0 commit comments

Comments
 (0)