-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpool.c
325 lines (254 loc) · 7.47 KB
/
pool.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
* Memory pool functions for HTMLCSS library.
*
* https://github.com/michaelrsweet/htmlcss
*
* Copyright © 2018-2021 by Michael R Sweet.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more
* information.
*/
/*
* Include necessary headers...
*/
#include "pool-private.h"
/*
* Local functions...
*/
static int compare_strings(char **a, char **b);
/*
* 'hcPoolDelete()' - Free the memory used by a pool.
*/
void
hcPoolDelete(hc_pool_t *pool) /* I - Memory pool */
{
if (pool)
{
if (pool->num_fonts > 0)
_hcPoolDeleteFonts(pool);
if (pool->num_strings > 0)
{
size_t i; /* Looping var */
char **temp; /* String pointer */
for (i = pool->num_strings, temp = pool->strings; i > 0; i --, temp ++)
free(*temp);
free(pool->strings);
}
free(pool->last_error);
free(pool);
}
}
/*
* '_hcPoolError()' - Display an error message.
*/
bool /* O - `true` to continue, `false` to stop */
_hcPoolError(
hc_pool_t *pool, /* I - Memory pool */
int linenum, /* I - Line number in file or 0 */
const char *message, /* I - Printf-style message string */
...) /* I - Additional arguments as needed */
{
bool ret; /* Return value */
va_list ap; /* Pointer to additional arguments */
va_start(ap, message);
ret = _hcPoolErrorv(pool, linenum, message, ap);
va_end(ap);
return (ret);
}
/*
* '_hcPoolErrorv()' - Display an error message.
*/
bool /* O - `true` to continue, `false` to stop */
_hcPoolErrorv(
hc_pool_t *pool, /* I - Memory pool */
int linenum, /* I - Line number in file or 0 */
const char *message, /* I - Printf-style message string */
va_list ap) /* I - Pointer to additional arguments */
{
char buffer[8192]; /* Message buffer */
vsnprintf(buffer, sizeof(buffer), message, ap);
free(pool->last_error);
pool->last_error = strdup(buffer);
return ((pool->error_cb)(pool->error_ctx, buffer, linenum));
}
/*
* 'hcPoolGetLastError()' - Return the last error message recorded.
*/
const char * /* O - Last error message or `NULL` */
hcPoolGetLastError(hc_pool_t *pool) /* I - Memory pool */
{
return (pool ? pool->last_error : NULL);
}
/*
* 'hcPoolGetString()' - Find or copy a string.
*
* This function finds or makes a copy of the passed string that will be freed
* when the corresponding memory pool is deleted. Since the memory pool only
* maintains a single copy of any string, copied strings are immutable.
*/
const char * /* O - New string pointer */
hcPoolGetString(
hc_pool_t *pool, /* I - Memory pool */
const char *s) /* I - String to find/copy */
{
char *news, /* New string */
**temp; /* Temporary string pointer */
if (!pool || !s)
return (NULL);
else if (!*s)
return ("");
if (pool->num_strings == 1 && !strcmp(pool->strings[0], s))
{
_HC_DEBUG("hcPoolGetString: Existing string '%s' (%p) found.\n", pool->strings[0], (void *)pool->strings[0]);
return (pool->strings[0]);
}
else if (pool->num_strings > 1)
{
if ((temp = bsearch(&s, pool->strings, pool->num_strings, sizeof(char *), (_hc_compare_func_t)compare_strings)) != NULL)
{
_HC_DEBUG("hcPoolGetString: Existing string '%s' (%p) found.\n", *temp, (void *)*temp);
return (*temp);
}
}
if (pool->num_strings >= pool->alloc_strings)
{
if ((temp = realloc(pool->strings, (pool->alloc_strings + 32) * sizeof(char *))) == NULL)
return (NULL);
pool->alloc_strings += 32;
pool->strings = temp;
}
temp = pool->strings + pool->num_strings;
*temp = news = strdup(s);
pool->num_strings ++;
if (pool->num_strings > 1)
qsort(pool->strings, pool->num_strings, sizeof(char *), (_hc_compare_func_t)compare_strings);
_HC_DEBUG("hcPoolGetString: New string '%s' (%p), pool now contains %d strings.\n", news, (void *)news, (int)pool->num_strings);
return (news);
}
/*
* 'hcPoolGetURL()' - Get a file corresponding to a URL.
*/
const char * /* O - Filename or `NULL` on error */
hcPoolGetURL(hc_pool_t *pool, /* I - Memory pool */
const char *url, /* I - URL */
const char *baseurl) /* I - Base URL, if any */
{
const char *mapped; /* Mapped file */
char *ptr, /* Pointer into URL */
temp[1024], /* Temporary path */
newurl[1024]; /* New URL */
if (*url == '/')
{
if (!baseurl)
return (hcPoolGetString(pool, url));
else if (!strncmp(baseurl, "http://", 7))
{
strncpy(temp, baseurl, sizeof(temp) - 1);
temp[sizeof(temp) - 1] = '\0';
if ((ptr = strchr(temp + 7, '/')) != NULL)
*ptr = '\0';
snprintf(newurl, sizeof(newurl), "%s%s", temp, url);
url = newurl;
}
else if (!strncmp(baseurl, "https://", 8))
{
strncpy(temp, baseurl, sizeof(temp) - 1);
temp[sizeof(temp) - 1] = '\0';
if ((ptr = strchr(temp + 8, '/')) != NULL)
*ptr = '\0';
snprintf(newurl, sizeof(newurl), "%s%s", temp, url);
url = newurl;
}
else
return (hcPoolGetString(pool, url));
}
else if (strncmp(url, "http://", 7) && strncmp(url, "https://", 8))
{
if (!baseurl)
{
getcwd(temp, sizeof(temp));
snprintf(newurl, sizeof(newurl), "%s/%s", temp, url);
return (hcPoolGetString(pool, newurl));
}
else
{
strncpy(temp, baseurl, sizeof(temp) - 1);
temp[sizeof(temp) - 1] = '\0';
if ((ptr = strrchr(temp, '/')) != NULL)
*ptr = '\0';
snprintf(newurl, sizeof(newurl), "%s/%s", temp, url);
if (newurl[0] == '/')
return (hcPoolGetString(pool, newurl));
url = newurl;
}
}
if ((mapped = (pool->url_cb)(pool->url_ctx, url, temp, sizeof(temp))) != NULL)
{
if (!pool->urls)
pool->urls = hcDictNew(pool);
hcDictSetKeyValue(pool->urls, url, temp);
mapped = hcPoolGetString(pool, temp);
}
return (mapped);
}
/*
* 'hcPoolNew()' - Create a new memory pool.
*/
hc_pool_t * /* O - New memory pool */
hcPoolNew(void)
{
hc_pool_t *pool = (hc_pool_t *)calloc(1, sizeof(hc_pool_t));
/* New memory pool */
if (pool)
{
pool->error_cb = _hcDefaultErrorCB;
pool->url_cb = _hcDefaultURLCB;
}
return (pool);
}
/*
* 'hcPoolSetErrorCallback()' - Set the error reporting callback.
*
* The default error callback writes the message to `stderr`.
*
* The error callback returns 1 to continue processing or 0 to stop immediately.
*/
void
hcPoolSetErrorCallback(
hc_pool_t *pool, /* I - Memory pool */
hc_error_cb_t cb, /* I - Error callback or `NULL` for the default */
void *ctx) /* I - Context pointer for callback */
{
if (!pool)
return;
pool->error_cb = cb ? cb : _hcDefaultErrorCB;
pool->error_ctx = ctx;
}
/*
* 'hcPoolSetURLCallback()' - Set the URL callback.
*
* The default URL callback supports local files (only).
*
* The URL callback returns a local pathname (copied to the specified buffer)
* or `NULL` if the URL cannot be loaded/found.
*/
void
hcPoolSetURLCallback(
hc_pool_t *pool, /* I - Memory pool */
hc_url_cb_t cb, /* I - URL callback or `NULL` for the default */
void *ctx) /* I - Context pointer for callback */
{
if (!pool)
return;
pool->url_cb = cb ? cb : _hcDefaultURLCB;
pool->url_ctx = ctx;
}
/*
* 'compare_strings()' - Compare two strings...
*/
static int /* O - Result of comparison */
compare_strings(char **a, /* I - First string */
char **b) /* I - Second string */
{
return (strcmp(*a, *b));
}