* add cURL read-callbackhook, so we can read HTTP answers into StrBufs
[citadel.git] / libcitadel / lib / stringbuf.c
1 #include "../sysdep.h"
2 #include <ctype.h>
3 #include <errno.h>
4 #include <string.h>
5 #include <unistd.h>
6 #include <string.h>
7 #include <stdio.h>
8 #include <sys/select.h>
9 #include <fcntl.h>
10 #include <sys/types.h>
11 #define SHOW_ME_VAPPEND_PRINTF
12 #include <stdarg.h>
13 #include "libcitadel.h"
14
15 #ifdef HAVE_ICONV
16 #include <iconv.h>
17 #endif
18
19 #if HAVE_BACKTRACE
20 #include <execinfo.h>
21 #endif
22
23 #ifdef HAVE_ZLIB
24 #include <zlib.h>
25 int ZEXPORT compress_gzip(Bytef * dest, size_t * destLen,
26                           const Bytef * source, uLong sourceLen, int level);
27 #endif
28 int BaseStrBufSize = 64;
29
30 /**
31  * Private Structure for the Stringbuffer
32  */
33 struct StrBuf {
34         char *buf;         /**< the pointer to the dynamic buffer */
35         long BufSize;      /**< how many spcae do we optain */
36         long BufUsed;      /**< StNumber of Chars used excluding the trailing \0 */
37         int ConstBuf;      /**< are we just a wrapper arround a static buffer and musn't we be changed? */
38 #ifdef SIZE_DEBUG
39         long nIncreases;
40         char bt [SIZ];
41         char bt_lastinc [SIZ];
42 #endif
43 };
44
45 #ifdef SIZE_DEBUG
46 #if HAVE_BACKTRACE
47 static void StrBufBacktrace(StrBuf *Buf, int which)
48 {
49         int n;
50         char *pstart, *pch;
51         void *stack_frames[50];
52         size_t size, i;
53         char **strings;
54
55         if (which)
56                 pstart = pch = Buf->bt;
57         else
58                 pstart = pch = Buf->bt_lastinc;
59         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
60         strings = backtrace_symbols(stack_frames, size);
61         for (i = 0; i < size; i++) {
62                 if (strings != NULL)
63                         n = snprintf(pch, SIZ - (pch - pstart), "%s\\n", strings[i]);
64                 else
65                         n = snprintf(pch, SIZ - (pch - pstart), "%p\\n", stack_frames[i]);
66                 pch += n;
67         }
68         free(strings);
69
70
71 }
72 #endif
73 #endif
74
75 /** 
76  * \Brief Cast operator to Plain String 
77  * Note: if the buffer is altered by StrBuf operations, this pointer may become 
78  *  invalid. So don't lean on it after altering the buffer!
79  *  Since this operation is considered cheap, rather call it often than risking
80  *  your pointer to become invalid!
81  * \param Str the string we want to get the c-string representation for
82  * \returns the Pointer to the Content. Don't mess with it!
83  */
84 inline const char *ChrPtr(const StrBuf *Str)
85 {
86         if (Str == NULL)
87                 return "";
88         return Str->buf;
89 }
90
91 /**
92  * \brief since we know strlen()'s result, provide it here.
93  * \param Str the string to return the length to
94  * \returns contentlength of the buffer
95  */
96 inline int StrLength(const StrBuf *Str)
97 {
98         return (Str != NULL) ? Str->BufUsed : 0;
99 }
100
101 /**
102  * \brief local utility function to resize the buffer
103  * \param Buf the buffer whichs storage we should increase
104  * \param KeepOriginal should we copy the original buffer or just start over with a new one
105  * \param DestSize what should fit in after?
106  */
107 static int IncreaseBuf(StrBuf *Buf, int KeepOriginal, int DestSize)
108 {
109         char *NewBuf;
110         size_t NewSize = Buf->BufSize * 2;
111
112         if (Buf->ConstBuf)
113                 return -1;
114                 
115         if (DestSize > 0)
116                 while (NewSize <= DestSize)
117                         NewSize *= 2;
118
119         NewBuf= (char*) malloc(NewSize);
120         if (KeepOriginal && (Buf->BufUsed > 0))
121         {
122                 memcpy(NewBuf, Buf->buf, Buf->BufUsed);
123         }
124         else
125         {
126                 NewBuf[0] = '\0';
127                 Buf->BufUsed = 0;
128         }
129         free (Buf->buf);
130         Buf->buf = NewBuf;
131         Buf->BufSize = NewSize;
132 #ifdef SIZE_DEBUG
133         Buf->nIncreases++;
134 #if HAVE_BACKTRACE
135         StrBufBacktrace(Buf, 1);
136 #endif
137 #endif
138         return Buf->BufSize;
139 }
140
141 /**
142  * \brief shrink an _EMPTY_ buffer if its Buffer superseeds threshhold to NewSize. Buffercontent is thoroughly ignored and flushed.
143  * \param Buf Buffer to shrink (has to be empty)
144  * \param ThreshHold if the buffer is bigger then this, its readjusted
145  * \param NewSize if we Shrink it, how big are we going to be afterwards?
146  */
147 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize)
148 {
149         if (Buf->BufUsed > ThreshHold) {
150                 free(Buf->buf);
151                 Buf->buf = (char*) malloc(NewSize);
152                 Buf->BufUsed = 0;
153                 Buf->BufSize = NewSize;
154         }
155 }
156
157 /**
158  * \brief shrink long term buffers to their real size so they don't waste memory
159  * \param Buf buffer to shrink
160  * \param Force if not set, will just executed if the buffer is much to big; set for lifetime strings
161  * \returns physical size of the buffer
162  */
163 long StrBufShrinkToFit(StrBuf *Buf, int Force)
164 {
165         if (Force || 
166             (Buf->BufUsed + (Buf->BufUsed / 3) > Buf->BufSize))
167         {
168                 char *TmpBuf = (char*) malloc(Buf->BufUsed + 1);
169                 memcpy (TmpBuf, Buf->buf, Buf->BufUsed + 1);
170                 Buf->BufSize = Buf->BufUsed + 1;
171                 free(Buf->buf);
172                 Buf->buf = TmpBuf;
173         }
174         return Buf->BufUsed;
175 }
176
177 /**
178  * Allocate a new buffer with default buffer size
179  * \returns the new stringbuffer
180  */
181 StrBuf* NewStrBuf(void)
182 {
183         StrBuf *NewBuf;
184
185         NewBuf = (StrBuf*) malloc(sizeof(StrBuf));
186         NewBuf->buf = (char*) malloc(BaseStrBufSize);
187         NewBuf->buf[0] = '\0';
188         NewBuf->BufSize = BaseStrBufSize;
189         NewBuf->BufUsed = 0;
190         NewBuf->ConstBuf = 0;
191 #ifdef SIZE_DEBUG
192         NewBuf->nIncreases = 0;
193         NewBuf->bt[0] = '\0';
194         NewBuf->bt_lastinc[0] = '\0';
195 #if HAVE_BACKTRACE
196         StrBufBacktrace(NewBuf, 0);
197 #endif
198 #endif
199         return NewBuf;
200 }
201
202 /** 
203  * \brief Copy Constructor; returns a duplicate of CopyMe
204  * \params CopyMe Buffer to faxmilate
205  * \returns the new stringbuffer
206  */
207 StrBuf* NewStrBufDup(const StrBuf *CopyMe)
208 {
209         StrBuf *NewBuf;
210         
211         if (CopyMe == NULL)
212                 return NewStrBuf();
213
214         NewBuf = (StrBuf*) malloc(sizeof(StrBuf));
215         NewBuf->buf = (char*) malloc(CopyMe->BufSize);
216         memcpy(NewBuf->buf, CopyMe->buf, CopyMe->BufUsed + 1);
217         NewBuf->BufUsed = CopyMe->BufUsed;
218         NewBuf->BufSize = CopyMe->BufSize;
219         NewBuf->ConstBuf = 0;
220 #ifdef SIZE_DEBUG
221         NewBuf->nIncreases = 0;
222         NewBuf->bt[0] = '\0';
223         NewBuf->bt_lastinc[0] = '\0';
224 #if HAVE_BACKTRACE
225         StrBufBacktrace(NewBuf, 0);
226 #endif
227 #endif
228         return NewBuf;
229 }
230
231 /**
232  * \brief create a new Buffer using an existing c-string
233  * this function should also be used if you want to pre-suggest
234  * the buffer size to allocate in conjunction with ptr == NULL
235  * \param ptr the c-string to copy; may be NULL to create a blank instance
236  * \param nChars How many chars should we copy; -1 if we should measure the length ourselves
237  * \returns the new stringbuffer
238  */
239 StrBuf* NewStrBufPlain(const char* ptr, int nChars)
240 {
241         StrBuf *NewBuf;
242         size_t Siz = BaseStrBufSize;
243         size_t CopySize;
244
245         NewBuf = (StrBuf*) malloc(sizeof(StrBuf));
246         if (nChars < 0)
247                 CopySize = strlen((ptr != NULL)?ptr:"");
248         else
249                 CopySize = nChars;
250
251         while (Siz <= CopySize)
252                 Siz *= 2;
253
254         NewBuf->buf = (char*) malloc(Siz);
255         NewBuf->BufSize = Siz;
256         if (ptr != NULL) {
257                 memcpy(NewBuf->buf, ptr, CopySize);
258                 NewBuf->buf[CopySize] = '\0';
259                 NewBuf->BufUsed = CopySize;
260         }
261         else {
262                 NewBuf->buf[0] = '\0';
263                 NewBuf->BufUsed = 0;
264         }
265         NewBuf->ConstBuf = 0;
266 #ifdef SIZE_DEBUG
267         NewBuf->nIncreases = 0;
268         NewBuf->bt[0] = '\0';
269         NewBuf->bt_lastinc[0] = '\0';
270 #if HAVE_BACKTRACE
271         StrBufBacktrace(NewBuf, 0);
272 #endif
273 #endif
274         return NewBuf;
275 }
276
277 /**
278  * \brief Set an existing buffer from a c-string
279  * \param ptr c-string to put into 
280  * \param nChars set to -1 if we should work 0-terminated
281  * \returns the new length of the string
282  */
283 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars)
284 {
285         size_t Siz = Buf->BufSize;
286         size_t CopySize;
287
288         if (nChars < 0)
289                 CopySize = strlen(ptr);
290         else
291                 CopySize = nChars;
292
293         while (Siz <= CopySize)
294                 Siz *= 2;
295
296         if (Siz != Buf->BufSize)
297                 IncreaseBuf(Buf, 0, Siz);
298         memcpy(Buf->buf, ptr, CopySize);
299         Buf->buf[CopySize] = '\0';
300         Buf->BufUsed = CopySize;
301         Buf->ConstBuf = 0;
302         return CopySize;
303 }
304
305
306 /**
307  * \brief use strbuf as wrapper for a string constant for easy handling
308  * \param StringConstant a string to wrap
309  * \param SizeOfConstant should be sizeof(StringConstant)-1
310  */
311 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant)
312 {
313         StrBuf *NewBuf;
314
315         NewBuf = (StrBuf*) malloc(sizeof(StrBuf));
316         NewBuf->buf = (char*) StringConstant;
317         NewBuf->BufSize = SizeOfStrConstant;
318         NewBuf->BufUsed = SizeOfStrConstant;
319         NewBuf->ConstBuf = 1;
320 #ifdef SIZE_DEBUG
321         NewBuf->nIncreases = 0;
322         NewBuf->bt[0] = '\0';
323         NewBuf->bt_lastinc[0] = '\0';
324 #endif
325         return NewBuf;
326 }
327
328
329 /**
330  * \brief flush the content of a Buf; keep its struct
331  * \param buf Buffer to flush
332  */
333 int FlushStrBuf(StrBuf *buf)
334 {
335         if (buf == NULL)
336                 return -1;
337         if (buf->ConstBuf)
338                 return -1;       
339         buf->buf[0] ='\0';
340         buf->BufUsed = 0;
341         return 0;
342 }
343
344 /**
345  * \brief wipe the content of a Buf thoroughly (overwrite it -> expensive); keep its struct
346  * \param buf Buffer to wipe
347  */
348 int FLUSHStrBuf(StrBuf *buf)
349 {
350         if (buf == NULL)
351                 return -1;
352         if (buf->ConstBuf)
353                 return -1;
354         if (buf->BufUsed > 0) {
355                 memset(buf->buf, 0, buf->BufUsed);
356                 buf->BufUsed = 0;
357         }
358         return 0;
359 }
360
361 #ifdef SIZE_DEBUG
362 int hFreeDbglog = -1;
363 #endif
364 /**
365  * \brief Release a Buffer
366  * Its a double pointer, so it can NULL your pointer
367  * so fancy SIG11 appear instead of random results
368  * \param FreeMe Pointer Pointer to the buffer to free
369  */
370 void FreeStrBuf (StrBuf **FreeMe)
371 {
372         if (*FreeMe == NULL)
373                 return;
374 #ifdef SIZE_DEBUG
375         if (hFreeDbglog == -1){
376                 pid_t pid = getpid();
377                 char path [SIZ];
378                 snprintf(path, SIZ, "/tmp/libcitadel_strbuf_realloc.log.%d", pid);
379                 hFreeDbglog = open(path, O_APPEND|O_CREAT|O_WRONLY);
380         }
381         if ((*FreeMe)->nIncreases > 0)
382         {
383                 char buf[SIZ * 3];
384                 long n;
385                 n = snprintf(buf, SIZ * 3, "+|%ld|%ld|%ld|%s|%s|\n",
386                              (*FreeMe)->nIncreases,
387                              (*FreeMe)->BufUsed,
388                              (*FreeMe)->BufSize,
389                              (*FreeMe)->bt,
390                              (*FreeMe)->bt_lastinc);
391                 n = write(hFreeDbglog, buf, n);
392         }
393         else
394         {
395                 char buf[128];
396                 long n;
397                 n = snprintf(buf, 128, "_|0|%ld%ld|\n",
398                              (*FreeMe)->BufUsed,
399                              (*FreeMe)->BufSize);
400                 n = write(hFreeDbglog, buf, n);
401         }
402 #endif
403         if (!(*FreeMe)->ConstBuf) 
404                 free((*FreeMe)->buf);
405         free(*FreeMe);
406         *FreeMe = NULL;
407 }
408
409 /**
410  * \brief Release the buffer
411  * If you want put your StrBuf into a Hash, use this as Destructor.
412  * \param VFreeMe untyped pointer to a StrBuf. be shure to do the right thing [TM]
413  */
414 void HFreeStrBuf (void *VFreeMe)
415 {
416         StrBuf *FreeMe = (StrBuf*)VFreeMe;
417         if (FreeMe == NULL)
418                 return;
419 #ifdef SIZE_DEBUG
420         if (hFreeDbglog == -1){
421                 pid_t pid = getpid();
422                 char path [SIZ];
423                 snprintf(path, SIZ, "/tmp/libcitadel_strbuf_realloc.log.%d", pid);
424                 hFreeDbglog = open(path, O_APPEND|O_CREAT|O_WRONLY);
425         }
426         if (FreeMe->nIncreases > 0)
427         {
428                 char buf[SIZ * 3];
429                 long n;
430                 n = snprintf(buf, SIZ * 3, "+|%ld|%ld|%ld|%s|%s|\n",
431                              FreeMe->nIncreases,
432                              FreeMe->BufUsed,
433                              FreeMe->BufSize,
434                              FreeMe->bt,
435                              FreeMe->bt_lastinc);
436                 write(hFreeDbglog, buf, n);
437         }
438         else
439         {
440                 char buf[128];
441                 long n;
442                 n = snprintf(buf, 128, "_|%ld|%ld%ld|\n",
443                              FreeMe->nIncreases,
444                              FreeMe->BufUsed,
445                              FreeMe->BufSize);
446         }
447 #endif
448         if (!FreeMe->ConstBuf) 
449                 free(FreeMe->buf);
450         free(FreeMe);
451 }
452
453 /**
454  * \brief Wrapper around atol
455  */
456 long StrTol(const StrBuf *Buf)
457 {
458         if (Buf == NULL)
459                 return 0;
460         if(Buf->BufUsed > 0)
461                 return atol(Buf->buf);
462         else
463                 return 0;
464 }
465
466 /**
467  * \brief Wrapper around atoi
468  */
469 int StrToi(const StrBuf *Buf)
470 {
471         if (Buf == NULL)
472                 return 0;
473         if (Buf->BufUsed > 0)
474                 return atoi(Buf->buf);
475         else
476                 return 0;
477 }
478
479 /**
480  * \brief Checks to see if the string is a pure number 
481  */
482 int StrBufIsNumber(const StrBuf *Buf) {
483   char * pEnd;
484   if (Buf == NULL) {
485         return 0;
486   }
487   strtoll(Buf->buf, &pEnd, 10);
488   if (pEnd == NULL && ((Buf->buf)-pEnd) != 0) {
489     return 1;
490   }
491   return 0;
492
493 /**
494  * \brief modifies a Single char of the Buf
495  * You can point to it via char* or a zero-based integer
496  * \param ptr char* to zero; use NULL if unused
497  * \param nThChar zero based pointer into the string; use -1 if unused
498  * \param PeekValue The Character to place into the position
499  */
500 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue)
501 {
502         if (Buf == NULL)
503                 return -1;
504         if (ptr != NULL)
505                 nThChar = ptr - Buf->buf;
506         if ((nThChar < 0) || (nThChar > Buf->BufUsed))
507                 return -1;
508         Buf->buf[nThChar] = PeekValue;
509         return nThChar;
510 }
511
512 /**
513  * \brief Append a StringBuffer to the buffer
514  * \param Buf Buffer to modify
515  * \param AppendBuf Buffer to copy at the end of our buffer
516  * \param Offset Should we start copying from an offset?
517  */
518 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset)
519 {
520         if ((AppendBuf == NULL) || (Buf == NULL) || (AppendBuf->buf == NULL))
521                 return;
522
523         if (Buf->BufSize - Offset < AppendBuf->BufUsed + Buf->BufUsed + 1)
524                 IncreaseBuf(Buf, 
525                             (Buf->BufUsed > 0), 
526                             AppendBuf->BufUsed + Buf->BufUsed);
527
528         memcpy(Buf->buf + Buf->BufUsed, 
529                AppendBuf->buf + Offset, 
530                AppendBuf->BufUsed - Offset);
531         Buf->BufUsed += AppendBuf->BufUsed - Offset;
532         Buf->buf[Buf->BufUsed] = '\0';
533 }
534
535
536 /**
537  * \brief Append a C-String to the buffer
538  * \param Buf Buffer to modify
539  * \param AppendBuf Buffer to copy at the end of our buffer
540  * \param AppendSize number of bytes to copy; set to -1 if we should count it in advance
541  * \param Offset Should we start copying from an offset?
542  */
543 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset)
544 {
545         long aps;
546         long BufSizeRequired;
547
548         if ((AppendBuf == NULL) || (Buf == NULL))
549                 return;
550
551         if (AppendSize < 0 )
552                 aps = strlen(AppendBuf + Offset);
553         else
554                 aps = AppendSize - Offset;
555
556         BufSizeRequired = Buf->BufUsed + aps + 1;
557         if (Buf->BufSize <= BufSizeRequired)
558                 IncreaseBuf(Buf, (Buf->BufUsed > 0), BufSizeRequired);
559
560         memcpy(Buf->buf + Buf->BufUsed, 
561                AppendBuf + Offset, 
562                aps);
563         Buf->BufUsed += aps;
564         Buf->buf[Buf->BufUsed] = '\0';
565 }
566
567 /**
568  * \brief Callback for cURL to append the webserver reply to a buffer
569  * params pre-defined by the cURL API; see man 3 curl for mre info
570  */
571 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream)
572 {
573
574         StrBuf *Target;
575
576         Target = stream;
577         if (ptr == NULL)
578                 return 0;
579
580         StrBufAppendBufPlain(Target, ptr, size * nmemb, 0);
581         return size * nmemb;
582 }
583
584
585 /** 
586  * \brief Escape a string for feeding out as a URL while appending it to a Buffer
587  * \param outbuf the output buffer
588  * \param oblen the size of outbuf to sanitize
589  * \param strbuf the input buffer
590  */
591 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn)
592 {
593         const char *pch, *pche;
594         char *pt, *pte;
595         int b, c, len;
596         const char ec[] = " +#&;`'|*?-~<>^()[]{}/$\"\\";
597         int eclen = sizeof(ec) -1;
598
599         if (((In == NULL) && (PlainIn == NULL)) || (OutBuf == NULL) )
600                 return;
601         if (PlainIn != NULL) {
602                 len = strlen(PlainIn);
603                 pch = PlainIn;
604                 pche = pch + len;
605         }
606         else {
607                 pch = In->buf;
608                 pche = pch + In->BufUsed;
609                 len = In->BufUsed;
610         }
611
612         if (len == 0) 
613                 return;
614
615         pt = OutBuf->buf + OutBuf->BufUsed;
616         pte = OutBuf->buf + OutBuf->BufSize - 4; /**< we max append 3 chars at once plus the \0 */
617
618         while (pch < pche) {
619                 if (pt >= pte) {
620                         IncreaseBuf(OutBuf, 1, -1);
621                         pte = OutBuf->buf + OutBuf->BufSize - 4; /**< we max append 3 chars at once plus the \0 */
622                         pt = OutBuf->buf + OutBuf->BufUsed;
623                 }
624                 
625                 c = 0;
626                 for (b = 0; b < eclen; ++b) {
627                         if (*pch == ec[b]) {
628                                 c = 1;
629                                 b += eclen;
630                         }
631                 }
632                 if (c == 1) {
633                         sprintf(pt,"%%%02X", *pch);
634                         pt += 3;
635                         OutBuf->BufUsed += 3;
636                         pch ++;
637                 }
638                 else {
639                         *(pt++) = *(pch++);
640                         OutBuf->BufUsed++;
641                 }
642         }
643         *pt = '\0';
644 }
645
646 /*
647  * \brief Append a string, escaping characters which have meaning in HTML.  
648  *
649  * \param Target        target buffer
650  * \param Source        source buffer; set to NULL if you just have a C-String
651  * \param PlainIn       Plain-C string to append; set to NULL if unused
652  * \param nbsp          If nonzero, spaces are converted to non-breaking spaces.
653  * \param nolinebreaks  if set to 1, linebreaks are removed from the string.
654  *                      if set to 2, linebreaks are replaced by &ltbr/&gt
655  */
656 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks)
657 {
658         const char *aptr, *eiptr;
659         char *bptr, *eptr;
660         long len;
661
662         if (((Source == NULL) && (PlainIn == NULL)) || (Target == NULL) )
663                 return -1;
664
665         if (PlainIn != NULL) {
666                 aptr = PlainIn;
667                 len = strlen(PlainIn);
668                 eiptr = aptr + len;
669         }
670         else {
671                 aptr = Source->buf;
672                 eiptr = aptr + Source->BufUsed;
673                 len = Source->BufUsed;
674         }
675
676         if (len == 0) 
677                 return -1;
678
679         bptr = Target->buf + Target->BufUsed;
680         eptr = Target->buf + Target->BufSize - 11; /* our biggest unit to put in...  */
681
682         while (aptr < eiptr){
683                 if(bptr >= eptr) {
684                         IncreaseBuf(Target, 1, -1);
685                         eptr = Target->buf + Target->BufSize - 11; /* our biggest unit to put in...  */
686                         bptr = Target->buf + Target->BufUsed;
687                 }
688                 if (*aptr == '<') {
689                         memcpy(bptr, "&lt;", 4);
690                         bptr += 4;
691                         Target->BufUsed += 4;
692                 }
693                 else if (*aptr == '>') {
694                         memcpy(bptr, "&gt;", 4);
695                         bptr += 4;
696                         Target->BufUsed += 4;
697                 }
698                 else if (*aptr == '&') {
699                         memcpy(bptr, "&amp;", 5);
700                         bptr += 5;
701                         Target->BufUsed += 5;
702                 }
703                 else if (*aptr == '"') {
704                         memcpy(bptr, "&quot;", 6);
705                         bptr += 6;
706                         Target->BufUsed += 6;
707                 }
708                 else if (*aptr == '\'') {
709                         memcpy(bptr, "&#39;", 5);
710                         bptr += 5;
711                         Target->BufUsed += 5;
712                 }
713                 else if (*aptr == LB) {
714                         *bptr = '<';
715                         bptr ++;
716                         Target->BufUsed ++;
717                 }
718                 else if (*aptr == RB) {
719                         *bptr = '>';
720                         bptr ++;
721                         Target->BufUsed ++;
722                 }
723                 else if (*aptr == QU) {
724                         *bptr ='"';
725                         bptr ++;
726                         Target->BufUsed ++;
727                 }
728                 else if ((*aptr == 32) && (nbsp == 1)) {
729                         memcpy(bptr, "&nbsp;", 6);
730                         bptr += 6;
731                         Target->BufUsed += 6;
732                 }
733                 else if ((*aptr == '\n') && (nolinebreaks == 1)) {
734                         *bptr='\0';     /* nothing */
735                 }
736                 else if ((*aptr == '\n') && (nolinebreaks == 2)) {
737                         memcpy(bptr, "&lt;br/&gt;", 11);
738                         bptr += 11;
739                         Target->BufUsed += 11;
740                 }
741
742
743                 else if ((*aptr == '\r') && (nolinebreaks != 0)) {
744                         *bptr='\0';     /* nothing */
745                 }
746                 else{
747                         *bptr = *aptr;
748                         bptr++;
749                         Target->BufUsed ++;
750                 }
751                 aptr ++;
752         }
753         *bptr = '\0';
754         if ((bptr = eptr - 1 ) && !IsEmptyStr(aptr) )
755                 return -1;
756         return Target->BufUsed;
757 }
758
759 /*
760  * \brief Append a string, escaping characters which have meaning in HTML.  
761  * Converts linebreaks into blanks; escapes single quotes
762  * \param Target        target buffer
763  * \param Source        source buffer; set to NULL if you just have a C-String
764  * \param PlainIn       Plain-C string to append; set to NULL if unused
765  */
766 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn)
767 {
768         const char *aptr, *eiptr;
769         char *tptr, *eptr;
770         long len;
771
772         if (((Source == NULL) && (PlainIn == NULL)) || (Target == NULL) )
773                 return ;
774
775         if (PlainIn != NULL) {
776                 aptr = PlainIn;
777                 len = strlen(PlainIn);
778                 eiptr = aptr + len;
779         }
780         else {
781                 aptr = Source->buf;
782                 eiptr = aptr + Source->BufUsed;
783                 len = Source->BufUsed;
784         }
785
786         if (len == 0) 
787                 return;
788
789         eptr = Target->buf + Target->BufSize - 8; 
790         tptr = Target->buf + Target->BufUsed;
791         
792         while (aptr < eiptr){
793                 if(tptr >= eptr) {
794                         IncreaseBuf(Target, 1, -1);
795                         eptr = Target->buf + Target->BufSize - 8; 
796                         tptr = Target->buf + Target->BufUsed;
797                 }
798                
799                 if (*aptr == '\n') {
800                         *tptr = ' ';
801                         Target->BufUsed++;
802                 }
803                 else if (*aptr == '\r') {
804                         *tptr = ' ';
805                         Target->BufUsed++;
806                 }
807                 else if (*aptr == '\'') {
808                         *(tptr++) = '&';
809                         *(tptr++) = '#';
810                         *(tptr++) = '3';
811                         *(tptr++) = '9';
812                         *tptr = ';';
813                         Target->BufUsed += 5;
814                 } else {
815                         *tptr = *aptr;
816                         Target->BufUsed++;
817                 }
818                 tptr++; aptr++;
819         }
820         *tptr = '\0';
821 }
822
823
824
825 /*
826  * \brief Append a string, escaping characters which have meaning in ICAL.  
827  * [\n,] 
828  * \param Target        target buffer
829  * \param Source        source buffer; set to NULL if you just have a C-String
830  * \param PlainIn       Plain-C string to append; set to NULL if unused
831  */
832 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn)
833 {
834         const char *aptr, *eiptr;
835         char *tptr, *eptr;
836         long len;
837
838         if (((Source == NULL) && (PlainIn == NULL)) || (Target == NULL) )
839                 return ;
840
841         if (PlainIn != NULL) {
842                 aptr = PlainIn;
843                 len = strlen(PlainIn);
844                 eiptr = aptr + len;
845         }
846         else {
847                 aptr = Source->buf;
848                 eiptr = aptr + Source->BufUsed;
849                 len = Source->BufUsed;
850         }
851
852         if (len == 0) 
853                 return;
854
855         eptr = Target->buf + Target->BufSize - 8; 
856         tptr = Target->buf + Target->BufUsed;
857         
858         while (aptr < eiptr){
859                 if(tptr + 3 >= eptr) {
860                         IncreaseBuf(Target, 1, -1);
861                         eptr = Target->buf + Target->BufSize - 8; 
862                         tptr = Target->buf + Target->BufUsed;
863                 }
864                
865                 if (*aptr == '\n') {
866                         *tptr = '\\';
867                         Target->BufUsed++;
868                         tptr++;
869                         *tptr = 'n';
870                         Target->BufUsed++;
871                 }
872                 else if (*aptr == '\r') {
873                         *tptr = '\\';
874                         Target->BufUsed++;
875                         tptr++;
876                         *tptr = 'r';
877                         Target->BufUsed++;
878                 }
879                 else if (*aptr == ',') {
880                         *tptr = '\\';
881                         Target->BufUsed++;
882                         tptr++;
883                         *tptr = ',';
884                         Target->BufUsed++;
885                 } else {
886                         *tptr = *aptr;
887                         Target->BufUsed++;
888                 }
889                 tptr++; aptr++;
890         }
891         *tptr = '\0';
892 }
893
894 /*
895  * \brief Append a string, escaping characters which have meaning in JavaScript strings .  
896  *
897  * \param Target        target buffer
898  * \param Source        source buffer; set to NULL if you just have a C-String
899  * \param PlainIn       Plain-C string to append; set to NULL if unused
900  */
901 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn)
902 {
903         const char *aptr, *eiptr;
904         char *bptr, *eptr;
905         long len;
906
907         if (((Source == NULL) && (PlainIn == NULL)) || (Target == NULL) )
908                 return -1;
909
910         if (PlainIn != NULL) {
911                 aptr = PlainIn;
912                 len = strlen(PlainIn);
913                 eiptr = aptr + len;
914         }
915         else {
916                 aptr = Source->buf;
917                 eiptr = aptr + Source->BufUsed;
918                 len = Source->BufUsed;
919         }
920
921         if (len == 0) 
922                 return -1;
923
924         bptr = Target->buf + Target->BufUsed;
925         eptr = Target->buf + Target->BufSize - 3; /* our biggest unit to put in...  */
926
927         while (aptr < eiptr){
928                 if(bptr >= eptr) {
929                         IncreaseBuf(Target, 1, -1);
930                         eptr = Target->buf + Target->BufSize - 3; 
931                         bptr = Target->buf + Target->BufUsed;
932                 }
933                 else if (*aptr == '"') {
934                         *bptr = '\\';
935                         bptr ++;
936                         *bptr = '"';
937                         bptr ++;
938                         Target->BufUsed += 2;
939                 } else if (*aptr == '\\') {
940                         *bptr = '\\';
941                         bptr ++;
942                         *bptr = '\\';
943                         bptr ++;
944                         Target->BufUsed += 2;
945                 }
946                 else{
947                         *bptr = *aptr;
948                         bptr++;
949                         Target->BufUsed ++;
950                 }
951                 aptr ++;
952         }
953         *bptr = '\0';
954         if ((bptr == eptr - 1 ) && !IsEmptyStr(aptr) )
955                 return -1;
956         return Target->BufUsed;
957 }
958
959 /**
960  * \brief extracts a substring from Source into dest
961  * \param dest buffer to place substring into
962  * \param Source string to copy substring from
963  * \param Offset chars to skip from start
964  * \param nChars number of chars to copy
965  * \returns the number of chars copied; may be different from nChars due to the size of Source
966  */
967 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars)
968 {
969         size_t NCharsRemain;
970         if (Offset > Source->BufUsed)
971         {
972                 FlushStrBuf(dest);
973                 return 0;
974         }
975         if (Offset + nChars < Source->BufUsed)
976         {
977                 if (nChars >= dest->BufSize)
978                         IncreaseBuf(dest, 0, nChars + 1);
979                 memcpy(dest->buf, Source->buf + Offset, nChars);
980                 dest->BufUsed = nChars;
981                 dest->buf[dest->BufUsed] = '\0';
982                 return nChars;
983         }
984         NCharsRemain = Source->BufUsed - Offset;
985         if (NCharsRemain  >= dest->BufSize)
986                 IncreaseBuf(dest, 0, NCharsRemain + 1);
987         memcpy(dest->buf, Source->buf + Offset, NCharsRemain);
988         dest->BufUsed = NCharsRemain;
989         dest->buf[dest->BufUsed] = '\0';
990         return NCharsRemain;
991 }
992
993 /**
994  * \brief sprintf like function appending the formated string to the buffer
995  * vsnprintf version to wrap into own calls
996  * \param Buf Buffer to extend by format and params
997  * \param format printf alike format to add
998  * \param ap va_list containing the items for format
999  */
1000 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap)
1001 {
1002         va_list apl;
1003         size_t BufSize = Buf->BufSize;
1004         size_t nWritten = Buf->BufSize + 1;
1005         size_t Offset = Buf->BufUsed;
1006         size_t newused = Offset + nWritten;
1007         
1008         while (newused >= BufSize) {
1009                 va_copy(apl, ap);
1010                 nWritten = vsnprintf(Buf->buf + Offset, 
1011                                      Buf->BufSize - Offset, 
1012                                      format, apl);
1013                 va_end(apl);
1014                 newused = Offset + nWritten;
1015                 if (newused >= Buf->BufSize) {
1016                         IncreaseBuf(Buf, 1, newused);
1017                         newused = Buf->BufSize + 1;
1018                 }
1019                 else {
1020                         Buf->BufUsed = Offset + nWritten;
1021                         BufSize = Buf->BufSize;
1022                 }
1023
1024         }
1025 }
1026
1027 /**
1028  * \brief sprintf like function appending the formated string to the buffer
1029  * \param Buf Buffer to extend by format and params
1030  * \param format printf alike format to add
1031  * \param ap va_list containing the items for format
1032  */
1033 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...)
1034 {
1035         size_t BufSize = Buf->BufSize;
1036         size_t nWritten = Buf->BufSize + 1;
1037         size_t Offset = Buf->BufUsed;
1038         size_t newused = Offset + nWritten;
1039         va_list arg_ptr;
1040         
1041         while (newused >= BufSize) {
1042                 va_start(arg_ptr, format);
1043                 nWritten = vsnprintf(Buf->buf + Buf->BufUsed, 
1044                                      Buf->BufSize - Buf->BufUsed, 
1045                                      format, arg_ptr);
1046                 va_end(arg_ptr);
1047                 newused = Buf->BufUsed + nWritten;
1048                 if (newused >= Buf->BufSize) {
1049                         IncreaseBuf(Buf, 1, newused);
1050                         newused = Buf->BufSize + 1;
1051                 }
1052                 else {
1053                         Buf->BufUsed += nWritten;
1054                         BufSize = Buf->BufSize;
1055                 }
1056
1057         }
1058 }
1059
1060 /**
1061  * \brief sprintf like function putting the formated string into the buffer
1062  * \param Buf Buffer to extend by format and params
1063  * \param format printf alike format to add
1064  * \param ap va_list containing the items for format
1065  */
1066 void StrBufPrintf(StrBuf *Buf, const char *format, ...)
1067 {
1068         size_t nWritten = Buf->BufSize + 1;
1069         va_list arg_ptr;
1070         
1071         while (nWritten >= Buf->BufSize) {
1072                 va_start(arg_ptr, format);
1073                 nWritten = vsnprintf(Buf->buf, Buf->BufSize, format, arg_ptr);
1074                 va_end(arg_ptr);
1075                 if (nWritten >= Buf->BufSize) {
1076                         IncreaseBuf(Buf, 0, 0);
1077                         nWritten = Buf->BufSize + 1;
1078                         continue;
1079                 }
1080                 Buf->BufUsed = nWritten ;
1081         }
1082 }
1083
1084
1085 /**
1086  * \brief Counts the numbmer of tokens in a buffer
1087  * \param Source String to count tokens in
1088  * \param tok    Tokenizer char to count
1089  * \returns numbers of tokenizer chars found
1090  */
1091 int StrBufNum_tokens(const StrBuf *source, char tok)
1092 {
1093         if (source == NULL)
1094                 return 0;
1095         return num_tokens(source->buf, tok);
1096 }
1097
1098 /*
1099  * remove_token() - a tokenizer that kills, maims, and destroys
1100  */
1101 /**
1102  * \brief a string tokenizer
1103  * \param Source StringBuffer to read into
1104  * \param parmnum n'th parameter to remove
1105  * \param separator tokenizer param
1106  * \returns -1 if not found, else length of token.
1107  */
1108 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator)
1109 {
1110         int ReducedBy;
1111         char *d, *s;            /* dest, source */
1112         int count = 0;
1113
1114         /* Find desired parameter */
1115         d = Source->buf;
1116         while (count < parmnum) {
1117                 /* End of string, bail! */
1118                 if (!*d) {
1119                         d = NULL;
1120                         break;
1121                 }
1122                 if (*d == separator) {
1123                         count++;
1124                 }
1125                 d++;
1126         }
1127         if (!d) return 0;               /* Parameter not found */
1128
1129         /* Find next parameter */
1130         s = d;
1131         while (*s && *s != separator) {
1132                 s++;
1133         }
1134         if (*s == separator)
1135                 s++;
1136         ReducedBy = d - s;
1137
1138         /* Hack and slash */
1139         if (*s) {
1140                 memmove(d, s, Source->BufUsed - (s - Source->buf) + 1);
1141                 Source->BufUsed -= (ReducedBy + 1);
1142         }
1143         else if (d == Source->buf) {
1144                 *d = 0;
1145                 Source->BufUsed = 0;
1146         }
1147         else {
1148                 *--d = 0;
1149                 Source->BufUsed -= (ReducedBy + 1);
1150         }
1151         /*
1152         while (*s) {
1153                 *d++ = *s++;
1154         }
1155         *d = 0;
1156         */
1157         return ReducedBy;
1158 }
1159
1160
1161 /**
1162  * \brief a string tokenizer
1163  * \param dest Destination StringBuffer
1164  * \param Source StringBuffer to read into
1165  * \param parmnum n'th parameter to extract
1166  * \param separator tokenizer param
1167  * \returns -1 if not found, else length of token.
1168  */
1169 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator)
1170 {
1171         const char *s, *e;              //* source * /
1172         int len = 0;                    //* running total length of extracted string * /
1173         int current_token = 0;          //* token currently being processed * /
1174          
1175         if (dest != NULL) {
1176                 dest->buf[0] = '\0';
1177                 dest->BufUsed = 0;
1178         }
1179         else
1180                 return(-1);
1181
1182         if ((Source == NULL) || (Source->BufUsed ==0)) {
1183                 return(-1);
1184         }
1185         s = Source->buf;
1186         e = s + Source->BufUsed;
1187
1188         //cit_backtrace();
1189         //lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
1190
1191         while ((s<e) && !IsEmptyStr(s)) {
1192                 if (*s == separator) {
1193                         ++current_token;
1194                 }
1195                 if (len >= dest->BufSize) {
1196                         dest->BufUsed = len;
1197                         if (!IncreaseBuf(dest, 1, -1))
1198                                 break;
1199                 }
1200                 if ( (current_token == parmnum) && 
1201                      (*s != separator)) {
1202                         dest->buf[len] = *s;
1203                         ++len;
1204                 }
1205                 else if (current_token > parmnum) {
1206                         break;
1207                 }
1208                 ++s;
1209         }
1210         
1211         dest->buf[len] = '\0';
1212         dest->BufUsed = len;
1213                 
1214         if (current_token < parmnum) {
1215                 //lprintf (CTDL_DEBUG,"test <!: %s\n", dest);
1216                 return(-1);
1217         }
1218         //lprintf (CTDL_DEBUG,"test <: %d; %s\n", len, dest);
1219         return(len);
1220 }
1221
1222
1223
1224
1225
1226 /**
1227  * \brief a string tokenizer to fetch an integer
1228  * \param dest Destination StringBuffer
1229  * \param parmnum n'th parameter to extract
1230  * \param separator tokenizer param
1231  * \returns 0 if not found, else integer representation of the token
1232  */
1233 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator)
1234 {
1235         StrBuf tmp;
1236         char buf[64];
1237         
1238         tmp.buf = buf;
1239         buf[0] = '\0';
1240         tmp.BufSize = 64;
1241         tmp.BufUsed = 0;
1242         tmp.ConstBuf = 1;
1243         if (StrBufExtract_token(&tmp, Source, parmnum, separator) > 0)
1244                 return(atoi(buf));
1245         else
1246                 return 0;
1247 }
1248
1249 /**
1250  * \brief a string tokenizer to fetch a long integer
1251  * \param dest Destination StringBuffer
1252  * \param parmnum n'th parameter to extract
1253  * \param separator tokenizer param
1254  * \returns 0 if not found, else long integer representation of the token
1255  */
1256 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator)
1257 {
1258         StrBuf tmp;
1259         char buf[64];
1260         
1261         tmp.buf = buf;
1262         buf[0] = '\0';
1263         tmp.BufSize = 64;
1264         tmp.BufUsed = 0;
1265         tmp.ConstBuf = 1;
1266         if (StrBufExtract_token(&tmp, Source, parmnum, separator) > 0)
1267                 return(atoi(buf));
1268         else
1269                 return 0;
1270 }
1271
1272
1273 /**
1274  * \brief a string tokenizer to fetch an unsigned long
1275  * \param dest Destination StringBuffer
1276  * \param parmnum n'th parameter to extract
1277  * \param separator tokenizer param
1278  * \returns 0 if not found, else unsigned long representation of the token
1279  */
1280 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator)
1281 {
1282         StrBuf tmp;
1283         char buf[64];
1284         char *pnum;
1285         
1286         tmp.buf = buf;
1287         buf[0] = '\0';
1288         tmp.BufSize = 64;
1289         tmp.BufUsed = 0;
1290         tmp.ConstBuf = 1;
1291         if (StrBufExtract_token(&tmp, Source, parmnum, separator) > 0) {
1292                 pnum = &buf[0];
1293                 if (*pnum == '-')
1294                         pnum ++;
1295                 return (unsigned long) atol(pnum);
1296         }
1297         else 
1298                 return 0;
1299 }
1300
1301
1302
1303 /**
1304  * \brief a string tokenizer
1305  * \param dest Destination StringBuffer
1306  * \param Source StringBuffer to read into
1307  * \param pStart pointer to the end of the last token. Feed with NULL.
1308  * \param separator tokenizer param
1309  * \returns -1 if not found, else length of token.
1310  */
1311 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator)
1312 {
1313         const char *s, *EndBuffer;      //* source * /
1314         int len = 0;                    //* running total length of extracted string * /
1315         int current_token = 0;          //* token currently being processed * /
1316          
1317         if (dest != NULL) {
1318                 dest->buf[0] = '\0';
1319                 dest->BufUsed = 0;
1320         }
1321         else
1322                 return(-1);
1323
1324         if ((Source == NULL) || 
1325             (Source->BufUsed ==0)) {
1326                 return(-1);
1327         }
1328         if (*pStart == NULL)
1329                 *pStart = Source->buf;
1330
1331         EndBuffer = Source->buf + Source->BufUsed;
1332
1333         if ((*pStart < Source->buf) || 
1334             (*pStart >  EndBuffer)) {
1335                 return (-1);
1336         }
1337
1338
1339         s = *pStart;
1340
1341         //cit_backtrace();
1342         //lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
1343
1344         while ((s<EndBuffer) && !IsEmptyStr(s)) {
1345                 if (*s == separator) {
1346                         ++current_token;
1347                 }
1348                 if (len >= dest->BufSize) {
1349                         dest->BufUsed = len;
1350                         if (!IncreaseBuf(dest, 1, -1)) {
1351                                 *pStart = EndBuffer + 1;
1352                                 break;
1353                         }
1354                 }
1355                 if ( (current_token == 0) && 
1356                      (*s != separator)) {
1357                         dest->buf[len] = *s;
1358                         ++len;
1359                 }
1360                 else if (current_token > 0) {
1361                         *pStart = s;
1362                         break;
1363                 }
1364                 ++s;
1365         }
1366         *pStart = s;
1367         (*pStart) ++;
1368
1369         dest->buf[len] = '\0';
1370         dest->BufUsed = len;
1371                 //lprintf (CTDL_DEBUG,"test <!: %s\n", dest);
1372         //lprintf (CTDL_DEBUG,"test <: %d; %s\n", len, dest);
1373         return(len);
1374 }
1375
1376
1377 /**
1378  * \brief a string tokenizer
1379  * \param dest Destination StringBuffer
1380  * \param Source StringBuffer to read into
1381  * \param pStart pointer to the end of the last token. Feed with NULL.
1382  * \param separator tokenizer param
1383  * \returns -1 if not found, else length of token.
1384  */
1385 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens)
1386 {
1387         const char *s, *EndBuffer;      //* source * /
1388         int len = 0;                    //* running total length of extracted string * /
1389         int current_token = 0;          //* token currently being processed * /
1390
1391         if ((Source == NULL) || 
1392             (Source->BufUsed ==0)) {
1393                 return(-1);
1394         }
1395         if (nTokens == 0)
1396                 return Source->BufUsed;
1397
1398         if (*pStart == NULL)
1399                 *pStart = Source->buf;
1400
1401         EndBuffer = Source->buf + Source->BufUsed;
1402
1403         if ((*pStart < Source->buf) || 
1404             (*pStart >  EndBuffer)) {
1405                 return (-1);
1406         }
1407
1408
1409         s = *pStart;
1410
1411         //cit_backtrace();
1412         //lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
1413
1414         while ((s<EndBuffer) && !IsEmptyStr(s)) {
1415                 if (*s == separator) {
1416                         ++current_token;
1417                 }
1418                 if (current_token >= nTokens) {
1419                         break;
1420                 }
1421                 ++s;
1422         }
1423         *pStart = s;
1424         (*pStart) ++;
1425
1426         return(len);
1427 }
1428
1429 /**
1430  * \brief a string tokenizer to fetch an integer
1431  * \param dest Destination StringBuffer
1432  * \param parmnum n'th parameter to extract
1433  * \param separator tokenizer param
1434  * \returns 0 if not found, else integer representation of the token
1435  */
1436 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator)
1437 {
1438         StrBuf tmp;
1439         char buf[64];
1440         
1441         tmp.buf = buf;
1442         buf[0] = '\0';
1443         tmp.BufSize = 64;
1444         tmp.BufUsed = 0;
1445         tmp.ConstBuf = 1;
1446         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0)
1447                 return(atoi(buf));
1448         else
1449                 return 0;
1450 }
1451
1452 /**
1453  * \brief a string tokenizer to fetch a long integer
1454  * \param dest Destination StringBuffer
1455  * \param parmnum n'th parameter to extract
1456  * \param separator tokenizer param
1457  * \returns 0 if not found, else long integer representation of the token
1458  */
1459 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator)
1460 {
1461         StrBuf tmp;
1462         char buf[64];
1463         
1464         tmp.buf = buf;
1465         buf[0] = '\0';
1466         tmp.BufSize = 64;
1467         tmp.BufUsed = 0;
1468         tmp.ConstBuf = 1;
1469         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0)
1470                 return(atoi(buf));
1471         else
1472                 return 0;
1473 }
1474
1475
1476 /**
1477  * \brief a string tokenizer to fetch an unsigned long
1478  * \param dest Destination StringBuffer
1479  * \param parmnum n'th parameter to extract
1480  * \param separator tokenizer param
1481  * \returns 0 if not found, else unsigned long representation of the token
1482  */
1483 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator)
1484 {
1485         StrBuf tmp;
1486         char buf[64];
1487         char *pnum;
1488         
1489         tmp.buf = buf;
1490         buf[0] = '\0';
1491         tmp.BufSize = 64;
1492         tmp.BufUsed = 0;
1493         tmp.ConstBuf = 1;
1494         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0) {
1495                 pnum = &buf[0];
1496                 if (*pnum == '-')
1497                         pnum ++;
1498                 return (unsigned long) atol(pnum);
1499         }
1500         else 
1501                 return 0;
1502 }
1503
1504
1505
1506 /**
1507  * \brief Read a line from socket
1508  * flushes and closes the FD on error
1509  * \param buf the buffer to get the input to
1510  * \param fd pointer to the filedescriptor to read
1511  * \param append Append to an existing string or replace?
1512  * \param Error strerror() on error 
1513  * \returns numbers of chars read
1514  */
1515 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error)
1516 {
1517         int len, rlen, slen;
1518
1519         if (!append)
1520                 FlushStrBuf(buf);
1521
1522         slen = len = buf->BufUsed;
1523         while (1) {
1524                 rlen = read(*fd, &buf->buf[len], 1);
1525                 if (rlen < 1) {
1526                         *Error = strerror(errno);
1527                         
1528                         close(*fd);
1529                         *fd = -1;
1530                         
1531                         return -1;
1532                 }
1533                 if (buf->buf[len] == '\n')
1534                         break;
1535                 if (buf->buf[len] != '\r')
1536                         len ++;
1537                 if (len >= buf->BufSize) {
1538                         buf->BufUsed = len;
1539                         buf->buf[len+1] = '\0';
1540                         IncreaseBuf(buf, 1, -1);
1541                 }
1542         }
1543         buf->BufUsed = len;
1544         buf->buf[len] = '\0';
1545         return len - slen;
1546 }
1547
1548 /**
1549  * \brief Read a line from socket
1550  * flushes and closes the FD on error
1551  * \param buf the buffer to get the input to
1552  * \param fd pointer to the filedescriptor to read
1553  * \param append Append to an existing string or replace?
1554  * \param Error strerror() on error 
1555  * \returns numbers of chars read
1556  */
1557 int StrBufTCP_read_buffered_line(StrBuf *Line, 
1558                                  StrBuf *buf, 
1559                                  int *fd, 
1560                                  int timeout, 
1561                                  int selectresolution, 
1562                                  const char **Error)
1563 {
1564         int len, rlen;
1565         int nSuccessLess = 0;
1566         fd_set rfds;
1567         char *pch = NULL;
1568         int fdflags;
1569         struct timeval tv;
1570
1571         if (buf->BufUsed > 0) {
1572                 pch = strchr(buf->buf, '\n');
1573                 if (pch != NULL) {
1574                         rlen = 0;
1575                         len = pch - buf->buf;
1576                         if (len > 0 && (*(pch - 1) == '\r') )
1577                                 rlen ++;
1578                         StrBufSub(Line, buf, 0, len - rlen);
1579                         StrBufCutLeft(buf, len + 1);
1580                         return len - rlen;
1581                 }
1582         }
1583         
1584         if (buf->BufSize - buf->BufUsed < 10)
1585                 IncreaseBuf(buf, 1, -1);
1586
1587         fdflags = fcntl(*fd, F_GETFL);
1588         if ((fdflags & O_NONBLOCK) == O_NONBLOCK)
1589                 return -1;
1590
1591         while ((nSuccessLess < timeout) && (pch == NULL)) {
1592                 tv.tv_sec = selectresolution;
1593                 tv.tv_usec = 0;
1594                 
1595                 FD_ZERO(&rfds);
1596                 FD_SET(*fd, &rfds);
1597                 if (select(*fd + 1, NULL, &rfds, NULL, &tv) == -1) {
1598                         *Error = strerror(errno);
1599                         close (*fd);
1600                         *fd = -1;
1601                         return -1;
1602                 }               
1603                 if (FD_ISSET(*fd, &rfds)) {
1604                         rlen = read(*fd, 
1605                                     &buf->buf[buf->BufUsed], 
1606                                     buf->BufSize - buf->BufUsed - 1);
1607                         if (rlen < 1) {
1608                                 *Error = strerror(errno);
1609                                 close(*fd);
1610                                 *fd = -1;
1611                                 return -1;
1612                         }
1613                         else if (rlen > 0) {
1614                                 nSuccessLess = 0;
1615                                 buf->BufUsed += rlen;
1616                                 buf->buf[buf->BufUsed] = '\0';
1617                                 if (buf->BufUsed + 10 > buf->BufSize) {
1618                                         IncreaseBuf(buf, 1, -1);
1619                                 }
1620                                 pch = strchr(buf->buf, '\n');
1621                                 continue;
1622                         }
1623                 }
1624                 nSuccessLess ++;
1625         }
1626         if (pch != NULL) {
1627                 rlen = 0;
1628                 len = pch - buf->buf;
1629                 if (len > 0 && (*(pch - 1) == '\r') )
1630                         rlen ++;
1631                 StrBufSub(Line, buf, 0, len - rlen);
1632                 StrBufCutLeft(buf, len + 1);
1633                 return len - rlen;
1634         }
1635         return -1;
1636
1637 }
1638
1639 /**
1640  * \brief Read a line from socket
1641  * flushes and closes the FD on error
1642  * \param buf the buffer to get the input to
1643  * \param Pos pointer to the current read position, should be NULL initialized!
1644  * \param fd pointer to the filedescriptor to read
1645  * \param append Append to an existing string or replace?
1646  * \param Error strerror() on error 
1647  * \returns numbers of chars read
1648  */
1649 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
1650                                       StrBuf *IOBuf, 
1651                                       const char **Pos,
1652                                       int *fd, 
1653                                       int timeout, 
1654                                       int selectresolution, 
1655                                       const char **Error)
1656 {
1657         const char *pche = NULL;
1658         const char *pos = NULL;
1659         int len, rlen;
1660         int nSuccessLess = 0;
1661         fd_set rfds;
1662         const char *pch = NULL;
1663         int fdflags;
1664         struct timeval tv;
1665         
1666         pos = *Pos;
1667         if ((IOBuf->BufUsed > 0) && 
1668             (pos != NULL) && 
1669             (pos < IOBuf->buf + IOBuf->BufUsed)) 
1670         {
1671                 pche = IOBuf->buf + IOBuf->BufUsed;
1672                 pch = pos;
1673                 while ((pch < pche) && (*pch != '\n'))
1674                         pch ++;
1675                 if ((pch >= pche) || (*pch == '\0'))
1676                         pch = NULL;
1677                 if ((pch != NULL) && 
1678                     (pch <= pche)) 
1679                 {
1680                         rlen = 0;
1681                         len = pch - pos;
1682                         if (len > 0 && (*(pch - 1) == '\r') )
1683                                 rlen ++;
1684                         StrBufSub(Line, IOBuf, (pos - IOBuf->buf), len - rlen);
1685                         *Pos = pch + 1;
1686                         return len - rlen;
1687                 }
1688         }
1689         
1690         if (pos != NULL) {
1691                 if (pos > pche)
1692                         FlushStrBuf(IOBuf);
1693                 else 
1694                         StrBufCutLeft(IOBuf, (pos - IOBuf->buf));
1695                 *Pos = NULL;
1696         }
1697         
1698         if (IOBuf->BufSize - IOBuf->BufUsed < 10) {
1699                 IncreaseBuf(IOBuf, 1, -1);
1700         }
1701
1702         fdflags = fcntl(*fd, F_GETFL);
1703         if ((fdflags & O_NONBLOCK) == O_NONBLOCK)
1704                 return -1;
1705
1706         pch = NULL;
1707         while ((nSuccessLess < timeout) && (pch == NULL)) {
1708                 tv.tv_sec = selectresolution;
1709                 tv.tv_usec = 0;
1710                 
1711                 FD_ZERO(&rfds);
1712                 FD_SET(*fd, &rfds);
1713                 if (select(*fd + 1, NULL, &rfds, NULL, &tv) == -1) {
1714                         *Error = strerror(errno);
1715                         close (*fd);
1716                         *fd = -1;
1717                         return -1;
1718                 }               
1719                 if (FD_ISSET(*fd, &rfds) != 0) {
1720                         rlen = read(*fd, 
1721                                     &IOBuf->buf[IOBuf->BufUsed], 
1722                                     IOBuf->BufSize - IOBuf->BufUsed - 1);
1723                         if (rlen < 1) {
1724                                 *Error = strerror(errno);
1725                                 close(*fd);
1726                                 *fd = -1;
1727                                 return -1;
1728                         }
1729                         else if (rlen > 0) {
1730                                 nSuccessLess = 0;
1731                                 IOBuf->BufUsed += rlen;
1732                                 IOBuf->buf[IOBuf->BufUsed] = '\0';
1733                                 if (IOBuf->BufUsed + 10 > IOBuf->BufSize) {
1734                                         IncreaseBuf(IOBuf, 1, -1);
1735                                 }
1736
1737                                 pche = IOBuf->buf + IOBuf->BufUsed;
1738                                 pch = IOBuf->buf;
1739                                 while ((pch < pche) && (*pch != '\n'))
1740                                         pch ++;
1741                                 if ((pch >= pche) || (*pch == '\0'))
1742                                         pch = NULL;
1743                                 continue;
1744                         }
1745                 }
1746                 nSuccessLess ++;
1747         }
1748         if (pch != NULL) {
1749                 pos = IOBuf->buf;
1750                 rlen = 0;
1751                 len = pch - pos;
1752                 if (len > 0 && (*(pch - 1) == '\r') )
1753                         rlen ++;
1754                 StrBufSub(Line, IOBuf, 0, len - rlen);
1755                 *Pos = pos + len + 1;
1756                 return len - rlen;
1757         }
1758         return -1;
1759
1760 }
1761
1762 /**
1763  * \brief Input binary data from socket
1764  * flushes and closes the FD on error
1765  * \param buf the buffer to get the input to
1766  * \param fd pointer to the filedescriptor to read
1767  * \param append Append to an existing string or replace?
1768  * \param nBytes the maximal number of bytes to read
1769  * \param Error strerror() on error 
1770  * \returns numbers of chars read
1771  */
1772 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error)
1773 {
1774         fd_set wset;
1775         int fdflags;
1776         int len, rlen, slen;
1777         int nRead = 0;
1778         char *ptr;
1779
1780         if ((Buf == NULL) || (*fd == -1))
1781                 return -1;
1782         if (!append)
1783                 FlushStrBuf(Buf);
1784         if (Buf->BufUsed + nBytes >= Buf->BufSize)
1785                 IncreaseBuf(Buf, 1, Buf->BufUsed + nBytes);
1786
1787         ptr = Buf->buf + Buf->BufUsed;
1788
1789         slen = len = Buf->BufUsed;
1790
1791         fdflags = fcntl(*fd, F_GETFL);
1792
1793         while (nRead < nBytes) {
1794                if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
1795                         FD_ZERO(&wset);
1796                         FD_SET(*fd, &wset);
1797                         if (select(*fd + 1, NULL, &wset, NULL, NULL) == -1) {
1798                                 *Error = strerror(errno);
1799                                 return -1;
1800                         }
1801                 }
1802
1803                 if ((rlen = read(*fd, 
1804                                  ptr,
1805                                  nBytes - nRead)) == -1) {
1806                         close(*fd);
1807                         *fd = -1;
1808                         *Error = strerror(errno);
1809                         return rlen;
1810                 }
1811                 nRead += rlen;
1812                 ptr += rlen;
1813                 Buf->BufUsed += rlen;
1814         }
1815         Buf->buf[Buf->BufUsed] = '\0';
1816         return nRead;
1817 }
1818
1819 /**
1820  * \brief Input binary data from socket
1821  * flushes and closes the FD on error
1822  * \param buf the buffer to get the input to
1823  * \param fd pointer to the filedescriptor to read
1824  * \param append Append to an existing string or replace?
1825  * \param nBytes the maximal number of bytes to read
1826  * \param Error strerror() on error 
1827  * \returns numbers of chars read
1828  */
1829 int StrBufReadBLOBBuffered(StrBuf *Blob, 
1830                            StrBuf *IOBuf, 
1831                            const char **Pos,
1832                            int *fd, 
1833                            int append, 
1834                            long nBytes, 
1835                            int check, 
1836                            const char **Error)
1837 {
1838         const char *pche;
1839         const char *pos;
1840         int nSelects = 0;
1841         int SelRes;
1842         fd_set wset;
1843         int fdflags;
1844         int len = 0;
1845         int rlen, slen;
1846         int nRead = 0;
1847         char *ptr;
1848         const char *pch;
1849
1850         if ((Blob == NULL) || (*fd == -1) || (IOBuf == NULL) || (Pos == NULL))
1851                 return -1;
1852         if (!append)
1853                 FlushStrBuf(Blob);
1854         if (Blob->BufUsed + nBytes >= Blob->BufSize) 
1855                 IncreaseBuf(Blob, append, Blob->BufUsed + nBytes);
1856         
1857         pos = *Pos;
1858
1859         if (pos > 0)
1860                 len = pos - IOBuf->buf;
1861         rlen = IOBuf->BufUsed - len;
1862
1863
1864         if ((IOBuf->BufUsed > 0) && 
1865             (pos != NULL) && 
1866             (pos < IOBuf->buf + IOBuf->BufUsed)) 
1867         {
1868                 pche = IOBuf->buf + IOBuf->BufUsed;
1869                 pch = pos;
1870
1871                 if (rlen < nBytes) {
1872                         memcpy(Blob->buf + Blob->BufUsed, pos, rlen);
1873                         Blob->BufUsed += rlen;
1874                         Blob->buf[Blob->BufUsed] = '\0';
1875                         nRead = rlen;
1876                         *Pos = NULL; 
1877                 }
1878                 if (rlen >= nBytes) {
1879                         memcpy(Blob->buf + Blob->BufUsed, pos, nBytes);
1880                         Blob->BufUsed += nBytes;
1881                         Blob->buf[Blob->BufUsed] = '\0';
1882                         if (rlen == nBytes) {
1883                                 *Pos = NULL; 
1884                                 FlushStrBuf(IOBuf);
1885                         }
1886                         else 
1887                                 *Pos += nBytes;
1888                         return nBytes;
1889                 }
1890         }
1891
1892         FlushStrBuf(IOBuf);
1893         if (IOBuf->BufSize < nBytes - nRead)
1894                 IncreaseBuf(IOBuf, 0, nBytes - nRead);
1895         ptr = IOBuf->buf;
1896
1897         slen = len = Blob->BufUsed;
1898
1899         fdflags = fcntl(*fd, F_GETFL);
1900
1901         SelRes = 1;
1902         nBytes -= nRead;
1903         nRead = 0;
1904         while (nRead < nBytes) {
1905                 if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
1906                         FD_ZERO(&wset);
1907                         FD_SET(*fd, &wset);
1908                         SelRes = select(*fd + 1, NULL, &wset, NULL, NULL);
1909                 }
1910                 if (SelRes == -1) {
1911                         *Error = strerror(errno);
1912                         return -1;
1913                 }
1914                 else if (SelRes) {
1915                         nSelects = 0;
1916                         rlen = read(*fd, 
1917                                     ptr,
1918                                     nBytes - nRead);
1919                         if (rlen == -1) {
1920                                 close(*fd);
1921                                 *fd = -1;
1922                                 *Error = strerror(errno);
1923                                 return rlen;
1924                         }
1925                 }
1926                 else {
1927                         nSelects ++;
1928                         if ((check == NNN_TERM) && 
1929                             (nRead > 5) &&
1930                             (strncmp(IOBuf->buf + IOBuf->BufUsed - 5, "\n000\n", 5) == 0)) 
1931                         {
1932                                 StrBufPlain(Blob, HKEY("\n000\n"));
1933                                 StrBufCutRight(Blob, 5);
1934                                 return Blob->BufUsed;
1935                         }
1936                         if (nSelects > 10) {
1937                                 FlushStrBuf(IOBuf);
1938                                 return -1;
1939                         }
1940                 }
1941                 if (rlen > 0) {
1942                         nRead += rlen;
1943                         ptr += rlen;
1944                         IOBuf->BufUsed += rlen;
1945                 }
1946         }
1947         if (nRead > nBytes) {
1948                 *Pos = IOBuf->buf + nBytes;
1949         }
1950         Blob->buf[Blob->BufUsed] = '\0';
1951         StrBufAppendBufPlain(Blob, IOBuf->buf, nBytes, 0);
1952         return nRead;
1953 }
1954
1955 /**
1956  * \brief Cut nChars from the start of the string
1957  * \param Buf Buffer to modify
1958  * \param nChars how many chars should be skipped?
1959  */
1960 void StrBufCutLeft(StrBuf *Buf, int nChars)
1961 {
1962         if (nChars >= Buf->BufUsed) {
1963                 FlushStrBuf(Buf);
1964                 return;
1965         }
1966         memmove(Buf->buf, Buf->buf + nChars, Buf->BufUsed - nChars);
1967         Buf->BufUsed -= nChars;
1968         Buf->buf[Buf->BufUsed] = '\0';
1969 }
1970
1971 /**
1972  * \brief Cut the trailing n Chars from the string
1973  * \param Buf Buffer to modify
1974  * \param nChars how many chars should be trunkated?
1975  */
1976 void StrBufCutRight(StrBuf *Buf, int nChars)
1977 {
1978         if (nChars >= Buf->BufUsed) {
1979                 FlushStrBuf(Buf);
1980                 return;
1981         }
1982         Buf->BufUsed -= nChars;
1983         Buf->buf[Buf->BufUsed] = '\0';
1984 }
1985
1986 /**
1987  * \brief Cut the string after n Chars
1988  * \param Buf Buffer to modify
1989  * \param AfternChars after how many chars should we trunkate the string?
1990  * \param At if non-null and points inside of our string, cut it there.
1991  */
1992 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At)
1993 {
1994         if (At != NULL){
1995                 AfternChars = At - Buf->buf;
1996         }
1997
1998         if ((AfternChars < 0) || (AfternChars >= Buf->BufUsed))
1999                 return;
2000         Buf->BufUsed = AfternChars;
2001         Buf->buf[Buf->BufUsed] = '\0';
2002 }
2003
2004
2005 /*
2006  * Strip leading and trailing spaces from a string; with premeasured and adjusted length.
2007  * buf - the string to modify
2008  * len - length of the string. 
2009  */
2010 void StrBufTrim(StrBuf *Buf)
2011 {
2012         int delta = 0;
2013         if ((Buf == NULL) || (Buf->BufUsed == 0)) return;
2014
2015         while ((Buf->BufUsed > delta) && (isspace(Buf->buf[delta]))){
2016                 delta ++;
2017         }
2018         if (delta > 0) StrBufCutLeft(Buf, delta);
2019
2020         if (Buf->BufUsed == 0) return;
2021         while (isspace(Buf->buf[Buf->BufUsed - 1])){
2022                 Buf->BufUsed --;
2023         }
2024         Buf->buf[Buf->BufUsed] = '\0';
2025 }
2026
2027
2028 void StrBufUpCase(StrBuf *Buf) 
2029 {
2030         char *pch, *pche;
2031
2032         pch = Buf->buf;
2033         pche = pch + Buf->BufUsed;
2034         while (pch < pche) {
2035                 *pch = toupper(*pch);
2036                 pch ++;
2037         }
2038 }
2039
2040
2041 void StrBufLowerCase(StrBuf *Buf) 
2042 {
2043         char *pch, *pche;
2044
2045         pch = Buf->buf;
2046         pche = pch + Buf->BufUsed;
2047         while (pch < pche) {
2048                 *pch = tolower(*pch);
2049                 pch ++;
2050         }
2051 }
2052
2053 /**
2054  * \Brief removes double slashes from pathnames
2055  * \param Dir directory string to filter
2056  * \param RemoveTrailingSlash allows / disallows trailing slashes
2057  */
2058 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash)
2059 {
2060         char *a, *b;
2061
2062         a = b = Dir->buf;
2063
2064         while (!IsEmptyStr(a)) {
2065                 if (*a == '/') {
2066                         while (*a == '/')
2067                                 a++;
2068                         *b = '/';
2069                         b++;
2070                 }
2071                 else {
2072                         *b = *a;
2073                         b++; a++;
2074                 }
2075         }
2076         if ((RemoveTrailingSlash) && (*(b - 1) != '/')){
2077                 *b = '/';
2078                 b++;
2079         }
2080         *b = '\0';
2081         Dir->BufUsed = b - Dir->buf;
2082 }
2083
2084 /**
2085  * \brief unhide special chars hidden to the HTML escaper
2086  * \param target buffer to put the unescaped string in
2087  * \param source buffer to unescape
2088  */
2089 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source) 
2090 {
2091         int a, b, len;
2092         char hex[3];
2093
2094         if (target != NULL)
2095                 FlushStrBuf(target);
2096
2097         if (source == NULL ||target == NULL)
2098         {
2099                 return;
2100         }
2101
2102         len = source->BufUsed;
2103         for (a = 0; a < len; ++a) {
2104                 if (target->BufUsed >= target->BufSize)
2105                         IncreaseBuf(target, 1, -1);
2106
2107                 if (source->buf[a] == '=') {
2108                         hex[0] = source->buf[a + 1];
2109                         hex[1] = source->buf[a + 2];
2110                         hex[2] = 0;
2111                         b = 0;
2112                         sscanf(hex, "%02x", &b);
2113                         target->buf[target->BufUsed] = b;
2114                         target->buf[++target->BufUsed] = 0;
2115                         a += 2;
2116                 }
2117                 else {
2118                         target->buf[target->BufUsed] = source->buf[a];
2119                         target->buf[++target->BufUsed] = 0;
2120                 }
2121         }
2122 }
2123
2124
2125 /**
2126  * \brief hide special chars from the HTML escapers and friends
2127  * \param target buffer to put the escaped string in
2128  * \param source buffer to escape
2129  */
2130 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source) 
2131 {
2132         int i, len;
2133
2134         if (target != NULL)
2135                 FlushStrBuf(target);
2136
2137         if (source == NULL ||target == NULL)
2138         {
2139                 return;
2140         }
2141
2142         len = source->BufUsed;
2143         for (i=0; i<len; ++i) {
2144                 if (target->BufUsed + 4 >= target->BufSize)
2145                         IncreaseBuf(target, 1, -1);
2146                 if ( (isalnum(source->buf[i])) || 
2147                      (source->buf[i]=='-') || 
2148                      (source->buf[i]=='_') ) {
2149                         target->buf[target->BufUsed++] = source->buf[i];
2150                 }
2151                 else {
2152                         sprintf(&target->buf[target->BufUsed], 
2153                                 "=%02X", 
2154                                 (0xFF &source->buf[i]));
2155                         target->BufUsed += 3;
2156                 }
2157         }
2158         target->buf[target->BufUsed + 1] = '\0';
2159 }
2160
2161 /*
2162  * \brief uses the same calling syntax as compress2(), but it
2163  * creates a stream compatible with HTTP "Content-encoding: gzip"
2164  */
2165 #ifdef HAVE_ZLIB
2166 #define DEF_MEM_LEVEL 8 /*< memlevel??? */
2167 #define OS_CODE 0x03    /*< unix */
2168 int ZEXPORT compress_gzip(Bytef * dest,         /*< compressed buffer*/
2169                           size_t * destLen,     /*< length of the compresed data */
2170                           const Bytef * source, /*< source to encode */
2171                           uLong sourceLen,      /*< length of source to encode */
2172                           int level)            /*< compression level */
2173 {
2174         const int gz_magic[2] = { 0x1f, 0x8b }; /* gzip magic header */
2175
2176         /* write gzip header */
2177         snprintf((char *) dest, *destLen, 
2178                  "%c%c%c%c%c%c%c%c%c%c",
2179                  gz_magic[0], gz_magic[1], Z_DEFLATED,
2180                  0 /*flags */ , 0, 0, 0, 0 /*time */ , 0 /* xflags */ ,
2181                  OS_CODE);
2182
2183         /* normal deflate */
2184         z_stream stream;
2185         int err;
2186         stream.next_in = (Bytef *) source;
2187         stream.avail_in = (uInt) sourceLen;
2188         stream.next_out = dest + 10L;   // after header
2189         stream.avail_out = (uInt) * destLen;
2190         if ((uLong) stream.avail_out != *destLen)
2191                 return Z_BUF_ERROR;
2192
2193         stream.zalloc = (alloc_func) 0;
2194         stream.zfree = (free_func) 0;
2195         stream.opaque = (voidpf) 0;
2196
2197         err = deflateInit2(&stream, level, Z_DEFLATED, -MAX_WBITS,
2198                            DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
2199         if (err != Z_OK)
2200                 return err;
2201
2202         err = deflate(&stream, Z_FINISH);
2203         if (err != Z_STREAM_END) {
2204                 deflateEnd(&stream);
2205                 return err == Z_OK ? Z_BUF_ERROR : err;
2206         }
2207         *destLen = stream.total_out + 10L;
2208
2209         /* write CRC and Length */
2210         uLong crc = crc32(0L, source, sourceLen);
2211         int n;
2212         for (n = 0; n < 4; ++n, ++*destLen) {
2213                 dest[*destLen] = (int) (crc & 0xff);
2214                 crc >>= 8;
2215         }
2216         uLong len = stream.total_in;
2217         for (n = 0; n < 4; ++n, ++*destLen) {
2218                 dest[*destLen] = (int) (len & 0xff);
2219                 len >>= 8;
2220         }
2221         err = deflateEnd(&stream);
2222         return err;
2223 }
2224 #endif
2225
2226
2227 /**
2228  * Attention! If you feed this a Const String, you must maintain the uncompressed buffer yourself!
2229  */
2230 int CompressBuffer(StrBuf *Buf)
2231 {
2232 #ifdef HAVE_ZLIB
2233         char *compressed_data = NULL;
2234         size_t compressed_len, bufsize;
2235         int i = 0;
2236         
2237         bufsize = compressed_len = ((Buf->BufUsed * 101) / 100) + 100;
2238         compressed_data = malloc(compressed_len);
2239         
2240         /* Flush some space after the used payload so valgrind shuts up... */
2241         while ((i < 10) && (Buf->BufUsed + i < Buf->BufSize))
2242                 Buf->buf[Buf->BufUsed + i++] = '\0';
2243         if (compress_gzip((Bytef *) compressed_data,
2244                           &compressed_len,
2245                           (Bytef *) Buf->buf,
2246                           (uLongf) Buf->BufUsed, Z_BEST_SPEED) == Z_OK) {
2247                 if (!Buf->ConstBuf)
2248                         free(Buf->buf);
2249                 Buf->buf = compressed_data;
2250                 Buf->BufUsed = compressed_len;
2251                 Buf->BufSize = bufsize;
2252                 /* Flush some space after the used payload so valgrind shuts up... */
2253                 i = 0;
2254                 while ((i < 10) && (Buf->BufUsed + i < Buf->BufSize))
2255                         Buf->buf[Buf->BufUsed + i++] = '\0';
2256                 return 1;
2257         } else {
2258                 free(compressed_data);
2259         }
2260 #endif  /* HAVE_ZLIB */
2261         return 0;
2262 }
2263
2264 /**
2265  * \brief decode a buffer from base 64 encoding; destroys original
2266  * \param Buf Buffor to transform
2267  */
2268 int StrBufDecodeBase64(StrBuf *Buf)
2269 {
2270         char *xferbuf;
2271         size_t siz;
2272         if (Buf == NULL) return -1;
2273
2274         xferbuf = (char*) malloc(Buf->BufSize);
2275         siz = CtdlDecodeBase64(xferbuf,
2276                                Buf->buf,
2277                                Buf->BufUsed);
2278         free(Buf->buf);
2279         Buf->buf = xferbuf;
2280         Buf->BufUsed = siz;
2281         return siz;
2282 }
2283
2284 /**
2285  * \brief decode a buffer from base 64 encoding; destroys original
2286  * \param Buf Buffor to transform
2287  */
2288 int StrBufDecodeHex(StrBuf *Buf)
2289 {
2290         unsigned int ch;
2291         char *pch, *pche, *pchi;
2292
2293         if (Buf == NULL) return -1;
2294
2295         pch = pchi = Buf->buf;
2296         pche = pch + Buf->BufUsed;
2297
2298         while (pchi < pche){
2299                 ch = decode_hex(pchi);
2300                 *pch = ch;
2301                 pch ++;
2302                 pchi += 2;
2303         }
2304
2305         *pch = '\0';
2306         Buf->BufUsed = pch - Buf->buf;
2307         return Buf->BufUsed;
2308 }
2309
2310 /**
2311  * \brief replace all chars >0x20 && < 0x7F with Mute
2312  * \param Mute char to put over invalid chars
2313  * \param Buf Buffor to transform
2314  */
2315 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute)
2316 {
2317         unsigned char *pch;
2318
2319         if (Buf == NULL) return -1;
2320         pch = (unsigned char *)Buf->buf;
2321         while (pch < (unsigned char *)Buf->buf + Buf->BufUsed) {
2322                 if ((*pch < 0x20) || (*pch > 0x7F))
2323                         *pch = Mute;
2324                 pch ++;
2325         }
2326         return Buf->BufUsed;
2327 }
2328
2329
2330 /**
2331  * \brief  remove escaped strings from i.e. the url string (like %20 for blanks)
2332  * \param Buf Buffer to translate
2333  * \param StripBlanks Reduce several blanks to one?
2334  */
2335 long StrBufUnescape(StrBuf *Buf, int StripBlanks)
2336 {
2337         int a, b;
2338         char hex[3];
2339         long len;
2340
2341         while ((Buf->BufUsed > 0) && (isspace(Buf->buf[Buf->BufUsed - 1]))){
2342                 Buf->buf[Buf->BufUsed - 1] = '\0';
2343                 Buf->BufUsed --;
2344         }
2345
2346         a = 0; 
2347         while (a < Buf->BufUsed) {
2348                 if (Buf->buf[a] == '+')
2349                         Buf->buf[a] = ' ';
2350                 else if (Buf->buf[a] == '%') {
2351                         /* don't let % chars through, rather truncate the input. */
2352                         if (a + 2 > Buf->BufUsed) {
2353                                 Buf->buf[a] = '\0';
2354                                 Buf->BufUsed = a;
2355                         }
2356                         else {                  
2357                                 hex[0] = Buf->buf[a + 1];
2358                                 hex[1] = Buf->buf[a + 2];
2359                                 hex[2] = 0;
2360                                 b = 0;
2361                                 sscanf(hex, "%02x", &b);
2362                                 Buf->buf[a] = (char) b;
2363                                 len = Buf->BufUsed - a - 2;
2364                                 if (len > 0)
2365                                         memmove(&Buf->buf[a + 1], &Buf->buf[a + 3], len);
2366                         
2367                                 Buf->BufUsed -=2;
2368                         }
2369                 }
2370                 a++;
2371         }
2372         return a;
2373 }
2374
2375
2376 /**
2377  * \brief       RFC2047-encode a header field if necessary.
2378  *              If no non-ASCII characters are found, the string
2379  *              will be copied verbatim without encoding.
2380  *
2381  * \param       target          Target buffer.
2382  * \param       source          Source string to be encoded.
2383  * \returns     encoded length; -1 if non success.
2384  */
2385 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source)
2386 {
2387         const char headerStr[] = "=?UTF-8?Q?";
2388         int need_to_encode = 0;
2389         int i = 0;
2390         unsigned char ch;
2391
2392         if ((source == NULL) || 
2393             (target == NULL))
2394             return -1;
2395
2396         while ((i < source->BufUsed) &&
2397                (!IsEmptyStr (&source->buf[i])) &&
2398                (need_to_encode == 0)) {
2399                 if (((unsigned char) source->buf[i] < 32) || 
2400                     ((unsigned char) source->buf[i] > 126)) {
2401                         need_to_encode = 1;
2402                 }
2403                 i++;
2404         }
2405
2406         if (!need_to_encode) {
2407                 if (*target == NULL) {
2408                         *target = NewStrBufPlain(source->buf, source->BufUsed);
2409                 }
2410                 else {
2411                         FlushStrBuf(*target);
2412                         StrBufAppendBuf(*target, source, 0);
2413                 }
2414                 return (*target)->BufUsed;
2415         }
2416         if (*target == NULL)
2417                 *target = NewStrBufPlain(NULL, sizeof(headerStr) + source->BufUsed * 2);
2418         else if (sizeof(headerStr) + source->BufUsed >= (*target)->BufSize)
2419                 IncreaseBuf(*target, sizeof(headerStr) + source->BufUsed, 0);
2420         memcpy ((*target)->buf, headerStr, sizeof(headerStr) - 1);
2421         (*target)->BufUsed = sizeof(headerStr) - 1;
2422         for (i=0; (i < source->BufUsed); ++i) {
2423                 if ((*target)->BufUsed + 4 >= (*target)->BufSize)
2424                         IncreaseBuf(*target, 1, 0);
2425                 ch = (unsigned char) source->buf[i];
2426                 if ((ch < 32) || (ch > 126) || (ch == 61)) {
2427                         sprintf(&(*target)->buf[(*target)->BufUsed], "=%02X", ch);
2428                         (*target)->BufUsed += 3;
2429                 }
2430                 else {
2431                         (*target)->buf[(*target)->BufUsed] = ch;
2432                         (*target)->BufUsed++;
2433                 }
2434         }
2435         
2436         if ((*target)->BufUsed + 4 >= (*target)->BufSize)
2437                 IncreaseBuf(*target, 1, 0);
2438
2439         (*target)->buf[(*target)->BufUsed++] = '?';
2440         (*target)->buf[(*target)->BufUsed++] = '=';
2441         (*target)->buf[(*target)->BufUsed] = '\0';
2442         return (*target)->BufUsed;;
2443 }
2444
2445 /**
2446  * \brief replaces all occurances of 'search' by 'replace'
2447  * \param buf Buffer to modify
2448  * \param search character to search
2449  * \param relpace character to replace search by
2450  */
2451 void StrBufReplaceChars(StrBuf *buf, char search, char replace)
2452 {
2453         long i;
2454         if (buf == NULL)
2455                 return;
2456         for (i=0; i<buf->BufUsed; i++)
2457                 if (buf->buf[i] == search)
2458                         buf->buf[i] = replace;
2459
2460 }
2461
2462
2463
2464 /*
2465  * Wrapper around iconv_open()
2466  * Our version adds aliases for non-standard Microsoft charsets
2467  * such as 'MS950', aliasing them to names like 'CP950'
2468  *
2469  * tocode       Target encoding
2470  * fromcode     Source encoding
2471  */
2472 void  ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic)
2473 {
2474 #ifdef HAVE_ICONV
2475         iconv_t ic = (iconv_t)(-1) ;
2476         ic = iconv_open(tocode, fromcode);
2477         if (ic == (iconv_t)(-1) ) {
2478                 char alias_fromcode[64];
2479                 if ( (strlen(fromcode) == 5) && (!strncasecmp(fromcode, "MS", 2)) ) {
2480                         safestrncpy(alias_fromcode, fromcode, sizeof alias_fromcode);
2481                         alias_fromcode[0] = 'C';
2482                         alias_fromcode[1] = 'P';
2483                         ic = iconv_open(tocode, alias_fromcode);
2484                 }
2485         }
2486         *(iconv_t *)pic = ic;
2487 #endif
2488 }
2489
2490
2491
2492 static inline char *FindNextEnd (const StrBuf *Buf, char *bptr)
2493 {
2494         char * end;
2495         /* Find the next ?Q? */
2496         if (Buf->BufUsed - (bptr - Buf->buf)  < 6)
2497                 return NULL;
2498
2499         end = strchr(bptr + 2, '?');
2500
2501         if (end == NULL)
2502                 return NULL;
2503
2504         if ((Buf->BufUsed - (end - Buf->buf) > 3) &&
2505             ((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && 
2506             (*(end + 2) == '?')) {
2507                 /* skip on to the end of the cluster, the next ?= */
2508                 end = strstr(end + 3, "?=");
2509         }
2510         else
2511                 /* sort of half valid encoding, try to find an end. */
2512                 end = strstr(bptr, "?=");
2513         return end;
2514 }
2515
2516 static inline void SwapBuffers(StrBuf *A, StrBuf *B)
2517 {
2518         StrBuf C;
2519
2520         memcpy(&C, A, sizeof(*A));
2521         memcpy(A, B, sizeof(*B));
2522         memcpy(B, &C, sizeof(C));
2523
2524 }
2525
2526 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic)
2527 {
2528 #ifdef HAVE_ICONV
2529         long trycount = 0;
2530         size_t siz;
2531         iconv_t ic;
2532         char *ibuf;                     /**< Buffer of characters to be converted */
2533         char *obuf;                     /**< Buffer for converted characters */
2534         size_t ibuflen;                 /**< Length of input buffer */
2535         size_t obuflen;                 /**< Length of output buffer */
2536
2537
2538         if (ConvertBuf->BufUsed >= TmpBuf->BufSize)
2539                 IncreaseBuf(TmpBuf, 0, ConvertBuf->BufUsed);
2540 TRYAGAIN:
2541         ic = *(iconv_t*)pic;
2542         ibuf = ConvertBuf->buf;
2543         ibuflen = ConvertBuf->BufUsed;
2544         obuf = TmpBuf->buf;
2545         obuflen = TmpBuf->BufSize;
2546         
2547         siz = iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
2548
2549         if (siz < 0) {
2550                 if (errno == E2BIG) {
2551                         trycount ++;                    
2552                         IncreaseBuf(TmpBuf, 0, 0);
2553                         if (trycount < 5) 
2554                                 goto TRYAGAIN;
2555
2556                 }
2557                 else if (errno == EILSEQ){ 
2558                         /* hm, invalid utf8 sequence... what to do now? */
2559                         /* An invalid multibyte sequence has been encountered in the input */
2560                 }
2561                 else if (errno == EINVAL) {
2562                         /* An incomplete multibyte sequence has been encountered in the input. */
2563                 }
2564
2565                 FlushStrBuf(TmpBuf);
2566         }
2567         else {
2568                 TmpBuf->BufUsed = TmpBuf->BufSize - obuflen;
2569                 TmpBuf->buf[TmpBuf->BufUsed] = '\0';
2570                 
2571                 /* little card game: wheres the red lady? */
2572                 SwapBuffers(ConvertBuf, TmpBuf);
2573                 FlushStrBuf(TmpBuf);
2574         }
2575 #endif
2576 }
2577
2578
2579
2580
2581 inline static void DecodeSegment(StrBuf *Target, 
2582                                  const StrBuf *DecodeMe, 
2583                                  char *SegmentStart, 
2584                                  char *SegmentEnd, 
2585                                  StrBuf *ConvertBuf,
2586                                  StrBuf *ConvertBuf2, 
2587                                  StrBuf *FoundCharset)
2588 {
2589         StrBuf StaticBuf;
2590         char charset[128];
2591         char encoding[16];
2592 #ifdef HAVE_ICONV
2593         iconv_t ic = (iconv_t)(-1);
2594 #endif
2595         /* Now we handle foreign character sets properly encoded
2596          * in RFC2047 format.
2597          */
2598         StaticBuf.buf = SegmentStart;
2599         StaticBuf.BufUsed = SegmentEnd - SegmentStart;
2600         StaticBuf.BufSize = DecodeMe->BufSize - (SegmentStart - DecodeMe->buf);
2601         extract_token(charset, SegmentStart, 1, '?', sizeof charset);
2602         if (FoundCharset != NULL) {
2603                 FlushStrBuf(FoundCharset);
2604                 StrBufAppendBufPlain(FoundCharset, charset, -1, 0);
2605         }
2606         extract_token(encoding, SegmentStart, 2, '?', sizeof encoding);
2607         StrBufExtract_token(ConvertBuf, &StaticBuf, 3, '?');
2608         
2609         *encoding = toupper(*encoding);
2610         if (*encoding == 'B') { /**< base64 */
2611                 ConvertBuf2->BufUsed = CtdlDecodeBase64(ConvertBuf2->buf, 
2612                                                         ConvertBuf->buf, 
2613                                                         ConvertBuf->BufUsed);
2614         }
2615         else if (*encoding == 'Q') {    /**< quoted-printable */
2616                 long pos;
2617                 
2618                 pos = 0;
2619                 while (pos < ConvertBuf->BufUsed)
2620                 {
2621                         if (ConvertBuf->buf[pos] == '_') 
2622                                 ConvertBuf->buf[pos] = ' ';
2623                         pos++;
2624                 }
2625                 
2626                 ConvertBuf2->BufUsed = CtdlDecodeQuotedPrintable(
2627                         ConvertBuf2->buf, 
2628                         ConvertBuf->buf,
2629                         ConvertBuf->BufUsed);
2630         }
2631         else {
2632                 StrBufAppendBuf(ConvertBuf2, ConvertBuf, 0);
2633         }
2634 #ifdef HAVE_ICONV
2635         ctdl_iconv_open("UTF-8", charset, &ic);
2636         if (ic != (iconv_t)(-1) ) {             
2637 #endif
2638                 StrBufConvert(ConvertBuf2, ConvertBuf, &ic);
2639                 StrBufAppendBuf(Target, ConvertBuf2, 0);
2640 #ifdef HAVE_ICONV
2641                 iconv_close(ic);
2642         }
2643         else {
2644                 StrBufAppendBufPlain(Target, HKEY("(unreadable)"), 0);
2645         }
2646 #endif
2647 }
2648 /*
2649  * Handle subjects with RFC2047 encoding such as:
2650  * =?koi8-r?B?78bP0s3Mxc7JxSDXz9rE1dvO2c3JINvB0sHNySDP?=
2651  */
2652 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset)
2653 {
2654         StrBuf *ConvertBuf, *ConvertBuf2;
2655         char *start, *end, *next, *nextend, *ptr = NULL;
2656 #ifdef HAVE_ICONV
2657         iconv_t ic = (iconv_t)(-1) ;
2658 #endif
2659         const char *eptr;
2660         int passes = 0;
2661         int i, len, delta;
2662         int illegal_non_rfc2047_encoding = 0;
2663
2664         /* Sometimes, badly formed messages contain strings which were simply
2665          *  written out directly in some foreign character set instead of
2666          *  using RFC2047 encoding.  This is illegal but we will attempt to
2667          *  handle it anyway by converting from a user-specified default
2668          *  charset to UTF-8 if we see any nonprintable characters.
2669          */
2670         
2671         len = StrLength(DecodeMe);
2672         for (i=0; i<DecodeMe->BufUsed; ++i) {
2673                 if ((DecodeMe->buf[i] < 32) || (DecodeMe->buf[i] > 126)) {
2674                         illegal_non_rfc2047_encoding = 1;
2675                         break;
2676                 }
2677         }
2678
2679         ConvertBuf = NewStrBufPlain(NULL, StrLength(DecodeMe));
2680         if ((illegal_non_rfc2047_encoding) &&
2681             (strcasecmp(ChrPtr(DefaultCharset), "UTF-8")) && 
2682             (strcasecmp(ChrPtr(DefaultCharset), "us-ascii")) )
2683         {
2684 #ifdef HAVE_ICONV
2685                 ctdl_iconv_open("UTF-8", ChrPtr(DefaultCharset), &ic);
2686                 if (ic != (iconv_t)(-1) ) {
2687                         StrBufConvert((StrBuf*)DecodeMe, ConvertBuf, &ic);///TODO: don't void const?
2688                         iconv_close(ic);
2689                 }
2690 #endif
2691         }
2692
2693         /* pre evaluate the first pair */
2694         nextend = end = NULL;
2695         len = StrLength(DecodeMe);
2696         start = strstr(DecodeMe->buf, "=?");
2697         eptr = DecodeMe->buf + DecodeMe->BufUsed;
2698         if (start != NULL) 
2699                 end = FindNextEnd (DecodeMe, start);
2700         else {
2701                 StrBufAppendBuf(Target, DecodeMe, 0);
2702                 FreeStrBuf(&ConvertBuf);
2703                 return;
2704         }
2705
2706         ConvertBuf2 = NewStrBufPlain(NULL, StrLength(DecodeMe));
2707
2708         if (start != DecodeMe->buf)
2709                 StrBufAppendBufPlain(Target, DecodeMe->buf, start - DecodeMe->buf, 0);
2710         /*
2711          * Since spammers will go to all sorts of absurd lengths to get their
2712          * messages through, there are LOTS of corrupt headers out there.
2713          * So, prevent a really badly formed RFC2047 header from throwing
2714          * this function into an infinite loop.
2715          */
2716         while ((start != NULL) && 
2717                (end != NULL) && 
2718                (start < eptr) && 
2719                (end < eptr) && 
2720                (passes < 20))
2721         {
2722                 passes++;
2723                 DecodeSegment(Target, 
2724                               DecodeMe, 
2725                               start, 
2726                               end, 
2727                               ConvertBuf,
2728                               ConvertBuf2,
2729                               FoundCharset);
2730                 
2731                 next = strstr(end, "=?");
2732                 nextend = NULL;
2733                 if ((next != NULL) && 
2734                     (next < eptr))
2735                         nextend = FindNextEnd(DecodeMe, next);
2736                 if (nextend == NULL)
2737                         next = NULL;
2738
2739                 /* did we find two partitions */
2740                 if ((next != NULL) && 
2741                     ((next - end) > 2))
2742                 {
2743                         ptr = end + 2;
2744                         while ((ptr < next) && 
2745                                (isspace(*ptr) ||
2746                                 (*ptr == '\r') ||
2747                                 (*ptr == '\n') || 
2748                                 (*ptr == '\t')))
2749                                 ptr ++;
2750                         /* did we find a gab just filled with blanks? */
2751                         if (ptr == next)
2752                         {
2753                                 long gap = next - start;
2754                                 memmove (end + 2,
2755                                          next,
2756                                          len - (gap));
2757                                 len -= gap;
2758                                 /* now terminate the gab at the end */
2759                                 delta = (next - end) - 2; ////TODO: const! 
2760                                 ((StrBuf*)DecodeMe)->BufUsed -= delta;
2761                                 ((StrBuf*)DecodeMe)->buf[DecodeMe->BufUsed] = '\0';
2762
2763                                 /* move next to its new location. */
2764                                 next -= delta;
2765                                 nextend -= delta;
2766                         }
2767                 }
2768                 /* our next-pair is our new first pair now. */
2769                 ptr = end + 2;
2770                 start = next;
2771                 end = nextend;
2772         }
2773         end = ptr;
2774         nextend = DecodeMe->buf + DecodeMe->BufUsed;
2775         if ((end != NULL) && (end < nextend)) {
2776                 ptr = end;
2777                 while ( (ptr < nextend) &&
2778                         (isspace(*ptr) ||
2779                          (*ptr == '\r') ||
2780                          (*ptr == '\n') || 
2781                          (*ptr == '\t')))
2782                         ptr ++;
2783                 if (ptr < nextend)
2784                         StrBufAppendBufPlain(Target, end, nextend - end, 0);
2785         }
2786         FreeStrBuf(&ConvertBuf);
2787         FreeStrBuf(&ConvertBuf2);
2788 }
2789
2790 /**
2791  * \brief evaluate the length of an utf8 special character sequence
2792  * \param Char the character to examine
2793  * \returns width of utf8 chars in bytes
2794  */
2795 static inline int Ctdl_GetUtf8SequenceLength(char *CharS, char *CharE)
2796 {
2797         int n = 1;
2798         char test = (1<<7);
2799         
2800         while ((n < 8) && ((test & *CharS) != 0)) {
2801                 test = test << 1;
2802                 n ++;
2803         }
2804         if ((n > 6) || ((CharE - CharS) > n))
2805                 n = 1;
2806         return n;
2807 }
2808
2809 /**
2810  * \brief detect whether this char starts an utf-8 encoded char
2811  * \param Char character to inspect
2812  * \returns yes or no
2813  */
2814 static inline int Ctdl_IsUtf8SequenceStart(char Char)
2815 {
2816 /** 11??.???? indicates an UTF8 Sequence. */
2817         return ((Char & 0xC0) != 0);
2818 }
2819
2820 /**
2821  * \brief measure the number of glyphs in an UTF8 string...
2822  * \param str string to measure
2823  * \returns the length of str
2824  */
2825 long StrBuf_Utf8StrLen(StrBuf *Buf)
2826 {
2827         int n = 0;
2828         int m = 0;
2829         char *aptr, *eptr;
2830
2831         if ((Buf == NULL) || (Buf->BufUsed == 0))
2832                 return 0;
2833         aptr = Buf->buf;
2834         eptr = Buf->buf + Buf->BufUsed;
2835         while ((aptr < eptr) && (*aptr != '\0')) {
2836                 if (Ctdl_IsUtf8SequenceStart(*aptr)){
2837                         m = Ctdl_GetUtf8SequenceLength(aptr, eptr);
2838                         while ((aptr < eptr) && (m-- > 0) && (*aptr++ != '\0'))
2839                                 n ++;
2840                 }
2841                 else {
2842                         n++;
2843                         aptr++;
2844                 }
2845                         
2846         }
2847         return n;
2848 }
2849
2850 /**
2851  * \brief cuts a string after maxlen glyphs
2852  * \param str string to cut to maxlen glyphs
2853  * \param maxlen how long may the string become?
2854  * \returns pointer to maxlen or the end of the string
2855  */
2856 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen)
2857 {
2858         char *aptr, *eptr;
2859         int n = 0, m = 0;
2860
2861         aptr = Buf->buf;
2862         eptr = Buf->buf + Buf->BufUsed;
2863         while ((aptr < eptr) && (*aptr != '\0')) {
2864                 if (Ctdl_IsUtf8SequenceStart(*aptr)){
2865                         m = Ctdl_GetUtf8SequenceLength(aptr, eptr);
2866                         while ((m-- > 0) && (*aptr++ != '\0'))
2867                                 n ++;
2868                 }
2869                 else {
2870                         n++;
2871                         aptr++;
2872                 }
2873                 if (n > maxlen) {
2874                         *aptr = '\0';
2875                         Buf->BufUsed = aptr - Buf->buf;
2876                         return Buf->BufUsed;
2877                 }                       
2878         }
2879         return Buf->BufUsed;
2880
2881 }
2882
2883
2884
2885 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr)
2886 {
2887         const char *aptr, *ptr, *eptr;
2888         char *optr, *xptr;
2889
2890         if (Buf == NULL)
2891                 return 0;
2892
2893         if (*Ptr==NULL)
2894                 ptr = aptr = Buf->buf;
2895         else
2896                 ptr = aptr = *Ptr;
2897
2898         optr = LineBuf->buf;
2899         eptr = Buf->buf + Buf->BufUsed;
2900         xptr = LineBuf->buf + LineBuf->BufSize - 1;
2901
2902         while ((*ptr != '\n') &&
2903                (*ptr != '\r') &&
2904                (ptr < eptr))
2905         {
2906                 *optr = *ptr;
2907                 optr++; ptr++;
2908                 if (optr == xptr) {
2909                         LineBuf->BufUsed = optr - LineBuf->buf;
2910                         IncreaseBuf(LineBuf,  1, LineBuf->BufUsed + 1);
2911                         optr = LineBuf->buf + LineBuf->BufUsed;
2912                         xptr = LineBuf->buf + LineBuf->BufSize - 1;
2913                 }
2914         }
2915         LineBuf->BufUsed = optr - LineBuf->buf;
2916         *optr = '\0';       
2917         if (*ptr == '\r')
2918                 ptr ++;
2919         if (*ptr == '\n')
2920                 ptr ++;
2921
2922         *Ptr = ptr;
2923
2924         return Buf->BufUsed - (ptr - Buf->buf);
2925 }