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