-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmatch.c
99 lines (90 loc) · 1.97 KB
/
match.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* match.c: pattern matching routines */
#include "rc.h"
static int rangematch(char *, char);
/* match() matches a single pattern against a single string. */
extern bool match(char *p, char *m, char *s) {
struct { char *p, *m, *s; } next;
if (m == NULL)
return streq(p, s);
next.s = NULL;
while (*p || *s) {
if (*p) {
if (!*m) {
/* ordinary character */
if (*s == *p) {
p++, m++, s++;
continue;
}
} else switch (*p) {
case '?':
if (*s) {
p++, m++, s++;
continue;
}
break;
case '[': {
int r = 1 + rangematch(p+1, *s);
if (r > 0) {
p += r, m += r, s++;
continue;
}
break;
}
case '*':
next.p = p++;
next.m = m++;
next.s = *s ? s+1 : NULL;
continue;
default:
panic("bad metacharacter in match");
/* NOTREACHED */
return FALSE; /* hush up gcc -Wall */
}
}
if (next.s != NULL) {
p = next.p;
m = next.m;
s = next.s;
continue;
}
return FALSE;
}
return TRUE;
}
/*
From the ed(1) man pages (on ranges):
The `-' is treated as an ordinary character if it occurs first
(or first after an initial ^) or last in the string.
The right square bracket does not terminate the enclosed string
if it is the first character (after an initial `^', if any), in
the bracketed string.
rangematch() matches a single character against a class, and returns
an integer offset to the end of the range on success, or -1 on
failure.
*/
static int rangematch(char *p, char c) {
char *orig = p;
bool neg = (*p == '~');
bool matched = FALSE;
if (neg)
p++;
if (*p == ']') {
p++;
matched = (c == ']');
}
for (; *p != ']'; p++) {
if (*p == '\0')
return c == '[' ? 0 : -1; /* no right-bracket */
if (p[1] == '-' && p[2] != ']') { /* check for [..-..] but ignore [..-] */
if (c >= *p)
matched |= (c <= p[2]);
p += 2;
} else {
matched |= (*p == c);
}
}
if (matched ^ neg)
return p - orig + 1; /* skip the right-bracket */
else
return -1;
}