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