VirtualBox

source: vbox/trunk/include/iprt/string.h@ 43667

Last change on this file since 43667 was 43214, checked in by vboxsync, 12 years ago

RTStrIsIpAddr[46] -> RTNetIsIpv\1AddrStr; made the buggers return bool like predicate functions shall.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 157.1 KB
Line 
1/** @file
2 * IPRT - String Manipulation.
3 */
4
5/*
6 * Copyright (C) 2006-2012 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_string_h
27#define ___iprt_string_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/assert.h>
32#include <iprt/stdarg.h>
33#include <iprt/err.h> /* for VINF_SUCCESS */
34#if defined(RT_OS_LINUX) && defined(__KERNEL__)
35 RT_C_DECLS_BEGIN
36# include <linux/string.h>
37 RT_C_DECLS_END
38
39#elif defined(IN_XF86_MODULE) && !defined(NO_ANSIC)
40 RT_C_DECLS_BEGIN
41# include "xf86_ansic.h"
42 RT_C_DECLS_END
43
44#elif defined(RT_OS_FREEBSD) && defined(_KERNEL)
45 RT_C_DECLS_BEGIN
46 /** @todo
47 * XXX: Very ugly hack to get things build on recent FreeBSD builds. They have
48 * memchr now and we need to include param.h to get __FreeBSD_version and make
49 * memchr available based on the version below or we can't compile the kernel
50 * module on older versions anymore.
51 *
52 * But including param.h here opens Pandora's box because we clash with a few
53 * defines namely PVM and PAGE_SIZE. We can safely undefine PVM here but not
54 * PAGE_SIZE because this results in build errors sooner or later. Luckily this
55 * define is in a header included by param.h (machine/param.h). We define the
56 * guards here to prevent inclusion of it if PAGE_SIZE was defined already.
57 *
58 * @todo aeichner: Search for an elegant solution and cleanup this mess ASAP!
59 */
60# ifdef PAGE_SIZE
61# define _AMD64_INCLUDE_PARAM_H_
62# define _I386_INCLUDE_PARAM_H_
63# define _MACHINE_PARAM_H_
64# endif
65# include <sys/param.h> /* __FreeBSD_version */
66# undef PVM
67# include <sys/libkern.h>
68 /*
69 * No memmove on versions < 7.2
70 * Defining a macro using bcopy here
71 */
72# define memmove(dst, src, size) bcopy(src, dst, size)
73 RT_C_DECLS_END
74
75#elif defined(RT_OS_SOLARIS) && defined(_KERNEL)
76 /*
77 * Same case as with FreeBSD kernel:
78 * The string.h stuff clashes with sys/system.h
79 * ffs = find first set bit.
80 */
81# define ffs ffs_string_h
82# include <string.h>
83# undef ffs
84# undef strpbrk
85
86#else
87# include <string.h>
88#endif
89
90/*
91 * Supply prototypes for standard string functions provided by
92 * IPRT instead of the operating environment.
93 */
94#if defined(RT_OS_DARWIN) && defined(KERNEL)
95RT_C_DECLS_BEGIN
96void *memchr(const void *pv, int ch, size_t cb);
97char *strpbrk(const char *pszStr, const char *pszChars);
98RT_C_DECLS_END
99#endif
100
101#if defined(RT_OS_FREEBSD) && defined(_KERNEL)
102RT_C_DECLS_BEGIN
103#if __FreeBSD_version < 900000
104void *memchr(const void *pv, int ch, size_t cb);
105#endif
106char *strpbrk(const char *pszStr, const char *pszChars);
107RT_C_DECLS_END
108#endif
109
110/** @def RT_USE_RTC_3629
111 * When defined the UTF-8 range will stop at 0x10ffff. If not defined, the
112 * range stops at 0x7fffffff.
113 * @remarks Must be defined both when building and using the IPRT. */
114#ifdef DOXYGEN_RUNNING
115# define RT_USE_RTC_3629
116#endif
117
118
119/**
120 * Byte zero the specified object.
121 *
122 * This will use sizeof(Obj) to figure the size and will call memset, bzero
123 * or some compiler intrinsic to perform the actual zeroing.
124 *
125 * @param Obj The object to zero. Make sure to dereference pointers.
126 *
127 * @remarks Because the macro may use memset it has been placed in string.h
128 * instead of cdefs.h to avoid build issues because someone forgot
129 * to include this header.
130 *
131 * @ingroup grp_rt_cdefs
132 */
133#define RT_ZERO(Obj) RT_BZERO(&(Obj), sizeof(Obj))
134
135/**
136 * Byte zero the specified memory area.
137 *
138 * This will call memset, bzero or some compiler intrinsic to clear the
139 * specified bytes of memory.
140 *
141 * @param pv Pointer to the memory.
142 * @param cb The number of bytes to clear. Please, don't pass 0.
143 *
144 * @remarks Because the macro may use memset it has been placed in string.h
145 * instead of cdefs.h to avoid build issues because someone forgot
146 * to include this header.
147 *
148 * @ingroup grp_rt_cdefs
149 */
150#define RT_BZERO(pv, cb) do { memset((pv), 0, cb); } while (0)
151
152
153
154/** @defgroup grp_rt_str RTStr - String Manipulation
155 * Mostly UTF-8 related helpers where the standard string functions won't do.
156 * @ingroup grp_rt
157 * @{
158 */
159
160RT_C_DECLS_BEGIN
161
162
163/**
164 * The maximum string length.
165 */
166#define RTSTR_MAX (~(size_t)0)
167
168
169/** @def RTMEM_TAG
170 * The default allocation tag used by the RTStr allocation APIs.
171 *
172 * When not defined before the inclusion of iprt/string.h, this will default to
173 * the pointer to the current file name. The string API will make of use of
174 * this as pointer to a volatile but read-only string.
175 */
176#ifndef RTSTR_TAG
177# define RTSTR_TAG (__FILE__)
178#endif
179
180
181#ifdef IN_RING3
182
183/**
184 * Allocates tmp buffer with default tag, translates pszString from UTF8 to
185 * current codepage.
186 *
187 * @returns iprt status code.
188 * @param ppszString Receives pointer of allocated native CP string.
189 * The returned pointer must be freed using RTStrFree().
190 * @param pszString UTF-8 string to convert.
191 */
192#define RTStrUtf8ToCurrentCP(ppszString, pszString) RTStrUtf8ToCurrentCPTag((ppszString), (pszString), RTSTR_TAG)
193
194/**
195 * Allocates tmp buffer with custom tag, translates pszString from UTF8 to
196 * current codepage.
197 *
198 * @returns iprt status code.
199 * @param ppszString Receives pointer of allocated native CP string.
200 * The returned pointer must be freed using
201 * RTStrFree()., const char *pszTag
202 * @param pszString UTF-8 string to convert.
203 * @param pszTag Allocation tag used for statistics and such.
204 */
205RTR3DECL(int) RTStrUtf8ToCurrentCPTag(char **ppszString, const char *pszString, const char *pszTag);
206
207/**
208 * Allocates tmp buffer, translates pszString from current codepage to UTF-8.
209 *
210 * @returns iprt status code.
211 * @param ppszString Receives pointer of allocated UTF-8 string.
212 * The returned pointer must be freed using RTStrFree().
213 * @param pszString Native string to convert.
214 */
215#define RTStrCurrentCPToUtf8(ppszString, pszString) RTStrCurrentCPToUtf8Tag((ppszString), (pszString), RTSTR_TAG)
216
217/**
218 * Allocates tmp buffer, translates pszString from current codepage to UTF-8.
219 *
220 * @returns iprt status code.
221 * @param ppszString Receives pointer of allocated UTF-8 string.
222 * The returned pointer must be freed using RTStrFree().
223 * @param pszString Native string to convert.
224 * @param pszTag Allocation tag used for statistics and such.
225 */
226RTR3DECL(int) RTStrCurrentCPToUtf8Tag(char **ppszString, const char *pszString, const char *pszTag);
227
228#endif /* IN_RING3 */
229
230/**
231 * Free string allocated by any of the non-UCS-2 string functions.
232 *
233 * @returns iprt status code.
234 * @param pszString Pointer to buffer with string to free.
235 * NULL is accepted.
236 */
237RTDECL(void) RTStrFree(char *pszString);
238
239/**
240 * Allocates a new copy of the given UTF-8 string (default tag).
241 *
242 * @returns Pointer to the allocated UTF-8 string.
243 * @param pszString UTF-8 string to duplicate.
244 */
245#define RTStrDup(pszString) RTStrDupTag((pszString), RTSTR_TAG)
246
247/**
248 * Allocates a new copy of the given UTF-8 string (custom tag).
249 *
250 * @returns Pointer to the allocated UTF-8 string.
251 * @param pszString UTF-8 string to duplicate.
252 * @param pszTag Allocation tag used for statistics and such.
253 */
254RTDECL(char *) RTStrDupTag(const char *pszString, const char *pszTag);
255
256/**
257 * Allocates a new copy of the given UTF-8 string (default tag).
258 *
259 * @returns iprt status code.
260 * @param ppszString Receives pointer of the allocated UTF-8 string.
261 * The returned pointer must be freed using RTStrFree().
262 * @param pszString UTF-8 string to duplicate.
263 */
264#define RTStrDupEx(ppszString, pszString) RTStrDupExTag((ppszString), (pszString), RTSTR_TAG)
265
266/**
267 * Allocates a new copy of the given UTF-8 string (custom tag).
268 *
269 * @returns iprt status code.
270 * @param ppszString Receives pointer of the allocated UTF-8 string.
271 * The returned pointer must be freed using RTStrFree().
272 * @param pszString UTF-8 string to duplicate.
273 * @param pszTag Allocation tag used for statistics and such.
274 */
275RTDECL(int) RTStrDupExTag(char **ppszString, const char *pszString, const char *pszTag);
276
277/**
278 * Allocates a new copy of the given UTF-8 substring (default tag).
279 *
280 * @returns Pointer to the allocated UTF-8 substring.
281 * @param pszString UTF-8 string to duplicate.
282 * @param cchMax The max number of chars to duplicate, not counting
283 * the terminator.
284 */
285#define RTStrDupN(pszString, cchMax) RTStrDupNTag((pszString), (cchMax), RTSTR_TAG)
286
287/**
288 * Allocates a new copy of the given UTF-8 substring (custom tag).
289 *
290 * @returns Pointer to the allocated UTF-8 substring.
291 * @param pszString UTF-8 string to duplicate.
292 * @param cchMax The max number of chars to duplicate, not counting
293 * the terminator.
294 * @param pszTag Allocation tag used for statistics and such.
295 */
296RTDECL(char *) RTStrDupNTag(const char *pszString, size_t cchMax, const char *pszTag);
297
298/**
299 * Appends a string onto an existing IPRT allocated string (default tag).
300 *
301 * @retval VINF_SUCCESS
302 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
303 * remains unchanged.
304 *
305 * @param ppsz Pointer to the string pointer. The string
306 * pointer must either be NULL or point to a string
307 * returned by an IPRT string API. (In/Out)
308 * @param pszAppend The string to append. NULL and empty strings
309 * are quietly ignored.
310 */
311#define RTStrAAppend(ppsz, pszAppend) RTStrAAppendTag((ppsz), (pszAppend), RTSTR_TAG)
312
313/**
314 * Appends a string onto an existing IPRT allocated string (custom tag).
315 *
316 * @retval VINF_SUCCESS
317 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
318 * remains unchanged.
319 *
320 * @param ppsz Pointer to the string pointer. The string
321 * pointer must either be NULL or point to a string
322 * returned by an IPRT string API. (In/Out)
323 * @param pszAppend The string to append. NULL and empty strings
324 * are quietly ignored.
325 * @param pszTag Allocation tag used for statistics and such.
326 */
327RTDECL(int) RTStrAAppendTag(char **ppsz, const char *pszAppend, const char *pszTag);
328
329/**
330 * Appends N bytes from a strings onto an existing IPRT allocated string
331 * (default tag).
332 *
333 * @retval VINF_SUCCESS
334 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
335 * remains unchanged.
336 *
337 * @param ppsz Pointer to the string pointer. The string
338 * pointer must either be NULL or point to a string
339 * returned by an IPRT string API. (In/Out)
340 * @param pszAppend The string to append. Can be NULL if cchAppend
341 * is NULL.
342 * @param cchAppend The number of chars (not code points) to append
343 * from pszAppend. Must not be more than
344 * @a pszAppend contains, except for the special
345 * value RTSTR_MAX that can be used to indicate all
346 * of @a pszAppend without having to strlen it.
347 */
348#define RTStrAAppendN(ppsz, pszAppend, cchAppend) RTStrAAppendNTag((ppsz), (pszAppend), (cchAppend), RTSTR_TAG)
349
350/**
351 * Appends N bytes from a strings onto an existing IPRT allocated string (custom
352 * tag).
353 *
354 * @retval VINF_SUCCESS
355 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
356 * remains unchanged.
357 *
358 * @param ppsz Pointer to the string pointer. The string
359 * pointer must either be NULL or point to a string
360 * returned by an IPRT string API. (In/Out)
361 * @param pszAppend The string to append. Can be NULL if cchAppend
362 * is NULL.
363 * @param cchAppend The number of chars (not code points) to append
364 * from pszAppend. Must not be more than
365 * @a pszAppend contains, except for the special
366 * value RTSTR_MAX that can be used to indicate all
367 * of @a pszAppend without having to strlen it.
368 * @param pszTag Allocation tag used for statistics and such.
369 */
370RTDECL(int) RTStrAAppendNTag(char **ppsz, const char *pszAppend, size_t cchAppend, const char *pszTag);
371
372/**
373 * Appends one or more strings onto an existing IPRT allocated string.
374 *
375 * This is a very flexible and efficient alternative to using RTStrAPrintf to
376 * combine several strings together.
377 *
378 * @retval VINF_SUCCESS
379 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
380 * remains unchanged.
381 *
382 * @param ppsz Pointer to the string pointer. The string
383 * pointer must either be NULL or point to a string
384 * returned by an IPRT string API. (In/Out)
385 * @param cPairs The number of string / length pairs in the
386 * @a va.
387 * @param va List of string (const char *) and length
388 * (size_t) pairs. The strings will be appended to
389 * the string in the first argument.
390 */
391#define RTStrAAppendExNV(ppsz, cPairs, va) RTStrAAppendExNVTag((ppsz), (cPairs), (va), RTSTR_TAG)
392
393/**
394 * Appends one or more strings onto an existing IPRT allocated string.
395 *
396 * This is a very flexible and efficient alternative to using RTStrAPrintf to
397 * combine several strings together.
398 *
399 * @retval VINF_SUCCESS
400 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
401 * remains unchanged.
402 *
403 * @param ppsz Pointer to the string pointer. The string
404 * pointer must either be NULL or point to a string
405 * returned by an IPRT string API. (In/Out)
406 * @param cPairs The number of string / length pairs in the
407 * @a va.
408 * @param va List of string (const char *) and length
409 * (size_t) pairs. The strings will be appended to
410 * the string in the first argument.
411 * @param pszTag Allocation tag used for statistics and such.
412 */
413RTDECL(int) RTStrAAppendExNVTag(char **ppsz, size_t cPairs, va_list va, const char *pszTag);
414
415/**
416 * Appends one or more strings onto an existing IPRT allocated string
417 * (untagged).
418 *
419 * This is a very flexible and efficient alternative to using RTStrAPrintf to
420 * combine several strings together.
421 *
422 * @retval VINF_SUCCESS
423 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
424 * remains unchanged.
425 *
426 * @param ppsz Pointer to the string pointer. The string
427 * pointer must either be NULL or point to a string
428 * returned by an IPRT string API. (In/Out)
429 * @param cPairs The number of string / length pairs in the
430 * ellipsis.
431 * @param ... List of string (const char *) and length
432 * (size_t) pairs. The strings will be appended to
433 * the string in the first argument.
434 */
435DECLINLINE(int) RTStrAAppendExN(char **ppsz, size_t cPairs, ...)
436{
437 int rc;
438 va_list va;
439 va_start(va, cPairs);
440 rc = RTStrAAppendExNVTag(ppsz, cPairs, va, RTSTR_TAG);
441 va_end(va);
442 return rc;
443}
444
445/**
446 * Appends one or more strings onto an existing IPRT allocated string (custom
447 * tag).
448 *
449 * This is a very flexible and efficient alternative to using RTStrAPrintf to
450 * combine several strings together.
451 *
452 * @retval VINF_SUCCESS
453 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
454 * remains unchanged.
455 *
456 * @param ppsz Pointer to the string pointer. The string
457 * pointer must either be NULL or point to a string
458 * returned by an IPRT string API. (In/Out)
459 * @param pszTag Allocation tag used for statistics and such.
460 * @param cPairs The number of string / length pairs in the
461 * ellipsis.
462 * @param ... List of string (const char *) and length
463 * (size_t) pairs. The strings will be appended to
464 * the string in the first argument.
465 */
466DECLINLINE(int) RTStrAAppendExNTag(char **ppsz, const char *pszTag, size_t cPairs, ...)
467{
468 int rc;
469 va_list va;
470 va_start(va, cPairs);
471 rc = RTStrAAppendExNVTag(ppsz, cPairs, va, pszTag);
472 va_end(va);
473 return rc;
474}
475
476/**
477 * Truncates an IPRT allocated string (default tag).
478 *
479 * @retval VINF_SUCCESS.
480 * @retval VERR_OUT_OF_RANGE if cchNew is too long. Nothing is done.
481 *
482 * @param ppsz Pointer to the string pointer. The string
483 * pointer can be NULL if @a cchNew is 0, no change
484 * is made then. If we actually reallocate the
485 * string, the string pointer might be changed by
486 * this call. (In/Out)
487 * @param cchNew The new string length (excluding the
488 * terminator). The string must be at least this
489 * long or we'll return VERR_OUT_OF_RANGE and
490 * assert on you.
491 */
492#define RTStrATruncate(ppsz, cchNew) RTStrATruncateTag((ppsz), (cchNew), RTSTR_TAG)
493
494/**
495 * Truncates an IPRT allocated string.
496 *
497 * @retval VINF_SUCCESS.
498 * @retval VERR_OUT_OF_RANGE if cchNew is too long. Nothing is done.
499 *
500 * @param ppsz Pointer to the string pointer. The string
501 * pointer can be NULL if @a cchNew is 0, no change
502 * is made then. If we actually reallocate the
503 * string, the string pointer might be changed by
504 * this call. (In/Out)
505 * @param cchNew The new string length (excluding the
506 * terminator). The string must be at least this
507 * long or we'll return VERR_OUT_OF_RANGE and
508 * assert on you.
509 * @param pszTag Allocation tag used for statistics and such.
510 */
511RTDECL(int) RTStrATruncateTag(char **ppsz, size_t cchNew, const char *pszTag);
512
513/**
514 * Allocates memory for string storage (default tag).
515 *
516 * You should normally not use this function, except if there is some very
517 * custom string handling you need doing that isn't covered by any of the other
518 * APIs.
519 *
520 * @returns Pointer to the allocated string. The first byte is always set
521 * to the string terminator char, the contents of the remainder of the
522 * memory is undefined. The string must be freed by calling RTStrFree.
523 *
524 * NULL is returned if the allocation failed. Please translate this to
525 * VERR_NO_STR_MEMORY and not VERR_NO_MEMORY. Also consider
526 * RTStrAllocEx if an IPRT status code is required.
527 *
528 * @param cb How many bytes to allocate. If this is zero, we
529 * will allocate a terminator byte anyway.
530 */
531#define RTStrAlloc(cb) RTStrAllocTag((cb), RTSTR_TAG)
532
533/**
534 * Allocates memory for string storage (custom tag).
535 *
536 * You should normally not use this function, except if there is some very
537 * custom string handling you need doing that isn't covered by any of the other
538 * APIs.
539 *
540 * @returns Pointer to the allocated string. The first byte is always set
541 * to the string terminator char, the contents of the remainder of the
542 * memory is undefined. The string must be freed by calling RTStrFree.
543 *
544 * NULL is returned if the allocation failed. Please translate this to
545 * VERR_NO_STR_MEMORY and not VERR_NO_MEMORY. Also consider
546 * RTStrAllocEx if an IPRT status code is required.
547 *
548 * @param cb How many bytes to allocate. If this is zero, we
549 * will allocate a terminator byte anyway.
550 * @param pszTag Allocation tag used for statistics and such.
551 */
552RTDECL(char *) RTStrAllocTag(size_t cb, const char *pszTag);
553
554/**
555 * Allocates memory for string storage, with status code (default tag).
556 *
557 * You should normally not use this function, except if there is some very
558 * custom string handling you need doing that isn't covered by any of the other
559 * APIs.
560 *
561 * @retval VINF_SUCCESS
562 * @retval VERR_NO_STR_MEMORY
563 *
564 * @param ppsz Where to return the allocated string. This will
565 * be set to NULL on failure. On success, the
566 * returned memory will always start with a
567 * terminator char so that it is considered a valid
568 * C string, the contents of rest of the memory is
569 * undefined.
570 * @param cb How many bytes to allocate. If this is zero, we
571 * will allocate a terminator byte anyway.
572 */
573#define RTStrAllocEx(ppsz, cb) RTStrAllocExTag((ppsz), (cb), RTSTR_TAG)
574
575/**
576 * Allocates memory for string storage, with status code (custom tag).
577 *
578 * You should normally not use this function, except if there is some very
579 * custom string handling you need doing that isn't covered by any of the other
580 * APIs.
581 *
582 * @retval VINF_SUCCESS
583 * @retval VERR_NO_STR_MEMORY
584 *
585 * @param ppsz Where to return the allocated string. This will
586 * be set to NULL on failure. On success, the
587 * returned memory will always start with a
588 * terminator char so that it is considered a valid
589 * C string, the contents of rest of the memory is
590 * undefined.
591 * @param cb How many bytes to allocate. If this is zero, we
592 * will allocate a terminator byte anyway.
593 * @param pszTag Allocation tag used for statistics and such.
594 */
595RTDECL(int) RTStrAllocExTag(char **ppsz, size_t cb, const char *pszTag);
596
597/**
598 * Reallocates the specified string (default tag).
599 *
600 * You should normally not have use this function, except perhaps to truncate a
601 * really long string you've got from some IPRT string API, but then you should
602 * use RTStrATruncate.
603 *
604 * @returns VINF_SUCCESS.
605 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
606 * remains unchanged.
607 *
608 * @param ppsz Pointer to the string variable containing the
609 * input and output string.
610 *
611 * When not freeing the string, the result will
612 * always have the last byte set to the terminator
613 * character so that when used for string
614 * truncation the result will be a valid C string
615 * (your job to keep it a valid UTF-8 string).
616 *
617 * When the input string is NULL and we're supposed
618 * to reallocate, the returned string will also
619 * have the first byte set to the terminator char
620 * so it will be a valid C string.
621 *
622 * @param cbNew When @a cbNew is zero, we'll behave like
623 * RTStrFree and @a *ppsz will be set to NULL.
624 *
625 * When not zero, this will be the new size of the
626 * memory backing the string, i.e. it includes the
627 * terminator char.
628 */
629#define RTStrRealloc(ppsz, cbNew) RTStrReallocTag((ppsz), (cbNew), RTSTR_TAG)
630
631/**
632 * Reallocates the specified string (custom tag).
633 *
634 * You should normally not have use this function, except perhaps to truncate a
635 * really long string you've got from some IPRT string API, but then you should
636 * use RTStrATruncate.
637 *
638 * @returns VINF_SUCCESS.
639 * @retval VERR_NO_STR_MEMORY if we failed to reallocate the string, @a *ppsz
640 * remains unchanged.
641 *
642 * @param ppsz Pointer to the string variable containing the
643 * input and output string.
644 *
645 * When not freeing the string, the result will
646 * always have the last byte set to the terminator
647 * character so that when used for string
648 * truncation the result will be a valid C string
649 * (your job to keep it a valid UTF-8 string).
650 *
651 * When the input string is NULL and we're supposed
652 * to reallocate, the returned string will also
653 * have the first byte set to the terminator char
654 * so it will be a valid C string.
655 *
656 * @param cbNew When @a cbNew is zero, we'll behave like
657 * RTStrFree and @a *ppsz will be set to NULL.
658 *
659 * When not zero, this will be the new size of the
660 * memory backing the string, i.e. it includes the
661 * terminator char.
662 * @param pszTag Allocation tag used for statistics and such.
663 */
664RTDECL(int) RTStrReallocTag(char **ppsz, size_t cbNew, const char *pszTag);
665
666/**
667 * Validates the UTF-8 encoding of the string.
668 *
669 * @returns iprt status code.
670 * @param psz The string.
671 */
672RTDECL(int) RTStrValidateEncoding(const char *psz);
673
674/** @name Flags for RTStrValidateEncodingEx
675 */
676/** Check that the string is zero terminated within the given size.
677 * VERR_BUFFER_OVERFLOW will be returned if the check fails. */
678#define RTSTR_VALIDATE_ENCODING_ZERO_TERMINATED RT_BIT_32(0)
679/** @} */
680
681/**
682 * Validates the UTF-8 encoding of the string.
683 *
684 * @returns iprt status code.
685 * @param psz The string.
686 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
687 * @param fFlags Reserved for future. Pass 0.
688 */
689RTDECL(int) RTStrValidateEncodingEx(const char *psz, size_t cch, uint32_t fFlags);
690
691/**
692 * Checks if the UTF-8 encoding is valid.
693 *
694 * @returns true / false.
695 * @param psz The string.
696 */
697RTDECL(bool) RTStrIsValidEncoding(const char *psz);
698
699/**
700 * Purge all bad UTF-8 encoding in the string, replacing it with '?'.
701 *
702 * @returns The number of bad characters (0 if nothing was done).
703 * @param psz The string to purge.
704 */
705RTDECL(size_t) RTStrPurgeEncoding(char *psz);
706
707/**
708 * Sanitise a (valid) UTF-8 string by replacing all characters outside a white
709 * list in-place by an ASCII replacement character. Multi-byte characters will
710 * be replaced byte by byte.
711 *
712 * @returns The number of code points replaced, or a negative value if the
713 * string is not correctly encoded. In this last case the string
714 * may be partially processed.
715 * @param psz The string to sanitise.
716 * @param puszValidSets A zero-terminated array of pairs of Unicode points.
717 * Each pair is the start and end point of a range,
718 * and the union of these ranges forms the white list.
719 * @param chReplacement The ASCII replacement character.
720 */
721RTDECL(ssize_t) RTStrPurgeComplementSet(char *psz, PCRTUNICP puszValidSet, char chReplacement);
722
723/**
724 * Gets the number of code points the string is made up of, excluding
725 * the terminator.
726 *
727 *
728 * @returns Number of code points (RTUNICP).
729 * @returns 0 if the string was incorrectly encoded.
730 * @param psz The string.
731 */
732RTDECL(size_t) RTStrUniLen(const char *psz);
733
734/**
735 * Gets the number of code points the string is made up of, excluding
736 * the terminator.
737 *
738 * This function will validate the string, and incorrectly encoded UTF-8
739 * strings will be rejected.
740 *
741 * @returns iprt status code.
742 * @param psz The string.
743 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
744 * @param pcuc Where to store the code point count.
745 * This is undefined on failure.
746 */
747RTDECL(int) RTStrUniLenEx(const char *psz, size_t cch, size_t *pcuc);
748
749/**
750 * Translate a UTF-8 string into an unicode string (i.e. RTUNICPs), allocating the string buffer.
751 *
752 * @returns iprt status code.
753 * @param pszString UTF-8 string to convert.
754 * @param ppUniString Receives pointer to the allocated unicode string.
755 * The returned string must be freed using RTUniFree().
756 */
757RTDECL(int) RTStrToUni(const char *pszString, PRTUNICP *ppUniString);
758
759/**
760 * Translates pszString from UTF-8 to an array of code points, allocating the result
761 * array if requested.
762 *
763 * @returns iprt status code.
764 * @param pszString UTF-8 string to convert.
765 * @param cchString The maximum size in chars (the type) to convert. The conversion stop
766 * when it reaches cchString or the string terminator ('\\0').
767 * Use RTSTR_MAX to translate the entire string.
768 * @param ppaCps If cCps is non-zero, this must either be pointing to pointer to
769 * a buffer of the specified size, or pointer to a NULL pointer.
770 * If *ppusz is NULL or cCps is zero a buffer of at least cCps items
771 * will be allocated to hold the translated string.
772 * If a buffer was requested it must be freed using RTUtf16Free().
773 * @param cCps The number of code points in the unicode string. This includes the terminator.
774 * @param pcCps Where to store the length of the translated string,
775 * excluding the terminator. (Optional)
776 *
777 * This may be set under some error conditions,
778 * however, only for VERR_BUFFER_OVERFLOW and
779 * VERR_NO_STR_MEMORY will it contain a valid string
780 * length that can be used to resize the buffer.
781 */
782RTDECL(int) RTStrToUniEx(const char *pszString, size_t cchString, PRTUNICP *ppaCps, size_t cCps, size_t *pcCps);
783
784/**
785 * Calculates the length of the string in RTUTF16 items.
786 *
787 * This function will validate the string, and incorrectly encoded UTF-8
788 * strings will be rejected. The primary purpose of this function is to
789 * help allocate buffers for RTStrToUtf16Ex of the correct size. For most
790 * other purposes RTStrCalcUtf16LenEx() should be used.
791 *
792 * @returns Number of RTUTF16 items.
793 * @returns 0 if the string was incorrectly encoded.
794 * @param psz The string.
795 */
796RTDECL(size_t) RTStrCalcUtf16Len(const char *psz);
797
798/**
799 * Calculates the length of the string in RTUTF16 items.
800 *
801 * This function will validate the string, and incorrectly encoded UTF-8
802 * strings will be rejected.
803 *
804 * @returns iprt status code.
805 * @param psz The string.
806 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
807 * @param pcwc Where to store the string length. Optional.
808 * This is undefined on failure.
809 */
810RTDECL(int) RTStrCalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc);
811
812/**
813 * Translate a UTF-8 string into a UTF-16 allocating the result buffer (default
814 * tag).
815 *
816 * @returns iprt status code.
817 * @param pszString UTF-8 string to convert.
818 * @param ppwszString Receives pointer to the allocated UTF-16 string.
819 * The returned string must be freed using RTUtf16Free().
820 */
821#define RTStrToUtf16(pszString, ppwszString) RTStrToUtf16Tag((pszString), (ppwszString), RTSTR_TAG)
822
823/**
824 * Translate a UTF-8 string into a UTF-16 allocating the result buffer (custom
825 * tag).
826 *
827 * @returns iprt status code.
828 * @param pszString UTF-8 string to convert.
829 * @param ppwszString Receives pointer to the allocated UTF-16 string.
830 * The returned string must be freed using RTUtf16Free().
831 * @param pszTag Allocation tag used for statistics and such.
832 */
833RTDECL(int) RTStrToUtf16Tag(const char *pszString, PRTUTF16 *ppwszString, const char *pszTag);
834
835/**
836 * Translates pszString from UTF-8 to UTF-16, allocating the result buffer if requested.
837 *
838 * @returns iprt status code.
839 * @param pszString UTF-8 string to convert.
840 * @param cchString The maximum size in chars (the type) to convert. The conversion stop
841 * when it reaches cchString or the string terminator ('\\0').
842 * Use RTSTR_MAX to translate the entire string.
843 * @param ppwsz If cwc is non-zero, this must either be pointing to pointer to
844 * a buffer of the specified size, or pointer to a NULL pointer.
845 * If *ppwsz is NULL or cwc is zero a buffer of at least cwc items
846 * will be allocated to hold the translated string.
847 * If a buffer was requested it must be freed using RTUtf16Free().
848 * @param cwc The buffer size in RTUTF16s. This includes the terminator.
849 * @param pcwc Where to store the length of the translated string,
850 * excluding the terminator. (Optional)
851 *
852 * This may be set under some error conditions,
853 * however, only for VERR_BUFFER_OVERFLOW and
854 * VERR_NO_STR_MEMORY will it contain a valid string
855 * length that can be used to resize the buffer.
856 */
857#define RTStrToUtf16Ex(pszString, cchString, ppwsz, cwc, pcwc) \
858 RTStrToUtf16ExTag((pszString), (cchString), (ppwsz), (cwc), (pcwc), RTSTR_TAG)
859
860/**
861 * Translates pszString from UTF-8 to UTF-16, allocating the result buffer if
862 * requested (custom tag).
863 *
864 * @returns iprt status code.
865 * @param pszString UTF-8 string to convert.
866 * @param cchString The maximum size in chars (the type) to convert. The conversion stop
867 * when it reaches cchString or the string terminator ('\\0').
868 * Use RTSTR_MAX to translate the entire string.
869 * @param ppwsz If cwc is non-zero, this must either be pointing to pointer to
870 * a buffer of the specified size, or pointer to a NULL pointer.
871 * If *ppwsz is NULL or cwc is zero a buffer of at least cwc items
872 * will be allocated to hold the translated string.
873 * If a buffer was requested it must be freed using RTUtf16Free().
874 * @param cwc The buffer size in RTUTF16s. This includes the terminator.
875 * @param pcwc Where to store the length of the translated string,
876 * excluding the terminator. (Optional)
877 *
878 * This may be set under some error conditions,
879 * however, only for VERR_BUFFER_OVERFLOW and
880 * VERR_NO_STR_MEMORY will it contain a valid string
881 * length that can be used to resize the buffer.
882 * @param pszTag Allocation tag used for statistics and such.
883 */
884RTDECL(int) RTStrToUtf16ExTag(const char *pszString, size_t cchString, PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag);
885
886
887/**
888 * Calculates the length of the string in Latin-1 characters.
889 *
890 * This function will validate the string, and incorrectly encoded UTF-8
891 * strings as well as string with codepoints outside the latin-1 range will be
892 * rejected. The primary purpose of this function is to help allocate buffers
893 * for RTStrToLatin1Ex of the correct size. For most other purposes
894 * RTStrCalcLatin1LenEx() should be used.
895 *
896 * @returns Number of Latin-1 characters.
897 * @returns 0 if the string was incorrectly encoded.
898 * @param psz The string.
899 */
900RTDECL(size_t) RTStrCalcLatin1Len(const char *psz);
901
902/**
903 * Calculates the length of the string in Latin-1 characters.
904 *
905 * This function will validate the string, and incorrectly encoded UTF-8
906 * strings as well as string with codepoints outside the latin-1 range will be
907 * rejected.
908 *
909 * @returns iprt status code.
910 * @param psz The string.
911 * @param cch The max string length. Use RTSTR_MAX to process the
912 * entire string.
913 * @param pcch Where to store the string length. Optional.
914 * This is undefined on failure.
915 */
916RTDECL(int) RTStrCalcLatin1LenEx(const char *psz, size_t cch, size_t *pcwc);
917
918/**
919 * Translate a UTF-8 string into a Latin-1 allocating the result buffer (default
920 * tag).
921 *
922 * @returns iprt status code.
923 * @param pszString UTF-8 string to convert.
924 * @param ppszString Receives pointer to the allocated Latin-1 string.
925 * The returned string must be freed using RTStrFree().
926 */
927#define RTStrToLatin1(pszString, ppszString) RTStrToLatin1Tag((pszString), (ppszString), RTSTR_TAG)
928
929/**
930 * Translate a UTF-8 string into a Latin-1 allocating the result buffer (custom
931 * tag).
932 *
933 * @returns iprt status code.
934 * @param pszString UTF-8 string to convert.
935 * @param ppszString Receives pointer to the allocated Latin-1 string.
936 * The returned string must be freed using RTStrFree().
937 * @param pszTag Allocation tag used for statistics and such.
938 */
939RTDECL(int) RTStrToLatin1Tag(const char *pszString, char **ppszString, const char *pszTag);
940
941/**
942 * Translates pszString from UTF-8 to Latin-1, allocating the result buffer if requested.
943 *
944 * @returns iprt status code.
945 * @param pszString UTF-8 string to convert.
946 * @param cchString The maximum size in chars (the type) to convert.
947 * The conversion stop when it reaches cchString or
948 * the string terminator ('\\0'). Use RTSTR_MAX to
949 * translate the entire string.
950 * @param ppsz If cch is non-zero, this must either be pointing to
951 * pointer to a buffer of the specified size, or
952 * pointer to a NULL pointer. If *ppsz is NULL or cch
953 * is zero a buffer of at least cch items will be
954 * allocated to hold the translated string. If a
955 * buffer was requested it must be freed using
956 * RTStrFree().
957 * @param cch The buffer size in bytes. This includes the
958 * terminator.
959 * @param pcch Where to store the length of the translated string,
960 * excluding the terminator. (Optional)
961 *
962 * This may be set under some error conditions,
963 * however, only for VERR_BUFFER_OVERFLOW and
964 * VERR_NO_STR_MEMORY will it contain a valid string
965 * length that can be used to resize the buffer.
966 */
967#define RTStrToLatin1Ex(pszString, cchString, ppsz, cch, pcch) \
968 RTStrToLatin1ExTag((pszString), (cchString), (ppsz), (cch), (pcch), RTSTR_TAG)
969
970/**
971 * Translates pszString from UTF-8 to Latin1, allocating the result buffer if
972 * requested (custom tag).
973 *
974 * @returns iprt status code.
975 * @param pszString UTF-8 string to convert.
976 * @param cchString The maximum size in chars (the type) to convert.
977 * The conversion stop when it reaches cchString or
978 * the string terminator ('\\0'). Use RTSTR_MAX to
979 * translate the entire string.
980 * @param ppsz If cch is non-zero, this must either be pointing to
981 * pointer to a buffer of the specified size, or
982 * pointer to a NULL pointer. If *ppsz is NULL or cch
983 * is zero a buffer of at least cch items will be
984 * allocated to hold the translated string. If a
985 * buffer was requested it must be freed using
986 * RTStrFree().
987 * @param cch The buffer size in bytes. This includes the
988 * terminator.
989 * @param pcch Where to store the length of the translated string,
990 * excluding the terminator. (Optional)
991 *
992 * This may be set under some error conditions,
993 * however, only for VERR_BUFFER_OVERFLOW and
994 * VERR_NO_STR_MEMORY will it contain a valid string
995 * length that can be used to resize the buffer.
996 * @param pszTag Allocation tag used for statistics and such.
997 */
998RTDECL(int) RTStrToLatin1ExTag(const char *pszString, size_t cchString, char **ppsz, size_t cch, size_t *pcch, const char *pszTag);
999
1000
1001/**
1002 * Translate a Latin1 string into a UTF-8 allocating the result buffer (default
1003 * tag).
1004 *
1005 * @returns iprt status code.
1006 * @param pszString Latin1 string to convert.
1007 * @param ppszString Receives pointer of allocated UTF-8 string on
1008 * success, and is always set to NULL on failure.
1009 * The returned pointer must be freed using RTStrFree().
1010 */
1011#define RTLatin1ToUtf8(pszString, ppszString) RTLatin1ToUtf8Tag((pszString), (ppszString), RTSTR_TAG)
1012
1013/**
1014 * Translate a Latin-1 string into a UTF-8 allocating the result buffer.
1015 *
1016 * @returns iprt status code.
1017 * @param pszString Latin-1 string to convert.
1018 * @param ppszString Receives pointer of allocated UTF-8 string on
1019 * success, and is always set to NULL on failure.
1020 * The returned pointer must be freed using RTStrFree().
1021 * @param pszTag Allocation tag used for statistics and such.
1022 */
1023RTDECL(int) RTLatin1ToUtf8Tag(const char *pszString, char **ppszString, const char *pszTag);
1024
1025/**
1026 * Translates Latin-1 to UTF-8 using buffer provided by the caller or a fittingly
1027 * sized buffer allocated by the function (default tag).
1028 *
1029 * @returns iprt status code.
1030 * @param pszString The Latin-1 string to convert.
1031 * @param cchString The number of Latin-1 characters to translate from
1032 * pszString. The translation will stop when reaching
1033 * cchString or the terminator ('\\0'). Use RTSTR_MAX
1034 * to translate the entire string.
1035 * @param ppsz If cch is non-zero, this must either be pointing to
1036 * a pointer to a buffer of the specified size, or
1037 * pointer to a NULL pointer. If *ppsz is NULL or cch
1038 * is zero a buffer of at least cch chars will be
1039 * allocated to hold the translated string. If a
1040 * buffer was requested it must be freed using
1041 * RTStrFree().
1042 * @param cch The buffer size in chars (the type). This includes the terminator.
1043 * @param pcch Where to store the length of the translated string,
1044 * excluding the terminator. (Optional)
1045 *
1046 * This may be set under some error conditions,
1047 * however, only for VERR_BUFFER_OVERFLOW and
1048 * VERR_NO_STR_MEMORY will it contain a valid string
1049 * length that can be used to resize the buffer.
1050 */
1051#define RTLatin1ToUtf8Ex(pszString, cchString, ppsz, cch, pcch) \
1052 RTLatin1ToUtf8ExTag((pszString), (cchString), (ppsz), (cch), (pcch), RTSTR_TAG)
1053
1054/**
1055 * Translates Latin1 to UTF-8 using buffer provided by the caller or a fittingly
1056 * sized buffer allocated by the function (custom tag).
1057 *
1058 * @returns iprt status code.
1059 * @param pszString The Latin1 string to convert.
1060 * @param cchString The number of Latin1 characters to translate from
1061 * pwszString. The translation will stop when
1062 * reaching cchString or the terminator ('\\0'). Use
1063 * RTSTR_MAX to translate the entire string.
1064 * @param ppsz If cch is non-zero, this must either be pointing to
1065 * a pointer to a buffer of the specified size, or
1066 * pointer to a NULL pointer. If *ppsz is NULL or cch
1067 * is zero a buffer of at least cch chars will be
1068 * allocated to hold the translated string. If a
1069 * buffer was requested it must be freed using
1070 * RTStrFree().
1071 * @param cch The buffer size in chars (the type). This includes
1072 * the terminator.
1073 * @param pcch Where to store the length of the translated string,
1074 * excluding the terminator. (Optional)
1075 *
1076 * This may be set under some error conditions,
1077 * however, only for VERR_BUFFER_OVERFLOW and
1078 * VERR_NO_STR_MEMORY will it contain a valid string
1079 * length that can be used to resize the buffer.
1080 * @param pszTag Allocation tag used for statistics and such.
1081 */
1082RTDECL(int) RTLatin1ToUtf8ExTag(const char *pszString, size_t cchString, char **ppsz, size_t cch, size_t *pcch, const char *pszTag);
1083
1084/**
1085 * Calculates the length of the Latin-1 string in UTF-8 chars (bytes).
1086 *
1087 * The primary purpose of this function is to help allocate buffers for
1088 * RTLatin1ToUtf8() of the correct size. For most other purposes
1089 * RTLatin1ToUtf8Ex() should be used.
1090 *
1091 * @returns Number of chars (bytes).
1092 * @returns 0 if the string was incorrectly encoded.
1093 * @param psz The Latin-1 string.
1094 */
1095RTDECL(size_t) RTLatin1CalcUtf8Len(const char *psz);
1096
1097/**
1098 * Calculates the length of the Latin-1 string in UTF-8 chars (bytes).
1099 *
1100 * @returns iprt status code.
1101 * @param psz The string.
1102 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
1103 * @param pcch Where to store the string length (in bytes). Optional.
1104 * This is undefined on failure.
1105 */
1106RTDECL(int) RTLatin1CalcUtf8LenEx(const char *psz, size_t cch, size_t *pcch);
1107
1108/**
1109 * Get the unicode code point at the given string position.
1110 *
1111 * @returns unicode code point.
1112 * @returns RTUNICP_INVALID if the encoding is invalid.
1113 * @param psz The string.
1114 */
1115RTDECL(RTUNICP) RTStrGetCpInternal(const char *psz);
1116
1117/**
1118 * Get the unicode code point at the given string position.
1119 *
1120 * @returns iprt status code
1121 * @returns VERR_INVALID_UTF8_ENCODING if the encoding is invalid.
1122 * @param ppsz The string cursor.
1123 * This is advanced one character forward on failure.
1124 * @param pCp Where to store the unicode code point.
1125 * Stores RTUNICP_INVALID if the encoding is invalid.
1126 */
1127RTDECL(int) RTStrGetCpExInternal(const char **ppsz, PRTUNICP pCp);
1128
1129/**
1130 * Get the unicode code point at the given string position for a string of a
1131 * given length.
1132 *
1133 * @returns iprt status code
1134 * @retval VERR_INVALID_UTF8_ENCODING if the encoding is invalid.
1135 * @retval VERR_END_OF_STRING if *pcch is 0. *pCp is set to RTUNICP_INVALID.
1136 *
1137 * @param ppsz The string.
1138 * @param pcch Pointer to the length of the string. This will be
1139 * decremented by the size of the code point.
1140 * @param pCp Where to store the unicode code point.
1141 * Stores RTUNICP_INVALID if the encoding is invalid.
1142 */
1143RTDECL(int) RTStrGetCpNExInternal(const char **ppsz, size_t *pcch, PRTUNICP pCp);
1144
1145/**
1146 * Put the unicode code point at the given string position
1147 * and return the pointer to the char following it.
1148 *
1149 * This function will not consider anything at or following the
1150 * buffer area pointed to by psz. It is therefore not suitable for
1151 * inserting code points into a string, only appending/overwriting.
1152 *
1153 * @returns pointer to the char following the written code point.
1154 * @param psz The string.
1155 * @param CodePoint The code point to write.
1156 * This should not be RTUNICP_INVALID or any other
1157 * character out of the UTF-8 range.
1158 *
1159 * @remark This is a worker function for RTStrPutCp().
1160 *
1161 */
1162RTDECL(char *) RTStrPutCpInternal(char *psz, RTUNICP CodePoint);
1163
1164/**
1165 * Get the unicode code point at the given string position.
1166 *
1167 * @returns unicode code point.
1168 * @returns RTUNICP_INVALID if the encoding is invalid.
1169 * @param psz The string.
1170 *
1171 * @remark We optimize this operation by using an inline function for
1172 * the most frequent and simplest sequence, the rest is
1173 * handled by RTStrGetCpInternal().
1174 */
1175DECLINLINE(RTUNICP) RTStrGetCp(const char *psz)
1176{
1177 const unsigned char uch = *(const unsigned char *)psz;
1178 if (!(uch & RT_BIT(7)))
1179 return uch;
1180 return RTStrGetCpInternal(psz);
1181}
1182
1183/**
1184 * Get the unicode code point at the given string position.
1185 *
1186 * @returns iprt status code.
1187 * @param ppsz Pointer to the string pointer. This will be updated to
1188 * point to the char following the current code point.
1189 * This is advanced one character forward on failure.
1190 * @param pCp Where to store the code point.
1191 * RTUNICP_INVALID is stored here on failure.
1192 *
1193 * @remark We optimize this operation by using an inline function for
1194 * the most frequent and simplest sequence, the rest is
1195 * handled by RTStrGetCpExInternal().
1196 */
1197DECLINLINE(int) RTStrGetCpEx(const char **ppsz, PRTUNICP pCp)
1198{
1199 const unsigned char uch = **(const unsigned char **)ppsz;
1200 if (!(uch & RT_BIT(7)))
1201 {
1202 (*ppsz)++;
1203 *pCp = uch;
1204 return VINF_SUCCESS;
1205 }
1206 return RTStrGetCpExInternal(ppsz, pCp);
1207}
1208
1209/**
1210 * Get the unicode code point at the given string position for a string of a
1211 * given maximum length.
1212 *
1213 * @returns iprt status code.
1214 * @retval VERR_INVALID_UTF8_ENCODING if the encoding is invalid.
1215 * @retval VERR_END_OF_STRING if *pcch is 0. *pCp is set to RTUNICP_INVALID.
1216 *
1217 * @param ppsz Pointer to the string pointer. This will be updated to
1218 * point to the char following the current code point.
1219 * @param pcch Pointer to the maximum string length. This will be
1220 * decremented by the size of the code point found.
1221 * @param pCp Where to store the code point.
1222 * RTUNICP_INVALID is stored here on failure.
1223 *
1224 * @remark We optimize this operation by using an inline function for
1225 * the most frequent and simplest sequence, the rest is
1226 * handled by RTStrGetCpNExInternal().
1227 */
1228DECLINLINE(int) RTStrGetCpNEx(const char **ppsz, size_t *pcch, PRTUNICP pCp)
1229{
1230 if (RT_LIKELY(*pcch != 0))
1231 {
1232 const unsigned char uch = **(const unsigned char **)ppsz;
1233 if (!(uch & RT_BIT(7)))
1234 {
1235 (*ppsz)++;
1236 (*pcch)--;
1237 *pCp = uch;
1238 return VINF_SUCCESS;
1239 }
1240 }
1241 return RTStrGetCpNExInternal(ppsz, pcch, pCp);
1242}
1243
1244/**
1245 * Get the UTF-8 size in characters of a given Unicode code point.
1246 *
1247 * The code point is expected to be a valid Unicode one, but not necessarily in
1248 * the range supported by UTF-8.
1249 *
1250 * @returns The number of chars (bytes) required to encode the code point, or
1251 * zero if there is no UTF-8 encoding.
1252 * @param CodePoint The unicode code point.
1253 */
1254DECLINLINE(size_t) RTStrCpSize(RTUNICP CodePoint)
1255{
1256 if (CodePoint < 0x00000080)
1257 return 1;
1258 if (CodePoint < 0x00000800)
1259 return 2;
1260 if (CodePoint < 0x00010000)
1261 return 3;
1262#ifdef RT_USE_RTC_3629
1263 if (CodePoint < 0x00011000)
1264 return 4;
1265#else
1266 if (CodePoint < 0x00200000)
1267 return 4;
1268 if (CodePoint < 0x04000000)
1269 return 5;
1270 if (CodePoint < 0x7fffffff)
1271 return 6;
1272#endif
1273 return 0;
1274}
1275
1276/**
1277 * Put the unicode code point at the given string position
1278 * and return the pointer to the char following it.
1279 *
1280 * This function will not consider anything at or following the
1281 * buffer area pointed to by psz. It is therefore not suitable for
1282 * inserting code points into a string, only appending/overwriting.
1283 *
1284 * @returns pointer to the char following the written code point.
1285 * @param psz The string.
1286 * @param CodePoint The code point to write.
1287 * This should not be RTUNICP_INVALID or any other
1288 * character out of the UTF-8 range.
1289 *
1290 * @remark We optimize this operation by using an inline function for
1291 * the most frequent and simplest sequence, the rest is
1292 * handled by RTStrPutCpInternal().
1293 */
1294DECLINLINE(char *) RTStrPutCp(char *psz, RTUNICP CodePoint)
1295{
1296 if (CodePoint < 0x80)
1297 {
1298 *psz++ = (unsigned char)CodePoint;
1299 return psz;
1300 }
1301 return RTStrPutCpInternal(psz, CodePoint);
1302}
1303
1304/**
1305 * Skips ahead, past the current code point.
1306 *
1307 * @returns Pointer to the char after the current code point.
1308 * @param psz Pointer to the current code point.
1309 * @remark This will not move the next valid code point, only past the current one.
1310 */
1311DECLINLINE(char *) RTStrNextCp(const char *psz)
1312{
1313 RTUNICP Cp;
1314 RTStrGetCpEx(&psz, &Cp);
1315 return (char *)psz;
1316}
1317
1318/**
1319 * Skips back to the previous code point.
1320 *
1321 * @returns Pointer to the char before the current code point.
1322 * @returns pszStart on failure.
1323 * @param pszStart Pointer to the start of the string.
1324 * @param psz Pointer to the current code point.
1325 */
1326RTDECL(char *) RTStrPrevCp(const char *pszStart, const char *psz);
1327
1328/**
1329 * Get the unicode code point at the given string position.
1330 *
1331 * @returns unicode code point.
1332 * @returns RTUNICP_INVALID if the encoding is invalid.
1333 * @param psz The string.
1334 */
1335DECLINLINE(RTUNICP) RTLatin1GetCp(const char *psz)
1336{
1337 return *(const unsigned char *)psz;
1338}
1339
1340/**
1341 * Get the unicode code point at the given string position.
1342 *
1343 * @returns iprt status code.
1344 * @param ppsz Pointer to the string pointer. This will be updated to
1345 * point to the char following the current code point.
1346 * This is advanced one character forward on failure.
1347 * @param pCp Where to store the code point.
1348 * RTUNICP_INVALID is stored here on failure.
1349 *
1350 * @remark We optimize this operation by using an inline function for
1351 * the most frequent and simplest sequence, the rest is
1352 * handled by RTStrGetCpExInternal().
1353 */
1354DECLINLINE(int) RTLatin1GetCpEx(const char **ppsz, PRTUNICP pCp)
1355{
1356 const unsigned char uch = **(const unsigned char **)ppsz;
1357 (*ppsz)++;
1358 *pCp = uch;
1359 return VINF_SUCCESS;
1360}
1361
1362/**
1363 * Get the unicode code point at the given string position for a string of a
1364 * given maximum length.
1365 *
1366 * @returns iprt status code.
1367 * @retval VERR_END_OF_STRING if *pcch is 0. *pCp is set to RTUNICP_INVALID.
1368 *
1369 * @param ppsz Pointer to the string pointer. This will be updated to
1370 * point to the char following the current code point.
1371 * @param pcch Pointer to the maximum string length. This will be
1372 * decremented by the size of the code point found.
1373 * @param pCp Where to store the code point.
1374 * RTUNICP_INVALID is stored here on failure.
1375 */
1376DECLINLINE(int) RTLatin1GetCpNEx(const char **ppsz, size_t *pcch, PRTUNICP pCp)
1377{
1378 if (RT_LIKELY(*pcch != 0))
1379 {
1380 const unsigned char uch = **(const unsigned char **)ppsz;
1381 (*ppsz)++;
1382 (*pcch)--;
1383 *pCp = uch;
1384 return VINF_SUCCESS;
1385 }
1386 *pCp = RTUNICP_INVALID;
1387 return VERR_END_OF_STRING;
1388}
1389
1390/**
1391 * Get the Latin-1 size in characters of a given Unicode code point.
1392 *
1393 * The code point is expected to be a valid Unicode one, but not necessarily in
1394 * the range supported by Latin-1.
1395 *
1396 * @returns the size in characters, or zero if there is no Latin-1 encoding
1397 */
1398DECLINLINE(size_t) RTLatin1CpSize(RTUNICP CodePoint)
1399{
1400 if (CodePoint < 0x100)
1401 return 1;
1402 return 0;
1403}
1404
1405/**
1406 * Put the unicode code point at the given string position
1407 * and return the pointer to the char following it.
1408 *
1409 * This function will not consider anything at or following the
1410 * buffer area pointed to by psz. It is therefore not suitable for
1411 * inserting code points into a string, only appending/overwriting.
1412 *
1413 * @returns pointer to the char following the written code point.
1414 * @param psz The string.
1415 * @param CodePoint The code point to write.
1416 * This should not be RTUNICP_INVALID or any other
1417 * character out of the Latin-1 range.
1418 */
1419DECLINLINE(char *) RTLatin1PutCp(char *psz, RTUNICP CodePoint)
1420{
1421 AssertReturn(CodePoint < 0x100, NULL);
1422 *psz++ = (unsigned char)CodePoint;
1423 return psz;
1424}
1425
1426/**
1427 * Skips ahead, past the current code point.
1428 *
1429 * @returns Pointer to the char after the current code point.
1430 * @param psz Pointer to the current code point.
1431 * @remark This will not move the next valid code point, only past the current one.
1432 */
1433DECLINLINE(char *) RTLatin1NextCp(const char *psz)
1434{
1435 psz++;
1436 return (char *)psz;
1437}
1438
1439/**
1440 * Skips back to the previous code point.
1441 *
1442 * @returns Pointer to the char before the current code point.
1443 * @returns pszStart on failure.
1444 * @param pszStart Pointer to the start of the string.
1445 * @param psz Pointer to the current code point.
1446 */
1447DECLINLINE(char *) RTLatin1PrevCp(const char *psz)
1448{
1449 psz--;
1450 return (char *)psz;
1451}
1452
1453
1454/** @page pg_rt_str_format The IPRT Format Strings
1455 *
1456 * IPRT implements most of the commonly used format types and flags with the
1457 * exception of floating point which is completely missing. In addition IPRT
1458 * provides a number of IPRT specific format types for the IPRT typedefs and
1459 * other useful things. Note that several of these extensions are similar to
1460 * \%p and doesn't care much if you try add formating flags/width/precision.
1461 *
1462 *
1463 * Group 0a, The commonly used format types:
1464 * - \%s - Takes a pointer to a zero terminated string (UTF-8) and
1465 * prints it with the optionally adjustment (width, -) and
1466 * length restriction (precision).
1467 * - \%ls - Same as \%s except that the input is UTF-16 (output UTF-8).
1468 * - \%Ls - Same as \%s except that the input is UCS-32 (output UTF-8).
1469 * - \%S - Same as \%s, used to convert to current codeset but this is
1470 * now done by the streams code. Deprecated, use \%s.
1471 * - \%lS - Ditto. Deprecated, use \%ls.
1472 * - \%LS - Ditto. Deprecated, use \%Ls.
1473 * - \%c - Takes a char and prints it.
1474 * - \%d - Takes a signed integer and prints it as decimal. Thousand
1475 * separator (\'), zero padding (0), adjustment (-+), width,
1476 * precision
1477 * - \%i - Same as \%d.
1478 * - \%u - Takes an unsigned integer and prints it as decimal. Thousand
1479 * separator (\'), zero padding (0), adjustment (-+), width,
1480 * precision
1481 * - \%x - Takes an unsigned integer and prints it as lowercased
1482 * hexadecimal. The special hash (\#) flag causes a '0x'
1483 * prefixed to be printed. Zero padding (0), adjustment (-+),
1484 * width, precision.
1485 * - \%X - Same as \%x except that it is uppercased.
1486 * - \%o - Takes an unsigned (?) integer and prints it as octal. Zero
1487 * padding (0), adjustment (-+), width, precision.
1488 * - \%p - Takes a pointer (void technically) and prints it. Zero
1489 * padding (0), adjustment (-+), width, precision.
1490 *
1491 * The \%d, \%i, \%u, \%x, \%X and \%o format types support the following
1492 * argument type specifiers:
1493 * - \%ll - long long (uint64_t).
1494 * - \%L - long long (uint64_t).
1495 * - \%l - long (uint32_t, uint64_t)
1496 * - \%h - short (int16_t).
1497 * - \%hh - char (int8_t).
1498 * - \%H - char (int8_t).
1499 * - \%z - size_t.
1500 * - \%j - intmax_t (int64_t).
1501 * - \%t - ptrdiff_t.
1502 * The type in parentheses is typical sizes, however when printing those types
1503 * you are better off using the special group 2 format types below (\%RX32 and
1504 * such).
1505 *
1506 *
1507 * Group 0b, IPRT format tricks:
1508 * - %M - Replaces the format string, takes a string pointer.
1509 * - %N - Nested formatting, takes a pointer to a format string
1510 * followed by the pointer to a va_list variable. The va_list
1511 * variable will not be modified and the caller must do va_end()
1512 * on it. Make sure the va_list variable is NOT in a parameter
1513 * list or some gcc versions/targets may get it all wrong.
1514 *
1515 *
1516 * Group 1, the basic runtime typedefs (excluding those which obviously are
1517 * pointer):
1518 * - \%RTbool - Takes a bool value and prints 'true', 'false', or '!%d!'.
1519 * - \%RTfile - Takes a #RTFILE value.
1520 * - \%RTfmode - Takes a #RTFMODE value.
1521 * - \%RTfoff - Takes a #RTFOFF value.
1522 * - \%RTfp16 - Takes a #RTFAR16 value.
1523 * - \%RTfp32 - Takes a #RTFAR32 value.
1524 * - \%RTfp64 - Takes a #RTFAR64 value.
1525 * - \%RTgid - Takes a #RTGID value.
1526 * - \%RTino - Takes a #RTINODE value.
1527 * - \%RTint - Takes a #RTINT value.
1528 * - \%RTiop - Takes a #RTIOPORT value.
1529 * - \%RTldrm - Takes a #RTLDRMOD value.
1530 * - \%RTmac - Takes a #PCRTMAC pointer.
1531 * - \%RTnaddr - Takes a #PCRTNETADDR value.
1532 * - \%RTnaipv4 - Takes a #RTNETADDRIPV4 value.
1533 * - \%RTnaipv6 - Takes a #PCRTNETADDRIPV6 value.
1534 * - \%RTnthrd - Takes a #RTNATIVETHREAD value.
1535 * - \%RTnthrd - Takes a #RTNATIVETHREAD value.
1536 * - \%RTproc - Takes a #RTPROCESS value.
1537 * - \%RTptr - Takes a #RTINTPTR or #RTUINTPTR value (but not void *).
1538 * - \%RTreg - Takes a #RTCCUINTREG value.
1539 * - \%RTsel - Takes a #RTSEL value.
1540 * - \%RTsem - Takes a #RTSEMEVENT, #RTSEMEVENTMULTI, #RTSEMMUTEX, #RTSEMFASTMUTEX, or #RTSEMRW value.
1541 * - \%RTsock - Takes a #RTSOCKET value.
1542 * - \%RTthrd - Takes a #RTTHREAD value.
1543 * - \%RTuid - Takes a #RTUID value.
1544 * - \%RTuint - Takes a #RTUINT value.
1545 * - \%RTunicp - Takes a #RTUNICP value.
1546 * - \%RTutf16 - Takes a #RTUTF16 value.
1547 * - \%RTuuid - Takes a #PCRTUUID and will print the UUID as a string.
1548 * - \%RTxuint - Takes a #RTUINT or #RTINT value, formatting it as hex.
1549 * - \%RGi - Takes a #RTGCINT value.
1550 * - \%RGp - Takes a #RTGCPHYS value.
1551 * - \%RGr - Takes a #RTGCUINTREG value.
1552 * - \%RGu - Takes a #RTGCUINT value.
1553 * - \%RGv - Takes a #RTGCPTR, #RTGCINTPTR or #RTGCUINTPTR value.
1554 * - \%RGx - Takes a #RTGCUINT or #RTGCINT value, formatting it as hex.
1555 * - \%RHi - Takes a #RTHCINT value.
1556 * - \%RHp - Takes a #RTHCPHYS value.
1557 * - \%RHr - Takes a #RTHCUINTREG value.
1558 * - \%RHu - Takes a #RTHCUINT value.
1559 * - \%RHv - Takes a #RTHCPTR, #RTHCINTPTR or #RTHCUINTPTR value.
1560 * - \%RHx - Takes a #RTHCUINT or #RTHCINT value, formatting it as hex.
1561 * - \%RRv - Takes a #RTRCPTR, #RTRCINTPTR or #RTRCUINTPTR value.
1562 * - \%RCi - Takes a #RTINT value.
1563 * - \%RCp - Takes a #RTCCPHYS value.
1564 * - \%RCr - Takes a #RTCCUINTREG value.
1565 * - \%RCu - Takes a #RTUINT value.
1566 * - \%RCv - Takes a #uintptr_t, #intptr_t, void * value.
1567 * - \%RCx - Takes a #RTUINT or #RTINT value, formatting it as hex.
1568 *
1569 *
1570 * Group 2, the generic integer types which are prefered over relying on what
1571 * bit-count a 'long', 'short', or 'long long' has on a platform. This are
1572 * highly prefered for the [u]intXX_t kind of types:
1573 * - \%RI[8|16|32|64] - Signed integer value of the specifed bit count.
1574 * - \%RU[8|16|32|64] - Unsigned integer value of the specifed bit count.
1575 * - \%RX[8|16|32|64] - Hexadecimal integer value of the specifed bit count.
1576 *
1577 *
1578 * Group 3, hex dumpers and other complex stuff which requires more than simple
1579 * formatting:
1580 * - \%Rhxd - Takes a pointer to the memory which is to be dumped in typical
1581 * hex format. Use the precision to specify the length, and the width to
1582 * set the number of bytes per line. Default width and precision is 16.
1583 * - \%Rhxs - Takes a pointer to the memory to be displayed as a hex string,
1584 * i.e. a series of space separated bytes formatted as two digit hex value.
1585 * Use the precision to specify the length. Default length is 16 bytes.
1586 * The width, if specified, is ignored.
1587 * - \%Rrc - Takes an integer iprt status code as argument. Will insert the
1588 * status code define corresponding to the iprt status code.
1589 * - \%Rrs - Takes an integer iprt status code as argument. Will insert the
1590 * short description of the specified status code.
1591 * - \%Rrf - Takes an integer iprt status code as argument. Will insert the
1592 * full description of the specified status code.
1593 * - \%Rra - Takes an integer iprt status code as argument. Will insert the
1594 * status code define + full description.
1595 * - \%Rwc - Takes a long Windows error code as argument. Will insert the status
1596 * code define corresponding to the Windows error code.
1597 * - \%Rwf - Takes a long Windows error code as argument. Will insert the
1598 * full description of the specified status code.
1599 * - \%Rwa - Takes a long Windows error code as argument. Will insert the
1600 * error code define + full description.
1601 *
1602 * - \%Rhrc - Takes a COM/XPCOM status code as argument. Will insert the status
1603 * code define corresponding to the Windows error code.
1604 * - \%Rhrf - Takes a COM/XPCOM status code as argument. Will insert the
1605 * full description of the specified status code.
1606 * - \%Rhra - Takes a COM/XPCOM error code as argument. Will insert the
1607 * error code define + full description.
1608 *
1609 * - \%Rfn - Pretty printing of a function or method. It drops the
1610 * return code and parameter list.
1611 * - \%Rbn - Prints the base name. For dropping the path in
1612 * order to save space when printing a path name.
1613 *
1614 * On other platforms, \%Rw? simply prints the argument in a form of 0xXXXXXXXX.
1615 *
1616 *
1617 * Group 4, structure dumpers:
1618 * - \%RDtimespec - Takes a PCRTTIMESPEC.
1619 *
1620 *
1621 * Group 5, XML / HTML escapers:
1622 * - \%RMas - Takes a string pointer (const char *) and outputs
1623 * it as an attribute value with the proper escaping.
1624 * This typically ends up in double quotes.
1625 *
1626 * - \%RMes - Takes a string pointer (const char *) and outputs
1627 * it as an element with the necessary escaping.
1628 *
1629 * Group 6, CPU Architecture Register dumpers:
1630 * - \%RAx86[reg] - Takes a 64-bit register value if the register is
1631 * 64-bit or smaller. Check the code wrt which
1632 * registers are implemented.
1633 *
1634 */
1635
1636#ifndef DECLARED_FNRTSTROUTPUT /* duplicated in iprt/log.h */
1637# define DECLARED_FNRTSTROUTPUT
1638/**
1639 * Output callback.
1640 *
1641 * @returns number of bytes written.
1642 * @param pvArg User argument.
1643 * @param pachChars Pointer to an array of utf-8 characters.
1644 * @param cbChars Number of bytes in the character array pointed to by pachChars.
1645 */
1646typedef DECLCALLBACK(size_t) FNRTSTROUTPUT(void *pvArg, const char *pachChars, size_t cbChars);
1647/** Pointer to callback function. */
1648typedef FNRTSTROUTPUT *PFNRTSTROUTPUT;
1649#endif
1650
1651/** Format flag.
1652 * These are used by RTStrFormat extensions and RTStrFormatNumber, mind
1653 * that not all flags makes sense to both of the functions.
1654 * @{ */
1655#define RTSTR_F_CAPITAL 0x0001
1656#define RTSTR_F_LEFT 0x0002
1657#define RTSTR_F_ZEROPAD 0x0004
1658#define RTSTR_F_SPECIAL 0x0008
1659#define RTSTR_F_VALSIGNED 0x0010
1660#define RTSTR_F_PLUS 0x0020
1661#define RTSTR_F_BLANK 0x0040
1662#define RTSTR_F_WIDTH 0x0080
1663#define RTSTR_F_PRECISION 0x0100
1664#define RTSTR_F_THOUSAND_SEP 0x0200
1665
1666#define RTSTR_F_BIT_MASK 0xf800
1667#define RTSTR_F_8BIT 0x0800
1668#define RTSTR_F_16BIT 0x1000
1669#define RTSTR_F_32BIT 0x2000
1670#define RTSTR_F_64BIT 0x4000
1671#define RTSTR_F_128BIT 0x8000
1672/** @} */
1673
1674/** @def RTSTR_GET_BIT_FLAG
1675 * Gets the bit flag for the specified type.
1676 */
1677#define RTSTR_GET_BIT_FLAG(type) \
1678 ( sizeof(type) * 8 == 32 ? RTSTR_F_32BIT \
1679 : sizeof(type) * 8 == 64 ? RTSTR_F_64BIT \
1680 : sizeof(type) * 8 == 16 ? RTSTR_F_16BIT \
1681 : sizeof(type) * 8 == 8 ? RTSTR_F_8BIT \
1682 : sizeof(type) * 8 == 128 ? RTSTR_F_128BIT \
1683 : 0)
1684
1685
1686/**
1687 * Callback to format non-standard format specifiers.
1688 *
1689 * @returns The number of bytes formatted.
1690 * @param pvArg Formatter argument.
1691 * @param pfnOutput Pointer to output function.
1692 * @param pvArgOutput Argument for the output function.
1693 * @param ppszFormat Pointer to the format string pointer. Advance this till the char
1694 * after the format specifier.
1695 * @param pArgs Pointer to the argument list. Use this to fetch the arguments.
1696 * @param cchWidth Format Width. -1 if not specified.
1697 * @param cchPrecision Format Precision. -1 if not specified.
1698 * @param fFlags Flags (RTSTR_NTFS_*).
1699 * @param chArgSize The argument size specifier, 'l' or 'L'.
1700 */
1701typedef DECLCALLBACK(size_t) FNSTRFORMAT(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
1702 const char **ppszFormat, va_list *pArgs, int cchWidth,
1703 int cchPrecision, unsigned fFlags, char chArgSize);
1704/** Pointer to a FNSTRFORMAT() function. */
1705typedef FNSTRFORMAT *PFNSTRFORMAT;
1706
1707
1708/**
1709 * Partial implementation of a printf like formatter.
1710 * It doesn't do everything correct, and there is no floating point support.
1711 * However, it supports custom formats by the means of a format callback.
1712 *
1713 * @returns number of bytes formatted.
1714 * @param pfnOutput Output worker.
1715 * Called in two ways. Normally with a string and its length.
1716 * For termination, it's called with NULL for string, 0 for length.
1717 * @param pvArgOutput Argument to the output worker.
1718 * @param pfnFormat Custom format worker.
1719 * @param pvArgFormat Argument to the format worker.
1720 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1721 * @param InArgs Argument list.
1722 */
1723RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list InArgs);
1724
1725/**
1726 * Partial implementation of a printf like formatter.
1727 * It doesn't do everything correct, and there is no floating point support.
1728 * However, it supports custom formats by the means of a format callback.
1729 *
1730 * @returns number of bytes formatted.
1731 * @param pfnOutput Output worker.
1732 * Called in two ways. Normally with a string and its length.
1733 * For termination, it's called with NULL for string, 0 for length.
1734 * @param pvArgOutput Argument to the output worker.
1735 * @param pfnFormat Custom format worker.
1736 * @param pvArgFormat Argument to the format worker.
1737 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1738 * @param ... Argument list.
1739 */
1740RTDECL(size_t) RTStrFormat(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, ...);
1741
1742/**
1743 * Formats an integer number according to the parameters.
1744 *
1745 * @returns Length of the formatted number.
1746 * @param psz Pointer to output string buffer of sufficient size.
1747 * @param u64Value Value to format.
1748 * @param uiBase Number representation base.
1749 * @param cchWidth Width.
1750 * @param cchPrecision Precision.
1751 * @param fFlags Flags, RTSTR_F_XXX.
1752 */
1753RTDECL(int) RTStrFormatNumber(char *psz, uint64_t u64Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, unsigned int fFlags);
1754
1755/**
1756 * Formats an unsigned 8-bit number.
1757 *
1758 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1759 * @param pszBuf The output buffer.
1760 * @param cbBuf The size of the output buffer.
1761 * @param u8Value The value to format.
1762 * @param uiBase Number representation base.
1763 * @param cchWidth Width.
1764 * @param cchPrecision Precision.
1765 * @param fFlags Flags, RTSTR_F_XXX.
1766 */
1767RTDECL(ssize_t) RTStrFormatU8(char *pszBuf, size_t cbBuf, uint8_t u8Value, unsigned int uiBase,
1768 signed int cchWidth, signed int cchPrecision, uint32_t fFlags);
1769
1770/**
1771 * Formats an unsigned 16-bit number.
1772 *
1773 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1774 * @param pszBuf The output buffer.
1775 * @param cbBuf The size of the output buffer.
1776 * @param u16Value The value to format.
1777 * @param uiBase Number representation base.
1778 * @param cchWidth Width.
1779 * @param cchPrecision Precision.
1780 * @param fFlags Flags, RTSTR_F_XXX.
1781 */
1782RTDECL(ssize_t) RTStrFormatU16(char *pszBuf, size_t cbBuf, uint16_t u16Value, unsigned int uiBase,
1783 signed int cchWidth, signed int cchPrecision, uint32_t fFlags);
1784
1785/**
1786 * Formats an unsigned 32-bit number.
1787 *
1788 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1789 * @param pszBuf The output buffer.
1790 * @param cbBuf The size of the output buffer.
1791 * @param u32Value The value to format.
1792 * @param uiBase Number representation base.
1793 * @param cchWidth Width.
1794 * @param cchPrecision Precision.
1795 * @param fFlags Flags, RTSTR_F_XXX.
1796 */
1797RTDECL(ssize_t) RTStrFormatU32(char *pszBuf, size_t cbBuf, uint32_t u32Value, unsigned int uiBase,
1798 signed int cchWidth, signed int cchPrecision, uint32_t fFlags);
1799
1800/**
1801 * Formats an unsigned 64-bit number.
1802 *
1803 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1804 * @param pszBuf The output buffer.
1805 * @param cbBuf The size of the output buffer.
1806 * @param u64Value The value to format.
1807 * @param uiBase Number representation base.
1808 * @param cchWidth Width.
1809 * @param cchPrecision Precision.
1810 * @param fFlags Flags, RTSTR_F_XXX.
1811 */
1812RTDECL(ssize_t) RTStrFormatU64(char *pszBuf, size_t cbBuf, uint64_t u64Value, unsigned int uiBase,
1813 signed int cchWidth, signed int cchPrecision, uint32_t fFlags);
1814
1815/**
1816 * Formats an unsigned 128-bit number.
1817 *
1818 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1819 * @param pszBuf The output buffer.
1820 * @param cbBuf The size of the output buffer.
1821 * @param pu128Value The value to format.
1822 * @param uiBase Number representation base.
1823 * @param cchWidth Width.
1824 * @param cchPrecision Precision.
1825 * @param fFlags Flags, RTSTR_F_XXX.
1826 */
1827RTDECL(ssize_t) RTStrFormatU128(char *pszBuf, size_t cbBuf, PCRTUINT128U pu128Value, unsigned int uiBase,
1828 signed int cchWidth, signed int cchPrecision, uint32_t fFlags);
1829
1830/**
1831 * Formats an 80-bit extended floating point number.
1832 *
1833 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1834 * @param pszBuf The output buffer.
1835 * @param cbBuf The size of the output buffer.
1836 * @param pr80Value The value to format.
1837 * @param cchWidth Width.
1838 * @param cchPrecision Precision.
1839 * @param fFlags Flags, RTSTR_F_XXX.
1840 */
1841RTDECL(ssize_t) RTStrFormatR80(char *pszBuf, size_t cbBuf, PCRTFLOAT80U pr80Value, signed int cchWidth,
1842 signed int cchPrecision, uint32_t fFlags);
1843
1844/**
1845 * Formats an 80-bit extended floating point number, version 2.
1846 *
1847 * @returns The length of the formatted number or VERR_BUFFER_OVERFLOW.
1848 * @param pszBuf The output buffer.
1849 * @param cbBuf The size of the output buffer.
1850 * @param pr80Value The value to format.
1851 * @param cchWidth Width.
1852 * @param cchPrecision Precision.
1853 * @param fFlags Flags, RTSTR_F_XXX.
1854 */
1855RTDECL(ssize_t) RTStrFormatR80u2(char *pszBuf, size_t cbBuf, PCRTFLOAT80U2 pr80Value, signed int cchWidth,
1856 signed int cchPrecision, uint32_t fFlags);
1857
1858
1859
1860/**
1861 * Callback for formatting a type.
1862 *
1863 * This is registered using the RTStrFormatTypeRegister function and will
1864 * be called during string formatting to handle the specified %R[type].
1865 * The argument for this format type is assumed to be a pointer and it's
1866 * passed in the @a pvValue argument.
1867 *
1868 * @returns Length of the formatted output.
1869 * @param pfnOutput Output worker.
1870 * @param pvArgOutput Argument to the output worker.
1871 * @param pszType The type name.
1872 * @param pvValue The argument value.
1873 * @param cchWidth Width.
1874 * @param cchPrecision Precision.
1875 * @param fFlags Flags (NTFS_*).
1876 * @param pvUser The user argument.
1877 */
1878typedef DECLCALLBACK(size_t) FNRTSTRFORMATTYPE(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
1879 const char *pszType, void const *pvValue,
1880 int cchWidth, int cchPrecision, unsigned fFlags,
1881 void *pvUser);
1882/** Pointer to a FNRTSTRFORMATTYPE. */
1883typedef FNRTSTRFORMATTYPE *PFNRTSTRFORMATTYPE;
1884
1885
1886/**
1887 * Register a format handler for a type.
1888 *
1889 * The format handler is used to handle '%R[type]' format types, where the argument
1890 * in the vector is a pointer value (a bit restrictive, but keeps it simple).
1891 *
1892 * The caller must ensure that no other thread will be making use of any of
1893 * the dynamic formatting type facilities simultaneously with this call.
1894 *
1895 * @returns IPRT status code.
1896 * @retval VINF_SUCCESS on success.
1897 * @retval VERR_ALREADY_EXISTS if the type has already been registered.
1898 * @retval VERR_TOO_MANY_OPEN_FILES if all the type slots has been allocated already.
1899 *
1900 * @param pszType The type name.
1901 * @param pfnHandler The handler address. See FNRTSTRFORMATTYPE for details.
1902 * @param pvUser The user argument to pass to the handler. See RTStrFormatTypeSetUser
1903 * for how to update this later.
1904 */
1905RTDECL(int) RTStrFormatTypeRegister(const char *pszType, PFNRTSTRFORMATTYPE pfnHandler, void *pvUser);
1906
1907/**
1908 * Deregisters a format type.
1909 *
1910 * The caller must ensure that no other thread will be making use of any of
1911 * the dynamic formatting type facilities simultaneously with this call.
1912 *
1913 * @returns IPRT status code.
1914 * @retval VINF_SUCCESS on success.
1915 * @retval VERR_FILE_NOT_FOUND if not found.
1916 *
1917 * @param pszType The type to deregister.
1918 */
1919RTDECL(int) RTStrFormatTypeDeregister(const char *pszType);
1920
1921/**
1922 * Sets the user argument for a type.
1923 *
1924 * This can be used if a user argument needs relocating in GC.
1925 *
1926 * @returns IPRT status code.
1927 * @retval VINF_SUCCESS on success.
1928 * @retval VERR_FILE_NOT_FOUND if not found.
1929 *
1930 * @param pszType The type to update.
1931 * @param pvUser The new user argument value.
1932 */
1933RTDECL(int) RTStrFormatTypeSetUser(const char *pszType, void *pvUser);
1934
1935
1936/**
1937 * String printf.
1938 *
1939 * @returns The length of the returned string (in pszBuffer) excluding the
1940 * terminator.
1941 * @param pszBuffer Output buffer.
1942 * @param cchBuffer Size of the output buffer.
1943 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1944 * @param args The format argument.
1945 */
1946RTDECL(size_t) RTStrPrintfV(char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
1947
1948/**
1949 * String printf.
1950 *
1951 * @returns The length of the returned string (in pszBuffer) excluding the
1952 * terminator.
1953 * @param pszBuffer Output buffer.
1954 * @param cchBuffer Size of the output buffer.
1955 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1956 * @param ... The format argument.
1957 */
1958RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
1959
1960
1961/**
1962 * String printf with custom formatting.
1963 *
1964 * @returns The length of the returned string (in pszBuffer) excluding the
1965 * terminator.
1966 * @param pfnFormat Pointer to handler function for the custom formats.
1967 * @param pvArg Argument to the pfnFormat function.
1968 * @param pszBuffer Output buffer.
1969 * @param cchBuffer Size of the output buffer.
1970 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1971 * @param args The format argument.
1972 */
1973RTDECL(size_t) RTStrPrintfExV(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
1974
1975/**
1976 * String printf with custom formatting.
1977 *
1978 * @returns The length of the returned string (in pszBuffer) excluding the
1979 * terminator.
1980 * @param pfnFormat Pointer to handler function for the custom formats.
1981 * @param pvArg Argument to the pfnFormat function.
1982 * @param pszBuffer Output buffer.
1983 * @param cchBuffer Size of the output buffer.
1984 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
1985 * @param ... The format argument.
1986 */
1987RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
1988
1989
1990/**
1991 * Allocating string printf (default tag).
1992 *
1993 * @returns The length of the string in the returned *ppszBuffer excluding the
1994 * terminator.
1995 * @returns -1 on failure.
1996 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
1997 * The buffer should be freed using RTStrFree().
1998 * On failure *ppszBuffer will be set to NULL.
1999 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2000 * @param args The format argument.
2001 */
2002#define RTStrAPrintfV(ppszBuffer, pszFormat, args) RTStrAPrintfVTag((ppszBuffer), (pszFormat), (args), RTSTR_TAG)
2003
2004/**
2005 * Allocating string printf (custom tag).
2006 *
2007 * @returns The length of the string in the returned *ppszBuffer excluding the
2008 * terminator.
2009 * @returns -1 on failure.
2010 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
2011 * The buffer should be freed using RTStrFree().
2012 * On failure *ppszBuffer will be set to NULL.
2013 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2014 * @param args The format argument.
2015 * @param pszTag Allocation tag used for statistics and such.
2016 */
2017RTDECL(int) RTStrAPrintfVTag(char **ppszBuffer, const char *pszFormat, va_list args, const char *pszTag);
2018
2019/**
2020 * Allocating string printf.
2021 *
2022 * @returns The length of the string in the returned *ppszBuffer excluding the
2023 * terminator.
2024 * @returns -1 on failure.
2025 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
2026 * The buffer should be freed using RTStrFree().
2027 * On failure *ppszBuffer will be set to NULL.
2028 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2029 * @param ... The format argument.
2030 */
2031DECLINLINE(int) RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...)
2032{
2033 int cbRet;
2034 va_list va;
2035 va_start(va, pszFormat);
2036 cbRet = RTStrAPrintfVTag(ppszBuffer, pszFormat, va, RTSTR_TAG);
2037 va_end(va);
2038 return cbRet;
2039}
2040
2041/**
2042 * Allocating string printf (custom tag).
2043 *
2044 * @returns The length of the string in the returned *ppszBuffer excluding the
2045 * terminator.
2046 * @returns -1 on failure.
2047 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
2048 * The buffer should be freed using RTStrFree().
2049 * On failure *ppszBuffer will be set to NULL.
2050 * @param pszTag Allocation tag used for statistics and such.
2051 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2052 * @param ... The format argument.
2053 */
2054DECLINLINE(int) RTStrAPrintfTag(char **ppszBuffer, const char *pszTag, const char *pszFormat, ...)
2055{
2056 int cbRet;
2057 va_list va;
2058 va_start(va, pszFormat);
2059 cbRet = RTStrAPrintfVTag(ppszBuffer, pszFormat, va, pszTag);
2060 va_end(va);
2061 return cbRet;
2062}
2063
2064/**
2065 * Allocating string printf, version 2.
2066 *
2067 * @returns Formatted string. Use RTStrFree() to free it. NULL when out of
2068 * memory.
2069 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2070 * @param args The format argument.
2071 */
2072#define RTStrAPrintf2V(pszFormat, args) RTStrAPrintf2VTag((pszFormat), (args), RTSTR_TAG)
2073
2074/**
2075 * Allocating string printf, version 2.
2076 *
2077 * @returns Formatted string. Use RTStrFree() to free it. NULL when out of
2078 * memory.
2079 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2080 * @param args The format argument.
2081 * @param pszTag Allocation tag used for statistics and such.
2082 */
2083RTDECL(char *) RTStrAPrintf2VTag(const char *pszFormat, va_list args, const char *pszTag);
2084
2085/**
2086 * Allocating string printf, version 2 (default tag).
2087 *
2088 * @returns Formatted string. Use RTStrFree() to free it. NULL when out of
2089 * memory.
2090 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2091 * @param ... The format argument.
2092 */
2093DECLINLINE(char *) RTStrAPrintf2(const char *pszFormat, ...)
2094{
2095 char *pszRet;
2096 va_list va;
2097 va_start(va, pszFormat);
2098 pszRet = RTStrAPrintf2VTag(pszFormat, va, RTSTR_TAG);
2099 va_end(va);
2100 return pszRet;
2101}
2102
2103/**
2104 * Allocating string printf, version 2 (custom tag).
2105 *
2106 * @returns Formatted string. Use RTStrFree() to free it. NULL when out of
2107 * memory.
2108 * @param pszTag Allocation tag used for statistics and such.
2109 * @param pszFormat Pointer to the format string, @see pg_rt_str_format.
2110 * @param ... The format argument.
2111 */
2112DECLINLINE(char *) RTStrAPrintf2Tag(const char *pszTag, const char *pszFormat, ...)
2113{
2114 char *pszRet;
2115 va_list va;
2116 va_start(va, pszFormat);
2117 pszRet = RTStrAPrintf2VTag(pszFormat, va, pszTag);
2118 va_end(va);
2119 return pszRet;
2120}
2121
2122/**
2123 * Strips blankspaces from both ends of the string.
2124 *
2125 * @returns Pointer to first non-blank char in the string.
2126 * @param psz The string to strip.
2127 */
2128RTDECL(char *) RTStrStrip(char *psz);
2129
2130/**
2131 * Strips blankspaces from the start of the string.
2132 *
2133 * @returns Pointer to first non-blank char in the string.
2134 * @param psz The string to strip.
2135 */
2136RTDECL(char *) RTStrStripL(const char *psz);
2137
2138/**
2139 * Strips blankspaces from the end of the string.
2140 *
2141 * @returns psz.
2142 * @param psz The string to strip.
2143 */
2144RTDECL(char *) RTStrStripR(char *psz);
2145
2146/**
2147 * String copy with overflow handling.
2148 *
2149 * @retval VINF_SUCCESS on success.
2150 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2151 * buffer will contain as much of the string as it can hold, fully
2152 * terminated.
2153 *
2154 * @param pszDst The destination buffer.
2155 * @param cbDst The size of the destination buffer (in bytes).
2156 * @param pszSrc The source string. NULL is not OK.
2157 */
2158RTDECL(int) RTStrCopy(char *pszDst, size_t cbDst, const char *pszSrc);
2159
2160/**
2161 * String copy with overflow handling.
2162 *
2163 * @retval VINF_SUCCESS on success.
2164 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2165 * buffer will contain as much of the string as it can hold, fully
2166 * terminated.
2167 *
2168 * @param pszDst The destination buffer.
2169 * @param cbDst The size of the destination buffer (in bytes).
2170 * @param pszSrc The source string. NULL is not OK.
2171 * @param cchSrcMax The maximum number of chars (not code points) to
2172 * copy from the source string, not counting the
2173 * terminator as usual.
2174 */
2175RTDECL(int) RTStrCopyEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchSrcMax);
2176
2177/**
2178 * String copy with overflow handling and buffer advancing.
2179 *
2180 * @retval VINF_SUCCESS on success.
2181 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2182 * buffer will contain as much of the string as it can hold, fully
2183 * terminated.
2184 *
2185 * @param ppszDst Pointer to the destination buffer pointer.
2186 * This will be advanced to the end of the copied
2187 * bytes (points at the terminator). This is also
2188 * updated on overflow.
2189 * @param pcbDst Pointer to the destination buffer size
2190 * variable. This will be updated in accord with
2191 * the buffer pointer.
2192 * @param pszSrc The source string. NULL is not OK.
2193 */
2194RTDECL(int) RTStrCopyP(char **ppszDst, size_t *pcbDst, const char *pszSrc);
2195
2196/**
2197 * String copy with overflow handling.
2198 *
2199 * @retval VINF_SUCCESS on success.
2200 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2201 * buffer will contain as much of the string as it can hold, fully
2202 * terminated.
2203 *
2204 * @param ppszDst Pointer to the destination buffer pointer.
2205 * This will be advanced to the end of the copied
2206 * bytes (points at the terminator). This is also
2207 * updated on overflow.
2208 * @param pcbDst Pointer to the destination buffer size
2209 * variable. This will be updated in accord with
2210 * the buffer pointer.
2211 * @param pszSrc The source string. NULL is not OK.
2212 * @param cchSrcMax The maximum number of chars (not code points) to
2213 * copy from the source string, not counting the
2214 * terminator as usual.
2215 */
2216RTDECL(int) RTStrCopyPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchSrcMax);
2217
2218/**
2219 * String concatenation with overflow handling.
2220 *
2221 * @retval VINF_SUCCESS on success.
2222 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2223 * buffer will contain as much of the string as it can hold, fully
2224 * terminated.
2225 *
2226 * @param pszDst The destination buffer.
2227 * @param cbDst The size of the destination buffer (in bytes).
2228 * @param pszSrc The source string. NULL is not OK.
2229 */
2230RTDECL(int) RTStrCat(char *pszDst, size_t cbDst, const char *pszSrc);
2231
2232/**
2233 * String concatenation with overflow handling.
2234 *
2235 * @retval VINF_SUCCESS on success.
2236 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2237 * buffer will contain as much of the string as it can hold, fully
2238 * terminated.
2239 *
2240 * @param pszDst The destination buffer.
2241 * @param cbDst The size of the destination buffer (in bytes).
2242 * @param pszSrc The source string. NULL is not OK.
2243 * @param cchSrcMax The maximum number of chars (not code points) to
2244 * copy from the source string, not counting the
2245 * terminator as usual.
2246 */
2247RTDECL(int) RTStrCatEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchSrcMax);
2248
2249/**
2250 * String concatenation with overflow handling.
2251 *
2252 * @retval VINF_SUCCESS on success.
2253 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2254 * buffer will contain as much of the string as it can hold, fully
2255 * terminated.
2256 *
2257 * @param ppszDst Pointer to the destination buffer pointer.
2258 * This will be advanced to the end of the copied
2259 * bytes (points at the terminator). This is also
2260 * updated on overflow.
2261 * @param pcbDst Pointer to the destination buffer size
2262 * variable. This will be updated in accord with
2263 * the buffer pointer.
2264 * @param pszSrc The source string. NULL is not OK.
2265 */
2266RTDECL(int) RTStrCatP(char **ppszDst, size_t *pcbDst, const char *pszSrc);
2267
2268/**
2269 * String concatenation with overflow handling and buffer advancing.
2270 *
2271 * @retval VINF_SUCCESS on success.
2272 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small. The
2273 * buffer will contain as much of the string as it can hold, fully
2274 * terminated.
2275 *
2276 * @param ppszDst Pointer to the destination buffer pointer.
2277 * This will be advanced to the end of the copied
2278 * bytes (points at the terminator). This is also
2279 * updated on overflow.
2280 * @param pcbDst Pointer to the destination buffer size
2281 * variable. This will be updated in accord with
2282 * the buffer pointer.
2283 * @param pszSrc The source string. NULL is not OK.
2284 * @param cchSrcMax The maximum number of chars (not code points) to
2285 * copy from the source string, not counting the
2286 * terminator as usual.
2287 */
2288RTDECL(int) RTStrCatPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchSrcMax);
2289
2290/**
2291 * Performs a case sensitive string compare between two UTF-8 strings.
2292 *
2293 * Encoding errors are ignored by the current implementation. So, the only
2294 * difference between this and the CRT strcmp function is the handling of
2295 * NULL arguments.
2296 *
2297 * @returns < 0 if the first string less than the second string.
2298 * @returns 0 if the first string identical to the second string.
2299 * @returns > 0 if the first string greater than the second string.
2300 * @param psz1 First UTF-8 string. Null is allowed.
2301 * @param psz2 Second UTF-8 string. Null is allowed.
2302 */
2303RTDECL(int) RTStrCmp(const char *psz1, const char *psz2);
2304
2305/**
2306 * Performs a case sensitive string compare between two UTF-8 strings, given
2307 * a maximum string length.
2308 *
2309 * Encoding errors are ignored by the current implementation. So, the only
2310 * difference between this and the CRT strncmp function is the handling of
2311 * NULL arguments.
2312 *
2313 * @returns < 0 if the first string less than the second string.
2314 * @returns 0 if the first string identical to the second string.
2315 * @returns > 0 if the first string greater than the second string.
2316 * @param psz1 First UTF-8 string. Null is allowed.
2317 * @param psz2 Second UTF-8 string. Null is allowed.
2318 * @param cchMax The maximum string length
2319 */
2320RTDECL(int) RTStrNCmp(const char *psz1, const char *psz2, size_t cchMax);
2321
2322/**
2323 * Performs a case insensitive string compare between two UTF-8 strings.
2324 *
2325 * This is a simplified compare, as only the simplified lower/upper case folding
2326 * specified by the unicode specs are used. It does not consider character pairs
2327 * as they are used in some languages, just simple upper & lower case compares.
2328 *
2329 * The result is the difference between the mismatching codepoints after they
2330 * both have been lower cased.
2331 *
2332 * If the string encoding is invalid the function will assert (strict builds)
2333 * and use RTStrCmp for the remainder of the string.
2334 *
2335 * @returns < 0 if the first string less than the second string.
2336 * @returns 0 if the first string identical to the second string.
2337 * @returns > 0 if the first string greater than the second string.
2338 * @param psz1 First UTF-8 string. Null is allowed.
2339 * @param psz2 Second UTF-8 string. Null is allowed.
2340 */
2341RTDECL(int) RTStrICmp(const char *psz1, const char *psz2);
2342
2343/**
2344 * Performs a case insensitive string compare between two UTF-8 strings, given a
2345 * maximum string length.
2346 *
2347 * This is a simplified compare, as only the simplified lower/upper case folding
2348 * specified by the unicode specs are used. It does not consider character pairs
2349 * as they are used in some languages, just simple upper & lower case compares.
2350 *
2351 * The result is the difference between the mismatching codepoints after they
2352 * both have been lower cased.
2353 *
2354 * If the string encoding is invalid the function will assert (strict builds)
2355 * and use RTStrCmp for the remainder of the string.
2356 *
2357 * @returns < 0 if the first string less than the second string.
2358 * @returns 0 if the first string identical to the second string.
2359 * @returns > 0 if the first string greater than the second string.
2360 * @param psz1 First UTF-8 string. Null is allowed.
2361 * @param psz2 Second UTF-8 string. Null is allowed.
2362 * @param cchMax Maximum string length
2363 */
2364RTDECL(int) RTStrNICmp(const char *psz1, const char *psz2, size_t cchMax);
2365
2366/**
2367 * Locates a case sensitive substring.
2368 *
2369 * If any of the two strings are NULL, then NULL is returned. If the needle is
2370 * an empty string, then the haystack is returned (i.e. matches anything).
2371 *
2372 * @returns Pointer to the first occurrence of the substring if found, NULL if
2373 * not.
2374 *
2375 * @param pszHaystack The string to search.
2376 * @param pszNeedle The substring to search for.
2377 *
2378 * @remarks The difference between this and strstr is the handling of NULL
2379 * pointers.
2380 */
2381RTDECL(char *) RTStrStr(const char *pszHaystack, const char *pszNeedle);
2382
2383/**
2384 * Locates a case insensitive substring.
2385 *
2386 * If any of the two strings are NULL, then NULL is returned. If the needle is
2387 * an empty string, then the haystack is returned (i.e. matches anything).
2388 *
2389 * @returns Pointer to the first occurrence of the substring if found, NULL if
2390 * not.
2391 *
2392 * @param pszHaystack The string to search.
2393 * @param pszNeedle The substring to search for.
2394 *
2395 */
2396RTDECL(char *) RTStrIStr(const char *pszHaystack, const char *pszNeedle);
2397
2398/**
2399 * Converts the string to lower case.
2400 *
2401 * @returns Pointer to the converted string.
2402 * @param psz The string to convert.
2403 */
2404RTDECL(char *) RTStrToLower(char *psz);
2405
2406/**
2407 * Converts the string to upper case.
2408 *
2409 * @returns Pointer to the converted string.
2410 * @param psz The string to convert.
2411 */
2412RTDECL(char *) RTStrToUpper(char *psz);
2413
2414/**
2415 * Find the length of a zero-terminated byte string, given
2416 * a max string length.
2417 *
2418 * See also RTStrNLenEx.
2419 *
2420 * @returns The string length or cbMax. The returned length does not include
2421 * the zero terminator if it was found.
2422 *
2423 * @param pszString The string.
2424 * @param cchMax The max string length.
2425 */
2426RTDECL(size_t) RTStrNLen(const char *pszString, size_t cchMax);
2427
2428/**
2429 * Find the length of a zero-terminated byte string, given
2430 * a max string length.
2431 *
2432 * See also RTStrNLen.
2433 *
2434 * @returns IPRT status code.
2435 * @retval VINF_SUCCESS if the string has a length less than cchMax.
2436 * @retval VERR_BUFFER_OVERFLOW if the end of the string wasn't found
2437 * before cchMax was reached.
2438 *
2439 * @param pszString The string.
2440 * @param cchMax The max string length.
2441 * @param pcch Where to store the string length excluding the
2442 * terminator. This is set to cchMax if the terminator
2443 * isn't found.
2444 */
2445RTDECL(int) RTStrNLenEx(const char *pszString, size_t cchMax, size_t *pcch);
2446
2447RT_C_DECLS_END
2448
2449/** The maximum size argument of a memchr call. */
2450#define RTSTR_MEMCHR_MAX ((~(size_t)0 >> 1) - 15)
2451
2452/**
2453 * Find the zero terminator in a string with a limited length.
2454 *
2455 * @returns Pointer to the zero terminator.
2456 * @returns NULL if the zero terminator was not found.
2457 *
2458 * @param pszString The string.
2459 * @param cchMax The max string length. RTSTR_MAX is fine.
2460 */
2461#if defined(__cplusplus) && !defined(DOXYGEN_RUNNING)
2462DECLINLINE(char const *) RTStrEnd(char const *pszString, size_t cchMax)
2463{
2464 /* Avoid potential issues with memchr seen in glibc.
2465 * See sysdeps/x86_64/memchr.S in glibc versions older than 2.11 */
2466 while (cchMax > RTSTR_MEMCHR_MAX)
2467 {
2468 char const *pszRet = (char const *)memchr(pszString, '\0', RTSTR_MEMCHR_MAX);
2469 if (RT_LIKELY(pszRet))
2470 return pszRet;
2471 pszString += RTSTR_MEMCHR_MAX;
2472 cchMax -= RTSTR_MEMCHR_MAX;
2473 }
2474 return (char const *)memchr(pszString, '\0', cchMax);
2475}
2476
2477DECLINLINE(char *) RTStrEnd(char *pszString, size_t cchMax)
2478#else
2479DECLINLINE(char *) RTStrEnd(const char *pszString, size_t cchMax)
2480#endif
2481{
2482 /* Avoid potential issues with memchr seen in glibc.
2483 * See sysdeps/x86_64/memchr.S in glibc versions older than 2.11 */
2484 while (cchMax > RTSTR_MEMCHR_MAX)
2485 {
2486 char *pszRet = (char *)memchr(pszString, '\0', RTSTR_MEMCHR_MAX);
2487 if (RT_LIKELY(pszRet))
2488 return pszRet;
2489 pszString += RTSTR_MEMCHR_MAX;
2490 cchMax -= RTSTR_MEMCHR_MAX;
2491 }
2492 return (char *)memchr(pszString, '\0', cchMax);
2493}
2494
2495RT_C_DECLS_BEGIN
2496
2497/**
2498 * Matches a simple string pattern.
2499 *
2500 * @returns true if the string matches the pattern, otherwise false.
2501 *
2502 * @param pszPattern The pattern. Special chars are '*' and '?', where the
2503 * asterisk matches zero or more characters and question
2504 * mark matches exactly one character.
2505 * @param pszString The string to match against the pattern.
2506 */
2507RTDECL(bool) RTStrSimplePatternMatch(const char *pszPattern, const char *pszString);
2508
2509/**
2510 * Matches a simple string pattern, neither which needs to be zero terminated.
2511 *
2512 * This is identical to RTStrSimplePatternMatch except that you can optionally
2513 * specify the length of both the pattern and the string. The function will
2514 * stop when it hits a string terminator or either of the lengths.
2515 *
2516 * @returns true if the string matches the pattern, otherwise false.
2517 *
2518 * @param pszPattern The pattern. Special chars are '*' and '?', where the
2519 * asterisk matches zero or more characters and question
2520 * mark matches exactly one character.
2521 * @param cchPattern The pattern length. Pass RTSTR_MAX if you don't know the
2522 * length and wish to stop at the string terminator.
2523 * @param pszString The string to match against the pattern.
2524 * @param cchString The string length. Pass RTSTR_MAX if you don't know the
2525 * length and wish to match up to the string terminator.
2526 */
2527RTDECL(bool) RTStrSimplePatternNMatch(const char *pszPattern, size_t cchPattern,
2528 const char *pszString, size_t cchString);
2529
2530/**
2531 * Matches multiple patterns against a string.
2532 *
2533 * The patterns are separated by the pipe character (|).
2534 *
2535 * @returns true if the string matches the pattern, otherwise false.
2536 *
2537 * @param pszPatterns The patterns.
2538 * @param cchPatterns The lengths of the patterns to use. Pass RTSTR_MAX to
2539 * stop at the terminator.
2540 * @param pszString The string to match against the pattern.
2541 * @param cchString The string length. Pass RTSTR_MAX stop stop at the
2542 * terminator.
2543 * @param poffPattern Offset into the patterns string of the patttern that
2544 * matched. If no match, this will be set to RTSTR_MAX.
2545 * This is optional, NULL is fine.
2546 */
2547RTDECL(bool) RTStrSimplePatternMultiMatch(const char *pszPatterns, size_t cchPatterns,
2548 const char *pszString, size_t cchString,
2549 size_t *poffPattern);
2550
2551/**
2552 * Compares two version strings RTStrICmp fashion.
2553 *
2554 * The version string is split up into sections at punctuation, spaces,
2555 * underscores, dashes and plus signs. The sections are then split up into
2556 * numeric and string sub-sections. Finally, the sub-sections are compared
2557 * in a numeric or case insesntivie fashion depending on what they are.
2558 *
2559 * The following strings are considered to be equal: "1.0.0", "1.00.0", "1.0",
2560 * "1". These aren't: "1.0.0r993", "1.0", "1.0r993", "1.0_Beta3", "1.1"
2561 *
2562 * @returns < 0 if the first string less than the second string.
2563 * @returns 0 if the first string identical to the second string.
2564 * @returns > 0 if the first string greater than the second string.
2565 *
2566 * @param pszVer1 First version string to compare.
2567 * @param pszVer2 Second version string to compare first version with.
2568 */
2569RTDECL(int) RTStrVersionCompare(const char *pszVer1, const char *pszVer2);
2570
2571
2572/** @defgroup rt_str_conv String To/From Number Conversions
2573 * @ingroup grp_rt_str
2574 * @{ */
2575
2576/**
2577 * Converts a string representation of a number to a 64-bit unsigned number.
2578 *
2579 * @returns iprt status code.
2580 * Warnings are used to indicate conversion problems.
2581 * @retval VWRN_NUMBER_TOO_BIG
2582 * @retval VWRN_NEGATIVE_UNSIGNED
2583 * @retval VWRN_TRAILING_CHARS
2584 * @retval VWRN_TRAILING_SPACES
2585 * @retval VINF_SUCCESS
2586 * @retval VERR_NO_DIGITS
2587 *
2588 * @param pszValue Pointer to the string value.
2589 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2590 * @param uBase The base of the representation used.
2591 * If 0 the function will look for known prefixes before defaulting to 10.
2592 * @param pu64 Where to store the converted number. (optional)
2593 */
2594RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64);
2595
2596/**
2597 * Converts a string representation of a number to a 64-bit unsigned number,
2598 * making sure the full string is converted.
2599 *
2600 * @returns iprt status code.
2601 * Warnings are used to indicate conversion problems.
2602 * @retval VWRN_NUMBER_TOO_BIG
2603 * @retval VWRN_NEGATIVE_UNSIGNED
2604 * @retval VINF_SUCCESS
2605 * @retval VERR_NO_DIGITS
2606 * @retval VERR_TRAILING_SPACES
2607 * @retval VERR_TRAILING_CHARS
2608 *
2609 * @param pszValue Pointer to the string value.
2610 * @param uBase The base of the representation used.
2611 * If 0 the function will look for known prefixes before defaulting to 10.
2612 * @param pu64 Where to store the converted number. (optional)
2613 */
2614RTDECL(int) RTStrToUInt64Full(const char *pszValue, unsigned uBase, uint64_t *pu64);
2615
2616/**
2617 * Converts a string representation of a number to a 64-bit unsigned number.
2618 * The base is guessed.
2619 *
2620 * @returns 64-bit unsigned number on success.
2621 * @returns 0 on failure.
2622 * @param pszValue Pointer to the string value.
2623 */
2624RTDECL(uint64_t) RTStrToUInt64(const char *pszValue);
2625
2626/**
2627 * Converts a string representation of a number to a 32-bit unsigned number.
2628 *
2629 * @returns iprt status code.
2630 * Warnings are used to indicate conversion problems.
2631 * @retval VWRN_NUMBER_TOO_BIG
2632 * @retval VWRN_NEGATIVE_UNSIGNED
2633 * @retval VWRN_TRAILING_CHARS
2634 * @retval VWRN_TRAILING_SPACES
2635 * @retval VINF_SUCCESS
2636 * @retval VERR_NO_DIGITS
2637 *
2638 * @param pszValue Pointer to the string value.
2639 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2640 * @param uBase The base of the representation used.
2641 * If 0 the function will look for known prefixes before defaulting to 10.
2642 * @param pu32 Where to store the converted number. (optional)
2643 */
2644RTDECL(int) RTStrToUInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32);
2645
2646/**
2647 * Converts a string representation of a number to a 32-bit unsigned number,
2648 * making sure the full string is converted.
2649 *
2650 * @returns iprt status code.
2651 * Warnings are used to indicate conversion problems.
2652 * @retval VWRN_NUMBER_TOO_BIG
2653 * @retval VWRN_NEGATIVE_UNSIGNED
2654 * @retval VINF_SUCCESS
2655 * @retval VERR_NO_DIGITS
2656 * @retval VERR_TRAILING_SPACES
2657 * @retval VERR_TRAILING_CHARS
2658 *
2659 * @param pszValue Pointer to the string value.
2660 * @param uBase The base of the representation used.
2661 * If 0 the function will look for known prefixes before defaulting to 10.
2662 * @param pu32 Where to store the converted number. (optional)
2663 */
2664RTDECL(int) RTStrToUInt32Full(const char *pszValue, unsigned uBase, uint32_t *pu32);
2665
2666/**
2667 * Converts a string representation of a number to a 64-bit unsigned number.
2668 * The base is guessed.
2669 *
2670 * @returns 32-bit unsigned number on success.
2671 * @returns 0 on failure.
2672 * @param pszValue Pointer to the string value.
2673 */
2674RTDECL(uint32_t) RTStrToUInt32(const char *pszValue);
2675
2676/**
2677 * Converts a string representation of a number to a 16-bit unsigned number.
2678 *
2679 * @returns iprt status code.
2680 * Warnings are used to indicate conversion problems.
2681 * @retval VWRN_NUMBER_TOO_BIG
2682 * @retval VWRN_NEGATIVE_UNSIGNED
2683 * @retval VWRN_TRAILING_CHARS
2684 * @retval VWRN_TRAILING_SPACES
2685 * @retval VINF_SUCCESS
2686 * @retval VERR_NO_DIGITS
2687 *
2688 * @param pszValue Pointer to the string value.
2689 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2690 * @param uBase The base of the representation used.
2691 * If 0 the function will look for known prefixes before defaulting to 10.
2692 * @param pu16 Where to store the converted number. (optional)
2693 */
2694RTDECL(int) RTStrToUInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint16_t *pu16);
2695
2696/**
2697 * Converts a string representation of a number to a 16-bit unsigned number,
2698 * making sure the full string is converted.
2699 *
2700 * @returns iprt status code.
2701 * Warnings are used to indicate conversion problems.
2702 * @retval VWRN_NUMBER_TOO_BIG
2703 * @retval VWRN_NEGATIVE_UNSIGNED
2704 * @retval VINF_SUCCESS
2705 * @retval VERR_NO_DIGITS
2706 * @retval VERR_TRAILING_SPACES
2707 * @retval VERR_TRAILING_CHARS
2708 *
2709 * @param pszValue Pointer to the string value.
2710 * @param uBase The base of the representation used.
2711 * If 0 the function will look for known prefixes before defaulting to 10.
2712 * @param pu16 Where to store the converted number. (optional)
2713 */
2714RTDECL(int) RTStrToUInt16Full(const char *pszValue, unsigned uBase, uint16_t *pu16);
2715
2716/**
2717 * Converts a string representation of a number to a 16-bit unsigned number.
2718 * The base is guessed.
2719 *
2720 * @returns 16-bit unsigned number on success.
2721 * @returns 0 on failure.
2722 * @param pszValue Pointer to the string value.
2723 */
2724RTDECL(uint16_t) RTStrToUInt16(const char *pszValue);
2725
2726/**
2727 * Converts a string representation of a number to a 8-bit unsigned number.
2728 *
2729 * @returns iprt status code.
2730 * Warnings are used to indicate conversion problems.
2731 * @retval VWRN_NUMBER_TOO_BIG
2732 * @retval VWRN_NEGATIVE_UNSIGNED
2733 * @retval VWRN_TRAILING_CHARS
2734 * @retval VWRN_TRAILING_SPACES
2735 * @retval VINF_SUCCESS
2736 * @retval VERR_NO_DIGITS
2737 *
2738 * @param pszValue Pointer to the string value.
2739 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2740 * @param uBase The base of the representation used.
2741 * If 0 the function will look for known prefixes before defaulting to 10.
2742 * @param pu8 Where to store the converted number. (optional)
2743 */
2744RTDECL(int) RTStrToUInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint8_t *pu8);
2745
2746/**
2747 * Converts a string representation of a number to a 8-bit unsigned number,
2748 * making sure the full string is converted.
2749 *
2750 * @returns iprt status code.
2751 * Warnings are used to indicate conversion problems.
2752 * @retval VWRN_NUMBER_TOO_BIG
2753 * @retval VWRN_NEGATIVE_UNSIGNED
2754 * @retval VINF_SUCCESS
2755 * @retval VERR_NO_DIGITS
2756 * @retval VERR_TRAILING_SPACES
2757 * @retval VERR_TRAILING_CHARS
2758 *
2759 * @param pszValue Pointer to the string value.
2760 * @param uBase The base of the representation used.
2761 * If 0 the function will look for known prefixes before defaulting to 10.
2762 * @param pu8 Where to store the converted number. (optional)
2763 */
2764RTDECL(int) RTStrToUInt8Full(const char *pszValue, unsigned uBase, uint8_t *pu8);
2765
2766/**
2767 * Converts a string representation of a number to a 8-bit unsigned number.
2768 * The base is guessed.
2769 *
2770 * @returns 8-bit unsigned number on success.
2771 * @returns 0 on failure.
2772 * @param pszValue Pointer to the string value.
2773 */
2774RTDECL(uint8_t) RTStrToUInt8(const char *pszValue);
2775
2776/**
2777 * Converts a string representation of a number to a 64-bit signed number.
2778 *
2779 * @returns iprt status code.
2780 * Warnings are used to indicate conversion problems.
2781 * @retval VWRN_NUMBER_TOO_BIG
2782 * @retval VWRN_TRAILING_CHARS
2783 * @retval VWRN_TRAILING_SPACES
2784 * @retval VINF_SUCCESS
2785 * @retval VERR_NO_DIGITS
2786 *
2787 * @param pszValue Pointer to the string value.
2788 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2789 * @param uBase The base of the representation used.
2790 * If 0 the function will look for known prefixes before defaulting to 10.
2791 * @param pi64 Where to store the converted number. (optional)
2792 */
2793RTDECL(int) RTStrToInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, int64_t *pi64);
2794
2795/**
2796 * Converts a string representation of a number to a 64-bit signed number,
2797 * making sure the full string is converted.
2798 *
2799 * @returns iprt status code.
2800 * Warnings are used to indicate conversion problems.
2801 * @retval VWRN_NUMBER_TOO_BIG
2802 * @retval VINF_SUCCESS
2803 * @retval VERR_TRAILING_CHARS
2804 * @retval VERR_TRAILING_SPACES
2805 * @retval VERR_NO_DIGITS
2806 *
2807 * @param pszValue Pointer to the string value.
2808 * @param uBase The base of the representation used.
2809 * If 0 the function will look for known prefixes before defaulting to 10.
2810 * @param pi64 Where to store the converted number. (optional)
2811 */
2812RTDECL(int) RTStrToInt64Full(const char *pszValue, unsigned uBase, int64_t *pi64);
2813
2814/**
2815 * Converts a string representation of a number to a 64-bit signed number.
2816 * The base is guessed.
2817 *
2818 * @returns 64-bit signed number on success.
2819 * @returns 0 on failure.
2820 * @param pszValue Pointer to the string value.
2821 */
2822RTDECL(int64_t) RTStrToInt64(const char *pszValue);
2823
2824/**
2825 * Converts a string representation of a number to a 32-bit signed number.
2826 *
2827 * @returns iprt status code.
2828 * Warnings are used to indicate conversion problems.
2829 * @retval VWRN_NUMBER_TOO_BIG
2830 * @retval VWRN_TRAILING_CHARS
2831 * @retval VWRN_TRAILING_SPACES
2832 * @retval VINF_SUCCESS
2833 * @retval VERR_NO_DIGITS
2834 *
2835 * @param pszValue Pointer to the string value.
2836 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2837 * @param uBase The base of the representation used.
2838 * If 0 the function will look for known prefixes before defaulting to 10.
2839 * @param pi32 Where to store the converted number. (optional)
2840 */
2841RTDECL(int) RTStrToInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, int32_t *pi32);
2842
2843/**
2844 * Converts a string representation of a number to a 32-bit signed number,
2845 * making sure the full string is converted.
2846 *
2847 * @returns iprt status code.
2848 * Warnings are used to indicate conversion problems.
2849 * @retval VWRN_NUMBER_TOO_BIG
2850 * @retval VINF_SUCCESS
2851 * @retval VERR_TRAILING_CHARS
2852 * @retval VERR_TRAILING_SPACES
2853 * @retval VERR_NO_DIGITS
2854 *
2855 * @param pszValue Pointer to the string value.
2856 * @param uBase The base of the representation used.
2857 * If 0 the function will look for known prefixes before defaulting to 10.
2858 * @param pi32 Where to store the converted number. (optional)
2859 */
2860RTDECL(int) RTStrToInt32Full(const char *pszValue, unsigned uBase, int32_t *pi32);
2861
2862/**
2863 * Converts a string representation of a number to a 32-bit signed number.
2864 * The base is guessed.
2865 *
2866 * @returns 32-bit signed number on success.
2867 * @returns 0 on failure.
2868 * @param pszValue Pointer to the string value.
2869 */
2870RTDECL(int32_t) RTStrToInt32(const char *pszValue);
2871
2872/**
2873 * Converts a string representation of a number to a 16-bit signed number.
2874 *
2875 * @returns iprt status code.
2876 * Warnings are used to indicate conversion problems.
2877 * @retval VWRN_NUMBER_TOO_BIG
2878 * @retval VWRN_TRAILING_CHARS
2879 * @retval VWRN_TRAILING_SPACES
2880 * @retval VINF_SUCCESS
2881 * @retval VERR_NO_DIGITS
2882 *
2883 * @param pszValue Pointer to the string value.
2884 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2885 * @param uBase The base of the representation used.
2886 * If 0 the function will look for known prefixes before defaulting to 10.
2887 * @param pi16 Where to store the converted number. (optional)
2888 */
2889RTDECL(int) RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16);
2890
2891/**
2892 * Converts a string representation of a number to a 16-bit signed number,
2893 * making sure the full string is converted.
2894 *
2895 * @returns iprt status code.
2896 * Warnings are used to indicate conversion problems.
2897 * @retval VWRN_NUMBER_TOO_BIG
2898 * @retval VINF_SUCCESS
2899 * @retval VERR_TRAILING_CHARS
2900 * @retval VERR_TRAILING_SPACES
2901 * @retval VERR_NO_DIGITS
2902 *
2903 * @param pszValue Pointer to the string value.
2904 * @param uBase The base of the representation used.
2905 * If 0 the function will look for known prefixes before defaulting to 10.
2906 * @param pi16 Where to store the converted number. (optional)
2907 */
2908RTDECL(int) RTStrToInt16Full(const char *pszValue, unsigned uBase, int16_t *pi16);
2909
2910/**
2911 * Converts a string representation of a number to a 16-bit signed number.
2912 * The base is guessed.
2913 *
2914 * @returns 16-bit signed number on success.
2915 * @returns 0 on failure.
2916 * @param pszValue Pointer to the string value.
2917 */
2918RTDECL(int16_t) RTStrToInt16(const char *pszValue);
2919
2920/**
2921 * Converts a string representation of a number to a 8-bit signed number.
2922 *
2923 * @returns iprt status code.
2924 * Warnings are used to indicate conversion problems.
2925 * @retval VWRN_NUMBER_TOO_BIG
2926 * @retval VWRN_TRAILING_CHARS
2927 * @retval VWRN_TRAILING_SPACES
2928 * @retval VINF_SUCCESS
2929 * @retval VERR_NO_DIGITS
2930 *
2931 * @param pszValue Pointer to the string value.
2932 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
2933 * @param uBase The base of the representation used.
2934 * If 0 the function will look for known prefixes before defaulting to 10.
2935 * @param pi8 Where to store the converted number. (optional)
2936 */
2937RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8);
2938
2939/**
2940 * Converts a string representation of a number to a 8-bit signed number,
2941 * making sure the full string is converted.
2942 *
2943 * @returns iprt status code.
2944 * Warnings are used to indicate conversion problems.
2945 * @retval VWRN_NUMBER_TOO_BIG
2946 * @retval VINF_SUCCESS
2947 * @retval VERR_TRAILING_CHARS
2948 * @retval VERR_TRAILING_SPACES
2949 * @retval VERR_NO_DIGITS
2950 *
2951 * @param pszValue Pointer to the string value.
2952 * @param uBase The base of the representation used.
2953 * If 0 the function will look for known prefixes before defaulting to 10.
2954 * @param pi8 Where to store the converted number. (optional)
2955 */
2956RTDECL(int) RTStrToInt8Full(const char *pszValue, unsigned uBase, int8_t *pi8);
2957
2958/**
2959 * Converts a string representation of a number to a 8-bit signed number.
2960 * The base is guessed.
2961 *
2962 * @returns 8-bit signed number on success.
2963 * @returns 0 on failure.
2964 * @param pszValue Pointer to the string value.
2965 */
2966RTDECL(int8_t) RTStrToInt8(const char *pszValue);
2967
2968/**
2969 * Formats a buffer stream as hex bytes.
2970 *
2971 * The default is no separating spaces or line breaks or anything.
2972 *
2973 * @returns IPRT status code.
2974 * @retval VERR_INVALID_POINTER if any of the pointers are wrong.
2975 * @retval VERR_BUFFER_OVERFLOW if the buffer is insufficent to hold the bytes.
2976 *
2977 * @param pszBuf Output string buffer.
2978 * @param cchBuf The size of the output buffer.
2979 * @param pv Pointer to the bytes to stringify.
2980 * @param cb The number of bytes to stringify.
2981 * @param fFlags Must be zero, reserved for future use.
2982 */
2983RTDECL(int) RTStrPrintHexBytes(char *pszBuf, size_t cchBuf, void const *pv, size_t cb, uint32_t fFlags);
2984
2985/**
2986 * Converts a string of hex bytes back into binary data.
2987 *
2988 * @returns IPRT status code.
2989 * @retval VERR_INVALID_POINTER if any of the pointers are wrong.
2990 * @retval VERR_BUFFER_OVERFLOW if the string contains too many hex bytes.
2991 * @retval VERR_BUFFER_UNDERFLOW if there aren't enough hex bytes to fill up
2992 * the output buffer.
2993 * @retval VERR_UNEVEN_INPUT if the input contains a half byte.
2994 * @retval VERR_NO_DIGITS
2995 * @retval VWRN_TRAILING_CHARS
2996 * @retval VWRN_TRAILING_SPACES
2997 *
2998 * @param pszHex The string containing the hex bytes.
2999 * @param pv Output buffer.
3000 * @param cb The size of the output buffer.
3001 * @param fFlags Must be zero, reserved for future use.
3002 */
3003RTDECL(int) RTStrConvertHexBytes(char const *pszHex, void *pv, size_t cb, uint32_t fFlags);
3004
3005/** @} */
3006
3007
3008/** @defgroup rt_str_space Unique String Space
3009 * @ingroup grp_rt_str
3010 * @{
3011 */
3012
3013/** Pointer to a string name space container node core. */
3014typedef struct RTSTRSPACECORE *PRTSTRSPACECORE;
3015/** Pointer to a pointer to a string name space container node core. */
3016typedef PRTSTRSPACECORE *PPRTSTRSPACECORE;
3017
3018/**
3019 * String name space container node core.
3020 */
3021typedef struct RTSTRSPACECORE
3022{
3023 /** Hash key. Don't touch. */
3024 uint32_t Key;
3025 /** Pointer to the left leaf node. Don't touch. */
3026 PRTSTRSPACECORE pLeft;
3027 /** Pointer to the left right node. Don't touch. */
3028 PRTSTRSPACECORE pRight;
3029 /** Pointer to the list of string with the same key. Don't touch. */
3030 PRTSTRSPACECORE pList;
3031 /** Height of this tree: max(heigth(left), heigth(right)) + 1. Don't touch */
3032 unsigned char uchHeight;
3033 /** The string length. Read only! */
3034 size_t cchString;
3035 /** Pointer to the string. Read only! */
3036 const char *pszString;
3037} RTSTRSPACECORE;
3038
3039/** String space. (Initialize with NULL.) */
3040typedef PRTSTRSPACECORE RTSTRSPACE;
3041/** Pointer to a string space. */
3042typedef PPRTSTRSPACECORE PRTSTRSPACE;
3043
3044
3045/**
3046 * Inserts a string into a unique string space.
3047 *
3048 * @returns true on success.
3049 * @returns false if the string collided with an existing string.
3050 * @param pStrSpace The space to insert it into.
3051 * @param pStr The string node.
3052 */
3053RTDECL(bool) RTStrSpaceInsert(PRTSTRSPACE pStrSpace, PRTSTRSPACECORE pStr);
3054
3055/**
3056 * Removes a string from a unique string space.
3057 *
3058 * @returns Pointer to the removed string node.
3059 * @returns NULL if the string was not found in the string space.
3060 * @param pStrSpace The space to remove it from.
3061 * @param pszString The string to remove.
3062 */
3063RTDECL(PRTSTRSPACECORE) RTStrSpaceRemove(PRTSTRSPACE pStrSpace, const char *pszString);
3064
3065/**
3066 * Gets a string from a unique string space.
3067 *
3068 * @returns Pointer to the string node.
3069 * @returns NULL if the string was not found in the string space.
3070 * @param pStrSpace The space to get it from.
3071 * @param pszString The string to get.
3072 */
3073RTDECL(PRTSTRSPACECORE) RTStrSpaceGet(PRTSTRSPACE pStrSpace, const char *pszString);
3074
3075/**
3076 * Gets a string from a unique string space.
3077 *
3078 * @returns Pointer to the string node.
3079 * @returns NULL if the string was not found in the string space.
3080 * @param pStrSpace The space to get it from.
3081 * @param pszString The string to get.
3082 * @param cchMax The max string length to evaluate. Passing
3083 * RTSTR_MAX is ok and makes it behave just like
3084 * RTStrSpaceGet.
3085 */
3086RTDECL(PRTSTRSPACECORE) RTStrSpaceGetN(PRTSTRSPACE pStrSpace, const char *pszString, size_t cchMax);
3087
3088/**
3089 * Callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy().
3090 *
3091 * @returns 0 on continue.
3092 * @returns Non-zero to aborts the operation.
3093 * @param pStr The string node
3094 * @param pvUser The user specified argument.
3095 */
3096typedef DECLCALLBACK(int) FNRTSTRSPACECALLBACK(PRTSTRSPACECORE pStr, void *pvUser);
3097/** Pointer to callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy(). */
3098typedef FNRTSTRSPACECALLBACK *PFNRTSTRSPACECALLBACK;
3099
3100/**
3101 * Destroys the string space.
3102 *
3103 * The caller supplies a callback which will be called for each of the string
3104 * nodes in for freeing their memory and other resources.
3105 *
3106 * @returns 0 or what ever non-zero return value pfnCallback returned
3107 * when aborting the destruction.
3108 * @param pStrSpace The space to destroy.
3109 * @param pfnCallback The callback.
3110 * @param pvUser The user argument.
3111 */
3112RTDECL(int) RTStrSpaceDestroy(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
3113
3114/**
3115 * Enumerates the string space.
3116 * The caller supplies a callback which will be called for each of
3117 * the string nodes.
3118 *
3119 * @returns 0 or what ever non-zero return value pfnCallback returned
3120 * when aborting the destruction.
3121 * @param pStrSpace The space to enumerate.
3122 * @param pfnCallback The callback.
3123 * @param pvUser The user argument.
3124 */
3125RTDECL(int) RTStrSpaceEnumerate(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
3126
3127/** @} */
3128
3129
3130/** @defgroup rt_str_hash Sting hashing
3131 * @ingroup grp_rt_str
3132 * @{ */
3133
3134/**
3135 * Hashes the given string using algorithm \#1.
3136 *
3137 * @returns String hash.
3138 * @param pszString The string to hash.
3139 */
3140RTDECL(uint32_t) RTStrHash1(const char *pszString);
3141
3142/**
3143 * Hashes the given string using algorithm \#1.
3144 *
3145 * @returns String hash.
3146 * @param pszString The string to hash.
3147 * @param cchString The max length to hash. Hashing will stop if the
3148 * terminator character is encountered first. Passing
3149 * RTSTR_MAX is fine.
3150 */
3151RTDECL(uint32_t) RTStrHash1N(const char *pszString, size_t cchString);
3152
3153/**
3154 * Hashes the given strings as if they were concatenated using algorithm \#1.
3155 *
3156 * @returns String hash.
3157 * @param cPairs The number of string / length pairs in the
3158 * ellipsis.
3159 * @param ... List of string (const char *) and length
3160 * (size_t) pairs. Passing RTSTR_MAX as the size is
3161 * fine.
3162 */
3163RTDECL(uint32_t) RTStrHash1ExN(size_t cPairs, ...);
3164
3165/**
3166 * Hashes the given strings as if they were concatenated using algorithm \#1.
3167 *
3168 * @returns String hash.
3169 * @param cPairs The number of string / length pairs in the @a va.
3170 * @param va List of string (const char *) and length
3171 * (size_t) pairs. Passing RTSTR_MAX as the size is
3172 * fine.
3173 */
3174RTDECL(uint32_t) RTStrHash1ExNV(size_t cPairs, va_list va);
3175
3176/** @} */
3177
3178
3179/** @defgroup rt_str_utf16 UTF-16 String Manipulation
3180 * @ingroup grp_rt_str
3181 * @{
3182 */
3183
3184/**
3185 * Free a UTF-16 string allocated by RTStrToUtf16(), RTStrToUtf16Ex(),
3186 * RTLatin1ToUtf16(), RTLatin1ToUtf16Ex(), RTUtf16Dup() or RTUtf16DupEx().
3187 *
3188 * @returns iprt status code.
3189 * @param pwszString The UTF-16 string to free. NULL is accepted.
3190 */
3191RTDECL(void) RTUtf16Free(PRTUTF16 pwszString);
3192
3193/**
3194 * Allocates a new copy of the specified UTF-16 string (default tag).
3195 *
3196 * @returns Pointer to the allocated string copy. Use RTUtf16Free() to free it.
3197 * @returns NULL when out of memory.
3198 * @param pwszString UTF-16 string to duplicate.
3199 * @remark This function will not make any attempt to validate the encoding.
3200 */
3201#define RTUtf16Dup(pwszString) RTUtf16DupTag((pwszString), RTSTR_TAG)
3202
3203/**
3204 * Allocates a new copy of the specified UTF-16 string (custom tag).
3205 *
3206 * @returns Pointer to the allocated string copy. Use RTUtf16Free() to free it.
3207 * @returns NULL when out of memory.
3208 * @param pwszString UTF-16 string to duplicate.
3209 * @param pszTag Allocation tag used for statistics and such.
3210 * @remark This function will not make any attempt to validate the encoding.
3211 */
3212RTDECL(PRTUTF16) RTUtf16DupTag(PCRTUTF16 pwszString, const char *pszTag);
3213
3214/**
3215 * Allocates a new copy of the specified UTF-16 string (default tag).
3216 *
3217 * @returns iprt status code.
3218 * @param ppwszString Receives pointer of the allocated UTF-16 string.
3219 * The returned pointer must be freed using RTUtf16Free().
3220 * @param pwszString UTF-16 string to duplicate.
3221 * @param cwcExtra Number of extra RTUTF16 items to allocate.
3222 * @remark This function will not make any attempt to validate the encoding.
3223 */
3224#define RTUtf16DupEx(ppwszString, pwszString, cwcExtra) \
3225 RTUtf16DupExTag((ppwszString), (pwszString), (cwcExtra), RTSTR_TAG)
3226
3227/**
3228 * Allocates a new copy of the specified UTF-16 string (custom tag).
3229 *
3230 * @returns iprt status code.
3231 * @param ppwszString Receives pointer of the allocated UTF-16 string.
3232 * The returned pointer must be freed using RTUtf16Free().
3233 * @param pwszString UTF-16 string to duplicate.
3234 * @param cwcExtra Number of extra RTUTF16 items to allocate.
3235 * @param pszTag Allocation tag used for statistics and such.
3236 * @remark This function will not make any attempt to validate the encoding.
3237 */
3238RTDECL(int) RTUtf16DupExTag(PRTUTF16 *ppwszString, PCRTUTF16 pwszString, size_t cwcExtra, const char *pszTag);
3239
3240/**
3241 * Returns the length of a UTF-16 string in UTF-16 characters
3242 * without trailing '\\0'.
3243 *
3244 * Surrogate pairs counts as two UTF-16 characters here. Use RTUtf16CpCnt()
3245 * to get the exact number of code points in the string.
3246 *
3247 * @returns The number of RTUTF16 items in the string.
3248 * @param pwszString Pointer the UTF-16 string.
3249 * @remark This function will not make any attempt to validate the encoding.
3250 */
3251RTDECL(size_t) RTUtf16Len(PCRTUTF16 pwszString);
3252
3253/**
3254 * Performs a case sensitive string compare between two UTF-16 strings.
3255 *
3256 * @returns < 0 if the first string less than the second string.s
3257 * @returns 0 if the first string identical to the second string.
3258 * @returns > 0 if the first string greater than the second string.
3259 * @param pwsz1 First UTF-16 string. Null is allowed.
3260 * @param pwsz2 Second UTF-16 string. Null is allowed.
3261 * @remark This function will not make any attempt to validate the encoding.
3262 */
3263RTDECL(int) RTUtf16Cmp(register PCRTUTF16 pwsz1, register PCRTUTF16 pwsz2);
3264
3265/**
3266 * Performs a case insensitive string compare between two UTF-16 strings.
3267 *
3268 * This is a simplified compare, as only the simplified lower/upper case folding
3269 * specified by the unicode specs are used. It does not consider character pairs
3270 * as they are used in some languages, just simple upper & lower case compares.
3271 *
3272 * @returns < 0 if the first string less than the second string.
3273 * @returns 0 if the first string identical to the second string.
3274 * @returns > 0 if the first string greater than the second string.
3275 * @param pwsz1 First UTF-16 string. Null is allowed.
3276 * @param pwsz2 Second UTF-16 string. Null is allowed.
3277 */
3278RTDECL(int) RTUtf16ICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
3279
3280/**
3281 * Performs a case insensitive string compare between two UTF-16 strings
3282 * using the current locale of the process (if applicable).
3283 *
3284 * This differs from RTUtf16ICmp() in that it will try, if a locale with the
3285 * required data is available, to do a correct case-insensitive compare. It
3286 * follows that it is more complex and thereby likely to be more expensive.
3287 *
3288 * @returns < 0 if the first string less than the second string.
3289 * @returns 0 if the first string identical to the second string.
3290 * @returns > 0 if the first string greater than the second string.
3291 * @param pwsz1 First UTF-16 string. Null is allowed.
3292 * @param pwsz2 Second UTF-16 string. Null is allowed.
3293 */
3294RTDECL(int) RTUtf16LocaleICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
3295
3296/**
3297 * Folds a UTF-16 string to lowercase.
3298 *
3299 * This is a very simple folding; is uses the simple lowercase
3300 * code point, it is not related to any locale just the most common
3301 * lowercase codepoint setup by the unicode specs, and it will not
3302 * create new surrogate pairs or remove existing ones.
3303 *
3304 * @returns Pointer to the passed in string.
3305 * @param pwsz The string to fold.
3306 */
3307RTDECL(PRTUTF16) RTUtf16ToLower(PRTUTF16 pwsz);
3308
3309/**
3310 * Folds a UTF-16 string to uppercase.
3311 *
3312 * This is a very simple folding; is uses the simple uppercase
3313 * code point, it is not related to any locale just the most common
3314 * uppercase codepoint setup by the unicode specs, and it will not
3315 * create new surrogate pairs or remove existing ones.
3316 *
3317 * @returns Pointer to the passed in string.
3318 * @param pwsz The string to fold.
3319 */
3320RTDECL(PRTUTF16) RTUtf16ToUpper(PRTUTF16 pwsz);
3321
3322/**
3323 * Sanitise a (valid) UTF-16 string by replacing all characters outside a white
3324 * list in-place by an ASCII replacement character. Multi-byte characters will
3325 * be replaced byte by byte.
3326 *
3327 * @returns The number of code points replaced, or a negative value if the
3328 * string is not correctly encoded. In this last case the string
3329 * may be partially processed.
3330 * @param pwsz The string to sanitise.
3331 * @param puszValidSets A zero-terminated array of pairs of Unicode points.
3332 * Each pair is the start and end point of a range,
3333 * and the union of these ranges forms the white list.
3334 * @param chReplacement The ASCII replacement character.
3335 */
3336RTDECL(ssize_t) RTUtf16PurgeComplementSet(PRTUTF16 pwsz, PCRTUNICP puszValidSet, char chReplacement);
3337
3338/**
3339 * Translate a UTF-16 string into a UTF-8 allocating the result buffer (default
3340 * tag).
3341 *
3342 * @returns iprt status code.
3343 * @param pwszString UTF-16 string to convert.
3344 * @param ppszString Receives pointer of allocated UTF-8 string on
3345 * success, and is always set to NULL on failure.
3346 * The returned pointer must be freed using RTStrFree().
3347 */
3348#define RTUtf16ToUtf8(pwszString, ppszString) RTUtf16ToUtf8Tag((pwszString), (ppszString), RTSTR_TAG)
3349
3350/**
3351 * Translate a UTF-16 string into a UTF-8 allocating the result buffer.
3352 *
3353 * @returns iprt status code.
3354 * @param pwszString UTF-16 string to convert.
3355 * @param ppszString Receives pointer of allocated UTF-8 string on
3356 * success, and is always set to NULL on failure.
3357 * The returned pointer must be freed using RTStrFree().
3358 * @param pszTag Allocation tag used for statistics and such.
3359 */
3360RTDECL(int) RTUtf16ToUtf8Tag(PCRTUTF16 pwszString, char **ppszString, const char *pszTag);
3361
3362/**
3363 * Translates UTF-16 to UTF-8 using buffer provided by the caller or a fittingly
3364 * sized buffer allocated by the function (default tag).
3365 *
3366 * @returns iprt status code.
3367 * @param pwszString The UTF-16 string to convert.
3368 * @param cwcString The number of RTUTF16 items to translate from pwszString.
3369 * The translation will stop when reaching cwcString or the terminator ('\\0').
3370 * Use RTSTR_MAX to translate the entire string.
3371 * @param ppsz If cch is non-zero, this must either be pointing to a pointer to
3372 * a buffer of the specified size, or pointer to a NULL pointer.
3373 * If *ppsz is NULL or cch is zero a buffer of at least cch chars
3374 * will be allocated to hold the translated string.
3375 * If a buffer was requested it must be freed using RTStrFree().
3376 * @param cch The buffer size in chars (the type). This includes the terminator.
3377 * @param pcch Where to store the length of the translated string,
3378 * excluding the terminator. (Optional)
3379 *
3380 * This may be set under some error conditions,
3381 * however, only for VERR_BUFFER_OVERFLOW and
3382 * VERR_NO_STR_MEMORY will it contain a valid string
3383 * length that can be used to resize the buffer.
3384 */
3385#define RTUtf16ToUtf8Ex(pwszString, cwcString, ppsz, cch, pcch) \
3386 RTUtf16ToUtf8ExTag((pwszString), (cwcString), (ppsz), (cch), (pcch), RTSTR_TAG)
3387
3388/**
3389 * Translates UTF-16 to UTF-8 using buffer provided by the caller or a fittingly
3390 * sized buffer allocated by the function (custom tag).
3391 *
3392 * @returns iprt status code.
3393 * @param pwszString The UTF-16 string to convert.
3394 * @param cwcString The number of RTUTF16 items to translate from pwszString.
3395 * The translation will stop when reaching cwcString or the terminator ('\\0').
3396 * Use RTSTR_MAX to translate the entire string.
3397 * @param ppsz If cch is non-zero, this must either be pointing to a pointer to
3398 * a buffer of the specified size, or pointer to a NULL pointer.
3399 * If *ppsz is NULL or cch is zero a buffer of at least cch chars
3400 * will be allocated to hold the translated string.
3401 * If a buffer was requested it must be freed using RTStrFree().
3402 * @param cch The buffer size in chars (the type). This includes the terminator.
3403 * @param pcch Where to store the length of the translated string,
3404 * excluding the terminator. (Optional)
3405 *
3406 * This may be set under some error conditions,
3407 * however, only for VERR_BUFFER_OVERFLOW and
3408 * VERR_NO_STR_MEMORY will it contain a valid string
3409 * length that can be used to resize the buffer.
3410 * @param pszTag Allocation tag used for statistics and such.
3411 */
3412RTDECL(int) RTUtf16ToUtf8ExTag(PCRTUTF16 pwszString, size_t cwcString, char **ppsz, size_t cch, size_t *pcch, const char *pszTag);
3413
3414/**
3415 * Calculates the length of the UTF-16 string in UTF-8 chars (bytes).
3416 *
3417 * This function will validate the string, and incorrectly encoded UTF-16
3418 * strings will be rejected. The primary purpose of this function is to
3419 * help allocate buffers for RTUtf16ToUtf8() of the correct size. For most
3420 * other purposes RTUtf16ToUtf8Ex() should be used.
3421 *
3422 * @returns Number of char (bytes).
3423 * @returns 0 if the string was incorrectly encoded.
3424 * @param pwsz The UTF-16 string.
3425 */
3426RTDECL(size_t) RTUtf16CalcUtf8Len(PCRTUTF16 pwsz);
3427
3428/**
3429 * Calculates the length of the UTF-16 string in UTF-8 chars (bytes).
3430 *
3431 * This function will validate the string, and incorrectly encoded UTF-16
3432 * strings will be rejected.
3433 *
3434 * @returns iprt status code.
3435 * @param pwsz The string.
3436 * @param cwc The max string length. Use RTSTR_MAX to process the entire string.
3437 * @param pcch Where to store the string length (in bytes). Optional.
3438 * This is undefined on failure.
3439 */
3440RTDECL(int) RTUtf16CalcUtf8LenEx(PCRTUTF16 pwsz, size_t cwc, size_t *pcch);
3441
3442/**
3443 * Translate a UTF-16 string into a Latin-1 (ISO-8859-1) allocating the result
3444 * buffer (default tag).
3445 *
3446 * @returns iprt status code.
3447 * @param pwszString UTF-16 string to convert.
3448 * @param ppszString Receives pointer of allocated Latin1 string on
3449 * success, and is always set to NULL on failure.
3450 * The returned pointer must be freed using RTStrFree().
3451 */
3452#define RTUtf16ToLatin1(pwszString, ppszString) RTUtf16ToLatin1Tag((pwszString), (ppszString), RTSTR_TAG)
3453
3454/**
3455 * Translate a UTF-16 string into a Latin-1 (ISO-8859-1) allocating the result
3456 * buffer (custom tag).
3457 *
3458 * @returns iprt status code.
3459 * @param pwszString UTF-16 string to convert.
3460 * @param ppszString Receives pointer of allocated Latin1 string on
3461 * success, and is always set to NULL on failure.
3462 * The returned pointer must be freed using RTStrFree().
3463 * @param pszTag Allocation tag used for statistics and such.
3464 */
3465RTDECL(int) RTUtf16ToLatin1Tag(PCRTUTF16 pwszString, char **ppszString, const char *pszTag);
3466
3467/**
3468 * Translates UTF-16 to Latin-1 (ISO-8859-1) using buffer provided by the caller
3469 * or a fittingly sized buffer allocated by the function (default tag).
3470 *
3471 * @returns iprt status code.
3472 * @param pwszString The UTF-16 string to convert.
3473 * @param cwcString The number of RTUTF16 items to translate from
3474 * pwszString. The translation will stop when reaching
3475 * cwcString or the terminator ('\\0'). Use RTSTR_MAX
3476 * to translate the entire string.
3477 * @param ppsz Pointer to the pointer to the Latin-1 string. The
3478 * buffer can optionally be preallocated by the caller.
3479 *
3480 * If cch is zero, *ppsz is undefined.
3481 *
3482 * If cch is non-zero and *ppsz is not NULL, then this
3483 * will be used as the output buffer.
3484 * VERR_BUFFER_OVERFLOW will be returned if this is
3485 * insufficient.
3486 *
3487 * If cch is zero or *ppsz is NULL, then a buffer of
3488 * sufficient size is allocated. cch can be used to
3489 * specify a minimum size of this buffer. Use
3490 * RTUtf16Free() to free the result.
3491 *
3492 * @param cch The buffer size in chars (the type). This includes
3493 * the terminator.
3494 * @param pcch Where to store the length of the translated string,
3495 * excluding the terminator. (Optional)
3496 *
3497 * This may be set under some error conditions,
3498 * however, only for VERR_BUFFER_OVERFLOW and
3499 * VERR_NO_STR_MEMORY will it contain a valid string
3500 * length that can be used to resize the buffer.
3501 */
3502#define RTUtf16ToLatin1Ex(pwszString, cwcString, ppsz, cch, pcch) \
3503 RTUtf16ToLatin1ExTag((pwszString), (cwcString), (ppsz), (cch), (pcch), RTSTR_TAG)
3504
3505/**
3506 * Translates UTF-16 to Latin-1 (ISO-8859-1) using buffer provided by the caller
3507 * or a fittingly sized buffer allocated by the function (custom tag).
3508 *
3509 * @returns iprt status code.
3510 * @param pwszString The UTF-16 string to convert.
3511 * @param cwcString The number of RTUTF16 items to translate from
3512 * pwszString. The translation will stop when reaching
3513 * cwcString or the terminator ('\\0'). Use RTSTR_MAX
3514 * to translate the entire string.
3515 * @param ppsz Pointer to the pointer to the Latin-1 string. The
3516 * buffer can optionally be preallocated by the caller.
3517 *
3518 * If cch is zero, *ppsz is undefined.
3519 *
3520 * If cch is non-zero and *ppsz is not NULL, then this
3521 * will be used as the output buffer.
3522 * VERR_BUFFER_OVERFLOW will be returned if this is
3523 * insufficient.
3524 *
3525 * If cch is zero or *ppsz is NULL, then a buffer of
3526 * sufficient size is allocated. cch can be used to
3527 * specify a minimum size of this buffer. Use
3528 * RTUtf16Free() to free the result.
3529 *
3530 * @param cch The buffer size in chars (the type). This includes
3531 * the terminator.
3532 * @param pcch Where to store the length of the translated string,
3533 * excluding the terminator. (Optional)
3534 *
3535 * This may be set under some error conditions,
3536 * however, only for VERR_BUFFER_OVERFLOW and
3537 * VERR_NO_STR_MEMORY will it contain a valid string
3538 * length that can be used to resize the buffer.
3539 * @param pszTag Allocation tag used for statistics and such.
3540 */
3541RTDECL(int) RTUtf16ToLatin1ExTag(PCRTUTF16 pwszString, size_t cwcString, char **ppsz, size_t cch, size_t *pcch, const char *pszTag);
3542
3543/**
3544 * Calculates the length of the UTF-16 string in Latin-1 (ISO-8859-1) chars.
3545 *
3546 * This function will validate the string, and incorrectly encoded UTF-16
3547 * strings will be rejected. The primary purpose of this function is to
3548 * help allocate buffers for RTUtf16ToLatin1() of the correct size. For most
3549 * other purposes RTUtf16ToLatin1Ex() should be used.
3550 *
3551 * @returns Number of char (bytes).
3552 * @returns 0 if the string was incorrectly encoded.
3553 * @param pwsz The UTF-16 string.
3554 */
3555RTDECL(size_t) RTUtf16CalcLatin1Len(PCRTUTF16 pwsz);
3556
3557/**
3558 * Calculates the length of the UTF-16 string in Latin-1 (ISO-8859-1) chars.
3559 *
3560 * This function will validate the string, and incorrectly encoded UTF-16
3561 * strings will be rejected.
3562 *
3563 * @returns iprt status code.
3564 * @param pwsz The string.
3565 * @param cwc The max string length. Use RTSTR_MAX to process the
3566 * entire string.
3567 * @param pcch Where to store the string length (in bytes). Optional.
3568 * This is undefined on failure.
3569 */
3570RTDECL(int) RTUtf16CalcLatin1LenEx(PCRTUTF16 pwsz, size_t cwc, size_t *pcch);
3571
3572/**
3573 * Get the unicode code point at the given string position.
3574 *
3575 * @returns unicode code point.
3576 * @returns RTUNICP_INVALID if the encoding is invalid.
3577 * @param pwsz The string.
3578 *
3579 * @remark This is an internal worker for RTUtf16GetCp().
3580 */
3581RTDECL(RTUNICP) RTUtf16GetCpInternal(PCRTUTF16 pwsz);
3582
3583/**
3584 * Get the unicode code point at the given string position.
3585 *
3586 * @returns iprt status code.
3587 * @param ppwsz Pointer to the string pointer. This will be updated to
3588 * point to the char following the current code point.
3589 * @param pCp Where to store the code point.
3590 * RTUNICP_INVALID is stored here on failure.
3591 *
3592 * @remark This is an internal worker for RTUtf16GetCpEx().
3593 */
3594RTDECL(int) RTUtf16GetCpExInternal(PCRTUTF16 *ppwsz, PRTUNICP pCp);
3595
3596/**
3597 * Put the unicode code point at the given string position
3598 * and return the pointer to the char following it.
3599 *
3600 * This function will not consider anything at or following the
3601 * buffer area pointed to by pwsz. It is therefore not suitable for
3602 * inserting code points into a string, only appending/overwriting.
3603 *
3604 * @returns pointer to the char following the written code point.
3605 * @param pwsz The string.
3606 * @param CodePoint The code point to write.
3607 * This should not be RTUNICP_INVALID or any other
3608 * character out of the UTF-16 range.
3609 *
3610 * @remark This is an internal worker for RTUtf16GetCpEx().
3611 */
3612RTDECL(PRTUTF16) RTUtf16PutCpInternal(PRTUTF16 pwsz, RTUNICP CodePoint);
3613
3614/**
3615 * Get the unicode code point at the given string position.
3616 *
3617 * @returns unicode code point.
3618 * @returns RTUNICP_INVALID if the encoding is invalid.
3619 * @param pwsz The string.
3620 *
3621 * @remark We optimize this operation by using an inline function for
3622 * everything which isn't a surrogate pair or an endian indicator.
3623 */
3624DECLINLINE(RTUNICP) RTUtf16GetCp(PCRTUTF16 pwsz)
3625{
3626 const RTUTF16 wc = *pwsz;
3627 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
3628 return wc;
3629 return RTUtf16GetCpInternal(pwsz);
3630}
3631
3632/**
3633 * Get the unicode code point at the given string position.
3634 *
3635 * @returns iprt status code.
3636 * @param ppwsz Pointer to the string pointer. This will be updated to
3637 * point to the char following the current code point.
3638 * @param pCp Where to store the code point.
3639 * RTUNICP_INVALID is stored here on failure.
3640 *
3641 * @remark We optimize this operation by using an inline function for
3642 * everything which isn't a surrogate pair or and endian indicator.
3643 */
3644DECLINLINE(int) RTUtf16GetCpEx(PCRTUTF16 *ppwsz, PRTUNICP pCp)
3645{
3646 const RTUTF16 wc = **ppwsz;
3647 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
3648 {
3649 (*ppwsz)++;
3650 *pCp = wc;
3651 return VINF_SUCCESS;
3652 }
3653 return RTUtf16GetCpExInternal(ppwsz, pCp);
3654}
3655
3656/**
3657 * Put the unicode code point at the given string position
3658 * and return the pointer to the char following it.
3659 *
3660 * This function will not consider anything at or following the
3661 * buffer area pointed to by pwsz. It is therefore not suitable for
3662 * inserting code points into a string, only appending/overwriting.
3663 *
3664 * @returns pointer to the char following the written code point.
3665 * @param pwsz The string.
3666 * @param CodePoint The code point to write.
3667 * This should not be RTUNICP_INVALID or any other
3668 * character out of the UTF-16 range.
3669 *
3670 * @remark We optimize this operation by using an inline function for
3671 * everything which isn't a surrogate pair or and endian indicator.
3672 */
3673DECLINLINE(PRTUTF16) RTUtf16PutCp(PRTUTF16 pwsz, RTUNICP CodePoint)
3674{
3675 if (CodePoint < 0xd800 || (CodePoint > 0xd800 && CodePoint < 0xfffe))
3676 {
3677 *pwsz++ = (RTUTF16)CodePoint;
3678 return pwsz;
3679 }
3680 return RTUtf16PutCpInternal(pwsz, CodePoint);
3681}
3682
3683/**
3684 * Skips ahead, past the current code point.
3685 *
3686 * @returns Pointer to the char after the current code point.
3687 * @param pwsz Pointer to the current code point.
3688 * @remark This will not move the next valid code point, only past the current one.
3689 */
3690DECLINLINE(PRTUTF16) RTUtf16NextCp(PCRTUTF16 pwsz)
3691{
3692 RTUNICP Cp;
3693 RTUtf16GetCpEx(&pwsz, &Cp);
3694 return (PRTUTF16)pwsz;
3695}
3696
3697/**
3698 * Skips backwards, to the previous code point.
3699 *
3700 * @returns Pointer to the char after the current code point.
3701 * @param pwszStart Pointer to the start of the string.
3702 * @param pwsz Pointer to the current code point.
3703 */
3704RTDECL(PRTUTF16) RTUtf16PrevCp(PCRTUTF16 pwszStart, PCRTUTF16 pwsz);
3705
3706
3707/**
3708 * Checks if the UTF-16 char is the high surrogate char (i.e.
3709 * the 1st char in the pair).
3710 *
3711 * @returns true if it is.
3712 * @returns false if it isn't.
3713 * @param wc The character to investigate.
3714 */
3715DECLINLINE(bool) RTUtf16IsHighSurrogate(RTUTF16 wc)
3716{
3717 return wc >= 0xd800 && wc <= 0xdbff;
3718}
3719
3720/**
3721 * Checks if the UTF-16 char is the low surrogate char (i.e.
3722 * the 2nd char in the pair).
3723 *
3724 * @returns true if it is.
3725 * @returns false if it isn't.
3726 * @param wc The character to investigate.
3727 */
3728DECLINLINE(bool) RTUtf16IsLowSurrogate(RTUTF16 wc)
3729{
3730 return wc >= 0xdc00 && wc <= 0xdfff;
3731}
3732
3733
3734/**
3735 * Checks if the two UTF-16 chars form a valid surrogate pair.
3736 *
3737 * @returns true if they do.
3738 * @returns false if they doesn't.
3739 * @param wcHigh The high (1st) character.
3740 * @param wcLow The low (2nd) character.
3741 */
3742DECLINLINE(bool) RTUtf16IsSurrogatePair(RTUTF16 wcHigh, RTUTF16 wcLow)
3743{
3744 return RTUtf16IsHighSurrogate(wcHigh)
3745 && RTUtf16IsLowSurrogate(wcLow);
3746}
3747
3748/** @} */
3749
3750
3751/** @defgroup rt_str_latin1 Latin-1 (ISO-8859-1) String Manipulation
3752 * @ingroup grp_rt_str
3753 * @{
3754 */
3755
3756/**
3757 * Calculates the length of the Latin-1 (ISO-8859-1) string in RTUTF16 items.
3758 *
3759 * @returns Number of RTUTF16 items.
3760 * @param psz The Latin-1 string.
3761 */
3762RTDECL(size_t) RTLatin1CalcUtf16Len(const char *psz);
3763
3764/**
3765 * Calculates the length of the Latin-1 (ISO-8859-1) string in RTUTF16 items.
3766 *
3767 * @returns iprt status code.
3768 * @param psz The Latin-1 string.
3769 * @param cch The max string length. Use RTSTR_MAX to process the
3770 * entire string.
3771 * @param pcwc Where to store the string length. Optional.
3772 * This is undefined on failure.
3773 */
3774RTDECL(int) RTLatin1CalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc);
3775
3776/**
3777 * Translate a Latin-1 (ISO-8859-1) string into a UTF-16 allocating the result
3778 * buffer (default tag).
3779 *
3780 * @returns iprt status code.
3781 * @param pszString The Latin-1 string to convert.
3782 * @param ppwszString Receives pointer to the allocated UTF-16 string. The
3783 * returned string must be freed using RTUtf16Free().
3784 */
3785#define RTLatin1ToUtf16(pszString, ppwszString) RTLatin1ToUtf16Tag((pszString), (ppwszString), RTSTR_TAG)
3786
3787/**
3788 * Translate a Latin-1 (ISO-8859-1) string into a UTF-16 allocating the result
3789 * buffer (custom tag).
3790 *
3791 * @returns iprt status code.
3792 * @param pszString The Latin-1 string to convert.
3793 * @param ppwszString Receives pointer to the allocated UTF-16 string. The
3794 * returned string must be freed using RTUtf16Free().
3795 * @param pszTag Allocation tag used for statistics and such.
3796 */
3797RTDECL(int) RTLatin1ToUtf16Tag(const char *pszString, PRTUTF16 *ppwszString, const char *pszTag);
3798
3799/**
3800 * Translates pszString from Latin-1 (ISO-8859-1) to UTF-16, allocating the
3801 * result buffer if requested (default tag).
3802 *
3803 * @returns iprt status code.
3804 * @param pszString The Latin-1 string to convert.
3805 * @param cchString The maximum size in chars (the type) to convert.
3806 * The conversion stops when it reaches cchString or
3807 * the string terminator ('\\0').
3808 * Use RTSTR_MAX to translate the entire string.
3809 * @param ppwsz If cwc is non-zero, this must either be pointing
3810 * to pointer to a buffer of the specified size, or
3811 * pointer to a NULL pointer.
3812 * If *ppwsz is NULL or cwc is zero a buffer of at
3813 * least cwc items will be allocated to hold the
3814 * translated string. If a buffer was requested it
3815 * must be freed using RTUtf16Free().
3816 * @param cwc The buffer size in RTUTF16s. This includes the
3817 * terminator.
3818 * @param pcwc Where to store the length of the translated string,
3819 * excluding the terminator. (Optional)
3820 *
3821 * This may be set under some error conditions,
3822 * however, only for VERR_BUFFER_OVERFLOW and
3823 * VERR_NO_STR_MEMORY will it contain a valid string
3824 * length that can be used to resize the buffer.
3825 */
3826#define RTLatin1ToUtf16Ex(pszString, cchString, ppwsz, cwc, pcwc) \
3827 RTLatin1ToUtf16ExTag((pszString), (cchString), (ppwsz), (cwc), (pcwc), RTSTR_TAG)
3828
3829/**
3830 * Translates pszString from Latin-1 (ISO-8859-1) to UTF-16, allocating the
3831 * result buffer if requested.
3832 *
3833 * @returns iprt status code.
3834 * @param pszString The Latin-1 string to convert.
3835 * @param cchString The maximum size in chars (the type) to convert.
3836 * The conversion stops when it reaches cchString or
3837 * the string terminator ('\\0').
3838 * Use RTSTR_MAX to translate the entire string.
3839 * @param ppwsz If cwc is non-zero, this must either be pointing
3840 * to pointer to a buffer of the specified size, or
3841 * pointer to a NULL pointer.
3842 * If *ppwsz is NULL or cwc is zero a buffer of at
3843 * least cwc items will be allocated to hold the
3844 * translated string. If a buffer was requested it
3845 * must be freed using RTUtf16Free().
3846 * @param cwc The buffer size in RTUTF16s. This includes the
3847 * terminator.
3848 * @param pcwc Where to store the length of the translated string,
3849 * excluding the terminator. (Optional)
3850 *
3851 * This may be set under some error conditions,
3852 * however, only for VERR_BUFFER_OVERFLOW and
3853 * VERR_NO_STR_MEMORY will it contain a valid string
3854 * length that can be used to resize the buffer.
3855 * @param pszTag Allocation tag used for statistics and such.
3856 */
3857RTDECL(int) RTLatin1ToUtf16ExTag(const char *pszString, size_t cchString,
3858 PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag);
3859
3860/** @} */
3861
3862
3863RT_C_DECLS_END
3864
3865/** @} */
3866
3867#endif
3868
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette