forked from xonotic/darkplaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filematch.c
223 lines (209 loc) · 5.19 KB
/
filematch.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#ifdef WIN32
#include <windows.h>
#else
#include <dirent.h>
#endif
#include "darkplaces.h"
// LadyHavoc: some portable directory listing code I wrote for lmp2pcx, now used in darkplaces to load id1/*.pak and such...
int matchpattern(const char *in, const char *pattern, int caseinsensitive)
{
return matchpattern_with_separator(in, pattern, caseinsensitive, "/\\:", false);
}
// wildcard_least_one: if true * matches 1 or more characters
// if false * matches 0 or more characters
int matchpattern_with_separator(const char *in, const char *pattern, int caseinsensitive, const char *separators, qbool wildcard_least_one)
{
int c1, c2;
while (*pattern)
{
switch (*pattern)
{
case 0:
return 1; // end of pattern
case '?': // match any single character
if (*in == 0 || strchr(separators, *in))
return 0; // no match
in++;
pattern++;
break;
case '*': // match anything until following string
if(wildcard_least_one)
{
if (*in == 0 || strchr(separators, *in))
return 0; // no match
in++;
}
pattern++;
while (*in)
{
if (strchr(separators, *in))
break;
// see if pattern matches at this offset
if (matchpattern_with_separator(in, pattern, caseinsensitive, separators, wildcard_least_one))
return 1;
// nope, advance to next offset
in++;
}
break;
default:
if (*in != *pattern)
{
if (!caseinsensitive)
return 0; // no match
c1 = *in;
if (c1 >= 'A' && c1 <= 'Z')
c1 += 'a' - 'A';
c2 = *pattern;
if (c2 >= 'A' && c2 <= 'Z')
c2 += 'a' - 'A';
if (c1 != c2)
return 0; // no match
}
in++;
pattern++;
break;
}
}
if (*in)
return 0; // reached end of pattern but not end of input
return 1; // success
}
// a little strings system
void stringlistinit(stringlist_t *list)
{
memset(list, 0, sizeof(*list));
}
void stringlistfreecontents(stringlist_t *list)
{
int i;
for (i = 0;i < list->numstrings;i++)
{
if (list->strings[i])
Z_Free(list->strings[i]);
list->strings[i] = NULL;
}
list->numstrings = 0;
list->maxstrings = 0;
if (list->strings)
Z_Free(list->strings);
list->strings = NULL;
}
void stringlistappend(stringlist_t *list, const char *text)
{
size_t textlen;
char **oldstrings;
if (list->numstrings >= list->maxstrings)
{
oldstrings = list->strings;
list->maxstrings += 4096;
list->strings = (char **) Z_Malloc(list->maxstrings * sizeof(*list->strings));
if (list->numstrings)
memcpy(list->strings, oldstrings, list->numstrings * sizeof(*list->strings));
if (oldstrings)
Z_Free(oldstrings);
}
textlen = strlen(text) + 1;
list->strings[list->numstrings] = (char *) Z_Malloc(textlen);
memcpy(list->strings[list->numstrings], text, textlen);
list->numstrings++;
}
static int stringlistsort_cmp(const void *a, const void *b)
{
return strcasecmp(*(const char **)a, *(const char **)b);
}
void stringlistsort(stringlist_t *list, qbool uniq)
{
int i, j;
if(list->numstrings < 1)
return;
qsort(&list->strings[0], list->numstrings, sizeof(list->strings[0]), stringlistsort_cmp);
if(uniq)
{
// i: the item to read
// j: the item last written
for (i = 1, j = 0; i < list->numstrings; ++i)
{
char *save;
if(!strcasecmp(list->strings[i], list->strings[j]))
continue;
++j;
save = list->strings[j];
list->strings[j] = list->strings[i];
list->strings[i] = save;
}
for(i = j+1; i < list->numstrings; ++i)
{
if (list->strings[i])
Z_Free(list->strings[i]);
}
list->numstrings = j+1;
}
}
// operating system specific code
static void adddirentry(stringlist_t *list, const char *path, const char *name)
{
if (strcmp(name, ".") && strcmp(name, ".."))
{
char temp[MAX_OSPATH];
dpsnprintf( temp, sizeof( temp ), "%s%s", path, name );
stringlistappend(list, temp);
}
}
#ifdef WIN32
void listdirectory(stringlist_t *list, const char *basepath, const char *path)
{
char pattern[4096];
WIN32_FIND_DATA n_file;
HANDLE hFile;
strlcpy (pattern, basepath, sizeof(pattern));
strlcat (pattern, path, sizeof (pattern));
strlcat (pattern, "*", sizeof (pattern));
// ask for the directory listing handle
hFile = FindFirstFile(pattern, &n_file);
if(hFile == INVALID_HANDLE_VALUE)
return;
do {
adddirentry(list, path, n_file.cFileName);
} while (FindNextFile(hFile, &n_file) != 0);
FindClose(hFile);
}
#else
void listdirectory(stringlist_t *list, const char *basepath, const char *path)
{
char fullpath[MAX_OSPATH];
DIR *dir;
struct dirent *ent;
dpsnprintf(fullpath, sizeof(fullpath), "%s%s", basepath, path);
#ifdef __ANDROID__
// SDL currently does not support listing assets, so we have to emulate
// it. We're using relative paths for assets, so that will do.
if (basepath[0] != '/')
{
char listpath[MAX_OSPATH];
qfile_t *listfile;
dpsnprintf(listpath, sizeof(listpath), "%sls.txt", fullpath);
char *buf = (char *) FS_SysLoadFile(listpath, tempmempool, true, NULL);
if (!buf)
return;
char *p = buf;
for (;;)
{
char *q = strchr(p, '\n');
if (q == NULL)
break;
*q = 0;
adddirentry(list, path, p);
p = q + 1;
}
Mem_Free(buf);
return;
}
#endif
dir = opendir(fullpath);
if (!dir)
return;
while ((ent = readdir(dir)))
adddirentry(list, path, ent->d_name);
closedir(dir);
}
#endif