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