7021ed47a7bab2e5ff5f4fbb368c185b3d3e6445
[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
240 typedef struct __fd_iobuffer {
241         IOBuffer *IOB;
242         int OtherFD;
243         int SplicePipe[2];
244         long TotalSendSize;
245         long TotalSentAlready;
246         long ChunkSize;
247         long ChunkSendRemain;
248         StrBuf *ChunkBuffer; /* just used if we don't have sendfile */
249 } FDIOBuffer;
250
251
252 void FDIOBufferInit(FDIOBuffer *FDB, IOBuffer *IO, int FD, long TotalSendSize);
253 int FileSendChunked(FDIOBuffer *FDB, const char **Err);
254 int FileRecvChunked(FDIOBuffer *FDB, const char **Err);
255 eReadState WriteIOBAlreadyRead(FDIOBuffer *FDB, const char **Error);
256
257 long StrBuf_read_one_chunk_callback (int fd, short event, IOBuffer *FB);
258 int StrBuf_write_one_chunk_callback(int fd, short event, IOBuffer *FB);
259
260 eReadState StrBufChunkSipLine(StrBuf *LineBuf, IOBuffer *FB);
261 eReadState StrBufCheckBuffer(IOBuffer *FB);
262 long IOBufferStrLength(IOBuffer *FB);
263
264 int StrBufSipLine(StrBuf *LineBuf, const StrBuf *Buf, const char **Ptr);
265 int StrBufReplaceToken(StrBuf *Buf, long where, long HowLong, const char *Repl, long ReplLen);
266 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
267 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
268
269 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
270 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
271 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
272 int StrBufNum_tokens(const StrBuf *source, char tok);
273 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
274
275 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
276 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
277 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
278 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
279 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
280 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
281
282
283 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
284 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
285 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
286 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
287 #ifdef SHOW_ME_VAPPEND_PRINTF
288 /* so owe don't create an include depndency, this is just visible on demand. */
289 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
290 #endif
291 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
292 void StrBufCutLeft(StrBuf *Buf, int nChars);
293 void StrBufCutRight(StrBuf *Buf, int nChars);
294 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
295 void StrBufTrim(StrBuf *Buf);
296 void StrBufSpaceToBlank(StrBuf *Buf);
297 void StrBufStripAllBut(StrBuf *Buf, char leftboundary, char rightboundary);
298 void StrBufUpCase(StrBuf *Buf);
299 void StrBufLowerCase(StrBuf *Buf);
300 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
301 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
302 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
303
304 void StrBufToUnixLF(StrBuf *buf);
305 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
306
307 int CompressBuffer(StrBuf *Buf);
308 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
309 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
310 void StrBuf_RFC822_2_Utf8(StrBuf *Target, 
311                           const StrBuf *DecodeMe, 
312                           const StrBuf* DefaultCharset, 
313                           StrBuf *FoundCharset, 
314                           StrBuf *ConvertBuf, 
315                           StrBuf *ConvertBuf2);
316 /* deprecated old version: */
317 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
318
319 int StrBufDecodeBase64(StrBuf *Buf);
320 int StrBufDecodeHex(StrBuf *Buf);
321 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
322 StrBuf *StrBufSanitizeEmailRecipientVector(const StrBuf *Recp, 
323                                            StrBuf *UserName, 
324                                            StrBuf *EmailAddress,
325                                            StrBuf *EncBuf);
326 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
327 #define LB                      (1)             /* Internal escape chars */
328 #define RB                      (2)
329 #define QU                      (3)
330 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
331 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
332 void StrBufHexEscAppend(StrBuf *OutBuf, const StrBuf *In, const unsigned char *PlainIn, long PlainInLen);
333 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
334 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
335 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
336 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
337 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
338
339 long StrTol(const StrBuf *Buf);
340 int StrToi(const StrBuf *Buf);
341 int StrBufIsNumber(const StrBuf *Buf);
342 long StrBuf_Utf8StrLen(StrBuf *Buf);
343 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
344
345 const char *GuessMimeType(const char *data, size_t dlen);
346 const char* GuessMimeByFilename(const char *what, size_t len);
347
348 /* Run once at Programstart */
349 int LoadIconDir(const char *DirName);
350
351 /* Select the icon for a given MIME type */
352 const char *GetIconFilename(char *MimeType, size_t len);
353
354
355 /* URL parsing & connection data */
356 typedef struct ParsedURL ParsedURL;
357 struct ParsedURL {
358         StrBuf *URL;
359         StrBuf *UrlWithoutCred;
360         StrBuf *CurlCreds;
361         unsigned Port;
362         const char *Host;
363         const char *User;
364         const char *Pass;
365         const char *LocalPart;
366         const char *PlainUrl;
367         int IsIP;
368         int IPv6;
369         int af;
370         struct hostent *HEnt;
371         struct sockaddr_in6 Addr;
372         ParsedURL *Next;
373 };
374
375 void FreeURL(ParsedURL** Url);
376 int ParseURL(ParsedURL **Url, StrBuf *UrlStr, unsigned short DefaultPort);
377 void CurlPrepareURL(ParsedURL *Url);
378
379 /* tools */
380
381
382 int safestrncpy(char *dest, const char *src, size_t n);
383 int num_tokens (const char *source, char tok);
384 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
385 long grab_token(char **dest, const char *source, int parmnum, char separator);
386 int extract_int (const char *source, int parmnum);
387 long extract_long (const char *source, int parmnum);
388 unsigned long extract_unsigned_long(const char *source, int parmnum);
389 void CtdlInitBase64Table(void);
390 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
391 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
392 unsigned int decode_hex(char *Source);
393 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
394 void StripSlashes(char *Dir, int TrailingSlash);
395 size_t striplt(char *);
396 int haschar(const char *st, int ch);
397 void remove_token(char *source, int parmnum, char separator);
398 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
399 int is_msg_in_sequence_set(const char *mset, long msgnum);
400 char *memreadline(char *start, char *buf, int maxlen);
401 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
402 const char *cmemreadline(const char *start, char *buf, int maxlen);
403 const char *cmemreadlinelen(const char *start, char *buf, int maxlen, int *retlen);
404 #define IsEmptyStr(a) ((a)[0] == '\0')
405 #define num_parms(source)               num_tokens(source,(char)'|')
406 int stripout(char *str, char leftboundary, char rightboundary);
407 long stripallbut(char *str, char leftboundary, char rightboundary);
408 char *myfgets(char *s, int size, FILE *stream);
409 void urlesc(char *outbuf, size_t oblen, char *strbuf);
410 char *CtdlTempFileName(char *prefix1, int prefix2);
411 FILE *CtdlTempFile(void);
412 void generate_uuid(char *buf);
413 char *bmstrcasestr(char *text, const char *pattern);
414 char *bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen);
415 const char *cbmstrcasestr(const char *text, const char *pattern);
416 const char *cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
417 void CtdlMakeTempFileName(char *name, int len);
418 char *rfc2047encode(char *line, long length);
419 int is_msg_in_mset(const char *mset, long msgnum);
420 int pattern2(char *search, char *patn);
421 void stripltlen(char *, int *);
422 char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int do_citaformat);
423 void LoadEntityList(char *FileName);
424
425
426
427 /* vCard stuff */
428
429 #define CTDL_VCARD_MAGIC        0xa1f9
430
431 /* This data structure represents a vCard object currently in memory. */
432 struct vCard {
433         int magic;
434         int numprops;
435         struct vCardProp {
436                 char *name;
437                 char *value;
438         } *prop;
439 };
440
441
442 struct vCard *vcard_new(void);
443 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
444 struct vCard *vcard_load(char *vtext);
445 struct vCard *VCardLoad(StrBuf *vbtext);
446
447 void vcard_free(struct vCard *);
448 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
449 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
450                         int instance, int return_propname);
451 char *vcard_serialize(struct vCard *);
452 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
453 void remove_charset_attribute(char *strbuf);
454 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
455
456 /*
457  * Hash list implementation for Citadel
458  */
459 #define HKEY(a) a, (sizeof(a) - 1)
460
461 typedef struct HashList HashList;
462
463 typedef struct HashKey HashKey;
464
465 typedef struct HashPos HashPos;
466
467 typedef void (*DeleteHashDataFunc)(void * Data);
468 typedef const char *(*PrintHashContent)(void * Data);
469 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
470 typedef long (*HashFunc)(const char *Str, long Len);
471 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
472 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
473
474 long Flathash(const char *str, long len);
475 long lFlathash(const char *str, long len);
476 #define IKEY(a) (const char*) &a, sizeof(a)
477 #define LKEY(a) (const char*) &a, sizeof(a)
478
479 int TestValidateHash(HashList *TestHash);
480
481 HashList *NewHash(int Uniq, HashFunc F);
482 void DeleteHash(HashList **Hash);
483 void DeleteHashContent(HashList **Hash);
484 void HDeleteHash(void *vHash);
485 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
486 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
487 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
488 int GetHashKeys(HashList *Hash, char ***List);
489 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
490 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
491 HashPos *GetNewHashPos(HashList *Hash, int StepWidth);
492 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
493 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
494 int GetHashPosCounter(HashList *Hash, HashPos *At);
495 void DeleteHashPos(HashPos **DelMe);
496 int NextHashPos(HashList *Hash, HashPos *At);
497 int GetHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
498 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
499 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
500 void SortByHashKey(HashList *Hash, int Order);
501 void SortByHashKeyStr(HashList *Hash);
502 int GetCount(HashList *Hash);
503 const void *GetSearchPayload(const void *HashVoid);
504 void SortByPayload(HashList *Hash, CompareFunc SortBy);
505 void reference_free_handler(void *ptr);
506 int HashLittle(const void *key, size_t length);
507
508 typedef struct MSet MSet;
509 int ParseMSet(MSet **MsetList, StrBuf *MSetStr);
510 int IsInMSetList(MSet *MSetList, long MsgNo);
511 void DeleteMSet(MSet **FreeMe);
512
513 void convert_spaces_to_underscores(char *str);
514 int CheckEncode(const char *pch, long len, const char *pche);
515
516 /*
517  * Convert 4 bytes char into an Integer.
518  * usefull for easy inexpensive hashing 
519  * of for char strings.
520  */
521 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
522
523 /* vNote implementation */
524
525 #define CTDL_VNOTE_MAGIC        0xa1fa
526
527 struct vnote {
528         int magic;
529         char *uid;
530         char *summary;
531         char *body;
532         int pos_left;
533         int pos_top;
534         int pos_width;
535         int pos_height;
536         int color_red;
537         int color_green;
538         int color_blue;
539 };
540
541
542
543 struct vnote *vnote_new(void);
544 struct vnote *vnote_new_from_str(char *s);
545 void vnote_free(struct vnote *v);
546 char *vnote_serialize(struct vnote *v);
547 void vnote_serialize_output_field(char *append_to, char *field, char *label);
548
549
550
551
552 /*
553  * Create JSON style structures in C plus serialize them to one string
554  */
555
556 typedef struct JsonValue JsonValue;
557
558
559 void DeleteJSONValue(void *vJsonValue);
560
561 JsonValue *NewJsonObject(const char *Key, long keylen);
562
563 JsonValue *NewJsonArray(const char *Key, long keylen);
564
565 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
566
567 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
568
569 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe);
570
571 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
572
573 JsonValue *NewJsonNull(const char *Key, long keylen);
574
575 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
576
577 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
578
579 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
580
581 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
582
583
584
585 /*
586  * Citadels Wildfire implementation, see 
587  * http://www.firephp.org/Wiki/Reference/Protocol
588  * and http://wildfirehq.org/ for details
589  */
590 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
591
592 typedef enum _WF_MessageType {
593         eLOG, 
594         eINFO,
595         eWARN,
596         eERROR,
597         eTRACE,
598         eEXCEPTION
599 } WF_MessageType;
600
601 JsonValue *WildFireException(const char *Filename, long FileLen,
602                              long LineNo,
603                              StrBuf *Message,
604                              int StackOffset);
605
606 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
607
608 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
609                                    long LineNo,
610                                    const char *Message, long len, 
611                                    WF_MessageType Type);
612
613 JsonValue *WildFireMessage(const char *Filename, long fnlen,
614                            long lineno,
615                            StrBuf *Msg, 
616                            WF_MessageType Type);
617
618 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
619
620 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
621
622 #define WF_MAJOR "1"
623 #define WF_STRUCTINDEX "1"
624 #define WF_SUB "1"
625
626 extern ConstStr RoomNetCfgStrs[maxRoomNetCfg];
627
628 /* Convenience function to "perform a function and cut a log record if result != 0" */
629 #define CtdlLogResult(x) if (x) syslog(LOG_CRIT, "%s:%d %s", __FILE__, __LINE__, strerror(errno))
630
631 #endif  // LIBCITADEL_H