-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtemplate.c
370 lines (317 loc) · 7.55 KB
/
template.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/*
some simple html template routines
Copyright (C) Andrew Tridgell 2001
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
static void process_tag(struct template_state *tmpl, const char *tag);
/*
fetch a variable from the template variables list
*/
static struct template_var *find_var(struct template_state *tmpl, const char *name)
{
struct template_var *var;
for (var = tmpl->variables; var; var = var->next) {
if (strcmp(var->name, name) == 0) {
return var;
}
}
return NULL;
}
/*
add a name/value pair to the list of template variables
*/
static void put(struct template_state *tmpl, const char *name,
const char *value, template_fn fn)
{
struct template_var *var;
if (!name || !value) return;
var = find_var(tmpl, name);
if (var) {
free(var->value);
} else {
var = malloc(sizeof(*var));
var->next = tmpl->variables;
tmpl->variables = var;
var->name = strdup(name);
var->function = fn;
}
var->value = strdup(value);
}
/* fetch a variable from the template variables list */
static const char *get(struct template_state *tmpl, const char *name)
{
struct template_var *var;
var = find_var(tmpl, name);
if (var) return var->value;
return NULL;
}
/* process a template variable */
static void process_variable(struct template_state *tmpl, const char *tag)
{
const char *v = tmpl->get(tmpl, tag);
if (v) {
printf("%s", v);
}
}
/* process setting a template variable */
static void process_set_var(struct template_state *tmpl, char *tag)
{
char *p;
p = strchr(tag, '=');
if (!p) return;
*p++ = 0;
trim_tail(tag, " \t");
trim_tail(p, " \t");
while (isspace(*p)) p++;
tmpl->put(tmpl, tag, p, NULL);
}
/* process a template variable with quote escaping */
static void process_escaped_variable(struct template_state *tmpl, const char *tag)
{
const char *v = tmpl->get(tmpl, tag);
while (v && *v) {
if (*v == '"') {
printf(""");
} else {
fputc(*v, stdout);
}
v++;
}
}
/* process a inline shell script
all current template variables are passed to the script in the environment
recursively processes any tags in the output of the script
*/
static void process_shell(struct template_state *tmpl, const char *tag, int recurse)
{
pid_t pid;
fflush(stdout);
if ((pid=fork()) == 0) {
struct template_var *var;
FILE *p;
char *tag1=NULL;
int c, taglen=0;
for (var = tmpl->variables; var; var = var->next) {
setenv(var->name, var->value, 1);
}
dup2(1, 2);
p = popen(tag, "r");
if (!p) {
printf("Failed to execute script\n");
exit(1);
}
while ((c = fgetc(p)) != EOF) {
int depth;
tag1 = realloc(tag1, taglen+2);
tag1[taglen++] = c; tag1[taglen] = 0;
if (!recurse || strncmp(tag1, START_TAG, taglen) != 0) {
fputs(tag1, stdout);
free(tag1); tag1 = NULL; taglen = 0;
continue;
}
if (strcmp(tag1, START_TAG) != 0) continue;
depth = 1;
/* keep going until END_TAG */
while (depth && (c = fgetc(p)) != EOF) {
tag1 = realloc(tag1, taglen+2);
tag1[taglen++] = c; tag1[taglen] = 0;
if (strcmp(tag1+taglen-strlen(END_TAG),
END_TAG) == 0) {
depth--;
}
if (strcmp(tag1+taglen-strlen(START_TAG),
START_TAG) == 0) {
depth++;
}
}
if (depth) continue;
tag1[taglen-strlen(END_TAG)] = 0;
process_tag(tmpl, tag1+strlen(START_TAG));
free(tag1); tag1 = NULL; taglen = 0;
}
if (tag1) {
fputs(tag1, stdout);
free(tag1);
}
fflush(stdout);
fclose(p);
exit(1);
}
waitpid(pid, NULL, 0);
}
/* process a call into a C function setup with put_function() */
static void process_c_call(struct template_state *tmpl, const char *tag)
{
struct template_var *var;
char *name, *args, *p, *tok;
char **argv;
int argc=0;
if (!(p=strchr(tag, '('))) return;
name = strndup(tag, strcspn(tag, "("));
var = find_var(tmpl, name);
if (!var || !var->function) {
free(name);
return;
}
args = strndup(p+1, strcspn(p+1, ")"));
argv = malloc(sizeof(char *));
for (tok = strtok_r(args, ",", &p); tok; tok = strtok_r(NULL, ",", &p)) {
argv = realloc(argv, (argc+2)*sizeof(char *));
while (isspace(*tok)) tok++;
trim_tail(tok, " \t\r\n");
argv[argc++] = tok;
}
argv[argc] = NULL;
var->function(tmpl, name, var->value, argc, argv);
free(args);
free(name);
}
/*
process a single tag
*/
static void process_tag(struct template_state *tmpl, const char *tag)
{
char *tag2, *p;
int recurse = 1;
while (isspace(*tag)) tag++;
tag2 = strdup(tag);
trim_tail(tag2, " \t\n\r");
p = tag2;
if (*p == '-') {
p++;
recurse = 0;
}
switch (*p) {
case '$':
process_variable(tmpl, p+1);
break;
case '%':
process_escaped_variable(tmpl, p+1);
break;
case '!':
process_shell(tmpl, p+1, recurse);
break;
case '@':
process_c_call(tmpl, p+1);
break;
case '#':
/* its a comment, ignore it */
break;
default:
if (strchr(tag2, '=')) {
process_set_var(tmpl, p);
} else {
/* an include file */
tmpl->process(tmpl, p, recurse);
}
}
free(tag2);
fflush(stdout);
}
/*
process a template file
*/
static int process(struct template_state *tmpl, const char *filename, int recurse)
{
size_t size, remaining;
char *m, *mp;
char *p, *s;
setvbuf(stdout, NULL, _IONBF, 0);
mp = map_file(filename, &size);
if (!mp) {
fprintf(stderr,"Failed to map %s (%s)\n",
filename, strerror(errno));
return -1;
}
remaining = size;
m = mp;
if (strncmp(m, "#!", 2) == 0) {
/* advance past shell script tag */
m = strchr(m, '\n');
if (!m) return 0;
m++;
remaining -= (m-mp);
}
/* tags look like {{ TAG }}
where TAG can be of several forms
*/
while (recurse && remaining && (p = strstr(m, START_TAG))) {
const char *m0 = m;
int len;
char *contents, *s2, *m2;
int depth=1;
fwrite(m, 1, (p-m), stdout);
m = p + strlen(START_TAG);
m2 = m;
while (depth) {
s2 = strstr(m2, START_TAG);
s = strstr(m2, END_TAG);
if (!s) break;
if (s2 && s2 < s) {
depth++;
m2 = s2 + strlen(START_TAG);
} else {
depth--;
m2 = s + strlen(END_TAG);
}
}
if (!s || depth) {
fprintf(stderr,"No termination of tag!\n");
return -1;
}
len = (s-m);
while (len && isspace(m[len-1])) len--;
contents = strndup(m, len);
process_tag(tmpl, contents);
free(contents);
m = s + strlen(END_TAG);
remaining -= (m - m0);
}
if (remaining > 0) {
fwrite(m, 1, remaining, stdout);
}
fflush(stdout);
unmap_file(mp, size);
return 0;
}
/*
destroy a open template
*/
static void destroy(struct template_state *tmpl)
{
while (tmpl->variables) {
struct template_var *var = tmpl->variables;
free(var->name);
free(var->value);
tmpl->variables = tmpl->variables->next;
free(var);
}
memset(tmpl, 0, sizeof(tmpl));
free(tmpl);
}
static struct template_state template_base = {
/* methods */
process,
put,
get,
destroy
/* rest are zero */
};
struct template_state *template_init(void)
{
struct template_state *tmpl;
tmpl = x_malloc(sizeof(*tmpl));
memcpy(tmpl, &template_base, sizeof(*tmpl));
return tmpl;
}