* make error logging NULL safe.
[citadel.git] / webcit / subst.h
1
2 extern HashList *Conditionals;
3 extern HashList *GlobalNS;
4 extern HashList *Iterators;
5 extern HashList *WirelessTemplateCache;
6 extern HashList *WirelessLocalTemplateCache;
7 extern HashList *TemplateCache;
8 extern HashList *LocalTemplateCache;
9
10
11 #define TYPE_STR   1
12 #define TYPE_LONG  2
13 #define TYPE_PREFSTR 3
14 #define TYPE_PREFINT 4
15 #define TYPE_GETTEXT 5
16 #define TYPE_BSTR 6
17 #define TYPE_SUBTEMPLATE 7
18 #define MAXPARAM  20
19
20
21 /*
22  * \brief Values for wcs_type
23  */
24 enum {
25         WCS_STRING,       /* its a string */
26         WCS_FUNCTION,     /* its a function callback */
27         WCS_SERVCMD,      /* its a command to send to the citadel server */
28         WCS_STRBUF,       /* its a strbuf we own */
29         WCS_STRBUF_REF,   /* its a strbuf we mustn't free */
30         WCS_LONG          /* its an integer */
31 };
32
33 #define CTX TP->Context
34 #define CCTX TP->ControlContext
35
36 #define CTX_NONE 0
37 #define CTX_SITECFG 1
38 #define CTX_SESSION 2
39 #define CTX_INETCFG 3
40 #define CTX_VNOTE 4
41 #define CTX_WHO 5
42 #define CTX_PREF 6
43 #define CTX_NODECONF 7
44 #define CTX_USERLIST 8
45 #define CTX_MAILSUM 9
46 #define CTX_MIME_ATACH 10
47 #define CTX_FILELIST 11
48 #define CTX_STRBUF 12
49 #define CTX_LONGVECTOR 13
50 #define CTX_ROOMS 14
51 #define CTX_FLOORS 15
52 #define CTX_ITERATE 16
53
54 #define CTX_UNKNOWN 17
55
56
57 /**
58  * ContextFilter resembles our RTTI information. With this structure
59  * we can make shure a tmplput function can live with the environment
60  * we call it in.
61  * if not, we will log/print an error and refuse to call it.
62  */
63 typedef struct _contexts {
64         int ContextType;                /* do we require a User Context ? */
65         int ControlContextType;         /* are we inside of a control structure? */
66         int nMinArgs;                   /* How many arguments do we need at least? */
67         int nMaxArgs;                   /* up to how many arguments can we handle? */
68 } ContextFilter;
69
70
71 /* Forward declarations... */
72 typedef struct WCTemplateToken WCTemplateToken;
73 typedef struct WCTemplputParams WCTemplputParams;
74
75 /* this is the signature of a tmplput function */
76 typedef void (*WCHandlerFunc)(StrBuf *Target, WCTemplputParams *TP);
77
78 /* make a template token a lookup key: */
79 #define TKEY(a) TP->Tokens->Params[a]->Start, TP->Tokens->Params[a]->len
80
81 /* TODO: wcsubst should be private! */
82
83 /*
84  * \brief Dynamic content for variable substitution in templates
85  */
86 typedef struct _wcsubst {
87         ContextFilter Filter;
88         int wcs_type;                       /* which type of Substitution are we */
89         char wcs_key[32];                   /* copy of our hashkey for debugging */
90         StrBuf *wcs_value;                  /* if we're a string, keep it here */
91         long lvalue;                        /* type long? keep data here */
92         WCHandlerFunc wcs_function; /* funcion hook ???*/
93 } wcsubst;
94
95
96 /**
97  * this is the signature of a conditional function 
98  * Note: Target is just passed in for error messages; don't write onto it in regular cases.
99  */
100 typedef int (*WCConditionalFunc)(StrBuf *Target, WCTemplputParams *TP);
101
102
103 typedef struct _TemplateParam {
104         /* are we a string or a number? */
105         int Type;
106         /* string data: */
107         const char *Start;
108         long len;
109         /* if we're a number: */
110         long lvalue;
111 } TemplateParam;
112
113
114 /**
115  * Representation of a token; everything thats inbetween <? and >
116  */ 
117 struct WCTemplateToken {
118         /* Reference to the filename we're in to print error messages; not to be freed */
119         const StrBuf *FileName; 
120         /* Raw copy of our original token; for error printing */
121         StrBuf *FlatToken;
122         /* Which line did the template parser pick us up in? For error printing */
123         long Line;
124
125         /* our position in the template cache buffer */
126         const char *pTokenStart;
127         /* our token length */
128         size_t TokenStart;
129         size_t TokenEnd;
130         /* point after us */
131         const char *pTokenEnd;
132         /* just our token name: */
133         const char *pName;
134         size_t NameEnd;
135
136         /* stuff the pre-evaluater finds out: */
137         int Flags;
138         /* pointer to our runntime evaluator; so we can cache this and save hash-lookups */
139         void *PreEval;
140
141         /* if we have parameters here we go: */
142         /* do we have parameters or not? */
143         int HaveParameters;
144         /* How many of them? */
145         int nParameters;
146         /* the parameters */
147         TemplateParam *Params[MAXPARAM];
148 };
149
150
151
152 struct WCTemplputParams {
153         ContextFilter Filter;
154         void *Context;
155         void *ControlContext;
156         int nArgs;
157         WCTemplateToken *Tokens;
158 };
159
160
161
162 typedef struct _ConditionalStruct {
163         ContextFilter Filter;
164         const char *PlainName;
165         WCConditionalFunc CondF;
166 } ConditionalStruct;
167
168
169
170
171 typedef void (*SubTemplFunc)(StrBuf *TemplBuffer, WCTemplputParams *TP);
172 typedef HashList *(*RetrieveHashlistFunc)(StrBuf *Target, WCTemplputParams *TP);
173 typedef void (*HashDestructorFunc) (HashList **KillMe);
174
175
176 extern WCTemplputParams NoCtx;
177
178
179
180
181 #define ERR_NAME 0
182 #define ERR_PARM1 1
183 #define ERR_PARM2 2
184 /**
185  * \Brief log an error while evaluating a token; print it to the actual template 
186  * \param Target your Target Buffer to print the error message next to the log
187  * \param Type What sort of thing are we talking about? Tokens? Conditionals?
188  * \param TP grab our set of default information here
189  * \param Format for the custom error message
190  */ 
191 void LogTemplateError (StrBuf *Target, 
192                        const char *Type, 
193                        int ErrorPos, 
194                        WCTemplputParams *TP, 
195                        const char *Format, ...)__attribute__((__format__(__printf__,5,6)));
196
197 /**
198  * \Brief get the actual value of a token parameter
199  * in your tmplputs or conditionals use this function to access parameters that can also be 
200  * retrieved from dynamic facilities:
201  *  _ -> Gettext; retrieve this token from the i18n facilities
202  *  : -> lookup a setting of that name
203  *  B -> bstr; an URL-Parameter
204  *  = -> subtemplate; parse a template by this name, and treat its content as this tokens value 
205  * 
206  * \param N which token do you want to lookup?
207  * \param Value reference to the string of the token; don't free me.
208  * \param len the length of Value
209  */
210 void GetTemplateTokenString(WCTemplputParams *TP,
211                             int N,
212                             const char **Value, 
213                             long *len);
214
215 /**
216  * \Brief put a token value into the template
217  * use this function to append your strings into a Template. 
218  * it can escape your string according to the token at FormattypeIndex:
219  *  H: de-QP and utf8-ify
220  *  X: escapize for HTML
221  *  J: JSON Escapize
222  * \param Target the destination buffer
223  * \param TP the template token information
224  * \param Source string to append
225  * \param FormatTypeIndex which parameter contains the escaping functionality?
226  *        if this token doesn't have as much parameters, plain append is done.
227  */
228 void StrBufAppendTemplate(StrBuf *Target, 
229                           WCTemplputParams *TP,
230                           const StrBuf *Source, 
231                           int FormatTypeIndex);
232
233
234 #define RegisterNamespace(a, b, c, d, e) RegisterNS(a, sizeof(a)-1, b, c, d, e)
235 void RegisterNS(const char *NSName, long len, 
236                 int nMinArgs, 
237                 int nMaxArgs, 
238                 WCHandlerFunc HandlerFunc,
239                 int ContextRequired);
240
241 void RegisterConditional(const char *Name, long len, 
242                          int nParams,
243                          WCConditionalFunc CondF, 
244                          int ContextRequired);
245
246
247
248 #define IT_NOFLAG 0
249 #define IT_FLAG_DETECT_GROUPCHANGE (1<<0)
250 #define RegisterIterator(a, b, c, d, e, f, g, h, i) RegisterITERATOR(a, sizeof(a)-1, b, c, d, e, f, g, h, i)
251 void RegisterITERATOR(const char *Name, long len, /* Our identifier */
252                       int AdditionalParams,       /* doe we use more parameters? */
253                       HashList *StaticList,       /* pointer to webcit lifetime hashlists */
254                       RetrieveHashlistFunc GetHash, /* else retrieve the hashlist by calling this function */
255                       SubTemplFunc DoSubTempl,       /* call this function on each iteration for svput & friends */
256                       HashDestructorFunc Destructor, /* use this function to shut down the hash; NULL if its a reference */
257                       int ContextType,               /* which context do we provide to the subtemplate? */
258                       int XPectContextType,          /* which context do we expct to be called in? */
259                       int Flags);
260
261
262
263
264
265
266 CompareFunc RetrieveSort(WCTemplputParams *TP, 
267                          const char *OtherPrefix, long OtherPrefixLen,  
268                          const char *Default, long ldefault, 
269                          long DefaultDirection);
270 void RegisterSortFunc(const char *name, long len, 
271                       const char *prepend, long preplen,
272                       CompareFunc Forward, 
273                       CompareFunc Reverse, 
274                       CompareFunc GroupChange, 
275                       long ContextType);
276
277
278
279
280 void dbg_print_longvector(long *LongVector);
281
282
283
284
285
286 #define do_template(a, b) DoTemplate(a, sizeof(a) -1, NULL, &NoCtx);
287 void DoTemplate(const char *templatename, long len, StrBuf *Target, WCTemplputParams *TP);
288 void url_do_template(void);
289
290
291
292
293
294 int CompareSubstToToken(TemplateParam *ParamToCompare, TemplateParam *ParamToLookup);
295 int CompareSubstToStrBuf(StrBuf *Compare, TemplateParam *ParamToLookup);
296
297 void SVPut(char *keyname, size_t keylen, int keytype, char *Data);
298 #define svput(a, b, c) SVPut(a, sizeof(a) - 1, b, c)
299 void SVPutLong(char *keyname, size_t keylen, long Data);
300 #define svputlong(a, b) SVPutLong(a, sizeof(a) - 1, b)
301 void svprintf(char *keyname, size_t keylen, int keytype, const char *format,...) __attribute__((__format__(__printf__,4,5)));
302 void SVPRINTF(char *keyname, int keytype, const char *format,...) __attribute__((__format__(__printf__,3,4)));
303 void SVCALLBACK(char *keyname, WCHandlerFunc fcn_ptr);
304 void SVCallback(char *keyname, size_t keylen,  WCHandlerFunc fcn_ptr);
305 #define svcallback(a, b) SVCallback(a, sizeof(a) - 1, b)
306
307 void SVPUTBuf(const char *keyname, int keylen, const StrBuf *Buf, int ref);
308 #define SVPutBuf(a, b, c); SVPUTBuf(a, sizeof(a) - 1, b, c)