forked from ArduPilot/APWeb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.h
50 lines (39 loc) · 1.61 KB
/
template.h
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
/*
some simple http template routines
Copyright (C) Andrew Tridgell 2002
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.
*/
#pragma once
typedef void (*template_fn)(struct template_state *, const char *, const char *,
int, char **);
struct template_var {
struct template_var *next;
char *name;
char *value;
template_fn function;
};
struct template_state {
/* methods */
int (*process)(struct template_state *, const char *, int);
void (*put)(struct template_state *, const char *, const char *, template_fn fn);
const char *(*get)(struct template_state *, const char *name);
void (*process_c_call)(struct template_state *, const char *);
int (*process_content)(struct template_state *tmpl, const char *mp, uint32_t size);
/* data */
struct template_var *variables;
struct sock_buf *sock;
};
#define START_TAG "{{"
#define END_TAG "}}"
/* prototypes */
struct template_state *template_init(void *ctx, struct sock_buf *sock);