Add function to measure the length of the fifo buffer
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * Header file for libcitadel
3  */
4
5
6 /* protect against double includes */
7 #ifndef LIBCITADEL_H
8 #define LIBCITADEL_H
9
10
11 /*
12  * since we reference time_t...
13  */
14 #include <time.h>
15 #include <stdlib.h>
16 #include <stdarg.h>
17 #include <arpa/inet.h>
18
19 #define LIBCITADEL_VERSION_NUMBER       800
20
21 /*
22  * Here's a bunch of stupid magic to make the MIME parser portable.
23  */
24 #ifndef SIZ
25 #define SIZ     4096
26 #endif
27
28
29 typedef enum AXLevel {
30         AxDeleted = 0,
31         AxNewU = 1,
32         AxProbU = 2,
33         AxLocU = 3,
34         AxNetU = 4,
35         AxPrefU = 5,
36         AxAideU = 6
37 }eUsrAxlvl;
38
39 enum RoomNetCfg {
40         subpending,
41         unsubpending,
42         lastsent, /* Server internal use only */
43         ignet_push_share,
44         listrecp,
45         digestrecp,
46         pop3client,
47         rssclient,
48         participate,
49         maxRoomNetCfg
50 };
51
52 enum GNET_POP3_PARTS { /* pop3client splits into these columns: */
53         GNET_POP3_HOST = 1,
54         GNET_POP3_USER = 2,
55         GNET_POP3_PASS = 4,
56         GNET_POP3_DONT_DELETE_REMOTE = 4,
57         GNET_POP3_INTERVAL = 5
58 };
59
60 enum GNET_PUSH_SHARE { /* ignet_push_share splits into these columns: */
61         GNET_IGNET_NODE = 1,
62         GNET_IGNET_ROOM = 2
63 };
64
65 typedef enum __GPEXWhichPolicy {
66         roompolicy,
67         floorpolicy,
68         sitepolicy,
69         mailboxespolicy,
70         maxpolicy
71 }GPEXWhichPolicy;
72
73 /*
74  * View definitions.
75  * Note that not all views are implemented in all clients.
76  */
77 typedef enum _room_views {
78         VIEW_BBS                = 0,    /* Bulletin board view */
79         VIEW_MAILBOX            = 1,    /* Mailbox summary */
80         VIEW_ADDRESSBOOK        = 2,    /* Address book view */
81         VIEW_CALENDAR           = 3,    /* Calendar view */
82         VIEW_TASKS              = 4,    /* Tasks view */
83         VIEW_NOTES              = 5,    /* Notes view */
84         VIEW_WIKI               = 6,    /* Wiki view */
85         VIEW_CALBRIEF           = 7,    /* Brief Calendar view */
86         VIEW_JOURNAL            = 8,    /* Journal view */
87         VIEW_DRAFTS             = 9,    /* Drafts view */
88         VIEW_BLOG               = 10,   /* Blog view */
89         VIEW_MAX
90 } ROOM_VIEWS;
91
92 #define BLOG_EUIDBUF_SIZE       40
93
94 #ifndef IsEmptyStr
95 #define IsEmptyStr(a) ((a)[0] == '\0')
96 #endif
97
98
99 /*
100  * another word to indicate n/a for a pointer if NULL already has a "meaning"
101  */
102 extern const char *StrBufNOTNULL;
103
104 /*
105  * Misc declarations
106  */
107
108 char *libcitadel_version_string(void);
109 int libcitadel_version_number(void);
110 void StartLibCitadel(size_t basesize);
111 void ShutDownLibCitadel(void);
112
113 /*
114  * MIME parser declarations
115  */
116
117 long extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd);
118
119
120 typedef void (*MimeParserCallBackType)(char *cbname,
121                                        char *cbfilename,
122                                        char *cbpartnum,
123                                        char *cbdisp,
124                                        void *cbcontent,
125                                        char *cbtype,
126                                        char *cbcharset,
127                                        size_t cblength,
128                                        char *cbencoding,
129                                        char *cbid,
130                                        void *cbuserdata);
131
132 void mime_parser(char *content_start, char *content_end,
133                  MimeParserCallBackType CallBack,
134                  MimeParserCallBackType PreMultiPartCallBack,
135                  MimeParserCallBackType PostMultiPartCallBack,
136                  void *userdata,
137                  int dont_decode);
138
139
140
141 char *fixed_partnum(char *);
142 void mime_decode(char *partnum,
143                  char *part_start, size_t length,
144                  char *content_type, char *charset, char *encoding,
145                  char *disposition,
146                  char *id,
147                  char *name, char *filename,
148                  MimeParserCallBackType CallBack,
149                  MimeParserCallBackType PreMultiPartCallBack,
150                  MimeParserCallBackType PostMultiPartCallBack,
151                  void *userdata,
152                  int dont_decode);
153 int mime_decode_now (char *part_start, 
154                      size_t length,
155                      char *encoding,
156                      char **decoded,
157                      size_t *bytes_decoded);
158 void the_mime_parser(char *partnum,
159                      char *content_start, char *content_end,
160                      MimeParserCallBackType CallBack,
161                      MimeParserCallBackType PreMultiPartCallBack,
162                      MimeParserCallBackType PostMultiPartCallBack,
163                      void *userdata,
164                      int dont_decode);
165
166 typedef struct StrBuf StrBuf;
167
168 #define strof(a) #a
169 #define CStrOf(a) #a, sizeof(#a) - 1
170 typedef struct _ConstStr {
171         const char *Key;
172         long len;
173 }ConstStr;
174 #define CKEY(a) (a).Key, (a).len
175
176 StrBuf* NewStrBuf(void);
177 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
178 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
179 long StrBufShrinkToFit(StrBuf *Buf, int Force);
180 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize);
181 void NewStrBufDupAppendFlush(StrBuf **CreateRelpaceMe, StrBuf *CopyFlushMe, const char *NoMe, int KeepOriginal);
182
183 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
184 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
185 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
186 void FreeStrBuf (StrBuf **FreeMe);
187 char *SmashStrBuf (StrBuf **SmashMe);
188 void HFreeStrBuf (void *VFreeMe);
189 int FlushStrBuf(StrBuf *buf);
190 int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for others to find in case of errors */
191
192 const char *ChrPtr(const StrBuf *Str);
193 int StrLength(const StrBuf *Str);
194 #define SKEY(a) ChrPtr(a), StrLength(a)
195 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
196 long StrBufPook(StrBuf *Buf, const char* ptr, long nThChar, long nChars, char PookValue);
197
198 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
199 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
200 #define NNN_TERM 1
201 #define O_TERM 0
202 int StrBufReadBLOBBuffered(StrBuf *Buf, 
203                            StrBuf *IOBuf, 
204                            const char **BufPos,
205                            int *fd, 
206                            int append, 
207                            long nBytes, 
208                            int check, 
209                            const char **Error);
210 int StrBufTCP_read_buffered_line(StrBuf *Line, 
211                                  StrBuf *buf, 
212                                  int *fd, 
213                                  int timeout, 
214                                  int selectresolution, 
215                                  const char **Error);
216 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
217                                       StrBuf *buf, 
218                                       const char **Pos,
219                                       int *fd, 
220                                       int timeout, 
221                                       int selectresolution, 
222                                       const char **Error);
223
224 typedef enum _eReadState {
225         eReadFail,
226         eReadSuccess,
227         eMustReadMore, 
228         eBufferNotEmpty
229 } eReadState;
230
231 typedef struct _file_buffer {
232         StrBuf *Buf;
233         const char *ReadWritePointer;
234         int fd;
235         int LineCompleted;
236         int nBlobBytesWanted;
237 } IOBuffer;
238
239 long StrBuf_read_one_chunk_callback (int fd, short event, IOBuffer *FB);
240 int StrBuf_write_one_chunk_callback(int fd, short event, IOBuffer *FB);
241
242 eReadState StrBufChunkSipLine(StrBuf *LineBuf, IOBuffer *FB);
243 eReadState StrBufCheckBuffer(IOBuffer *FB);
244 long IOBufferStrLength(IOBuffer *FB);
245
246 int StrBufSipLine(StrBuf *LineBuf, const StrBuf *Buf, const char **Ptr);
247 int StrBufReplaceToken(StrBuf *Buf, long where, long HowLong, const char *Repl, long ReplLen);
248 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
249 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
250
251 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
252 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
253 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
254 int StrBufNum_tokens(const StrBuf *source, char tok);
255 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
256
257 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
258 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
259 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
260 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
261 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
262 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
263
264
265 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
266 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
267 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
268 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
269 #ifdef SHOW_ME_VAPPEND_PRINTF
270 /* so owe don't create an include depndency, this is just visible on demand. */
271 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
272 #endif
273 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
274 void StrBufCutLeft(StrBuf *Buf, int nChars);
275 void StrBufCutRight(StrBuf *Buf, int nChars);
276 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
277 void StrBufTrim(StrBuf *Buf);
278 void StrBufSpaceToBlank(StrBuf *Buf);
279 void StrBufStripAllBut(StrBuf *Buf, char leftboundary, char rightboundary);
280 void StrBufUpCase(StrBuf *Buf);
281 void StrBufLowerCase(StrBuf *Buf);
282 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
283 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
284 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
285
286 void StrBufToUnixLF(StrBuf *buf);
287 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
288
289 int CompressBuffer(StrBuf *Buf);
290 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
291 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
292 void StrBuf_RFC822_2_Utf8(StrBuf *Target, 
293                           const StrBuf *DecodeMe, 
294                           const StrBuf* DefaultCharset, 
295                           StrBuf *FoundCharset, 
296                           StrBuf *ConvertBuf, 
297                           StrBuf *ConvertBuf2);
298 /* deprecated old version: */
299 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
300
301 int StrBufDecodeBase64(StrBuf *Buf);
302 int StrBufDecodeHex(StrBuf *Buf);
303 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
304 StrBuf *StrBufSanitizeEmailRecipientVector(const StrBuf *Recp, 
305                                            StrBuf *UserName, 
306                                            StrBuf *EmailAddress,
307                                            StrBuf *EncBuf);
308 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
309 #define LB                      (1)             /* Internal escape chars */
310 #define RB                      (2)
311 #define QU                      (3)
312 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
313 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
314 void StrBufHexEscAppend(StrBuf *OutBuf, const StrBuf *In, const unsigned char *PlainIn, long PlainInLen);
315 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
316 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
317 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
318 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
319 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
320
321 long StrTol(const StrBuf *Buf);
322 int StrToi(const StrBuf *Buf);
323 int StrBufIsNumber(const StrBuf *Buf);
324 long StrBuf_Utf8StrLen(StrBuf *Buf);
325 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
326
327 const char *GuessMimeType(const char *data, size_t dlen);
328 const char* GuessMimeByFilename(const char *what, size_t len);
329
330 /* Run once at Programstart */
331 int LoadIconDir(const char *DirName);
332
333 /* Select the icon for a given MIME type */
334 const char *GetIconFilename(char *MimeType, size_t len);
335
336
337 /* URL parsing & connection data */
338 typedef struct ParsedURL ParsedURL;
339 struct ParsedURL {
340         StrBuf *URL;
341         StrBuf *UrlWithoutCred;
342         StrBuf *CurlCreds;
343         unsigned Port;
344         const char *Host;
345         const char *User;
346         const char *Pass;
347         const char *LocalPart;
348         const char *PlainUrl;
349         int IsIP;
350         int IPv6;
351         int af;
352         struct hostent *HEnt;
353         struct sockaddr_in6 Addr;
354         ParsedURL *Next;
355 };
356
357 void FreeURL(ParsedURL** Url);
358 int ParseURL(ParsedURL **Url, StrBuf *UrlStr, unsigned short DefaultPort);
359 void CurlPrepareURL(ParsedURL *Url);
360
361 /* tools */
362
363
364 int safestrncpy(char *dest, const char *src, size_t n);
365 int num_tokens (const char *source, char tok);
366 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
367 long grab_token(char **dest, const char *source, int parmnum, char separator);
368 int extract_int (const char *source, int parmnum);
369 long extract_long (const char *source, int parmnum);
370 unsigned long extract_unsigned_long(const char *source, int parmnum);
371 void CtdlInitBase64Table(void);
372 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
373 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
374 unsigned int decode_hex(char *Source);
375 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
376 void StripSlashes(char *Dir, int TrailingSlash);
377 size_t striplt(char *);
378 int haschar(const char *st, int ch);
379 void remove_token(char *source, int parmnum, char separator);
380 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
381 int is_msg_in_sequence_set(const char *mset, long msgnum);
382 char *memreadline(char *start, char *buf, int maxlen);
383 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
384 const char *cmemreadline(const char *start, char *buf, int maxlen);
385 const char *cmemreadlinelen(const char *start, char *buf, int maxlen, int *retlen);
386 #define IsEmptyStr(a) ((a)[0] == '\0')
387 #define num_parms(source)               num_tokens(source,(char)'|')
388 int stripout(char *str, char leftboundary, char rightboundary);
389 long stripallbut(char *str, char leftboundary, char rightboundary);
390 char *myfgets(char *s, int size, FILE *stream);
391 void urlesc(char *outbuf, size_t oblen, char *strbuf);
392 char *CtdlTempFileName(char *prefix1, int prefix2);
393 FILE *CtdlTempFile(void);
394 void generate_uuid(char *buf);
395 char *bmstrcasestr(char *text, const char *pattern);
396 char *bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen);
397 const char *cbmstrcasestr(const char *text, const char *pattern);
398 const char *cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
399 void CtdlMakeTempFileName(char *name, int len);
400 char *rfc2047encode(char *line, long length);
401 int is_msg_in_mset(const char *mset, long msgnum);
402 int pattern2(char *search, char *patn);
403 void stripltlen(char *, int *);
404 char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int do_citaformat);
405 void LoadEntityList(char *FileName);
406
407
408
409 /* vCard stuff */
410
411 #define CTDL_VCARD_MAGIC        0xa1f9
412
413 /* This data structure represents a vCard object currently in memory. */
414 struct vCard {
415         int magic;
416         int numprops;
417         struct vCardProp {
418                 char *name;
419                 char *value;
420         } *prop;
421 };
422
423
424 struct vCard *vcard_new(void);
425 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
426 struct vCard *vcard_load(char *vtext);
427 struct vCard *VCardLoad(StrBuf *vbtext);
428
429 void vcard_free(struct vCard *);
430 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
431 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
432                         int instance, int return_propname);
433 char *vcard_serialize(struct vCard *);
434 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
435 void remove_charset_attribute(char *strbuf);
436 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
437
438 /*
439  * Hash list implementation for Citadel
440  */
441 #define HKEY(a) a, (sizeof(a) - 1)
442
443 typedef struct HashList HashList;
444
445 typedef struct HashKey HashKey;
446
447 typedef struct HashPos HashPos;
448
449 typedef void (*DeleteHashDataFunc)(void * Data);
450 typedef const char *(*PrintHashContent)(void * Data);
451 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
452 typedef long (*HashFunc)(const char *Str, long Len);
453 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
454 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
455
456 long Flathash(const char *str, long len);
457 long lFlathash(const char *str, long len);
458 #define IKEY(a) (const char*) &a, sizeof(a)
459 #define LKEY(a) (const char*) &a, sizeof(a)
460
461 int TestValidateHash(HashList *TestHash);
462
463 HashList *NewHash(int Uniq, HashFunc F);
464 void DeleteHash(HashList **Hash);
465 void DeleteHashContent(HashList **Hash);
466 void HDeleteHash(void *vHash);
467 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
468 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
469 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
470 int GetHashKeys(HashList *Hash, char ***List);
471 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
472 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
473 HashPos *GetNewHashPos(HashList *Hash, int StepWidth);
474 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
475 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
476 int GetHashPosCounter(HashList *Hash, HashPos *At);
477 void DeleteHashPos(HashPos **DelMe);
478 int NextHashPos(HashList *Hash, HashPos *At);
479 int GetHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
480 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
481 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
482 void SortByHashKey(HashList *Hash, int Order);
483 void SortByHashKeyStr(HashList *Hash);
484 int GetCount(HashList *Hash);
485 const void *GetSearchPayload(const void *HashVoid);
486 void SortByPayload(HashList *Hash, CompareFunc SortBy);
487 void reference_free_handler(void *ptr);
488 int HashLittle(const void *key, size_t length);
489
490 typedef struct MSet MSet;
491 int ParseMSet(MSet **MsetList, StrBuf *MSetStr);
492 int IsInMSetList(MSet *MSetList, long MsgNo);
493 void DeleteMSet(MSet **FreeMe);
494
495 void convert_spaces_to_underscores(char *str);
496 int CheckEncode(const char *pch, long len, const char *pche);
497
498 /*
499  * Convert 4 bytes char into an Integer.
500  * usefull for easy inexpensive hashing 
501  * of for char strings.
502  */
503 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
504
505 /* vNote implementation */
506
507 #define CTDL_VNOTE_MAGIC        0xa1fa
508
509 struct vnote {
510         int magic;
511         char *uid;
512         char *summary;
513         char *body;
514         int pos_left;
515         int pos_top;
516         int pos_width;
517         int pos_height;
518         int color_red;
519         int color_green;
520         int color_blue;
521 };
522
523
524
525 struct vnote *vnote_new(void);
526 struct vnote *vnote_new_from_str(char *s);
527 void vnote_free(struct vnote *v);
528 char *vnote_serialize(struct vnote *v);
529 void vnote_serialize_output_field(char *append_to, char *field, char *label);
530
531
532
533
534 /*
535  * Create JSON style structures in C plus serialize them to one string
536  */
537
538 typedef struct JsonValue JsonValue;
539
540
541 void DeleteJSONValue(void *vJsonValue);
542
543 JsonValue *NewJsonObject(const char *Key, long keylen);
544
545 JsonValue *NewJsonArray(const char *Key, long keylen);
546
547 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
548
549 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
550
551 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe);
552
553 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
554
555 JsonValue *NewJsonNull(const char *Key, long keylen);
556
557 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
558
559 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
560
561 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
562
563 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
564
565
566
567 /*
568  * Citadels Wildfire implementation, see 
569  * http://www.firephp.org/Wiki/Reference/Protocol
570  * and http://wildfirehq.org/ for details
571  */
572 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
573
574 typedef enum _WF_MessageType {
575         eLOG, 
576         eINFO,
577         eWARN,
578         eERROR,
579         eTRACE,
580         eEXCEPTION
581 } WF_MessageType;
582
583 JsonValue *WildFireException(const char *Filename, long FileLen,
584                              long LineNo,
585                              StrBuf *Message,
586                              int StackOffset);
587
588 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
589
590 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
591                                    long LineNo,
592                                    const char *Message, long len, 
593                                    WF_MessageType Type);
594
595 JsonValue *WildFireMessage(const char *Filename, long fnlen,
596                            long lineno,
597                            StrBuf *Msg, 
598                            WF_MessageType Type);
599
600 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
601
602 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
603
604 #define WF_MAJOR "1"
605 #define WF_STRUCTINDEX "1"
606 #define WF_SUB "1"
607
608 extern ConstStr RoomNetCfgStrs[maxRoomNetCfg];
609
610 /* Convenience function to "perform a function and cut a log record if result != 0" */
611 #define CtdlLogResult(x) if (x) syslog(LOG_CRIT, "%s:%d %s", __FILE__, __LINE__, strerror(errno))
612
613 #endif  // LIBCITADEL_H