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