VirtualBox

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

Last change on this file since 3544 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 49.5 KB
Line 
1/** @file
2 * innotek Portable Runtime - String Manipluation.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21
22#ifndef __iprt_string_h__
23#define __iprt_string_h__
24
25#include <iprt/cdefs.h>
26#include <iprt/types.h>
27#include <iprt/stdarg.h>
28#include <iprt/err.h> /* for VINF_SUCCESS */
29#if defined(__LINUX__) && defined(__KERNEL__)
30# include <linux/string.h>
31#else
32# include <string.h>
33#endif
34
35/*
36 * Supply prototypes for standard string functions provided by
37 * IPRT instead of the operating environment.
38 */
39#if defined(__DARWIN__) && defined(KERNEL)
40__BEGIN_DECLS
41void *memchr(const void *pv, int ch, size_t cb);
42char *strpbrk(const char *pszStr, const char *pszChars);
43__END_DECLS
44#endif
45
46
47/** @defgroup grp_rt_str RTStr - String Manipulation
48 * Mostly UTF-8 related helpers where the standard string functions won't do.
49 * @ingroup grp_rt
50 * @{
51 */
52
53__BEGIN_DECLS
54
55
56/**
57 * The maximum string length.
58 */
59#define RTSTR_MAX (~(size_t)0)
60
61
62#ifdef IN_RING3
63
64/**
65 * Allocates tmp buffer, translates pszString from UTF8 to current codepage.
66 *
67 * @returns iprt status code.
68 * @param ppszString Receives pointer of allocated native CP string.
69 * The returned pointer must be freed using RTStrFree().
70 * @param pszString UTF-8 string to convert.
71 */
72RTR3DECL(int) RTStrUtf8ToCurrentCP(char **ppszString, const char *pszString);
73
74/**
75 * Allocates tmp buffer, translates pszString from current codepage to UTF-8.
76 *
77 * @returns iprt status code.
78 * @param ppszString Receives pointer of allocated UTF-8 string.
79 * The returned pointer must be freed using RTStrFree().
80 * @param pszString Native string to convert.
81 */
82RTR3DECL(int) RTStrCurrentCPToUtf8(char **ppszString, const char *pszString);
83
84#endif
85
86/**
87 * Free string allocated by any of the non-UCS-2 string functions.
88 *
89 * @returns iprt status code.
90 * @param pszString Pointer to buffer with string to free.
91 * NULL is accepted.
92 */
93RTDECL(void) RTStrFree(char *pszString);
94
95/**
96 * Allocates a new copy of the given UTF-8 string.
97 *
98 * @returns Pointer to the allocated UTF-8 string.
99 * @param pszString UTF-8 string to duplicate.
100 */
101RTDECL(char *) RTStrDup(const char *pszString);
102
103/**
104 * Allocates a new copy of the given UTF-8 string.
105 *
106 * @returns iprt status code.
107 * @param ppszString Receives pointer of the allocated UTF-8 string.
108 * The returned pointer must be freed using RTStrFree().
109 * @param pszString UTF-8 string to duplicate.
110 */
111RTDECL(int) RTStrDupEx(char **ppszString, const char *pszString);
112
113/**
114 * Gets the number of code points the string is made up of, excluding
115 * the terminator.
116 *
117 *
118 * @returns Number of code points (RTUNICP).
119 * @returns 0 if the string was incorrectly encoded.
120 * @param psz The string.
121 */
122RTDECL(size_t) RTStrUniLen(const char *psz);
123
124/**
125 * Gets the number of code points the string is made up of, excluding
126 * the terminator.
127 *
128 * This function will validate the string, and incorrectly encoded UTF-8
129 * strings will be rejected.
130 *
131 * @returns iprt status code.
132 * @param psz The string.
133 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
134 * @param pcuc Where to store the code point count.
135 * This is undefined on failure.
136 */
137RTDECL(int) RTStrUniLenEx(const char *psz, size_t cch, size_t *pcuc);
138
139/**
140 * Translate a UTF-8 string into an unicode string (i.e. RTUNICPs), allocating the string buffer.
141 *
142 * @returns iprt status code.
143 * @param pszString UTF-8 string to convert.
144 * @param ppUniString Receives pointer to the allocated unicode string.
145 * The returned string must be freed using RTUniFree().
146 */
147RTDECL(int) RTStrToUni(const char *pszString, PRTUNICP *ppUniString);
148
149/**
150 * Translates pszString from UTF-8 to an array of code points, allocating the result
151 * array if requested.
152 *
153 * @returns iprt status code.
154 * @param pszString UTF-8 string to convert.
155 * @param cchString The maximum size in chars (the type) to convert. The conversion stop
156 * when it reaches cchString or the string terminator ('\\0').
157 * Use RTSTR_MAX to translate the entire string.
158 * @param ppaCps If cCps is non-zero, this must either be pointing to pointer to
159 * a buffer of the specified size, or pointer to a NULL pointer.
160 * If *ppusz is NULL or cCps is zero a buffer of at least cCps items
161 * will be allocated to hold the translated string.
162 * If a buffer was requirest it must be freed using RTUtf16Free().
163 * @param cCps The number of code points in the unicode string. This includes the terminator.
164 * @param pcCps Where to store the length of the translated string. (Optional)
165 * This field will be updated even on failure, however the value is only
166 * specified for the following two error codes. On VERR_BUFFER_OVERFLOW
167 * and VERR_NO_STR_MEMORY it contains the required buffer space.
168 */
169RTDECL(int) RTStrToUniEx(const char *pszString, size_t cchString, PRTUNICP *ppaCps, size_t cCps, size_t *pcCps);
170
171/**
172 * Calculates the length of the string in RTUTF16 items.
173 *
174 * This function will validate the string, and incorrectly encoded UTF-8
175 * strings will be rejected. The primary purpose of this function is to
176 * help allocate buffers for RTStrToUtf16Ex of the correct size. For most
177 * other puroses RTStrCalcUtf16LenEx() should be used.
178 *
179 * @returns Number of RTUTF16 items.
180 * @returns 0 if the string was incorrectly encoded.
181 * @param psz The string.
182 */
183RTDECL(size_t) RTStrCalcUtf16Len(const char *psz);
184
185/**
186 * Calculates the length of the string in RTUTF16 items.
187 *
188 * This function will validate the string, and incorrectly encoded UTF-8
189 * strings will be rejected.
190 *
191 * @returns iprt status code.
192 * @param psz The string.
193 * @param cch The max string length. Use RTSTR_MAX to process the entire string.
194 * @param pcwc Where to store the string length. Optional.
195 * This is undefined on failure.
196 */
197RTDECL(int) RTStrCalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc);
198
199/**
200 * Translate a UTF-8 string into a UTF-16 allocating the result buffer.
201 *
202 * @returns iprt status code.
203 * @param pszString UTF-8 string to convert.
204 * @param ppwszString Receives pointer to the allocated UTF-16 string.
205 * The returned string must be freed using RTUtf16Free().
206 */
207RTDECL(int) RTStrToUtf16(const char *pszString, PRTUTF16 *ppwszString);
208
209/**
210 * Translates pszString from UTF-8 to UTF-16, allocating the result buffer if requested.
211 *
212 * @returns iprt status code.
213 * @param pszString UTF-8 string to convert.
214 * @param cchString The maximum size in chars (the type) to convert. The conversion stop
215 * when it reaches cchString or the string terminator ('\\0').
216 * Use RTSTR_MAX to translate the entire string.
217 * @param ppwsz If cwc is non-zero, this must either be pointing to pointer to
218 * a buffer of the specified size, or pointer to a NULL pointer.
219 * If *ppwsz is NULL or cwc is zero a buffer of at least cwc items
220 * will be allocated to hold the translated string.
221 * If a buffer was requirest it must be freed using RTUtf16Free().
222 * @param cwc The buffer size in RTUTF16s. This includes the terminator.
223 * @param pcwc Where to store the length of the translated string. (Optional)
224 * This field will be updated even on failure, however the value is only
225 * specified for the following two error codes. On VERR_BUFFER_OVERFLOW
226 * and VERR_NO_STR_MEMORY it contains the required buffer space.
227 */
228RTDECL(int) RTStrToUtf16Ex(const char *pszString, size_t cchString, PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc);
229
230/**
231 * Allocates tmp buffer, translates pszString from UTF8 to UCS-2.
232 *
233 * @returns iprt status code.
234 * @param ppwszString Receives pointer of allocated UCS-2 string.
235 * The returned pointer must be freed using RTStrUcs2Free().
236 * @param pszString UTF-8 string to convert.
237 * @deprecated Use RTStrToUtf16().
238 */
239DECLINLINE(int) RTStrUtf8ToUcs2(PRTUCS2 *ppwszString, const char *pszString)
240{
241 return RTStrToUtf16(pszString, ppwszString);
242}
243
244/**
245 * Translates pszString from UTF8 to backwater UCS-2, can allocate a temp buffer.
246 *
247 * @returns iprt status code.
248 * @param ppwszString Receives pointer of allocated UCS-2 string.
249 * The returned pointer must be freed using RTStrUcs2Free().
250 * @param cwc Length of target buffer in RTUCS2s including the trailing '\\0'.
251 * If 0 a temporary buffer is allocated.
252 * @param pszString UTF-8 string to convert.
253 * @deprecated Use RTStrToUtf16Ex().
254 */
255DECLINLINE(int) RTStrUtf8ToUcs2Ex(PRTUCS2 *ppwszString, unsigned cwc, const char *pszString)
256{
257 return RTStrToUtf16Ex(pszString, RTSTR_MAX, ppwszString, cwc, NULL);
258}
259
260
261/**
262 * Get the unicode code point at the given string position.
263 *
264 * @returns unicode code point.
265 * @returns RTUNICP_INVALID if the encoding is invalid.
266 * @param psz The string.
267 */
268RTDECL(RTUNICP) RTStrGetCpInternal(const char *psz);
269
270/**
271 * Get the unicode code point at the given string position.
272 *
273 * @returns unicode code point.
274 * @returns RTUNICP_INVALID if the encoding is invalid.
275 * @param ppsz The string.
276 * @param pCp Where to store the unicode code point.
277 */
278RTDECL(int) RTStrGetCpExInternal(const char **ppsz, PRTUNICP pCp);
279
280/**
281 * Put the unicode code point at the given string position
282 * and return the pointer to the char following it.
283 *
284 * This function will not consider anything at or following the the
285 * buffer area pointed to by psz. It is therefore not suitable for
286 * inserting code points into a string, only appending/overwriting.
287 *
288 * @returns pointer to the char following the written code point.
289 * @param psz The string.
290 * @param CodePoint The code point to write.
291 * This sould not be RTUNICP_INVALID or any other charater
292 * out of the UTF-8 range.
293 *
294 * @remark This is a worker function for RTStrPutCp().
295 *
296 */
297RTDECL(char *) RTStrPutCpInternal(char *psz, RTUNICP CodePoint);
298
299/**
300 * Get the unicode code point at the given string position.
301 *
302 * @returns unicode code point.
303 * @returns RTUNICP_INVALID if the encoding is invalid.
304 * @param psz The string.
305 *
306 * @remark We optimize this operation by using an inline function for
307 * the most frequent and simplest sequence, the rest is
308 * handled by RTStrGetCpInternal().
309 */
310DECLINLINE(RTUNICP) RTStrGetCp(const char *psz)
311{
312 const unsigned char uch = *(const unsigned char *)psz;
313 if (!(uch & BIT(7)))
314 return uch;
315 return RTStrGetCpInternal(psz);
316}
317
318/**
319 * Get the unicode code point at the given string position.
320 *
321 * @returns iprt status code.
322 * @param ppsz Pointer to the string pointer. This will be updated to
323 * point to the char following the current code point.
324 * @param pCp Where to store the code point.
325 * RTUNICP_INVALID is stored here on failure.
326 *
327 * @remark We optimize this operation by using an inline function for
328 * the most frequent and simplest sequence, the rest is
329 * handled by RTStrGetCpExInternal().
330 */
331DECLINLINE(int) RTStrGetCpEx(const char **ppsz, PRTUNICP pCp)
332{
333 const unsigned char uch = **(const unsigned char **)ppsz;
334 if (!(uch & BIT(7)))
335 {
336 (*ppsz)++;
337 *pCp = uch;
338 return VINF_SUCCESS;
339 }
340 return RTStrGetCpExInternal(ppsz, pCp);
341}
342
343/**
344 * Put the unicode code point at the given string position
345 * and return the pointer to the char following it.
346 *
347 * This function will not consider anything at or following the the
348 * buffer area pointed to by psz. It is therefore not suitable for
349 * inserting code points into a string, only appending/overwriting.
350 *
351 * @returns pointer to the char following the written code point.
352 * @param psz The string.
353 * @param CodePoint The code point to write.
354 * This sould not be RTUNICP_INVALID or any other charater
355 * out of the UTF-8 range.
356 *
357 * @remark We optimize this operation by using an inline function for
358 * the most frequent and simplest sequence, the rest is
359 * handled by RTStrPutCpInternal().
360 */
361DECLINLINE(char *) RTStrPutCp(char *psz, RTUNICP CodePoint)
362{
363 if (CodePoint < 0x80)
364 {
365 *psz++ = (unsigned char)CodePoint;
366 return psz;
367 }
368 return RTStrPutCpInternal(psz, CodePoint);
369}
370
371/**
372 * Skips ahead, past the current code point.
373 *
374 * @returns Pointer to the char after the current code point.
375 * @param psz Pointer to the current code point.
376 * @remark This will not move the next valid code point, only past the current one.
377 */
378DECLINLINE(char *) RTStrNextCp(const char *psz)
379{
380 RTUNICP Cp;
381 RTStrGetCpEx(&psz, &Cp);
382 return (char *)psz;
383}
384
385/**
386 * Skips back to the previous code point.
387 *
388 * @returns Pointer to the char before the current code point.
389 * @returns pszStart on failure.
390 * @param pszStart Pointer to the start of the string.
391 * @param psz Pointer to the current code point.
392 */
393RTDECL(char *) RTStrPrevCp(const char *pszStart, const char *psz);
394
395
396
397#ifndef DECLARED_FNRTSTROUTPUT /* duplicated in iprt/log.h */
398#define DECLARED_FNRTSTROUTPUT
399/**
400 * Output callback.
401 *
402 * @returns number of bytes written.
403 * @param pvArg User argument.
404 * @param pachChars Pointer to an array of utf-8 characters.
405 * @param cbChars Number of bytes in the character array pointed to by pachChars.
406 */
407typedef DECLCALLBACK(size_t) FNRTSTROUTPUT(void *pvArg, const char *pachChars, size_t cbChars);
408/** Pointer to callback function. */
409typedef FNRTSTROUTPUT *PFNRTSTROUTPUT;
410#endif
411
412/** Format flag.
413 * These are used by RTStrFormat extensions and RTStrFormatNumber, mind
414 * that not all flags makes sense to both of the functions.
415 * @{ */
416#define RTSTR_F_CAPITAL 0x0001
417#define RTSTR_F_LEFT 0x0002
418#define RTSTR_F_ZEROPAD 0x0004
419#define RTSTR_F_SPECIAL 0x0008
420#define RTSTR_F_VALSIGNED 0x0010
421#define RTSTR_F_PLUS 0x0020
422#define RTSTR_F_BLANK 0x0040
423#define RTSTR_F_WIDTH 0x0080
424#define RTSTR_F_PRECISION 0x0100
425
426#define RTSTR_F_BIT_MASK 0xf800
427#define RTSTR_F_8BIT 0x0800
428#define RTSTR_F_16BIT 0x1000
429#define RTSTR_F_32BIT 0x2000
430#define RTSTR_F_64BIT 0x4000
431#define RTSTR_F_128BIT 0x8000
432/** @} */
433
434/** @def RTSTR_GET_BIT_FLAG
435 * Gets the bit flag for the specified type.
436 */
437#define RTSTR_GET_BIT_FLAG(type) \
438 ( sizeof(type) == 32 ? RTSTR_F_32BIT \
439 : sizeof(type) == 64 ? RTSTR_F_64BIT \
440 : sizeof(type) == 16 ? RTSTR_F_16BIT \
441 : sizeof(type) == 8 ? RTSTR_F_8BIT \
442 : sizeof(type) == 128? RTSTR_F_128BIT \
443 : 0)
444
445
446/**
447 * Callback to format non-standard format specifiers.
448 *
449 * @returns The number of bytes formatted.
450 * @param pvArg Formatter argument.
451 * @param pfnOutput Pointer to output function.
452 * @param pvArgOutput Argument for the output function.
453 * @param ppszFormat Pointer to the format string pointer. Advance this till the char
454 * after the format specifier.
455 * @param pArgs Pointer to the argument list. Use this to fetch the arguments.
456 * @param cchWidth Format Width. -1 if not specified.
457 * @param cchPrecision Format Precision. -1 if not specified.
458 * @param fFlags Flags (RTSTR_NTFS_*).
459 * @param chArgSize The argument size specifier, 'l' or 'L'.
460 */
461typedef DECLCALLBACK(int) FNSTRFORMAT(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
462 const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize);
463/** Pointer to a FNSTRFORMAT() function. */
464typedef FNSTRFORMAT *PFNSTRFORMAT;
465
466
467/**
468 * Partial implementation of a printf like formatter.
469 * It doesn't do everything correct, and there is no floating point support.
470 * However, it supports custom formats by the means of a format callback.
471 *
472 * @returns number of bytes formatted.
473 * @param pfnOutput Output worker.
474 * Called in two ways. Normally with a string and its length.
475 * For termination, it's called with NULL for string, 0 for length.
476 * @param pvArgOutput Argument to the output worker.
477 * @param pfnFormat Custom format worker.
478 * @param pvArgFormat Argument to the format worker.
479 * @param pszFormat Format string pointer.
480 * @param args Argument list.
481 */
482RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list args);
483
484/**
485 * Partial implementation of a printf like formatter.
486 * It doesn't do everything correct, and there is no floating point support.
487 * However, it supports custom formats by the means of a format callback.
488 *
489 * @returns number of bytes formatted.
490 * @param pfnOutput Output worker.
491 * Called in two ways. Normally with a string and its length.
492 * For termination, it's called with NULL for string, 0 for length.
493 * @param pvArgOutput Argument to the output worker.
494 * @param pfnFormat Custom format worker.
495 * @param pvArgFormat Argument to the format worker.
496 * @param pszFormat Format string.
497 * @param ... Argument list.
498 */
499RTDECL(size_t) RTStrFormat(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, ...);
500
501/**
502 * Formats an integer number according to the parameters.
503 *
504 * @returns Length of the formatted number.
505 * @param psz Pointer to output string buffer of sufficient size.
506 * @param u64Value Value to format.
507 * @param uiBase Number representation base.
508 * @param cchWidth Width.
509 * @param cchPrecision Precision.
510 * @param fFlags Flags (NTFS_*).
511 */
512RTDECL(int) RTStrFormatNumber(char *psz, uint64_t u64Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, unsigned int fFlags);
513
514/**
515 * String printf.
516 *
517 * @returns The length of the returned string (in pszBuffer).
518 * @param pszBuffer Output buffer.
519 * @param cchBuffer Size of the output buffer.
520 * @param pszFormat The format string.
521 * @param args The format argument.
522 */
523RTDECL(size_t) RTStrPrintfV(char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
524
525/**
526 * String printf.
527 *
528 * @returns The length of the returned string (in pszBuffer).
529 * @param pszBuffer Output buffer.
530 * @param cchBuffer Size of the output buffer.
531 * @param pszFormat The format string.
532 * @param ... The format argument.
533 */
534RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
535
536
537/**
538 * String printf with custom formatting.
539 *
540 * @returns The length of the returned string (in pszBuffer).
541 * @param pfnFormat Pointer to handler function for the custom formats.
542 * @param pvArg Argument to the pfnFormat function.
543 * @param pszBuffer Output buffer.
544 * @param cchBuffer Size of the output buffer.
545 * @param pszFormat The format string.
546 * @param args The format argument.
547 */
548RTDECL(size_t) RTStrPrintfExV(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
549
550/**
551 * String printf with custom formatting.
552 *
553 * @returns The length of the returned string (in pszBuffer).
554 * @param pfnFormat Pointer to handler function for the custom formats.
555 * @param pvArg Argument to the pfnFormat function.
556 * @param pszBuffer Output buffer.
557 * @param cchBuffer Size of the output buffer.
558 * @param pszFormat The format string.
559 * @param ... The format argument.
560 */
561RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
562
563
564/**
565 * Allocating string printf.
566 *
567 * @returns The length of the string in the returned *ppszBuffer.
568 * @returns -1 on failure.
569 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
570 * The buffer should be freed using RTStrFree().
571 * On failure *ppszBuffer will be set to NULL.
572 * @param pszFormat The format string.
573 * @param args The format argument.
574 */
575RTDECL(int) RTStrAPrintfV(char **ppszBuffer, const char *pszFormat, va_list args);
576
577/**
578 * Allocating string printf.
579 *
580 * @returns The length of the string in the returned *ppszBuffer.
581 * @returns -1 on failure.
582 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
583 * The buffer should be freed using RTStrFree().
584 * On failure *ppszBuffer will be set to NULL.
585 * @param pszFormat The format string.
586 * @param ... The format argument.
587 */
588RTDECL(int) RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...);
589
590
591/**
592 * Strips blankspaces from both ends of the string.
593 *
594 * @returns Pointer to first non-blank char in the string.
595 * @param psz The string to strip.
596 */
597RTDECL(char *) RTStrStrip(char *psz);
598
599/**
600 * Strips blankspaces from the start of the string.
601 *
602 * @returns Pointer to first non-blank char in the string.
603 * @param psz The string to strip.
604 */
605RTDECL(char *) RTStrStripL(const char *psz);
606
607/**
608 * Strips blankspaces from the end of the string.
609 *
610 * @returns psz.
611 * @param psz The string to strip.
612 */
613RTDECL(char *) RTStrStripR(char *psz);
614
615
616/** @defgroup rt_str_conv String To/From Number Conversions
617 * @ingroup grp_rt_str
618 * @{ */
619
620/**
621 * Converts a string representation of a number to a 64-bit unsigned number.
622 *
623 * @returns iprt status code.
624 * Warnings are used to indicate conversion problems.
625 * @param pszValue Pointer to the string value.
626 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
627 * @param uBase The base of the representation used.
628 * If 0 the function will look for known prefixes before defaulting to 10.
629 * @param pu64 Where to store the converted number. (optional)
630 */
631RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64);
632
633/**
634 * Converts a string representation of a number to a 64-bit unsigned number.
635 * The base is guessed.
636 *
637 * @returns 64-bit unsigned number on success.
638 * @returns 0 on failure.
639 * @param pszValue Pointer to the string value.
640 */
641RTDECL(uint64_t) RTStrToUInt64(const char *pszValue);
642
643/**
644 * Converts a string representation of a number to a 32-bit unsigned number.
645 *
646 * @returns iprt status code.
647 * Warnings are used to indicate conversion problems.
648 * @param pszValue Pointer to the string value.
649 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
650 * @param uBase The base of the representation used.
651 * If 0 the function will look for known prefixes before defaulting to 10.
652 * @param pu32 Where to store the converted number. (optional)
653 */
654RTDECL(int) RTStrToUInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32);
655
656/**
657 * Converts a string representation of a number to a 64-bit unsigned number.
658 * The base is guessed.
659 *
660 * @returns 32-bit unsigned number on success.
661 * @returns 0 on failure.
662 * @param pszValue Pointer to the string value.
663 */
664RTDECL(uint32_t) RTStrToUInt32(const char *pszValue);
665
666/**
667 * Converts a string representation of a number to a 16-bit unsigned number.
668 *
669 * @returns iprt status code.
670 * Warnings are used to indicate conversion problems.
671 * @param pszValue Pointer to the string value.
672 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
673 * @param uBase The base of the representation used.
674 * If 0 the function will look for known prefixes before defaulting to 10.
675 * @param pu16 Where to store the converted number. (optional)
676 */
677RTDECL(int) RTStrToUInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint16_t *pu16);
678
679/**
680 * Converts a string representation of a number to a 16-bit unsigned number.
681 * The base is guessed.
682 *
683 * @returns 16-bit unsigned number on success.
684 * @returns 0 on failure.
685 * @param pszValue Pointer to the string value.
686 */
687RTDECL(uint16_t) RTStrToUInt16(const char *pszValue);
688
689/**
690 * Converts a string representation of a number to a 8-bit unsigned number.
691 *
692 * @returns iprt status code.
693 * Warnings are used to indicate conversion problems.
694 * @param pszValue Pointer to the string value.
695 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
696 * @param uBase The base of the representation used.
697 * If 0 the function will look for known prefixes before defaulting to 10.
698 * @param pu8 Where to store the converted number. (optional)
699 */
700RTDECL(int) RTStrToUInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint8_t *pu8);
701
702/**
703 * Converts a string representation of a number to a 8-bit unsigned number.
704 * The base is guessed.
705 *
706 * @returns 8-bit unsigned number on success.
707 * @returns 0 on failure.
708 * @param pszValue Pointer to the string value.
709 */
710RTDECL(uint8_t) RTStrToUInt8(const char *pszValue);
711
712/**
713 * Converts a string representation of a number to a 64-bit signed number.
714 *
715 * @returns iprt status code.
716 * Warnings are used to indicate conversion problems.
717 * @param pszValue Pointer to the string value.
718 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
719 * @param uBase The base of the representation used.
720 * If 0 the function will look for known prefixes before defaulting to 10.
721 * @param pi64 Where to store the converted number. (optional)
722 */
723RTDECL(int) RTStrToInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, int64_t *pi64);
724
725/**
726 * Converts a string representation of a number to a 64-bit signed number.
727 * The base is guessed.
728 *
729 * @returns 64-bit signed number on success.
730 * @returns 0 on failure.
731 * @param pszValue Pointer to the string value.
732 */
733RTDECL(int64_t) RTStrToInt64(const char *pszValue);
734
735/**
736 * Converts a string representation of a number to a 32-bit signed number.
737 *
738 * @returns iprt status code.
739 * Warnings are used to indicate conversion problems.
740 * @param pszValue Pointer to the string value.
741 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
742 * @param uBase The base of the representation used.
743 * If 0 the function will look for known prefixes before defaulting to 10.
744 * @param pi32 Where to store the converted number. (optional)
745 */
746RTDECL(int) RTStrToInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, int32_t *pi32);
747
748/**
749 * Converts a string representation of a number to a 32-bit signed number.
750 * The base is guessed.
751 *
752 * @returns 32-bit signed number on success.
753 * @returns 0 on failure.
754 * @param pszValue Pointer to the string value.
755 */
756RTDECL(int32_t) RTStrToInt32(const char *pszValue);
757
758/**
759 * Converts a string representation of a number to a 16-bit signed number.
760 *
761 * @returns iprt status code.
762 * Warnings are used to indicate conversion problems.
763 * @param pszValue Pointer to the string value.
764 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
765 * @param uBase The base of the representation used.
766 * If 0 the function will look for known prefixes before defaulting to 10.
767 * @param pi16 Where to store the converted number. (optional)
768 */
769RTDECL(int) RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16);
770
771/**
772 * Converts a string representation of a number to a 16-bit signed number.
773 * The base is guessed.
774 *
775 * @returns 16-bit signed number on success.
776 * @returns 0 on failure.
777 * @param pszValue Pointer to the string value.
778 */
779RTDECL(int16_t) RTStrToInt16(const char *pszValue);
780
781/**
782 * Converts a string representation of a number to a 8-bit signed number.
783 *
784 * @returns iprt status code.
785 * Warnings are used to indicate conversion problems.
786 * @param pszValue Pointer to the string value.
787 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
788 * @param uBase The base of the representation used.
789 * If 0 the function will look for known prefixes before defaulting to 10.
790 * @param pi8 Where to store the converted number. (optional)
791 */
792RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8);
793
794/**
795 * Converts a string representation of a number to a 8-bit signed number.
796 * The base is guessed.
797 *
798 * @returns 8-bit signed number on success.
799 * @returns 0 on failure.
800 * @param pszValue Pointer to the string value.
801 */
802RTDECL(int8_t) RTStrToInt8(const char *pszValue);
803
804/**
805 * Performs a case insensitive string compare between two UTF-8 strings.
806 *
807 * This is a simplified compare, as only the simplified lower/upper case folding
808 * specified by the unicode specs are used. It does not consider character pairs
809 * as they are used in some languages, just simple upper & lower case compares.
810 *
811 * @returns < 0 if the first string less than the second string.
812 * @returns 0 if the first string identical to the second string.
813 * @returns > 0 if the first string greater than the second string.
814 * @param psz1 First UTF-8 string.
815 * @param psz2 Second UTF-8 string.
816 */
817RTDECL(int) RTStrICmp(const char *psz1, const char *psz2);
818
819/** @} */
820
821
822/** @defgroup rt_str_space Unique String Space
823 * @ingroup grp_rt_str
824 * @{
825 */
826
827/** Pointer to a string name space container node core. */
828typedef struct RTSTRSPACECORE *PRTSTRSPACECORE;
829/** Pointer to a pointer to a string name space container node core. */
830typedef PRTSTRSPACECORE *PPRTSTRSPACECORE;
831
832/**
833 * String name space container node core.
834 */
835typedef struct RTSTRSPACECORE
836{
837 /** Hash key. Don't touch. */
838 uint32_t Key;
839 /** Pointer to the left leaf node. Don't touch. */
840 PRTSTRSPACECORE pLeft;
841 /** Pointer to the left rigth node. Don't touch. */
842 PRTSTRSPACECORE pRight;
843 /** Pointer to the list of string with the same key. Don't touch. */
844 PRTSTRSPACECORE pList;
845 /** Height of this tree: max(heigth(left), heigth(right)) + 1. Don't touch */
846 unsigned char uchHeight;
847 /** The string length. Read only! */
848 size_t cchString;
849 /** Pointer to the string. Read only! */
850 const char * pszString;
851} RTSTRSPACECORE;
852
853/** String space. (Initialize with NULL.) */
854typedef PRTSTRSPACECORE RTSTRSPACE;
855/** Pointer to a string space. */
856typedef PPRTSTRSPACECORE PRTSTRSPACE;
857
858
859/**
860 * Inserts a string into a unique string space.
861 *
862 * @returns true on success.
863 * @returns false if the string collieded with an existing string.
864 * @param pStrSpace The space to insert it into.
865 * @param pStr The string node.
866 */
867RTDECL(bool) RTStrSpaceInsert(PRTSTRSPACE pStrSpace, PRTSTRSPACECORE pStr);
868
869/**
870 * Removes a string from a unique string space.
871 *
872 * @returns Pointer to the removed string node.
873 * @returns NULL if the string was not found in the string space.
874 * @param pStrSpace The space to insert it into.
875 * @param pszString The string to remove.
876 */
877RTDECL(PRTSTRSPACECORE) RTStrSpaceRemove(PRTSTRSPACE pStrSpace, const char *pszString);
878
879/**
880 * Gets a string from a unique string space.
881 *
882 * @returns Pointer to the string node.
883 * @returns NULL if the string was not found in the string space.
884 * @param pStrSpace The space to insert it into.
885 * @param pszString The string to get.
886 */
887RTDECL(PRTSTRSPACECORE) RTStrSpaceGet(PRTSTRSPACE pStrSpace, const char *pszString);
888
889/**
890 * Callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy().
891 *
892 * @returns 0 on continue.
893 * @returns Non-zero to aborts the operation.
894 * @param pStr The string node
895 * @param pvUser The user specified argument.
896 */
897typedef DECLCALLBACK(int) FNRTSTRSPACECALLBACK(PRTSTRSPACECORE pStr, void *pvUser);
898/** Pointer to callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy(). */
899typedef FNRTSTRSPACECALLBACK *PFNRTSTRSPACECALLBACK;
900
901/**
902 * Destroys the string space.
903 * The caller supplies a callback which will be called for each of
904 * the string nodes in for freeing their memory and other resources.
905 *
906 * @returns 0 or what ever non-zero return value pfnCallback returned
907 * when aborting the destruction.
908 * @param pStrSpace The space to insert it into.
909 * @param pfnCallback The callback.
910 * @param pvUser The user argument.
911 */
912RTDECL(int) RTStrSpaceDestroy(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
913
914/**
915 * Enumerates the string space.
916 * The caller supplies a callback which will be called for each of
917 * the string nodes.
918 *
919 * @returns 0 or what ever non-zero return value pfnCallback returned
920 * when aborting the destruction.
921 * @param pStrSpace The space to insert it into.
922 * @param pfnCallback The callback.
923 * @param pvUser The user argument.
924 */
925RTDECL(int) RTStrSpaceEnumerate(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
926
927/** @} */
928
929
930/** @defgroup rt_str_utf16 UTF-16 String Manipulation
931 * @ingroup grp_rt_str
932 * @{
933 */
934
935/**
936 * Free a UTF-16 string allocated by RTStrUtf8ToUtf16(), RTStrUtf8ToUtf16Ex(),
937 * RTUtf16Dup() or RTUtf16DupEx().
938 *
939 * @returns iprt status code.
940 * @param pwszString The UTF-16 string to free. NULL is accepted.
941 */
942RTDECL(void) RTUtf16Free(PRTUTF16 pwszString);
943
944/**
945 * Allocates a new copy of the specified UTF-16 string.
946 *
947 * @returns Pointer to the allocated string copy. Use RTUtf16Free() to free it.
948 * @returns NULL when out of memory.
949 * @param pwszString UTF-16 string to duplicate.
950 * @remark This function will not make any attempt to validate the encoding.
951 */
952RTDECL(PRTUTF16) RTUtf16Dup(PCRTUTF16 pwszString);
953
954/**
955 * Allocates a new copy of the specified UTF-16 string.
956 *
957 * @returns iprt status code.
958 * @param ppwszString Receives pointer of the allocated UTF-16 string.
959 * The returned pointer must be freed using RTUtf16Free().
960 * @param pwszString UTF-16 string to duplicate.
961 * @param cwcExtra Number of extra RTUTF16 items to allocate.
962 * @remark This function will not make any attempt to validate the encoding.
963 */
964RTDECL(int) RTUtf16DupEx(PRTUTF16 *ppwszString, PCRTUTF16 pwszString, size_t cwcExtra);
965
966/**
967 * Returns the length of a UTF-16 string in UTF-16 characters
968 * without trailing '\\0'.
969 *
970 * Surrogate pairs counts as two UTF-16 characters here. Use RTUtf16CpCnt()
971 * to get the exact number of code points in the string.
972 *
973 * @returns The number of RTUTF16 items in the string.
974 * @param pwszString Pointer the UTF-16 string.
975 * @remark This function will not make any attempt to validate the encoding.
976 */
977RTDECL(size_t) RTUtf16Len(PCRTUTF16 pwszString);
978
979/**
980 * Performs a case sensitive string compare between two UTF-16 strings.
981 *
982 * @returns < 0 if the first string less than the second string.s
983 * @returns 0 if the first string identical to the second string.
984 * @returns > 0 if the first string greater than the second string.
985 * @param pwsz1 First UTF-16 string.
986 * @param pwsz2 Second UTF-16 string.
987 * @remark This function will not make any attempt to validate the encoding.
988 */
989RTDECL(int) RTUtf16Cmp(register PCRTUTF16 pwsz1, register PCRTUTF16 pwsz2);
990
991/**
992 * Performs a case insensitive string compare between two UTF-16 strings.
993 *
994 * This is a simplified compare, as only the simplified lower/upper case folding
995 * specified by the unicode specs are used. It does not consider character pairs
996 * as they are used in some languages, just simple upper & lower case compares.
997 *
998 * @returns < 0 if the first string less than the second string.
999 * @returns 0 if the first string identical to the second string.
1000 * @returns > 0 if the first string greater than the second string.
1001 * @param pwsz1 First UTF-16 string.
1002 * @param pwsz2 Second UTF-16 string.
1003 */
1004RTDECL(int) RTUtf16ICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
1005
1006/**
1007 * Performs a case insensitive string compare between two UTF-16 strings
1008 * using the current locale of the process (if applicable).
1009 *
1010 * This differs from RTUtf16ICmp() in that it will try, if a locale with the
1011 * required data is available, to do a correct case-insensitive compare. It
1012 * follows that it is more complex and thereby likely to be more expensive.
1013 *
1014 * @returns < 0 if the first string less than the second string.
1015 * @returns 0 if the first string identical to the second string.
1016 * @returns > 0 if the first string greater than the second string.
1017 * @param pwsz1 First UTF-16 string.
1018 * @param pwsz2 Second UTF-16 string.
1019 */
1020RTDECL(int) RTUtf16LocaleICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
1021
1022/**
1023 * Folds a UTF-16 string to lowercase.
1024 *
1025 * This is a very simple folding; is uses the simple lowercase
1026 * code point, it is not related to any locale just the most common
1027 * lowercase codepoint setup by the unicode specs, and it will not
1028 * create new surrogate pairs or remove existing ones.
1029 *
1030 * @returns Pointer to the passed in string.
1031 * @param pwsz The string to fold.
1032 */
1033RTDECL(PRTUTF16) RTUtf16ToLower(PRTUTF16 pwsz);
1034
1035/**
1036 * Folds a UTF-16 string to uppercase.
1037 *
1038 * This is a very simple folding; is uses the simple uppercase
1039 * code point, it is not related to any locale just the most common
1040 * uppercase codepoint setup by the unicode specs, and it will not
1041 * create new surrogate pairs or remove existing ones.
1042 *
1043 * @returns Pointer to the passed in string.
1044 * @param pwsz The string to fold.
1045 */
1046RTDECL(PRTUTF16) RTUtf16ToUpper(PRTUTF16 pwsz);
1047
1048/**
1049 * Translate a UTF-16 string into a UTF-8 allocating the result buffer.
1050 *
1051 * @returns iprt status code.
1052 * @param pwszString UTF-16 string to convert.
1053 * @param ppszString Receives pointer of allocated UTF-8 string.
1054 * The returned pointer must be freed using RTStrFree().
1055 */
1056RTDECL(int) RTUtf16ToUtf8(PCRTUTF16 pwszString, char **ppszString);
1057
1058/**
1059 * Translates UTF-16 to UTF-8 using buffer provided by the caller or
1060 * a fittingly sized buffer allocated by the function.
1061 *
1062 * @returns iprt status code.
1063 * @param pwszString The UTF-16 string to convert.
1064 * @param cwcString The number of RTUTF16 items to translation from pwszString.
1065 * The translate will stop when reaching cwcString or the terminator ('\\0').
1066 * Use RTSTR_MAX to translate the entire string.
1067 * @param ppsz If cch is non-zero, this must either be pointing to pointer to
1068 * a buffer of the specified size, or pointer to a NULL pointer.
1069 * If *ppsz is NULL or cch is zero a buffer of at least cch chars
1070 * will be allocated to hold the translated string.
1071 * If a buffer was requirest it must be freed using RTUtf16Free().
1072 * @param cch The buffer size in chars (the type). This includes the terminator.
1073 * @param pcch Where to store the length of the translated string. (Optional)
1074 * This field will be updated even on failure, however the value is only
1075 * specified for the following two error codes. On VERR_BUFFER_OVERFLOW
1076 * and VERR_NO_STR_MEMORY it contains the required buffer space.
1077 */
1078RTDECL(int) RTUtf16ToUtf8Ex(PCRTUTF16 pwszString, size_t cwcString, char **ppsz, size_t cch, size_t *pcch);
1079
1080
1081/**
1082 * Allocates tmp buffer, translates pwszString from UCS-2 to UTF8.
1083 *
1084 * @returns iprt status code.
1085 * @param ppszString Receives pointer of allocated UTF8 string.
1086 * The returned pointer must be freed using RTStrFree().
1087 * @param pwszString UCS-2 string to convert.
1088 * @deprecated Use RTUtf16ToUtf8().
1089 */
1090DECLINLINE(int) RTStrUcs2ToUtf8(char **ppszString, PCRTUCS2 pwszString)
1091{
1092 return RTUtf16ToUtf8(pwszString, ppszString);
1093}
1094
1095/**
1096 * Translates UCS-2 to UTF-8 using buffer provided by the caller or
1097 * a fittingly sized buffer allocated by the function.
1098 *
1099 * @returns iprt status code.
1100 * @param ppszString If cch is not zero, this points to the pointer to the
1101 * buffer where the converted string shall be resulted.
1102 * If cch is zero, this is where the pointer to the allocated
1103 * buffer with the converted string is stored. The allocated
1104 * buffer must be freed by using RTStrFree().
1105 * @param cch Size of the passed in buffer (*ppszString).
1106 * If 0 a fittingly sized buffer is allocated.
1107 * @param pwszString UCS-2 string to convert.
1108 * @deprecated
1109 */
1110DECLINLINE(int) RTStrUcs2ToUtf8Ex(char **ppszString, size_t cch, PCRTUCS2 pwszString)
1111{
1112 return RTUtf16ToUtf8Ex(pwszString, RTSTR_MAX, ppszString, cch, NULL);
1113}
1114
1115/**
1116 * Free a UCS-2 string allocated by RTStrUtf8ToUcs2().
1117 *
1118 * @returns iprt status code.
1119 * @param pwszString Pointer to buffer with unicode string to free.
1120 * NULL is accepted.
1121 * @deprecated
1122 */
1123DECLINLINE(void) RTStrUcs2Free(PRTUCS2 pwszString)
1124{
1125 RTUtf16Free(pwszString);
1126}
1127
1128/**
1129 * Allocates a new copy of the given UCS-2 string.
1130 *
1131 * @returns Pointer to the allocated string copy. Use RTStrUcs2Free() to free it.
1132 * @returns NULL when out of memory.
1133 * @param pwszString UCS-2 string to duplicate.
1134 * @deprecated
1135 */
1136DECLINLINE(PRTUCS2) RTStrUcs2Dup(PCRTUCS2 pwszString)
1137{
1138 return RTUtf16Dup(pwszString);
1139}
1140
1141/**
1142 * Allocates a new copy of the given UCS-2 string.
1143 *
1144 * @returns iprt status code.
1145 * @param ppwszString Receives pointer of the allocated UCS-2 string.
1146 * The returned pointer must be freed using RTStrUcs2Free().
1147 * @param pwszString UCS-2 string to duplicate.
1148 * @deprecated
1149 */
1150DECLINLINE(int) RTStrUcs2DupEx(PRTUCS2 *ppwszString, PCRTUCS2 pwszString)
1151{
1152 return RTUtf16DupEx(ppwszString, pwszString, 0);
1153}
1154
1155/**
1156 * Returns the length of a UCS-2 string in UCS-2 characters
1157 * without trailing '\\0'.
1158 *
1159 * @returns Length of input string in UCS-2 characters.
1160 * @param pwszString Pointer the UCS-2 string.
1161 * @deprecated
1162 */
1163DECLINLINE(size_t) RTStrUcs2Len(PCRTUCS2 pwszString)
1164{
1165 return RTUtf16Len(pwszString);
1166}
1167
1168/**
1169 * Performs a case sensitive string compare between two UCS-2 strings.
1170 *
1171 * @returns < 0 if the first string less than the second string.
1172 * @returns 0 if the first string identical to the second string.
1173 * @returns > 0 if the first string greater than the second string.
1174 * @param pwsz1 First UCS-2 string.
1175 * @param pwsz2 Second UCS-2 string.
1176 * @deprecated
1177 */
1178DECLINLINE(int) RTStrUcs2Cmp(register PCRTUCS2 pwsz1, register PCRTUCS2 pwsz2)
1179{
1180 return RTUtf16Cmp(pwsz1, pwsz2);
1181}
1182
1183
1184/**
1185 * Get the unicode code point at the given string position.
1186 *
1187 * @returns unicode code point.
1188 * @returns RTUNICP_INVALID if the encoding is invalid.
1189 * @param pwsz The string.
1190 *
1191 * @remark This is an internal worker for RTUtf16GetCp().
1192 */
1193RTDECL(RTUNICP) RTUtf16GetCpInternal(PCRTUTF16 pwsz);
1194
1195/**
1196 * Get the unicode code point at the given string position.
1197 *
1198 * @returns iprt status code.
1199 * @param ppwsz Pointer to the string pointer. This will be updated to
1200 * point to the char following the current code point.
1201 * @param pCp Where to store the code point.
1202 * RTUNICP_INVALID is stored here on failure.
1203 *
1204 * @remark This is an internal worker for RTUtf16GetCpEx().
1205 */
1206RTDECL(int) RTUtf16GetCpExInternal(PCRTUTF16 *ppwsz, PRTUNICP pCp);
1207
1208/**
1209 * Put the unicode code point at the given string position
1210 * and return the pointer to the char following it.
1211 *
1212 * This function will not consider anything at or following the the
1213 * buffer area pointed to by pwsz. It is therefore not suitable for
1214 * inserting code points into a string, only appending/overwriting.
1215 *
1216 * @returns pointer to the char following the written code point.
1217 * @param pwsz The string.
1218 * @param CodePoint The code point to write.
1219 * This sould not be RTUNICP_INVALID or any other charater
1220 * out of the UTF-16 range.
1221 *
1222 * @remark This is an internal worker for RTUtf16GetCpEx().
1223 */
1224RTDECL(PRTUTF16) RTUtf16PutCpInternal(PRTUTF16 pwsz, RTUNICP CodePoint);
1225
1226/**
1227 * Get the unicode code point at the given string position.
1228 *
1229 * @returns unicode code point.
1230 * @returns RTUNICP_INVALID if the encoding is invalid.
1231 * @param pwsz The string.
1232 *
1233 * @remark We optimize this operation by using an inline function for
1234 * everything which isn't a surrogate pair or an endian indicator.
1235 */
1236DECLINLINE(RTUNICP) RTUtf16GetCp(PCRTUTF16 pwsz)
1237{
1238 const RTUTF16 wc = *pwsz;
1239 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
1240 return wc;
1241 return RTUtf16GetCpInternal(pwsz);
1242}
1243
1244/**
1245 * Get the unicode code point at the given string position.
1246 *
1247 * @returns iprt status code.
1248 * @param ppwsz Pointer to the string pointer. This will be updated to
1249 * point to the char following the current code point.
1250 * @param pCp Where to store the code point.
1251 * RTUNICP_INVALID is stored here on failure.
1252 *
1253 * @remark We optimize this operation by using an inline function for
1254 * everything which isn't a surrogate pair or and endian indicator.
1255 */
1256DECLINLINE(int) RTUtf16GetCpEx(PCRTUTF16 *ppwsz, PRTUNICP pCp)
1257{
1258 const RTUTF16 wc = **ppwsz;
1259 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
1260 {
1261 (*ppwsz)++;
1262 *pCp = wc;
1263 return VINF_SUCCESS;
1264 }
1265 return RTUtf16GetCpExInternal(ppwsz, pCp);
1266}
1267
1268/**
1269 * Put the unicode code point at the given string position
1270 * and return the pointer to the char following it.
1271 *
1272 * This function will not consider anything at or following the the
1273 * buffer area pointed to by pwsz. It is therefore not suitable for
1274 * inserting code points into a string, only appending/overwriting.
1275 *
1276 * @returns pointer to the char following the written code point.
1277 * @param pwsz The string.
1278 * @param CodePoint The code point to write.
1279 * This sould not be RTUNICP_INVALID or any other charater
1280 * out of the UTF-16 range.
1281 *
1282 * @remark We optimize this operation by using an inline function for
1283 * everything which isn't a surrogate pair or and endian indicator.
1284 */
1285DECLINLINE(PRTUTF16) RTUtf16PutCp(PRTUTF16 pwsz, RTUNICP CodePoint)
1286{
1287 if (CodePoint < 0xd800 || (CodePoint > 0xd800 && CodePoint < 0xfffe))
1288 {
1289 *pwsz++ = (RTUTF16)CodePoint;
1290 return pwsz;
1291 }
1292 return RTUtf16PutCpInternal(pwsz, CodePoint);
1293}
1294
1295/**
1296 * Skips ahead, past the current code point.
1297 *
1298 * @returns Pointer to the char after the current code point.
1299 * @param pwsz Pointer to the current code point.
1300 * @remark This will not move the next valid code point, only past the current one.
1301 */
1302DECLINLINE(PRTUTF16) RTUtf16NextCp(PCRTUTF16 pwsz)
1303{
1304 RTUNICP Cp;
1305 RTUtf16GetCpEx(&pwsz, &Cp);
1306 return (PRTUTF16)pwsz;
1307}
1308
1309/**
1310 * Skips backwards, to the previous code point.
1311 *
1312 * @returns Pointer to the char after the current code point.
1313 * @param pwszStart Pointer to the start of the string.
1314 * @param pwsz Pointer to the current code point.
1315 */
1316RTDECL(PRTUTF16) RTUtf16PrevCp(PCRTUTF16 pwszStart, PCRTUTF16 pwsz);
1317
1318
1319/**
1320 * Checks if the UTF-16 char is the high surrogate char (i.e.
1321 * the 1st char in the pair).
1322 *
1323 * @returns true if it is.
1324 * @returns false if it isn't.
1325 * @param wc The character to investigate.
1326 */
1327DECLINLINE(bool) RTUtf16IsHighSurrogate(RTUTF16 wc)
1328{
1329 return wc >= 0xd800 && wc <= 0xdbff;
1330}
1331
1332/**
1333 * Checks if the UTF-16 char is the low surrogate char (i.e.
1334 * the 2nd char in the pair).
1335 *
1336 * @returns true if it is.
1337 * @returns false if it isn't.
1338 * @param wc The character to investigate.
1339 */
1340DECLINLINE(bool) RTUtf16IsLowSurrogate(RTUTF16 wc)
1341{
1342 return wc >= 0xdc00 && wc <= 0xdfff;
1343}
1344
1345
1346/**
1347 * Checks if the two UTF-16 chars form a valid surrogate pair.
1348 *
1349 * @returns true if they do.
1350 * @returns false if they doesn't.
1351 * @param wcHigh The high (1st) character.
1352 * @param wcLow The low (2nd) character.
1353 */
1354DECLINLINE(bool) RTUtf16IsSurrogatePair(RTUTF16 wcHigh, RTUTF16 wcLow)
1355{
1356 return RTUtf16IsHighSurrogate(wcHigh)
1357 && RTUtf16IsLowSurrogate(wcLow);
1358}
1359
1360/** @} */
1361
1362__END_DECLS
1363
1364/** @} */
1365
1366#endif
1367
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