* new StrBuf Method: cut it at a given position
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * $Id$
3  *
4  */
5
6
7 /* protect against double includes */
8 #ifndef LIBCITADEL_H
9 #define LIBCITADEL_H
10
11
12 /*
13  * since we reference time_t...
14  */
15 #include <time.h>
16 #include <stdlib.h>
17 #include <stdarg.h>
18 #define LIBCITADEL_VERSION_NUMBER       739
19
20 /*
21  * Here's a bunch of stupid magic to make the MIME parser portable.
22  */
23 #ifndef SIZ
24 #define SIZ     4096
25 #endif
26
27
28 /* Logging levels - correspond to syslog(3) */
29 enum LogLevel {
30         /* When about to exit the server for an unrecoverable error */
31          CTDL_EMERG,    /* system is unusable */
32         /* Manual intervention is required to avoid an abnormal exit */
33          CTDL_ALERT,    /* action must be taken immediately */
34         /* The server can continue to run with degraded functionality */
35          CTDL_CRIT,     /* critical conditions */
36         /* An error occurs but the server continues to run normally */
37          CTDL_ERR,      /* error conditions */
38         /* An abnormal condition was detected; server will continue normally */
39          CTDL_WARNING,  /* warning conditions */
40         /* Normal messages (login/out, activity, etc.) */
41          CTDL_NOTICE,   /* normal but significant condition */
42         /* Unimportant progress messages, etc. */
43          CTDL_INFO,     /* informational */
44         /* Debugging messages */
45          CTDL_DEBUG     /* debug-level messages */
46 };
47
48
49 /*
50  * View definitions.
51  * Note that not all views are implemented in all clients.
52  */
53 #define VIEW_BBS                0       /* Bulletin board view */
54 #define VIEW_MAILBOX            1       /* Mailbox summary */
55 #define VIEW_ADDRESSBOOK        2       /* Address book view */
56 #define VIEW_CALENDAR           3       /* Calendar view */
57 #define VIEW_TASKS              4       /* Tasks view */
58 #define VIEW_NOTES              5       /* Notes view */
59 #define VIEW_WIKI               6       /* Wiki view */
60 #define VIEW_CALBRIEF           7       /* Brief Calendar view */
61 #define VIEW_JOURNAL            8       /* Journal view */
62
63
64 #ifndef IsEmptyStr
65 #define IsEmptyStr(a) ((a)[0] == '\0')
66 #endif
67
68 /*
69  * Misc declarations
70  */
71
72 char *libcitadel_version_string(void);
73 int libcitadel_version_number(void);
74
75
76 /*
77  * MIME parser declarations
78  */
79
80 void extract_key(char *target, char *source, char *key);
81
82 void mime_parser(char *content_start, char *content_end,
83                 void (*CallBack)
84                         (char *cbname,
85                         char *cbfilename,
86                         char *cbpartnum,
87                         char *cbdisp,
88                         void *cbcontent,
89                         char *cbtype,
90                         char *cbcharset,
91                         size_t cblength,
92                         char *cbencoding,
93                         char *cbid,
94                         void *cbuserdata),
95                 void (*PreMultiPartCallBack)
96                         (char *cbname,
97                         char *cbfilename,
98                         char *cbpartnum,
99                         char *cbdisp,
100                         void *cbcontent,
101                         char *cbtype,
102                         char *cbcharset,
103                         size_t cblength,
104                         char *cbencoding,
105                         char *cbid,
106                         void *cbuserdata),
107                 void (*PostMultiPartCallBack)
108                         (char *cbname,
109                         char *cbfilename,
110                         char *cbpartnum,
111                         char *cbdisp,
112                         void *cbcontent,
113                         char *cbtype,
114                         char *cbcharset,
115                         size_t cblength,
116                         char *cbencoding,
117                         char *cbid,
118                         void *cbuserdata),
119                 void *userdata,
120                 int dont_decode
121                 );
122
123
124
125 char *fixed_partnum(char *);
126 void mime_decode(char *partnum,
127                  char *part_start, size_t length,
128                  char *content_type, char *charset, char *encoding,
129                  char *disposition,
130                  char *id,
131                  char *name, char *filename,
132                  void (*CallBack)
133                   (char *cbname,
134                    char *cbfilename,
135                    char *cbpartnum,
136                    char *cbdisp,
137                    void *cbcontent,
138                    char *cbtype,
139                    char *cbcharset,
140                    size_t cblength,
141                    char *cbencoding,
142                    char *cbid,
143                    void *cbuserdata),
144                  void (*PreMultiPartCallBack)
145                   (char *cbname,
146                    char *cbfilename,
147                    char *cbpartnum,
148                    char *cbdisp,
149                    void *cbcontent,
150                    char *cbtype,
151                    char *cbcharset,
152                    size_t cblength,
153                    char *cbencoding,
154                    char *cbid,
155                    void *cbuserdata),
156                  void (*PostMultiPartCallBack)
157                   (char *cbname,
158                    char *cbfilename,
159                    char *cbpartnum,
160                    char *cbdisp,
161                    void *cbcontent,
162                    char *cbtype,
163                    char *cbcharset,
164                    size_t cblength,
165                    char *cbencoding,
166                    char *cbid,
167                    void *cbuserdata),
168                   void *userdata,
169                   int dont_decode
170 );
171 void the_mime_parser(char *partnum,
172                      char *content_start, char *content_end,
173                      void (*CallBack)
174                       (char *cbname,
175                        char *cbfilename,
176                        char *cbpartnum,
177                        char *cbdisp,
178                        void *cbcontent,
179                        char *cbtype,
180                        char *cbcharset,
181                        size_t cblength,
182                        char *cbencoding,
183                        char *cbid,
184                        void *cbuserdata),
185                      void (*PreMultiPartCallBack)
186                       (char *cbname,
187                        char *cbfilename,
188                        char *cbpartnum,
189                        char *cbdisp,
190                        void *cbcontent,
191                        char *cbtype,
192                        char *cbcharset,
193                        size_t cblength,
194                        char *cbencoding,
195                        char *cbid,
196                        void *cbuserdata),
197                      void (*PostMultiPartCallBack)
198                       (char *cbname,
199                        char *cbfilename,
200                        char *cbpartnum,
201                        char *cbdisp,
202                        void *cbcontent,
203                        char *cbtype,
204                        char *cbcharset,
205                        size_t cblength,
206                        char *cbencoding,
207                        char *cbid,
208                        void *cbuserdata),
209                       void *userdata,
210                       int dont_decode
211 );
212
213 typedef struct StrBuf StrBuf;
214
215 StrBuf* NewStrBuf(void);
216 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
217 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
218 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
219 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
220 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
221 void FreeStrBuf (StrBuf **FreeMe);
222 void HFreeStrBuf (void *VFreeMe);
223 int FlushStrBuf(StrBuf *buf);
224
225 const char *ChrPtr(const StrBuf *Str);
226 int StrLength(const StrBuf *Str);
227 #define SKEY(a) ChrPtr(a), StrLength(a)
228 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
229
230 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
231 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
232 int StrBufTCP_read_buffered_line(StrBuf *Line, 
233                                  StrBuf *buf, 
234                                  int *fd, 
235                                  int timeout, 
236                                  int selectresolution, 
237                                  const char **Error);
238
239 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr);
240 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
241 int StrBufSub(StrBuf *dest, const StrBuf *Source, size_t Offset, size_t nChars);
242 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
243 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
244 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
245 inline int StrBufNum_tokens(const StrBuf *source, char tok);
246 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
247
248 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, size_t Offset);
249 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, size_t Offset);
250 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
251 #ifdef SHOW_ME_VAPPEND_PRINTF
252 /* so owe don't create an include depndency, this is just visible on demand. */
253 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
254 #endif
255 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
256 void StrBufCutLeft(StrBuf *Buf, int nChars);
257 void StrBufCutRight(StrBuf *Buf, int nChars);
258 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
259 void StrBufTrim(StrBuf *Buf);
260 void StrBufUpCase(StrBuf *Buf);
261 void StrBufLowerCase(StrBuf *Buf);
262 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
263 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
264
265 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
266
267 int CompressBuffer(StrBuf *Buf);
268 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
269 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
270 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
271 int StrBufDecodeBase64(StrBuf *Buf);
272 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
273 #define LB                      (1)             /* Internal escape chars */
274 #define RB                      (2)
275 #define QU                      (3)
276 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
277 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
278 void StrMsgEscAppend(StrBuf *Target, StrBuf *Source, const char *PlainIn);
279
280 long StrTol(const StrBuf *Buf);
281 int StrToi(const StrBuf *Buf);
282 long StrBuf_Utf8StrLen(StrBuf *Buf);
283 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
284
285 const char *GuessMimeType(const char *data, size_t dlen);
286 const char* GuessMimeByFilename(const char *what, size_t len);
287
288 /* Run once at Programstart */
289 int LoadIconDir(const char *DirName);
290
291 /* Select the icon for a given MIME type */
292 const char *GetIconFilename(char *MimeType, size_t len);
293
294 void ShutDownLibCitadel(void);
295
296
297 /* tools */
298
299 int Ctdl_IsUtf8SequenceStart(char Char);
300 int Ctdl_GetUtf8SequenceLength(char Char);
301 int Ctdl_Utf8StrLen(char *str);
302 char *Ctdl_Utf8StrCut(char *str, int maxlen);
303
304
305 int safestrncpy(char *dest, const char *src, size_t n);
306 int num_tokens (const char *source, char tok);
307 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
308 long grab_token(char **dest, const char *source, int parmnum, char separator);
309 int extract_int (const char *source, int parmnum);
310 long extract_long (const char *source, int parmnum);
311 unsigned long extract_unsigned_long(const char *source, int parmnum);
312 void CtdlInitBase64Table(void);
313 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
314 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
315 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
316 void striplt(char *);
317 int haschar(const char *st, int ch);
318 void remove_token(char *source, int parmnum, char separator);
319 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
320 int is_msg_in_sequence_set(char *mset, long msgnum);
321 char *memreadline(char *start, char *buf, int maxlen);
322 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
323 #define IsEmptyStr(a) ((a)[0] == '\0')
324 #define num_parms(source)               num_tokens(source,(char)'|')
325 void stripout(char *str, char leftboundary, char rightboundary);
326 void stripallbut(char *str, char leftboundary, char rightboundary);
327 char *myfgets(char *s, int size, FILE *stream);
328 void urlesc(char *outbuf, size_t oblen, char *strbuf);
329 char *CtdlTempFileName(char *prefix1, int prefix2);
330 FILE *CtdlTempFile(void);
331 void generate_uuid(char *buf);
332 char *bmstrcasestr(char *text, char *pattern);
333 void CtdlMakeTempFileName(char *name, int len);
334 char *rfc2047encode(char *line, long length);
335 int is_msg_in_mset(char *mset, long msgnum);
336 int pattern2(char *search, char *patn);
337 void stripltlen(char *, int *);
338 char *html_to_ascii(char *inputmsg, int msglen, int screenwidth, int do_citaformat);
339 void LoadEntityList(char *FileName);
340
341
342
343 /* vCard stuff */
344
345 #define CTDL_VCARD_MAGIC        0xa1f9
346
347 /* This data structure represents a vCard object currently in memory. */
348 struct vCard {
349         int magic;
350         int numprops;
351         struct vCardProp {
352                 char *name;
353                 char *value;
354         } *prop;
355 };
356
357
358 struct vCard *vcard_new(void);
359 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
360 struct vCard *vcard_load(char *);
361 void vcard_free(struct vCard *);
362 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
363 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
364                         int instance, int return_propname);
365 char *vcard_serialize(struct vCard *);
366 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
367 void remove_charset_attribute(char *strbuf);
368 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
369
370 /*
371  * Hash list implementation for Citadel
372  */
373 #define HKEY(a) a, (sizeof(a) - 1)
374 typedef struct HashList HashList;
375
376 typedef struct HashKey HashKey;
377
378 typedef struct HashPos HashPos;
379
380 typedef void (*DeleteHashDataFunc)(void * Data);
381 typedef const char *(*PrintHashContent)(void * Data);
382 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
383 typedef int (*HashFunc)(const char *Str, long Len);
384 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
385 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
386
387 HashList *NewHash(int Uniq, HashFunc F);
388 void DeleteHash(HashList **Hash);
389 void HDeleteHash(void *vHash);
390 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
391 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
392 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
393 int GetHashKeys(HashList *Hash, char ***List);
394 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
395 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
396 HashPos *GetNewHashPos(void);
397 void DeleteHashPos(HashPos **DelMe);
398 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
399 void SortByHashKey(HashList *Hash, int Order);
400 void SortByHashKeyStr(HashList *Hash);
401 int GetCount(HashList *Hash);
402 const void *GetSearchPayload(const void *HashVoid);
403 void SortByPayload(HashList *Hash, CompareFunc SortBy);
404 void generic_free_handler(void *ptr);
405 void reference_free_handler(void *ptr);
406
407
408 void convert_spaces_to_underscores(char *str);
409
410 /*
411  * Convert 4 bytes char into an Integer.
412  * usefull for easy inexpensive hashing 
413  * of for char strings.
414  */
415 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
416
417 /* vNote implementation */
418
419 #define CTDL_VNOTE_MAGIC        0xa1fa
420
421 struct vnote {
422         int magic;
423         char *uid;
424         char *summary;
425         char *body;
426         int pos_left;
427         int pos_top;
428         int pos_width;
429         int pos_height;
430         int color_red;
431         int color_green;
432         int color_blue;
433 };
434
435
436
437 struct vnote *vnote_new(void);
438 struct vnote *vnote_new_from_str(char *s);
439 void vnote_free(struct vnote *v);
440 char *vnote_serialize(struct vnote *v);
441 void vnote_serialize_output_field(char *append_to, char *field, char *label);
442
443
444 #endif  // LIBCITADEL_H