-
Notifications
You must be signed in to change notification settings - Fork 67
/
module-webif-tpl.h
63 lines (50 loc) · 2.27 KB
/
module-webif-tpl.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
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef MODULE_WEBIF_TPL_H_
#define MODULE_WEBIF_TPL_H_
#ifdef WEBIF
/* Templates: Adds a variable. The variable can be used as often as wanted. */
#define TPLADD 0
/* Templates: Appends a variable or adds it if doesn't exist yet. The variable can be used as often as wanted. */
#define TPLAPPEND 1
/* Templates: Adds a variable which will be reset to "" after being used once, either through tpl_getVar or when used in a template.
tpl_addVar/tpl_printf don't do a reset and will overwrite the appendmode with a new value. */
#define TPLADDONCE 2
/* Templates: Appends a variable or adds it if doesn't exist yet. The variable will be reset to "" after being used once. See TPLADDONCE for details. */
#define TPLAPPENDONCE 3
#define TOUCH_SUBDIR "touch/"
struct templatevars
{
uint32_t varscnt;
uint32_t varsalloc;
uint32_t tmpcnt;
uint32_t tmpalloc;
char **names;
char **values;
uint8_t *vartypes;
char **tmp;
uint8_t messages;
};
void webif_tpls_prepare(void);
void webif_tpls_free(void);
struct templatevars *tpl_create(void);
void tpl_clear(struct templatevars *vars);
void tpl_addVar(struct templatevars *vars, uint8_t addmode, const char *name, const char *value);
void tpl_addMsg(struct templatevars *vars, const char *value);
void tpl_printf(struct templatevars *vars, uint8_t addmode, const char *varname, const char *fmtstring, ...) __attribute__((format(printf, 4, 5)));
char *tpl_getVar(struct templatevars *vars, const char *name);
char *tpl_getFilePathInSubdir(const char *path, const char *subdir, const char *name, const char *ext, char *result, uint32_t resultsize);
char *tpl_getTplPath(const char *name, const char *path, char *result, uint32_t resultsize);
char *tpl_getTpl(struct templatevars *vars, const char *name);
char *tpl_getUnparsedTpl(const char *name, int8_t removeHeader, const char *subdir);
int32_t tpl_saveIncludedTpls(const char *path);
void tpl_checkOneDirDiskRevisions(const char *subdir);
void tpl_checkDiskRevisions(void);
char *urlencode(struct templatevars *vars, const char *str);
char *xml_encode(struct templatevars *vars, const char *chartoencode);
char *sec2timeformat(struct templatevars *vars, int32_t seconds);
#else
static inline void webif_tpls_free(void)
{
return;
}
#endif
#endif