VirtualBox

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

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

PFNSTRFORMAT should return size_t.

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