* fix it some, but not all.
[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) || (*pStart == Null))
1320                 return 0;
1321         if (*pStart == NULL)
1322                 return 1;
1323         else if (*pStart >= Source->buf + Source->BufUsed)
1324                 return 0;
1325         else if (*pStart <= Source->buf)
1326                 return 0;
1327         return 1;
1328 }
1329
1330 /**
1331  * \brief a string tokenizer
1332  * \param dest Destination StringBuffer
1333  * \param Source StringBuffer to read into
1334  * \param pStart pointer to the end of the last token. Feed with NULL on start.
1335  * \param separator tokenizer param
1336  * \returns -1 if not found, else length of token.
1337  */
1338 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator)
1339 {
1340         const char *s;          /* source */
1341         const char *EndBuffer;  /* end stop of source buffer */
1342         int current_token = 0;  /* token currently being processed */
1343         int len = 0;            /* running total length of extracted string */
1344
1345         if ((Source          == NULL) || 
1346             (Source->BufUsed == 0)      ) 
1347         {
1348                 *pStart = NULL;
1349                 (*pStart) --; /* move it to the end of all being via underflow */
1350                 return -1;
1351         }
1352          
1353         EndBuffer = Source->buf + Source->BufUsed;
1354
1355         if (dest != NULL) 
1356         {
1357                 dest->buf[0] = '\0';
1358                 dest->BufUsed = 0;
1359         }
1360         else
1361         {
1362                 *pStart = EndBuffer + 1;
1363                 return -1;
1364         }
1365
1366         if (*pStart == NULL)
1367         {
1368                 *pStart = Source->buf; /* we're starting to examine this buffer. */
1369         }
1370         else if ((*pStart < Source->buf) || 
1371                  (*pStart > EndBuffer  )   ) 
1372         {
1373                 return -1; /* no more tokens to find. */
1374         }
1375
1376         s = *pStart;
1377         /* start to find the next token */
1378         while ((s < EndBuffer)      && 
1379                (!IsEmptyStr(s))     &&
1380                (current_token == 0) ) 
1381         {
1382                 if (*s == separator) 
1383                 {
1384                         /* we found the next token */
1385                         ++current_token;
1386                 }
1387
1388                 if (len >= dest->BufSize) 
1389                 {
1390                         /* our Dest-buffer isn't big enough, increase it. */
1391                         dest->BufUsed = len;
1392
1393                         if (IncreaseBuf(dest, 1, -1) < 0) {
1394                                 /* WHUT? no more mem? bail out. */
1395                                 s = EndBuffer;
1396                                 dest->BufUsed --;
1397                                 break;
1398                         }
1399                 }
1400
1401                 if ( (current_token == 0 ) &&   /* are we in our target token? */
1402                      (separator     != *s)    ) /* don't copy the token itself */
1403                 {
1404                         dest->buf[len] = *s;    /* Copy the payload */
1405                         ++len;                  /* remember the bigger size. */
1406                 }
1407
1408                 ++s;
1409         }
1410
1411         /* did we reach the end? */
1412         if ((s > EndBuffer)) {
1413                 *pStart = EndBuffer + 1;
1414         }
1415         else {
1416                 *pStart = s;  /* remember the position for the next run */
1417         }
1418
1419         /* sanitize our extracted token */
1420         dest->buf[len] = '\0';
1421         dest->BufUsed  = len;
1422
1423         return (len);
1424 }
1425
1426
1427 /**
1428  * \brief a string tokenizer
1429  * \param dest Destination StringBuffer
1430  * \param Source StringBuffer to read into
1431  * \param pStart pointer to the end of the last token. Feed with NULL.
1432  * \param separator tokenizer param
1433  * \returns -1 if not found, else length of token.
1434  */
1435 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens)
1436 {
1437         const char *s, *EndBuffer;      //* source * /
1438         int len = 0;                    //* running total length of extracted string * /
1439         int current_token = 0;          //* token currently being processed * /
1440
1441         if ((Source == NULL) || 
1442             (Source->BufUsed ==0)) {
1443                 return(-1);
1444         }
1445         if (nTokens == 0)
1446                 return Source->BufUsed;
1447
1448         if (*pStart == NULL)
1449                 *pStart = Source->buf;
1450
1451         EndBuffer = Source->buf + Source->BufUsed;
1452
1453         if ((*pStart < Source->buf) || 
1454             (*pStart >  EndBuffer)) {
1455                 return (-1);
1456         }
1457
1458
1459         s = *pStart;
1460
1461         //cit_backtrace();
1462         //lprintf (CTDL_DEBUG, "test >: n: %d sep: %c source: %s \n willi \n", parmnum, separator, source);
1463
1464         while ((s<EndBuffer) && !IsEmptyStr(s)) {
1465                 if (*s == separator) {
1466                         ++current_token;
1467                 }
1468                 if (current_token >= nTokens) {
1469                         break;
1470                 }
1471                 ++s;
1472         }
1473         *pStart = s;
1474         (*pStart) ++;
1475
1476         return(len);
1477 }
1478
1479 /**
1480  * \brief a string tokenizer to fetch an integer
1481  * \param dest Destination StringBuffer
1482  * \param parmnum n'th parameter to extract
1483  * \param separator tokenizer param
1484  * \returns 0 if not found, else integer representation of the token
1485  */
1486 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator)
1487 {
1488         StrBuf tmp;
1489         char buf[64];
1490         
1491         tmp.buf = buf;
1492         buf[0] = '\0';
1493         tmp.BufSize = 64;
1494         tmp.BufUsed = 0;
1495         tmp.ConstBuf = 1;
1496         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0)
1497                 return(atoi(buf));
1498         else
1499                 return 0;
1500 }
1501
1502 /**
1503  * \brief a string tokenizer to fetch a long integer
1504  * \param dest Destination StringBuffer
1505  * \param parmnum n'th parameter to extract
1506  * \param separator tokenizer param
1507  * \returns 0 if not found, else long integer representation of the token
1508  */
1509 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator)
1510 {
1511         StrBuf tmp;
1512         char buf[64];
1513         
1514         tmp.buf = buf;
1515         buf[0] = '\0';
1516         tmp.BufSize = 64;
1517         tmp.BufUsed = 0;
1518         tmp.ConstBuf = 1;
1519         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0)
1520                 return(atoi(buf));
1521         else
1522                 return 0;
1523 }
1524
1525
1526 /**
1527  * \brief a string tokenizer to fetch an unsigned long
1528  * \param dest Destination StringBuffer
1529  * \param parmnum n'th parameter to extract
1530  * \param separator tokenizer param
1531  * \returns 0 if not found, else unsigned long representation of the token
1532  */
1533 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator)
1534 {
1535         StrBuf tmp;
1536         char buf[64];
1537         char *pnum;
1538         
1539         tmp.buf = buf;
1540         buf[0] = '\0';
1541         tmp.BufSize = 64;
1542         tmp.BufUsed = 0;
1543         tmp.ConstBuf = 1;
1544         if (StrBufExtract_NextToken(&tmp, Source, pStart, separator) > 0) {
1545                 pnum = &buf[0];
1546                 if (*pnum == '-')
1547                         pnum ++;
1548                 return (unsigned long) atol(pnum);
1549         }
1550         else 
1551                 return 0;
1552 }
1553
1554
1555
1556 /**
1557  * \brief Read a line from socket
1558  * flushes and closes the FD on error
1559  * \param buf the buffer to get the input to
1560  * \param fd pointer to the filedescriptor to read
1561  * \param append Append to an existing string or replace?
1562  * \param Error strerror() on error 
1563  * \returns numbers of chars read
1564  */
1565 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error)
1566 {
1567         int len, rlen, slen;
1568
1569         if (!append)
1570                 FlushStrBuf(buf);
1571
1572         slen = len = buf->BufUsed;
1573         while (1) {
1574                 rlen = read(*fd, &buf->buf[len], 1);
1575                 if (rlen < 1) {
1576                         *Error = strerror(errno);
1577                         
1578                         close(*fd);
1579                         *fd = -1;
1580                         
1581                         return -1;
1582                 }
1583                 if (buf->buf[len] == '\n')
1584                         break;
1585                 if (buf->buf[len] != '\r')
1586                         len ++;
1587                 if (len >= buf->BufSize) {
1588                         buf->BufUsed = len;
1589                         buf->buf[len+1] = '\0';
1590                         IncreaseBuf(buf, 1, -1);
1591                 }
1592         }
1593         buf->BufUsed = len;
1594         buf->buf[len] = '\0';
1595         return len - slen;
1596 }
1597
1598 /**
1599  * \brief Read a line from socket
1600  * flushes and closes the FD on error
1601  * \param buf the buffer to get the input to
1602  * \param fd pointer to the filedescriptor to read
1603  * \param append Append to an existing string or replace?
1604  * \param Error strerror() on error 
1605  * \returns numbers of chars read
1606  */
1607 int StrBufTCP_read_buffered_line(StrBuf *Line, 
1608                                  StrBuf *buf, 
1609                                  int *fd, 
1610                                  int timeout, 
1611                                  int selectresolution, 
1612                                  const char **Error)
1613 {
1614         int len, rlen;
1615         int nSuccessLess = 0;
1616         fd_set rfds;
1617         char *pch = NULL;
1618         int fdflags;
1619         struct timeval tv;
1620
1621         if (buf->BufUsed > 0) {
1622                 pch = strchr(buf->buf, '\n');
1623                 if (pch != NULL) {
1624                         rlen = 0;
1625                         len = pch - buf->buf;
1626                         if (len > 0 && (*(pch - 1) == '\r') )
1627                                 rlen ++;
1628                         StrBufSub(Line, buf, 0, len - rlen);
1629                         StrBufCutLeft(buf, len + 1);
1630                         return len - rlen;
1631                 }
1632         }
1633         
1634         if (buf->BufSize - buf->BufUsed < 10)
1635                 IncreaseBuf(buf, 1, -1);
1636
1637         fdflags = fcntl(*fd, F_GETFL);
1638         if ((fdflags & O_NONBLOCK) == O_NONBLOCK)
1639                 return -1;
1640
1641         while ((nSuccessLess < timeout) && (pch == NULL)) {
1642                 tv.tv_sec = selectresolution;
1643                 tv.tv_usec = 0;
1644                 
1645                 FD_ZERO(&rfds);
1646                 FD_SET(*fd, &rfds);
1647                 if (select(*fd + 1, NULL, &rfds, NULL, &tv) == -1) {
1648                         *Error = strerror(errno);
1649                         close (*fd);
1650                         *fd = -1;
1651                         return -1;
1652                 }               
1653                 if (FD_ISSET(*fd, &rfds)) {
1654                         rlen = read(*fd, 
1655                                     &buf->buf[buf->BufUsed], 
1656                                     buf->BufSize - buf->BufUsed - 1);
1657                         if (rlen < 1) {
1658                                 *Error = strerror(errno);
1659                                 close(*fd);
1660                                 *fd = -1;
1661                                 return -1;
1662                         }
1663                         else if (rlen > 0) {
1664                                 nSuccessLess = 0;
1665                                 buf->BufUsed += rlen;
1666                                 buf->buf[buf->BufUsed] = '\0';
1667                                 if (buf->BufUsed + 10 > buf->BufSize) {
1668                                         IncreaseBuf(buf, 1, -1);
1669                                 }
1670                                 pch = strchr(buf->buf, '\n');
1671                                 continue;
1672                         }
1673                 }
1674                 nSuccessLess ++;
1675         }
1676         if (pch != NULL) {
1677                 rlen = 0;
1678                 len = pch - buf->buf;
1679                 if (len > 0 && (*(pch - 1) == '\r') )
1680                         rlen ++;
1681                 StrBufSub(Line, buf, 0, len - rlen);
1682                 StrBufCutLeft(buf, len + 1);
1683                 return len - rlen;
1684         }
1685         return -1;
1686
1687 }
1688
1689 static const char *ErrRBLF_WrongFDFlags="StrBufTCP_read_buffered_line_fast: don't work with fdflags & O_NONBLOCK";
1690 static const char *ErrRBLF_SelectFailed="StrBufTCP_read_buffered_line_fast: Select failed without reason";
1691 static const char *ErrRBLF_NotEnoughSentFromServer="StrBufTCP_read_buffered_line_fast: No complete line was sent from peer";
1692 /**
1693  * \brief Read a line from socket
1694  * flushes and closes the FD on error
1695  * \param buf the buffer to get the input to
1696  * \param Pos pointer to the current read position, should be NULL initialized!
1697  * \param fd pointer to the filedescriptor to read
1698  * \param append Append to an existing string or replace?
1699  * \param Error strerror() on error 
1700  * \returns numbers of chars read
1701  */
1702 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
1703                                       StrBuf *IOBuf, 
1704                                       const char **Pos,
1705                                       int *fd, 
1706                                       int timeout, 
1707                                       int selectresolution, 
1708                                       const char **Error)
1709 {
1710         const char *pche = NULL;
1711         const char *pos = NULL;
1712         int len, rlen;
1713         int nSuccessLess = 0;
1714         fd_set rfds;
1715         const char *pch = NULL;
1716         int fdflags;
1717         struct timeval tv;
1718         
1719         pos = *Pos;
1720         if ((IOBuf->BufUsed > 0) && 
1721             (pos != NULL) && 
1722             (pos < IOBuf->buf + IOBuf->BufUsed)) 
1723         {
1724                 pche = IOBuf->buf + IOBuf->BufUsed;
1725                 pch = pos;
1726                 while ((pch < pche) && (*pch != '\n'))
1727                         pch ++;
1728                 if ((pch >= pche) || (*pch == '\0'))
1729                         pch = NULL;
1730                 if ((pch != NULL) && 
1731                     (pch <= pche)) 
1732                 {
1733                         rlen = 0;
1734                         len = pch - pos;
1735                         if (len > 0 && (*(pch - 1) == '\r') )
1736                                 rlen ++;
1737                         StrBufSub(Line, IOBuf, (pos - IOBuf->buf), len - rlen);
1738                         *Pos = pch + 1;
1739                         return len - rlen;
1740                 }
1741         }
1742         
1743         if (pos != NULL) {
1744                 if (pos > pche)
1745                         FlushStrBuf(IOBuf);
1746                 else 
1747                         StrBufCutLeft(IOBuf, (pos - IOBuf->buf));
1748                 *Pos = NULL;
1749         }
1750         
1751         if (IOBuf->BufSize - IOBuf->BufUsed < 10) {
1752                 IncreaseBuf(IOBuf, 1, -1);
1753         }
1754
1755         fdflags = fcntl(*fd, F_GETFL);
1756         if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
1757                 *Error = ErrRBLF_WrongFDFlags;
1758                 return -1;
1759         }
1760
1761         pch = NULL;
1762         while ((nSuccessLess < timeout) && (pch == NULL)) {
1763                 tv.tv_sec = selectresolution;
1764                 tv.tv_usec = 0;
1765                 
1766                 FD_ZERO(&rfds);
1767                 FD_SET(*fd, &rfds);
1768                 if (select(*fd + 1, NULL, &rfds, NULL, &tv) == -1) {
1769                         *Error = strerror(errno);
1770                         close (*fd);
1771                         *fd = -1;
1772                         if (*Error == NULL)
1773                                 *Error = ErrRBLF_SelectFailed;
1774                         return -1;
1775                 }               
1776                 if (FD_ISSET(*fd, &rfds) != 0) {
1777                         rlen = read(*fd, 
1778                                     &IOBuf->buf[IOBuf->BufUsed], 
1779                                     IOBuf->BufSize - IOBuf->BufUsed - 1);
1780                         if (rlen < 1) {
1781                                 *Error = strerror(errno);
1782                                 close(*fd);
1783                                 *fd = -1;
1784                                 return -1;
1785                         }
1786                         else if (rlen > 0) {
1787                                 nSuccessLess = 0;
1788                                 IOBuf->BufUsed += rlen;
1789                                 IOBuf->buf[IOBuf->BufUsed] = '\0';
1790                                 if (IOBuf->BufUsed + 10 > IOBuf->BufSize) {
1791                                         IncreaseBuf(IOBuf, 1, -1);
1792                                 }
1793
1794                                 pche = IOBuf->buf + IOBuf->BufUsed;
1795                                 pch = IOBuf->buf;
1796                                 while ((pch < pche) && (*pch != '\n'))
1797                                         pch ++;
1798                                 if ((pch >= pche) || (*pch == '\0'))
1799                                         pch = NULL;
1800                                 continue;
1801                         }
1802                 }
1803                 nSuccessLess ++;
1804         }
1805         if (pch != NULL) {
1806                 pos = IOBuf->buf;
1807                 rlen = 0;
1808                 len = pch - pos;
1809                 if (len > 0 && (*(pch - 1) == '\r') )
1810                         rlen ++;
1811                 StrBufSub(Line, IOBuf, 0, len - rlen);
1812                 *Pos = pos + len + 1;
1813                 return len - rlen;
1814         }
1815         *Error = ErrRBLF_NotEnoughSentFromServer;
1816         return -1;
1817
1818 }
1819
1820 /**
1821  * \brief Input binary data from socket
1822  * flushes and closes the FD on error
1823  * \param buf the buffer to get the input to
1824  * \param fd pointer to the filedescriptor to read
1825  * \param append Append to an existing string or replace?
1826  * \param nBytes the maximal number of bytes to read
1827  * \param Error strerror() on error 
1828  * \returns numbers of chars read
1829  */
1830 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error)
1831 {
1832         fd_set wset;
1833         int fdflags;
1834         int len, rlen, slen;
1835         int nRead = 0;
1836         char *ptr;
1837
1838         if ((Buf == NULL) || (*fd == -1))
1839                 return -1;
1840         if (!append)
1841                 FlushStrBuf(Buf);
1842         if (Buf->BufUsed + nBytes >= Buf->BufSize)
1843                 IncreaseBuf(Buf, 1, Buf->BufUsed + nBytes);
1844
1845         ptr = Buf->buf + Buf->BufUsed;
1846
1847         slen = len = Buf->BufUsed;
1848
1849         fdflags = fcntl(*fd, F_GETFL);
1850
1851         while (nRead < nBytes) {
1852                if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
1853                         FD_ZERO(&wset);
1854                         FD_SET(*fd, &wset);
1855                         if (select(*fd + 1, NULL, &wset, NULL, NULL) == -1) {
1856                                 *Error = strerror(errno);
1857                                 return -1;
1858                         }
1859                 }
1860
1861                 if ((rlen = read(*fd, 
1862                                  ptr,
1863                                  nBytes - nRead)) == -1) {
1864                         close(*fd);
1865                         *fd = -1;
1866                         *Error = strerror(errno);
1867                         return rlen;
1868                 }
1869                 nRead += rlen;
1870                 ptr += rlen;
1871                 Buf->BufUsed += rlen;
1872         }
1873         Buf->buf[Buf->BufUsed] = '\0';
1874         return nRead;
1875 }
1876
1877 const char *ErrRBB_too_many_selects = "StrBufReadBLOBBuffered: to many selects; aborting.";
1878 /**
1879  * \brief Input binary data from socket
1880  * flushes and closes the FD on error
1881  * \param buf the buffer to get the input to
1882  * \param fd pointer to the filedescriptor to read
1883  * \param append Append to an existing string or replace?
1884  * \param nBytes the maximal number of bytes to read
1885  * \param Error strerror() on error 
1886  * \returns numbers of chars read
1887  */
1888 int StrBufReadBLOBBuffered(StrBuf *Blob, 
1889                            StrBuf *IOBuf, 
1890                            const char **Pos,
1891                            int *fd, 
1892                            int append, 
1893                            long nBytes, 
1894                            int check, 
1895                            const char **Error)
1896 {
1897         const char *pche;
1898         const char *pos;
1899         int nSelects = 0;
1900         int SelRes;
1901         fd_set wset;
1902         int fdflags;
1903         int len = 0;
1904         int rlen, slen;
1905         int nRead = 0;
1906         char *ptr;
1907         const char *pch;
1908
1909         if ((Blob == NULL) || (*fd == -1) || (IOBuf == NULL) || (Pos == NULL))
1910                 return -1;
1911         if (!append)
1912                 FlushStrBuf(Blob);
1913         if (Blob->BufUsed + nBytes >= Blob->BufSize) 
1914                 IncreaseBuf(Blob, append, Blob->BufUsed + nBytes);
1915         
1916         pos = *Pos;
1917
1918         if (pos > 0)
1919                 len = pos - IOBuf->buf;
1920         rlen = IOBuf->BufUsed - len;
1921
1922
1923         if ((IOBuf->BufUsed > 0) && 
1924             (pos != NULL) && 
1925             (pos < IOBuf->buf + IOBuf->BufUsed)) 
1926         {
1927                 pche = IOBuf->buf + IOBuf->BufUsed;
1928                 pch = pos;
1929
1930                 if (rlen < nBytes) {
1931                         memcpy(Blob->buf + Blob->BufUsed, pos, rlen);
1932                         Blob->BufUsed += rlen;
1933                         Blob->buf[Blob->BufUsed] = '\0';
1934                         nRead = rlen;
1935                         *Pos = NULL; 
1936                 }
1937                 if (rlen >= nBytes) {
1938                         memcpy(Blob->buf + Blob->BufUsed, pos, nBytes);
1939                         Blob->BufUsed += nBytes;
1940                         Blob->buf[Blob->BufUsed] = '\0';
1941                         if (rlen == nBytes) {
1942                                 *Pos = NULL; 
1943                                 FlushStrBuf(IOBuf);
1944                         }
1945                         else 
1946                                 *Pos += nBytes;
1947                         return nBytes;
1948                 }
1949         }
1950
1951         FlushStrBuf(IOBuf);
1952         if (IOBuf->BufSize < nBytes - nRead)
1953                 IncreaseBuf(IOBuf, 0, nBytes - nRead);
1954         ptr = IOBuf->buf;
1955
1956         slen = len = Blob->BufUsed;
1957
1958         fdflags = fcntl(*fd, F_GETFL);
1959
1960         SelRes = 1;
1961         nBytes -= nRead;
1962         nRead = 0;
1963         while (nRead < nBytes) {
1964                 if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
1965                         FD_ZERO(&wset);
1966                         FD_SET(*fd, &wset);
1967                         SelRes = select(*fd + 1, NULL, &wset, NULL, NULL);
1968                 }
1969                 if (SelRes == -1) {
1970                         *Error = strerror(errno);
1971                         return -1;
1972                 }
1973                 else if (SelRes) {
1974                         nSelects = 0;
1975                         rlen = read(*fd, 
1976                                     ptr,
1977                                     nBytes - nRead);
1978                         if (rlen == -1) {
1979                                 close(*fd);
1980                                 *fd = -1;
1981                                 *Error = strerror(errno);
1982                                 return rlen;
1983                         }
1984                 }
1985                 else {
1986                         nSelects ++;
1987                         if ((check == NNN_TERM) && 
1988                             (nRead > 5) &&
1989                             (strncmp(IOBuf->buf + IOBuf->BufUsed - 5, "\n000\n", 5) == 0)) 
1990                         {
1991                                 StrBufPlain(Blob, HKEY("\n000\n"));
1992                                 StrBufCutRight(Blob, 5);
1993                                 return Blob->BufUsed;
1994                         }
1995                         if (nSelects > 10) {
1996                                 FlushStrBuf(IOBuf);
1997                                 *Error = ErrRBB_too_many_selects;
1998                                 return -1;
1999                         }
2000                 }
2001                 if (rlen > 0) {
2002                         nRead += rlen;
2003                         ptr += rlen;
2004                         IOBuf->BufUsed += rlen;
2005                 }
2006         }
2007         if (nRead > nBytes) {
2008                 *Pos = IOBuf->buf + nBytes;
2009         }
2010         Blob->buf[Blob->BufUsed] = '\0';
2011         StrBufAppendBufPlain(Blob, IOBuf->buf, nBytes, 0);
2012         return nRead;
2013 }
2014
2015 /**
2016  * \brief Cut nChars from the start of the string
2017  * \param Buf Buffer to modify
2018  * \param nChars how many chars should be skipped?
2019  */
2020 void StrBufCutLeft(StrBuf *Buf, int nChars)
2021 {
2022         if (nChars >= Buf->BufUsed) {
2023                 FlushStrBuf(Buf);
2024                 return;
2025         }
2026         memmove(Buf->buf, Buf->buf + nChars, Buf->BufUsed - nChars);
2027         Buf->BufUsed -= nChars;
2028         Buf->buf[Buf->BufUsed] = '\0';
2029 }
2030
2031 /**
2032  * \brief Cut the trailing n Chars from the string
2033  * \param Buf Buffer to modify
2034  * \param nChars how many chars should be trunkated?
2035  */
2036 void StrBufCutRight(StrBuf *Buf, int nChars)
2037 {
2038         if (nChars >= Buf->BufUsed) {
2039                 FlushStrBuf(Buf);
2040                 return;
2041         }
2042         Buf->BufUsed -= nChars;
2043         Buf->buf[Buf->BufUsed] = '\0';
2044 }
2045
2046 /**
2047  * \brief Cut the string after n Chars
2048  * \param Buf Buffer to modify
2049  * \param AfternChars after how many chars should we trunkate the string?
2050  * \param At if non-null and points inside of our string, cut it there.
2051  */
2052 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At)
2053 {
2054         if (At != NULL){
2055                 AfternChars = At - Buf->buf;
2056         }
2057
2058         if ((AfternChars < 0) || (AfternChars >= Buf->BufUsed))
2059                 return;
2060         Buf->BufUsed = AfternChars;
2061         Buf->buf[Buf->BufUsed] = '\0';
2062 }
2063
2064
2065 /*
2066  * Strip leading and trailing spaces from a string; with premeasured and adjusted length.
2067  * buf - the string to modify
2068  * len - length of the string. 
2069  */
2070 void StrBufTrim(StrBuf *Buf)
2071 {
2072         int delta = 0;
2073         if ((Buf == NULL) || (Buf->BufUsed == 0)) return;
2074
2075         while ((Buf->BufUsed > delta) && (isspace(Buf->buf[delta]))){
2076                 delta ++;
2077         }
2078         if (delta > 0) StrBufCutLeft(Buf, delta);
2079
2080         if (Buf->BufUsed == 0) return;
2081         while (isspace(Buf->buf[Buf->BufUsed - 1])){
2082                 Buf->BufUsed --;
2083         }
2084         Buf->buf[Buf->BufUsed] = '\0';
2085 }
2086
2087
2088 void StrBufUpCase(StrBuf *Buf) 
2089 {
2090         char *pch, *pche;
2091
2092         pch = Buf->buf;
2093         pche = pch + Buf->BufUsed;
2094         while (pch < pche) {
2095                 *pch = toupper(*pch);
2096                 pch ++;
2097         }
2098 }
2099
2100
2101 void StrBufLowerCase(StrBuf *Buf) 
2102 {
2103         char *pch, *pche;
2104
2105         pch = Buf->buf;
2106         pche = pch + Buf->BufUsed;
2107         while (pch < pche) {
2108                 *pch = tolower(*pch);
2109                 pch ++;
2110         }
2111 }
2112
2113 /**
2114  * \Brief removes double slashes from pathnames
2115  * \param Dir directory string to filter
2116  * \param RemoveTrailingSlash allows / disallows trailing slashes
2117  */
2118 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash)
2119 {
2120         char *a, *b;
2121
2122         a = b = Dir->buf;
2123
2124         while (!IsEmptyStr(a)) {
2125                 if (*a == '/') {
2126                         while (*a == '/')
2127                                 a++;
2128                         *b = '/';
2129                         b++;
2130                 }
2131                 else {
2132                         *b = *a;
2133                         b++; a++;
2134                 }
2135         }
2136         if ((RemoveTrailingSlash) && (*(b - 1) != '/')){
2137                 *b = '/';
2138                 b++;
2139         }
2140         *b = '\0';
2141         Dir->BufUsed = b - Dir->buf;
2142 }
2143
2144 /**
2145  * \brief unhide special chars hidden to the HTML escaper
2146  * \param target buffer to put the unescaped string in
2147  * \param source buffer to unescape
2148  */
2149 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source) 
2150 {
2151         int a, b, len;
2152         char hex[3];
2153
2154         if (target != NULL)
2155                 FlushStrBuf(target);
2156
2157         if (source == NULL ||target == NULL)
2158         {
2159                 return;
2160         }
2161
2162         len = source->BufUsed;
2163         for (a = 0; a < len; ++a) {
2164                 if (target->BufUsed >= target->BufSize)
2165                         IncreaseBuf(target, 1, -1);
2166
2167                 if (source->buf[a] == '=') {
2168                         hex[0] = source->buf[a + 1];
2169                         hex[1] = source->buf[a + 2];
2170                         hex[2] = 0;
2171                         b = 0;
2172                         sscanf(hex, "%02x", &b);
2173                         target->buf[target->BufUsed] = b;
2174                         target->buf[++target->BufUsed] = 0;
2175                         a += 2;
2176                 }
2177                 else {
2178                         target->buf[target->BufUsed] = source->buf[a];
2179                         target->buf[++target->BufUsed] = 0;
2180                 }
2181         }
2182 }
2183
2184
2185 /**
2186  * \brief hide special chars from the HTML escapers and friends
2187  * \param target buffer to put the escaped string in
2188  * \param source buffer to escape
2189  */
2190 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source) 
2191 {
2192         int i, len;
2193
2194         if (target != NULL)
2195                 FlushStrBuf(target);
2196
2197         if (source == NULL ||target == NULL)
2198         {
2199                 return;
2200         }
2201
2202         len = source->BufUsed;
2203         for (i=0; i<len; ++i) {
2204                 if (target->BufUsed + 4 >= target->BufSize)
2205                         IncreaseBuf(target, 1, -1);
2206                 if ( (isalnum(source->buf[i])) || 
2207                      (source->buf[i]=='-') || 
2208                      (source->buf[i]=='_') ) {
2209                         target->buf[target->BufUsed++] = source->buf[i];
2210                 }
2211                 else {
2212                         sprintf(&target->buf[target->BufUsed], 
2213                                 "=%02X", 
2214                                 (0xFF &source->buf[i]));
2215                         target->BufUsed += 3;
2216                 }
2217         }
2218         target->buf[target->BufUsed + 1] = '\0';
2219 }
2220
2221 /*
2222  * \brief uses the same calling syntax as compress2(), but it
2223  * creates a stream compatible with HTTP "Content-encoding: gzip"
2224  */
2225 #ifdef HAVE_ZLIB
2226 #define DEF_MEM_LEVEL 8 /*< memlevel??? */
2227 #define OS_CODE 0x03    /*< unix */
2228 int ZEXPORT compress_gzip(Bytef * dest,         /*< compressed buffer*/
2229                           size_t * destLen,     /*< length of the compresed data */
2230                           const Bytef * source, /*< source to encode */
2231                           uLong sourceLen,      /*< length of source to encode */
2232                           int level)            /*< compression level */
2233 {
2234         const int gz_magic[2] = { 0x1f, 0x8b }; /* gzip magic header */
2235
2236         /* write gzip header */
2237         snprintf((char *) dest, *destLen, 
2238                  "%c%c%c%c%c%c%c%c%c%c",
2239                  gz_magic[0], gz_magic[1], Z_DEFLATED,
2240                  0 /*flags */ , 0, 0, 0, 0 /*time */ , 0 /* xflags */ ,
2241                  OS_CODE);
2242
2243         /* normal deflate */
2244         z_stream stream;
2245         int err;
2246         stream.next_in = (Bytef *) source;
2247         stream.avail_in = (uInt) sourceLen;
2248         stream.next_out = dest + 10L;   // after header
2249         stream.avail_out = (uInt) * destLen;
2250         if ((uLong) stream.avail_out != *destLen)
2251                 return Z_BUF_ERROR;
2252
2253         stream.zalloc = (alloc_func) 0;
2254         stream.zfree = (free_func) 0;
2255         stream.opaque = (voidpf) 0;
2256
2257         err = deflateInit2(&stream, level, Z_DEFLATED, -MAX_WBITS,
2258                            DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
2259         if (err != Z_OK)
2260                 return err;
2261
2262         err = deflate(&stream, Z_FINISH);
2263         if (err != Z_STREAM_END) {
2264                 deflateEnd(&stream);
2265                 return err == Z_OK ? Z_BUF_ERROR : err;
2266         }
2267         *destLen = stream.total_out + 10L;
2268
2269         /* write CRC and Length */
2270         uLong crc = crc32(0L, source, sourceLen);
2271         int n;
2272         for (n = 0; n < 4; ++n, ++*destLen) {
2273                 dest[*destLen] = (int) (crc & 0xff);
2274                 crc >>= 8;
2275         }
2276         uLong len = stream.total_in;
2277         for (n = 0; n < 4; ++n, ++*destLen) {
2278                 dest[*destLen] = (int) (len & 0xff);
2279                 len >>= 8;
2280         }
2281         err = deflateEnd(&stream);
2282         return err;
2283 }
2284 #endif
2285
2286
2287 /**
2288  * Attention! If you feed this a Const String, you must maintain the uncompressed buffer yourself!
2289  */
2290 int CompressBuffer(StrBuf *Buf)
2291 {
2292 #ifdef HAVE_ZLIB
2293         char *compressed_data = NULL;
2294         size_t compressed_len, bufsize;
2295         int i = 0;
2296
2297         bufsize = compressed_len = Buf->BufUsed +  (Buf->BufUsed / 100) + 100;
2298         compressed_data = malloc(compressed_len);
2299         
2300         if (compressed_data == NULL)
2301                 return -1;
2302         /* Flush some space after the used payload so valgrind shuts up... */
2303         while ((i < 10) && (Buf->BufUsed + i < Buf->BufSize))
2304                 Buf->buf[Buf->BufUsed + i++] = '\0';
2305         if (compress_gzip((Bytef *) compressed_data,
2306                           &compressed_len,
2307                           (Bytef *) Buf->buf,
2308                           (uLongf) Buf->BufUsed, Z_BEST_SPEED) == Z_OK) {
2309                 if (!Buf->ConstBuf)
2310                         free(Buf->buf);
2311                 Buf->buf = compressed_data;
2312                 Buf->BufUsed = compressed_len;
2313                 Buf->BufSize = bufsize;
2314                 /* Flush some space after the used payload so valgrind shuts up... */
2315                 i = 0;
2316                 while ((i < 10) && (Buf->BufUsed + i < Buf->BufSize))
2317                         Buf->buf[Buf->BufUsed + i++] = '\0';
2318                 return 1;
2319         } else {
2320                 free(compressed_data);
2321         }
2322 #endif  /* HAVE_ZLIB */
2323         return 0;
2324 }
2325
2326 /**
2327  * \brief decode a buffer from base 64 encoding; destroys original
2328  * \param Buf Buffor to transform
2329  */
2330 int StrBufDecodeBase64(StrBuf *Buf)
2331 {
2332         char *xferbuf;
2333         size_t siz;
2334         if (Buf == NULL) return -1;
2335
2336         xferbuf = (char*) malloc(Buf->BufSize);
2337         siz = CtdlDecodeBase64(xferbuf,
2338                                Buf->buf,
2339                                Buf->BufUsed);
2340         free(Buf->buf);
2341         Buf->buf = xferbuf;
2342         Buf->BufUsed = siz;
2343         return siz;
2344 }
2345
2346 /**
2347  * \brief decode a buffer from base 64 encoding; destroys original
2348  * \param Buf Buffor to transform
2349  */
2350 int StrBufDecodeHex(StrBuf *Buf)
2351 {
2352         unsigned int ch;
2353         char *pch, *pche, *pchi;
2354
2355         if (Buf == NULL) return -1;
2356
2357         pch = pchi = Buf->buf;
2358         pche = pch + Buf->BufUsed;
2359
2360         while (pchi < pche){
2361                 ch = decode_hex(pchi);
2362                 *pch = ch;
2363                 pch ++;
2364                 pchi += 2;
2365         }
2366
2367         *pch = '\0';
2368         Buf->BufUsed = pch - Buf->buf;
2369         return Buf->BufUsed;
2370 }
2371
2372 /**
2373  * \brief replace all chars >0x20 && < 0x7F with Mute
2374  * \param Mute char to put over invalid chars
2375  * \param Buf Buffor to transform
2376  */
2377 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute)
2378 {
2379         unsigned char *pch;
2380
2381         if (Buf == NULL) return -1;
2382         pch = (unsigned char *)Buf->buf;
2383         while (pch < (unsigned char *)Buf->buf + Buf->BufUsed) {
2384                 if ((*pch < 0x20) || (*pch > 0x7F))
2385                         *pch = Mute;
2386                 pch ++;
2387         }
2388         return Buf->BufUsed;
2389 }
2390
2391
2392 /**
2393  * \brief  remove escaped strings from i.e. the url string (like %20 for blanks)
2394  * \param Buf Buffer to translate
2395  * \param StripBlanks Reduce several blanks to one?
2396  */
2397 long StrBufUnescape(StrBuf *Buf, int StripBlanks)
2398 {
2399         int a, b;
2400         char hex[3];
2401         long len;
2402
2403         while ((Buf->BufUsed > 0) && (isspace(Buf->buf[Buf->BufUsed - 1]))){
2404                 Buf->buf[Buf->BufUsed - 1] = '\0';
2405                 Buf->BufUsed --;
2406         }
2407
2408         a = 0; 
2409         while (a < Buf->BufUsed) {
2410                 if (Buf->buf[a] == '+')
2411                         Buf->buf[a] = ' ';
2412                 else if (Buf->buf[a] == '%') {
2413                         /* don't let % chars through, rather truncate the input. */
2414                         if (a + 2 > Buf->BufUsed) {
2415                                 Buf->buf[a] = '\0';
2416                                 Buf->BufUsed = a;
2417                         }
2418                         else {                  
2419                                 hex[0] = Buf->buf[a + 1];
2420                                 hex[1] = Buf->buf[a + 2];
2421                                 hex[2] = 0;
2422                                 b = 0;
2423                                 sscanf(hex, "%02x", &b);
2424                                 Buf->buf[a] = (char) b;
2425                                 len = Buf->BufUsed - a - 2;
2426                                 if (len > 0)
2427                                         memmove(&Buf->buf[a + 1], &Buf->buf[a + 3], len);
2428                         
2429                                 Buf->BufUsed -=2;
2430                         }
2431                 }
2432                 a++;
2433         }
2434         return a;
2435 }
2436
2437
2438 /**
2439  * \brief       RFC2047-encode a header field if necessary.
2440  *              If no non-ASCII characters are found, the string
2441  *              will be copied verbatim without encoding.
2442  *
2443  * \param       target          Target buffer.
2444  * \param       source          Source string to be encoded.
2445  * \returns     encoded length; -1 if non success.
2446  */
2447 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source)
2448 {
2449         const char headerStr[] = "=?UTF-8?Q?";
2450         int need_to_encode = 0;
2451         int i = 0;
2452         unsigned char ch;
2453
2454         if ((source == NULL) || 
2455             (target == NULL))
2456             return -1;
2457
2458         while ((i < source->BufUsed) &&
2459                (!IsEmptyStr (&source->buf[i])) &&
2460                (need_to_encode == 0)) {
2461                 if (((unsigned char) source->buf[i] < 32) || 
2462                     ((unsigned char) source->buf[i] > 126)) {
2463                         need_to_encode = 1;
2464                 }
2465                 i++;
2466         }
2467
2468         if (!need_to_encode) {
2469                 if (*target == NULL) {
2470                         *target = NewStrBufPlain(source->buf, source->BufUsed);
2471                 }
2472                 else {
2473                         FlushStrBuf(*target);
2474                         StrBufAppendBuf(*target, source, 0);
2475                 }
2476                 return (*target)->BufUsed;
2477         }
2478         if (*target == NULL)
2479                 *target = NewStrBufPlain(NULL, sizeof(headerStr) + source->BufUsed * 2);
2480         else if (sizeof(headerStr) + source->BufUsed >= (*target)->BufSize)
2481                 IncreaseBuf(*target, sizeof(headerStr) + source->BufUsed, 0);
2482         memcpy ((*target)->buf, headerStr, sizeof(headerStr) - 1);
2483         (*target)->BufUsed = sizeof(headerStr) - 1;
2484         for (i=0; (i < source->BufUsed); ++i) {
2485                 if ((*target)->BufUsed + 4 >= (*target)->BufSize)
2486                         IncreaseBuf(*target, 1, 0);
2487                 ch = (unsigned char) source->buf[i];
2488                 if ((ch < 32) || (ch > 126) || (ch == 61)) {
2489                         sprintf(&(*target)->buf[(*target)->BufUsed], "=%02X", ch);
2490                         (*target)->BufUsed += 3;
2491                 }
2492                 else {
2493                         (*target)->buf[(*target)->BufUsed] = ch;
2494                         (*target)->BufUsed++;
2495                 }
2496         }
2497         
2498         if ((*target)->BufUsed + 4 >= (*target)->BufSize)
2499                 IncreaseBuf(*target, 1, 0);
2500
2501         (*target)->buf[(*target)->BufUsed++] = '?';
2502         (*target)->buf[(*target)->BufUsed++] = '=';
2503         (*target)->buf[(*target)->BufUsed] = '\0';
2504         return (*target)->BufUsed;;
2505 }
2506
2507 /**
2508  * \brief replaces all occurances of 'search' by 'replace'
2509  * \param buf Buffer to modify
2510  * \param search character to search
2511  * \param relpace character to replace search by
2512  */
2513 void StrBufReplaceChars(StrBuf *buf, char search, char replace)
2514 {
2515         long i;
2516         if (buf == NULL)
2517                 return;
2518         for (i=0; i<buf->BufUsed; i++)
2519                 if (buf->buf[i] == search)
2520                         buf->buf[i] = replace;
2521
2522 }
2523
2524
2525
2526 /*
2527  * Wrapper around iconv_open()
2528  * Our version adds aliases for non-standard Microsoft charsets
2529  * such as 'MS950', aliasing them to names like 'CP950'
2530  *
2531  * tocode       Target encoding
2532  * fromcode     Source encoding
2533  */
2534 void  ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic)
2535 {
2536 #ifdef HAVE_ICONV
2537         iconv_t ic = (iconv_t)(-1) ;
2538         ic = iconv_open(tocode, fromcode);
2539         if (ic == (iconv_t)(-1) ) {
2540                 char alias_fromcode[64];
2541                 if ( (strlen(fromcode) == 5) && (!strncasecmp(fromcode, "MS", 2)) ) {
2542                         safestrncpy(alias_fromcode, fromcode, sizeof alias_fromcode);
2543                         alias_fromcode[0] = 'C';
2544                         alias_fromcode[1] = 'P';
2545                         ic = iconv_open(tocode, alias_fromcode);
2546                 }
2547         }
2548         *(iconv_t *)pic = ic;
2549 #endif
2550 }
2551
2552
2553
2554 static inline char *FindNextEnd (const StrBuf *Buf, char *bptr)
2555 {
2556         char * end;
2557         /* Find the next ?Q? */
2558         if (Buf->BufUsed - (bptr - Buf->buf)  < 6)
2559                 return NULL;
2560
2561         end = strchr(bptr + 2, '?');
2562
2563         if (end == NULL)
2564                 return NULL;
2565
2566         if ((Buf->BufUsed - (end - Buf->buf) > 3) &&
2567             ((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && 
2568             (*(end + 2) == '?')) {
2569                 /* skip on to the end of the cluster, the next ?= */
2570                 end = strstr(end + 3, "?=");
2571         }
2572         else
2573                 /* sort of half valid encoding, try to find an end. */
2574                 end = strstr(bptr, "?=");
2575         return end;
2576 }
2577
2578 static inline void SwapBuffers(StrBuf *A, StrBuf *B)
2579 {
2580         StrBuf C;
2581
2582         memcpy(&C, A, sizeof(*A));
2583         memcpy(A, B, sizeof(*B));
2584         memcpy(B, &C, sizeof(C));
2585
2586 }
2587
2588 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic)
2589 {
2590 #ifdef HAVE_ICONV
2591         long trycount = 0;
2592         size_t siz;
2593         iconv_t ic;
2594         char *ibuf;                     /**< Buffer of characters to be converted */
2595         char *obuf;                     /**< Buffer for converted characters */
2596         size_t ibuflen;                 /**< Length of input buffer */
2597         size_t obuflen;                 /**< Length of output buffer */
2598
2599
2600         /* since we're converting to utf-8, one glyph may take up to 6 bytes */
2601         if (ConvertBuf->BufUsed * 6 >= TmpBuf->BufSize)
2602                 IncreaseBuf(TmpBuf, 0, ConvertBuf->BufUsed * 6);
2603 TRYAGAIN:
2604         ic = *(iconv_t*)pic;
2605         ibuf = ConvertBuf->buf;
2606         ibuflen = ConvertBuf->BufUsed;
2607         obuf = TmpBuf->buf;
2608         obuflen = TmpBuf->BufSize;
2609         
2610         siz = iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
2611
2612         if (siz < 0) {
2613                 if (errno == E2BIG) {
2614                         trycount ++;                    
2615                         IncreaseBuf(TmpBuf, 0, 0);
2616                         if (trycount < 5) 
2617                                 goto TRYAGAIN;
2618
2619                 }
2620                 else if (errno == EILSEQ){ 
2621                         /* hm, invalid utf8 sequence... what to do now? */
2622                         /* An invalid multibyte sequence has been encountered in the input */
2623                 }
2624                 else if (errno == EINVAL) {
2625                         /* An incomplete multibyte sequence has been encountered in the input. */
2626                 }
2627
2628                 FlushStrBuf(TmpBuf);
2629         }
2630         else {
2631                 TmpBuf->BufUsed = TmpBuf->BufSize - obuflen;
2632                 TmpBuf->buf[TmpBuf->BufUsed] = '\0';
2633                 
2634                 /* little card game: wheres the red lady? */
2635                 SwapBuffers(ConvertBuf, TmpBuf);
2636                 FlushStrBuf(TmpBuf);
2637         }
2638 #endif
2639 }
2640
2641
2642
2643
2644 inline static void DecodeSegment(StrBuf *Target, 
2645                                  const StrBuf *DecodeMe, 
2646                                  char *SegmentStart, 
2647                                  char *SegmentEnd, 
2648                                  StrBuf *ConvertBuf,
2649                                  StrBuf *ConvertBuf2, 
2650                                  StrBuf *FoundCharset)
2651 {
2652         StrBuf StaticBuf;
2653         char charset[128];
2654         char encoding[16];
2655 #ifdef HAVE_ICONV
2656         iconv_t ic = (iconv_t)(-1);
2657 #endif
2658         /* Now we handle foreign character sets properly encoded
2659          * in RFC2047 format.
2660          */
2661         StaticBuf.buf = SegmentStart;
2662         StaticBuf.BufUsed = SegmentEnd - SegmentStart;
2663         StaticBuf.BufSize = DecodeMe->BufSize - (SegmentStart - DecodeMe->buf);
2664         extract_token(charset, SegmentStart, 1, '?', sizeof charset);
2665         if (FoundCharset != NULL) {
2666                 FlushStrBuf(FoundCharset);
2667                 StrBufAppendBufPlain(FoundCharset, charset, -1, 0);
2668         }
2669         extract_token(encoding, SegmentStart, 2, '?', sizeof encoding);
2670         StrBufExtract_token(ConvertBuf, &StaticBuf, 3, '?');
2671         
2672         *encoding = toupper(*encoding);
2673         if (*encoding == 'B') { /**< base64 */
2674                 ConvertBuf2->BufUsed = CtdlDecodeBase64(ConvertBuf2->buf, 
2675                                                         ConvertBuf->buf, 
2676                                                         ConvertBuf->BufUsed);
2677         }
2678         else if (*encoding == 'Q') {    /**< quoted-printable */
2679                 long pos;
2680                 
2681                 pos = 0;
2682                 while (pos < ConvertBuf->BufUsed)
2683                 {
2684                         if (ConvertBuf->buf[pos] == '_') 
2685                                 ConvertBuf->buf[pos] = ' ';
2686                         pos++;
2687                 }
2688                 
2689                 ConvertBuf2->BufUsed = CtdlDecodeQuotedPrintable(
2690                         ConvertBuf2->buf, 
2691                         ConvertBuf->buf,
2692                         ConvertBuf->BufUsed);
2693         }
2694         else {
2695                 StrBufAppendBuf(ConvertBuf2, ConvertBuf, 0);
2696         }
2697 #ifdef HAVE_ICONV
2698         ctdl_iconv_open("UTF-8", charset, &ic);
2699         if (ic != (iconv_t)(-1) ) {             
2700 #endif
2701                 StrBufConvert(ConvertBuf2, ConvertBuf, &ic);
2702                 StrBufAppendBuf(Target, ConvertBuf2, 0);
2703 #ifdef HAVE_ICONV
2704                 iconv_close(ic);
2705         }
2706         else {
2707                 StrBufAppendBufPlain(Target, HKEY("(unreadable)"), 0);
2708         }
2709 #endif
2710 }
2711 /*
2712  * Handle subjects with RFC2047 encoding such as:
2713  * =?koi8-r?B?78bP0s3Mxc7JxSDXz9rE1dvO2c3JINvB0sHNySDP?=
2714  */
2715 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset)
2716 {
2717         StrBuf *ConvertBuf, *ConvertBuf2;
2718         char *start, *end, *next, *nextend, *ptr = NULL;
2719 #ifdef HAVE_ICONV
2720         iconv_t ic = (iconv_t)(-1) ;
2721 #endif
2722         const char *eptr;
2723         int passes = 0;
2724         int i, len, delta;
2725         int illegal_non_rfc2047_encoding = 0;
2726
2727         /* Sometimes, badly formed messages contain strings which were simply
2728          *  written out directly in some foreign character set instead of
2729          *  using RFC2047 encoding.  This is illegal but we will attempt to
2730          *  handle it anyway by converting from a user-specified default
2731          *  charset to UTF-8 if we see any nonprintable characters.
2732          */
2733         
2734         len = StrLength(DecodeMe);
2735         for (i=0; i<DecodeMe->BufUsed; ++i) {
2736                 if ((DecodeMe->buf[i] < 32) || (DecodeMe->buf[i] > 126)) {
2737                         illegal_non_rfc2047_encoding = 1;
2738                         break;
2739                 }
2740         }
2741
2742         ConvertBuf = NewStrBufPlain(NULL, StrLength(DecodeMe));
2743         if ((illegal_non_rfc2047_encoding) &&
2744             (strcasecmp(ChrPtr(DefaultCharset), "UTF-8")) && 
2745             (strcasecmp(ChrPtr(DefaultCharset), "us-ascii")) )
2746         {
2747 #ifdef HAVE_ICONV
2748                 ctdl_iconv_open("UTF-8", ChrPtr(DefaultCharset), &ic);
2749                 if (ic != (iconv_t)(-1) ) {
2750                         StrBufConvert((StrBuf*)DecodeMe, ConvertBuf, &ic);///TODO: don't void const?
2751                         iconv_close(ic);
2752                 }
2753 #endif
2754         }
2755
2756         /* pre evaluate the first pair */
2757         nextend = end = NULL;
2758         len = StrLength(DecodeMe);
2759         start = strstr(DecodeMe->buf, "=?");
2760         eptr = DecodeMe->buf + DecodeMe->BufUsed;
2761         if (start != NULL) 
2762                 end = FindNextEnd (DecodeMe, start);
2763         else {
2764                 StrBufAppendBuf(Target, DecodeMe, 0);
2765                 FreeStrBuf(&ConvertBuf);
2766                 return;
2767         }
2768
2769         ConvertBuf2 = NewStrBufPlain(NULL, StrLength(DecodeMe));
2770
2771         if (start != DecodeMe->buf) {
2772                 long nFront;
2773                 
2774                 nFront = start - DecodeMe->buf;
2775                 StrBufAppendBufPlain(Target, DecodeMe->buf, nFront, 0);
2776                 len -= nFront;
2777         }
2778         /*
2779          * Since spammers will go to all sorts of absurd lengths to get their
2780          * messages through, there are LOTS of corrupt headers out there.
2781          * So, prevent a really badly formed RFC2047 header from throwing
2782          * this function into an infinite loop.
2783          */
2784         while ((start != NULL) && 
2785                (end != NULL) && 
2786                (start < eptr) && 
2787                (end < eptr) && 
2788                (passes < 20))
2789         {
2790                 passes++;
2791                 DecodeSegment(Target, 
2792                               DecodeMe, 
2793                               start, 
2794                               end, 
2795                               ConvertBuf,
2796                               ConvertBuf2,
2797                               FoundCharset);
2798                 
2799                 next = strstr(end, "=?");
2800                 nextend = NULL;
2801                 if ((next != NULL) && 
2802                     (next < eptr))
2803                         nextend = FindNextEnd(DecodeMe, next);
2804                 if (nextend == NULL)
2805                         next = NULL;
2806
2807                 /* did we find two partitions */
2808                 if ((next != NULL) && 
2809                     ((next - end) > 2))
2810                 {
2811                         ptr = end + 2;
2812                         while ((ptr < next) && 
2813                                (isspace(*ptr) ||
2814                                 (*ptr == '\r') ||
2815                                 (*ptr == '\n') || 
2816                                 (*ptr == '\t')))
2817                                 ptr ++;
2818                         /* did we find a gab just filled with blanks? */
2819                         if (ptr == next)
2820                         {
2821                                 long gap = next - start;
2822                                 memmove (end + 2,
2823                                          next,
2824                                          len - (gap));
2825                                 len -= gap;
2826                                 /* now terminate the gab at the end */
2827                                 delta = (next - end) - 2; ////TODO: const! 
2828                                 ((StrBuf*)DecodeMe)->BufUsed -= delta;
2829                                 ((StrBuf*)DecodeMe)->buf[DecodeMe->BufUsed] = '\0';
2830
2831                                 /* move next to its new location. */
2832                                 next -= delta;
2833                                 nextend -= delta;
2834                         }
2835                 }
2836                 /* our next-pair is our new first pair now. */
2837                 ptr = end + 2;
2838                 start = next;
2839                 end = nextend;
2840         }
2841         end = ptr;
2842         nextend = DecodeMe->buf + DecodeMe->BufUsed;
2843         if ((end != NULL) && (end < nextend)) {
2844                 ptr = end;
2845                 while ( (ptr < nextend) &&
2846                         (isspace(*ptr) ||
2847                          (*ptr == '\r') ||
2848                          (*ptr == '\n') || 
2849                          (*ptr == '\t')))
2850                         ptr ++;
2851                 if (ptr < nextend)
2852                         StrBufAppendBufPlain(Target, end, nextend - end, 0);
2853         }
2854         FreeStrBuf(&ConvertBuf);
2855         FreeStrBuf(&ConvertBuf2);
2856 }
2857
2858 /**
2859  * \brief evaluate the length of an utf8 special character sequence
2860  * \param Char the character to examine
2861  * \returns width of utf8 chars in bytes
2862  */
2863 static inline int Ctdl_GetUtf8SequenceLength(char *CharS, char *CharE)
2864 {
2865         int n = 1;
2866         char test = (1<<7);
2867         
2868         while ((n < 8) && ((test & *CharS) != 0)) {
2869                 test = test << 1;
2870                 n ++;
2871         }
2872         if ((n > 6) || ((CharE - CharS) > n))
2873                 n = 1;
2874         return n;
2875 }
2876
2877 /**
2878  * \brief detect whether this char starts an utf-8 encoded char
2879  * \param Char character to inspect
2880  * \returns yes or no
2881  */
2882 static inline int Ctdl_IsUtf8SequenceStart(char Char)
2883 {
2884 /** 11??.???? indicates an UTF8 Sequence. */
2885         return ((Char & 0xC0) != 0);
2886 }
2887
2888 /**
2889  * \brief measure the number of glyphs in an UTF8 string...
2890  * \param str string to measure
2891  * \returns the length of str
2892  */
2893 long StrBuf_Utf8StrLen(StrBuf *Buf)
2894 {
2895         int n = 0;
2896         int m = 0;
2897         char *aptr, *eptr;
2898
2899         if ((Buf == NULL) || (Buf->BufUsed == 0))
2900                 return 0;
2901         aptr = Buf->buf;
2902         eptr = Buf->buf + Buf->BufUsed;
2903         while ((aptr < eptr) && (*aptr != '\0')) {
2904                 if (Ctdl_IsUtf8SequenceStart(*aptr)){
2905                         m = Ctdl_GetUtf8SequenceLength(aptr, eptr);
2906                         while ((aptr < eptr) && (m-- > 0) && (*aptr++ != '\0'))
2907                                 n ++;
2908                 }
2909                 else {
2910                         n++;
2911                         aptr++;
2912                 }
2913                         
2914         }
2915         return n;
2916 }
2917
2918 /**
2919  * \brief cuts a string after maxlen glyphs
2920  * \param str string to cut to maxlen glyphs
2921  * \param maxlen how long may the string become?
2922  * \returns pointer to maxlen or the end of the string
2923  */
2924 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen)
2925 {
2926         char *aptr, *eptr;
2927         int n = 0, m = 0;
2928
2929         aptr = Buf->buf;
2930         eptr = Buf->buf + Buf->BufUsed;
2931         while ((aptr < eptr) && (*aptr != '\0')) {
2932                 if (Ctdl_IsUtf8SequenceStart(*aptr)){
2933                         m = Ctdl_GetUtf8SequenceLength(aptr, eptr);
2934                         while ((m-- > 0) && (*aptr++ != '\0'))
2935                                 n ++;
2936                 }
2937                 else {
2938                         n++;
2939                         aptr++;
2940                 }
2941                 if (n > maxlen) {
2942                         *aptr = '\0';
2943                         Buf->BufUsed = aptr - Buf->buf;
2944                         return Buf->BufUsed;
2945                 }                       
2946         }
2947         return Buf->BufUsed;
2948
2949 }
2950
2951
2952
2953 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr)
2954 {
2955         const char *aptr, *ptr, *eptr;
2956         char *optr, *xptr;
2957
2958         if (Buf == NULL)
2959                 return 0;
2960
2961         if (*Ptr==NULL)
2962                 ptr = aptr = Buf->buf;
2963         else
2964                 ptr = aptr = *Ptr;
2965
2966         optr = LineBuf->buf;
2967         eptr = Buf->buf + Buf->BufUsed;
2968         xptr = LineBuf->buf + LineBuf->BufSize - 1;
2969
2970         while ((*ptr != '\n') &&
2971                (*ptr != '\r') &&
2972                (ptr < eptr))
2973         {
2974                 *optr = *ptr;
2975                 optr++; ptr++;
2976                 if (optr == xptr) {
2977                         LineBuf->BufUsed = optr - LineBuf->buf;
2978                         IncreaseBuf(LineBuf,  1, LineBuf->BufUsed + 1);
2979                         optr = LineBuf->buf + LineBuf->BufUsed;
2980                         xptr = LineBuf->buf + LineBuf->BufSize - 1;
2981                 }
2982         }
2983         LineBuf->BufUsed = optr - LineBuf->buf;
2984         *optr = '\0';       
2985         if (*ptr == '\r')
2986                 ptr ++;
2987         if (*ptr == '\n')
2988                 ptr ++;
2989
2990         *Ptr = ptr;
2991
2992         return Buf->BufUsed - (ptr - Buf->buf);
2993 }