VirtualBox

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

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

Solaris

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 49.9 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 & 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 & 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(int) FNSTRFORMAT(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
477 const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize);
478/** Pointer to a FNSTRFORMAT() function. */
479typedef FNSTRFORMAT *PFNSTRFORMAT;
480
481
482/**
483 * Partial implementation of a printf like formatter.
484 * It doesn't do everything correct, and there is no floating point support.
485 * However, it supports custom formats by the means of a format callback.
486 *
487 * @returns number of bytes formatted.
488 * @param pfnOutput Output worker.
489 * Called in two ways. Normally with a string and its length.
490 * For termination, it's called with NULL for string, 0 for length.
491 * @param pvArgOutput Argument to the output worker.
492 * @param pfnFormat Custom format worker.
493 * @param pvArgFormat Argument to the format worker.
494 * @param pszFormat Format string pointer.
495 * @param args Argument list.
496 */
497RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list args);
498
499/**
500 * Partial implementation of a printf like formatter.
501 * It doesn't do everything correct, and there is no floating point support.
502 * However, it supports custom formats by the means of a format callback.
503 *
504 * @returns number of bytes formatted.
505 * @param pfnOutput Output worker.
506 * Called in two ways. Normally with a string and its length.
507 * For termination, it's called with NULL for string, 0 for length.
508 * @param pvArgOutput Argument to the output worker.
509 * @param pfnFormat Custom format worker.
510 * @param pvArgFormat Argument to the format worker.
511 * @param pszFormat Format string.
512 * @param ... Argument list.
513 */
514RTDECL(size_t) RTStrFormat(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, ...);
515
516/**
517 * Formats an integer number according to the parameters.
518 *
519 * @returns Length of the formatted number.
520 * @param psz Pointer to output string buffer of sufficient size.
521 * @param u64Value Value to format.
522 * @param uiBase Number representation base.
523 * @param cchWidth Width.
524 * @param cchPrecision Precision.
525 * @param fFlags Flags (NTFS_*).
526 */
527RTDECL(int) RTStrFormatNumber(char *psz, uint64_t u64Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, unsigned int fFlags);
528
529/**
530 * String printf.
531 *
532 * @returns The length of the returned string (in pszBuffer).
533 * @param pszBuffer Output buffer.
534 * @param cchBuffer Size of the output buffer.
535 * @param pszFormat The format string.
536 * @param args The format argument.
537 */
538RTDECL(size_t) RTStrPrintfV(char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
539
540/**
541 * String printf.
542 *
543 * @returns The length of the returned string (in pszBuffer).
544 * @param pszBuffer Output buffer.
545 * @param cchBuffer Size of the output buffer.
546 * @param pszFormat The format string.
547 * @param ... The format argument.
548 */
549RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
550
551
552/**
553 * String printf with custom formatting.
554 *
555 * @returns The length of the returned string (in pszBuffer).
556 * @param pfnFormat Pointer to handler function for the custom formats.
557 * @param pvArg Argument to the pfnFormat function.
558 * @param pszBuffer Output buffer.
559 * @param cchBuffer Size of the output buffer.
560 * @param pszFormat The format string.
561 * @param args The format argument.
562 */
563RTDECL(size_t) RTStrPrintfExV(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args);
564
565/**
566 * String printf with custom formatting.
567 *
568 * @returns The length of the returned string (in pszBuffer).
569 * @param pfnFormat Pointer to handler function for the custom formats.
570 * @param pvArg Argument to the pfnFormat function.
571 * @param pszBuffer Output buffer.
572 * @param cchBuffer Size of the output buffer.
573 * @param pszFormat The format string.
574 * @param ... The format argument.
575 */
576RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...);
577
578
579/**
580 * Allocating string printf.
581 *
582 * @returns The length of the string in the returned *ppszBuffer.
583 * @returns -1 on failure.
584 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
585 * The buffer should be freed using RTStrFree().
586 * On failure *ppszBuffer will be set to NULL.
587 * @param pszFormat The format string.
588 * @param args The format argument.
589 */
590RTDECL(int) RTStrAPrintfV(char **ppszBuffer, const char *pszFormat, va_list args);
591
592/**
593 * Allocating string printf.
594 *
595 * @returns The length of the string in the returned *ppszBuffer.
596 * @returns -1 on failure.
597 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
598 * The buffer should be freed using RTStrFree().
599 * On failure *ppszBuffer will be set to NULL.
600 * @param pszFormat The format string.
601 * @param ... The format argument.
602 */
603RTDECL(int) RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...);
604
605
606/**
607 * Strips blankspaces from both ends of the string.
608 *
609 * @returns Pointer to first non-blank char in the string.
610 * @param psz The string to strip.
611 */
612RTDECL(char *) RTStrStrip(char *psz);
613
614/**
615 * Strips blankspaces from the start of the string.
616 *
617 * @returns Pointer to first non-blank char in the string.
618 * @param psz The string to strip.
619 */
620RTDECL(char *) RTStrStripL(const char *psz);
621
622/**
623 * Strips blankspaces from the end of the string.
624 *
625 * @returns psz.
626 * @param psz The string to strip.
627 */
628RTDECL(char *) RTStrStripR(char *psz);
629
630
631/** @defgroup rt_str_conv String To/From Number Conversions
632 * @ingroup grp_rt_str
633 * @{ */
634
635/**
636 * Converts a string representation of a number to a 64-bit unsigned number.
637 *
638 * @returns iprt status code.
639 * Warnings are used to indicate conversion problems.
640 * @param pszValue Pointer to the string value.
641 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
642 * @param uBase The base of the representation used.
643 * If 0 the function will look for known prefixes before defaulting to 10.
644 * @param pu64 Where to store the converted number. (optional)
645 */
646RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64);
647
648/**
649 * Converts a string representation of a number to a 64-bit unsigned number.
650 * The base is guessed.
651 *
652 * @returns 64-bit unsigned number on success.
653 * @returns 0 on failure.
654 * @param pszValue Pointer to the string value.
655 */
656RTDECL(uint64_t) RTStrToUInt64(const char *pszValue);
657
658/**
659 * Converts a string representation of a number to a 32-bit unsigned number.
660 *
661 * @returns iprt status code.
662 * Warnings are used to indicate conversion problems.
663 * @param pszValue Pointer to the string value.
664 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
665 * @param uBase The base of the representation used.
666 * If 0 the function will look for known prefixes before defaulting to 10.
667 * @param pu32 Where to store the converted number. (optional)
668 */
669RTDECL(int) RTStrToUInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32);
670
671/**
672 * Converts a string representation of a number to a 64-bit unsigned number.
673 * The base is guessed.
674 *
675 * @returns 32-bit unsigned number on success.
676 * @returns 0 on failure.
677 * @param pszValue Pointer to the string value.
678 */
679RTDECL(uint32_t) RTStrToUInt32(const char *pszValue);
680
681/**
682 * Converts a string representation of a number to a 16-bit unsigned number.
683 *
684 * @returns iprt status code.
685 * Warnings are used to indicate conversion problems.
686 * @param pszValue Pointer to the string value.
687 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
688 * @param uBase The base of the representation used.
689 * If 0 the function will look for known prefixes before defaulting to 10.
690 * @param pu16 Where to store the converted number. (optional)
691 */
692RTDECL(int) RTStrToUInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint16_t *pu16);
693
694/**
695 * Converts a string representation of a number to a 16-bit unsigned number.
696 * The base is guessed.
697 *
698 * @returns 16-bit unsigned number on success.
699 * @returns 0 on failure.
700 * @param pszValue Pointer to the string value.
701 */
702RTDECL(uint16_t) RTStrToUInt16(const char *pszValue);
703
704/**
705 * Converts a string representation of a number to a 8-bit unsigned number.
706 *
707 * @returns iprt status code.
708 * Warnings are used to indicate conversion problems.
709 * @param pszValue Pointer to the string value.
710 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
711 * @param uBase The base of the representation used.
712 * If 0 the function will look for known prefixes before defaulting to 10.
713 * @param pu8 Where to store the converted number. (optional)
714 */
715RTDECL(int) RTStrToUInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint8_t *pu8);
716
717/**
718 * Converts a string representation of a number to a 8-bit unsigned number.
719 * The base is guessed.
720 *
721 * @returns 8-bit unsigned number on success.
722 * @returns 0 on failure.
723 * @param pszValue Pointer to the string value.
724 */
725RTDECL(uint8_t) RTStrToUInt8(const char *pszValue);
726
727/**
728 * Converts a string representation of a number to a 64-bit signed number.
729 *
730 * @returns iprt status code.
731 * Warnings are used to indicate conversion problems.
732 * @param pszValue Pointer to the string value.
733 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
734 * @param uBase The base of the representation used.
735 * If 0 the function will look for known prefixes before defaulting to 10.
736 * @param pi64 Where to store the converted number. (optional)
737 */
738RTDECL(int) RTStrToInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, int64_t *pi64);
739
740/**
741 * Converts a string representation of a number to a 64-bit signed number.
742 * The base is guessed.
743 *
744 * @returns 64-bit signed number on success.
745 * @returns 0 on failure.
746 * @param pszValue Pointer to the string value.
747 */
748RTDECL(int64_t) RTStrToInt64(const char *pszValue);
749
750/**
751 * Converts a string representation of a number to a 32-bit signed number.
752 *
753 * @returns iprt status code.
754 * Warnings are used to indicate conversion problems.
755 * @param pszValue Pointer to the string value.
756 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
757 * @param uBase The base of the representation used.
758 * If 0 the function will look for known prefixes before defaulting to 10.
759 * @param pi32 Where to store the converted number. (optional)
760 */
761RTDECL(int) RTStrToInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, int32_t *pi32);
762
763/**
764 * Converts a string representation of a number to a 32-bit signed number.
765 * The base is guessed.
766 *
767 * @returns 32-bit signed number on success.
768 * @returns 0 on failure.
769 * @param pszValue Pointer to the string value.
770 */
771RTDECL(int32_t) RTStrToInt32(const char *pszValue);
772
773/**
774 * Converts a string representation of a number to a 16-bit signed number.
775 *
776 * @returns iprt status code.
777 * Warnings are used to indicate conversion problems.
778 * @param pszValue Pointer to the string value.
779 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
780 * @param uBase The base of the representation used.
781 * If 0 the function will look for known prefixes before defaulting to 10.
782 * @param pi16 Where to store the converted number. (optional)
783 */
784RTDECL(int) RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16);
785
786/**
787 * Converts a string representation of a number to a 16-bit signed number.
788 * The base is guessed.
789 *
790 * @returns 16-bit signed number on success.
791 * @returns 0 on failure.
792 * @param pszValue Pointer to the string value.
793 */
794RTDECL(int16_t) RTStrToInt16(const char *pszValue);
795
796/**
797 * Converts a string representation of a number to a 8-bit signed number.
798 *
799 * @returns iprt status code.
800 * Warnings are used to indicate conversion problems.
801 * @param pszValue Pointer to the string value.
802 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
803 * @param uBase The base of the representation used.
804 * If 0 the function will look for known prefixes before defaulting to 10.
805 * @param pi8 Where to store the converted number. (optional)
806 */
807RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8);
808
809/**
810 * Converts a string representation of a number to a 8-bit signed number.
811 * The base is guessed.
812 *
813 * @returns 8-bit signed number on success.
814 * @returns 0 on failure.
815 * @param pszValue Pointer to the string value.
816 */
817RTDECL(int8_t) RTStrToInt8(const char *pszValue);
818
819/**
820 * Performs a case insensitive string compare between two UTF-8 strings.
821 *
822 * This is a simplified compare, as only the simplified lower/upper case folding
823 * specified by the unicode specs are used. It does not consider character pairs
824 * as they are used in some languages, just simple upper & lower case compares.
825 *
826 * @returns < 0 if the first string less than the second string.
827 * @returns 0 if the first string identical to the second string.
828 * @returns > 0 if the first string greater than the second string.
829 * @param psz1 First UTF-8 string.
830 * @param psz2 Second UTF-8 string.
831 */
832RTDECL(int) RTStrICmp(const char *psz1, const char *psz2);
833
834/** @} */
835
836
837/** @defgroup rt_str_space Unique String Space
838 * @ingroup grp_rt_str
839 * @{
840 */
841
842/** Pointer to a string name space container node core. */
843typedef struct RTSTRSPACECORE *PRTSTRSPACECORE;
844/** Pointer to a pointer to a string name space container node core. */
845typedef PRTSTRSPACECORE *PPRTSTRSPACECORE;
846
847/**
848 * String name space container node core.
849 */
850typedef struct RTSTRSPACECORE
851{
852 /** Hash key. Don't touch. */
853 uint32_t Key;
854 /** Pointer to the left leaf node. Don't touch. */
855 PRTSTRSPACECORE pLeft;
856 /** Pointer to the left rigth node. Don't touch. */
857 PRTSTRSPACECORE pRight;
858 /** Pointer to the list of string with the same key. Don't touch. */
859 PRTSTRSPACECORE pList;
860 /** Height of this tree: max(heigth(left), heigth(right)) + 1. Don't touch */
861 unsigned char uchHeight;
862 /** The string length. Read only! */
863 size_t cchString;
864 /** Pointer to the string. Read only! */
865 const char * pszString;
866} RTSTRSPACECORE;
867
868/** String space. (Initialize with NULL.) */
869typedef PRTSTRSPACECORE RTSTRSPACE;
870/** Pointer to a string space. */
871typedef PPRTSTRSPACECORE PRTSTRSPACE;
872
873
874/**
875 * Inserts a string into a unique string space.
876 *
877 * @returns true on success.
878 * @returns false if the string collieded with an existing string.
879 * @param pStrSpace The space to insert it into.
880 * @param pStr The string node.
881 */
882RTDECL(bool) RTStrSpaceInsert(PRTSTRSPACE pStrSpace, PRTSTRSPACECORE pStr);
883
884/**
885 * Removes a string from a unique string space.
886 *
887 * @returns Pointer to the removed string node.
888 * @returns NULL if the string was not found in the string space.
889 * @param pStrSpace The space to insert it into.
890 * @param pszString The string to remove.
891 */
892RTDECL(PRTSTRSPACECORE) RTStrSpaceRemove(PRTSTRSPACE pStrSpace, const char *pszString);
893
894/**
895 * Gets a string from a unique string space.
896 *
897 * @returns Pointer to the string node.
898 * @returns NULL if the string was not found in the string space.
899 * @param pStrSpace The space to insert it into.
900 * @param pszString The string to get.
901 */
902RTDECL(PRTSTRSPACECORE) RTStrSpaceGet(PRTSTRSPACE pStrSpace, const char *pszString);
903
904/**
905 * Callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy().
906 *
907 * @returns 0 on continue.
908 * @returns Non-zero to aborts the operation.
909 * @param pStr The string node
910 * @param pvUser The user specified argument.
911 */
912typedef DECLCALLBACK(int) FNRTSTRSPACECALLBACK(PRTSTRSPACECORE pStr, void *pvUser);
913/** Pointer to callback function for RTStrSpaceEnumerate() and RTStrSpaceDestroy(). */
914typedef FNRTSTRSPACECALLBACK *PFNRTSTRSPACECALLBACK;
915
916/**
917 * Destroys the string space.
918 * The caller supplies a callback which will be called for each of
919 * the string nodes in for freeing their memory and other resources.
920 *
921 * @returns 0 or what ever non-zero return value pfnCallback returned
922 * when aborting the destruction.
923 * @param pStrSpace The space to insert it into.
924 * @param pfnCallback The callback.
925 * @param pvUser The user argument.
926 */
927RTDECL(int) RTStrSpaceDestroy(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
928
929/**
930 * Enumerates the string space.
931 * The caller supplies a callback which will be called for each of
932 * the string nodes.
933 *
934 * @returns 0 or what ever non-zero return value pfnCallback returned
935 * when aborting the destruction.
936 * @param pStrSpace The space to insert it into.
937 * @param pfnCallback The callback.
938 * @param pvUser The user argument.
939 */
940RTDECL(int) RTStrSpaceEnumerate(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser);
941
942/** @} */
943
944
945/** @defgroup rt_str_utf16 UTF-16 String Manipulation
946 * @ingroup grp_rt_str
947 * @{
948 */
949
950/**
951 * Free a UTF-16 string allocated by RTStrUtf8ToUtf16(), RTStrUtf8ToUtf16Ex(),
952 * RTUtf16Dup() or RTUtf16DupEx().
953 *
954 * @returns iprt status code.
955 * @param pwszString The UTF-16 string to free. NULL is accepted.
956 */
957RTDECL(void) RTUtf16Free(PRTUTF16 pwszString);
958
959/**
960 * Allocates a new copy of the specified UTF-16 string.
961 *
962 * @returns Pointer to the allocated string copy. Use RTUtf16Free() to free it.
963 * @returns NULL when out of memory.
964 * @param pwszString UTF-16 string to duplicate.
965 * @remark This function will not make any attempt to validate the encoding.
966 */
967RTDECL(PRTUTF16) RTUtf16Dup(PCRTUTF16 pwszString);
968
969/**
970 * Allocates a new copy of the specified UTF-16 string.
971 *
972 * @returns iprt status code.
973 * @param ppwszString Receives pointer of the allocated UTF-16 string.
974 * The returned pointer must be freed using RTUtf16Free().
975 * @param pwszString UTF-16 string to duplicate.
976 * @param cwcExtra Number of extra RTUTF16 items to allocate.
977 * @remark This function will not make any attempt to validate the encoding.
978 */
979RTDECL(int) RTUtf16DupEx(PRTUTF16 *ppwszString, PCRTUTF16 pwszString, size_t cwcExtra);
980
981/**
982 * Returns the length of a UTF-16 string in UTF-16 characters
983 * without trailing '\\0'.
984 *
985 * Surrogate pairs counts as two UTF-16 characters here. Use RTUtf16CpCnt()
986 * to get the exact number of code points in the string.
987 *
988 * @returns The number of RTUTF16 items in the string.
989 * @param pwszString Pointer the UTF-16 string.
990 * @remark This function will not make any attempt to validate the encoding.
991 */
992RTDECL(size_t) RTUtf16Len(PCRTUTF16 pwszString);
993
994/**
995 * Performs a case sensitive string compare between two UTF-16 strings.
996 *
997 * @returns < 0 if the first string less than the second string.s
998 * @returns 0 if the first string identical to the second string.
999 * @returns > 0 if the first string greater than the second string.
1000 * @param pwsz1 First UTF-16 string.
1001 * @param pwsz2 Second UTF-16 string.
1002 * @remark This function will not make any attempt to validate the encoding.
1003 */
1004RTDECL(int) RTUtf16Cmp(register PCRTUTF16 pwsz1, register PCRTUTF16 pwsz2);
1005
1006/**
1007 * Performs a case insensitive string compare between two UTF-16 strings.
1008 *
1009 * This is a simplified compare, as only the simplified lower/upper case folding
1010 * specified by the unicode specs are used. It does not consider character pairs
1011 * as they are used in some languages, just simple upper & lower case compares.
1012 *
1013 * @returns < 0 if the first string less than the second string.
1014 * @returns 0 if the first string identical to the second string.
1015 * @returns > 0 if the first string greater than the second string.
1016 * @param pwsz1 First UTF-16 string.
1017 * @param pwsz2 Second UTF-16 string.
1018 */
1019RTDECL(int) RTUtf16ICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
1020
1021/**
1022 * Performs a case insensitive string compare between two UTF-16 strings
1023 * using the current locale of the process (if applicable).
1024 *
1025 * This differs from RTUtf16ICmp() in that it will try, if a locale with the
1026 * required data is available, to do a correct case-insensitive compare. It
1027 * follows that it is more complex and thereby likely to be more expensive.
1028 *
1029 * @returns < 0 if the first string less than the second string.
1030 * @returns 0 if the first string identical to the second string.
1031 * @returns > 0 if the first string greater than the second string.
1032 * @param pwsz1 First UTF-16 string.
1033 * @param pwsz2 Second UTF-16 string.
1034 */
1035RTDECL(int) RTUtf16LocaleICmp(PCRTUTF16 pwsz1, PCRTUTF16 pwsz2);
1036
1037/**
1038 * Folds a UTF-16 string to lowercase.
1039 *
1040 * This is a very simple folding; is uses the simple lowercase
1041 * code point, it is not related to any locale just the most common
1042 * lowercase codepoint setup by the unicode specs, and it will not
1043 * create new surrogate pairs or remove existing ones.
1044 *
1045 * @returns Pointer to the passed in string.
1046 * @param pwsz The string to fold.
1047 */
1048RTDECL(PRTUTF16) RTUtf16ToLower(PRTUTF16 pwsz);
1049
1050/**
1051 * Folds a UTF-16 string to uppercase.
1052 *
1053 * This is a very simple folding; is uses the simple uppercase
1054 * code point, it is not related to any locale just the most common
1055 * uppercase codepoint setup by the unicode specs, and it will not
1056 * create new surrogate pairs or remove existing ones.
1057 *
1058 * @returns Pointer to the passed in string.
1059 * @param pwsz The string to fold.
1060 */
1061RTDECL(PRTUTF16) RTUtf16ToUpper(PRTUTF16 pwsz);
1062
1063/**
1064 * Translate a UTF-16 string into a UTF-8 allocating the result buffer.
1065 *
1066 * @returns iprt status code.
1067 * @param pwszString UTF-16 string to convert.
1068 * @param ppszString Receives pointer of allocated UTF-8 string.
1069 * The returned pointer must be freed using RTStrFree().
1070 */
1071RTDECL(int) RTUtf16ToUtf8(PCRTUTF16 pwszString, char **ppszString);
1072
1073/**
1074 * Translates UTF-16 to UTF-8 using buffer provided by the caller or
1075 * a fittingly sized buffer allocated by the function.
1076 *
1077 * @returns iprt status code.
1078 * @param pwszString The UTF-16 string to convert.
1079 * @param cwcString The number of RTUTF16 items to translation from pwszString.
1080 * The translate will stop when reaching cwcString or the terminator ('\\0').
1081 * Use RTSTR_MAX to translate the entire string.
1082 * @param ppsz If cch is non-zero, this must either be pointing to pointer to
1083 * a buffer of the specified size, or pointer to a NULL pointer.
1084 * If *ppsz is NULL or cch is zero a buffer of at least cch chars
1085 * will be allocated to hold the translated string.
1086 * If a buffer was requirest it must be freed using RTUtf16Free().
1087 * @param cch The buffer size in chars (the type). This includes the terminator.
1088 * @param pcch Where to store the length of the translated string. (Optional)
1089 * This field will be updated even on failure, however the value is only
1090 * specified for the following two error codes. On VERR_BUFFER_OVERFLOW
1091 * and VERR_NO_STR_MEMORY it contains the required buffer space.
1092 */
1093RTDECL(int) RTUtf16ToUtf8Ex(PCRTUTF16 pwszString, size_t cwcString, char **ppsz, size_t cch, size_t *pcch);
1094
1095
1096/**
1097 * Allocates tmp buffer, translates pwszString from UCS-2 to UTF8.
1098 *
1099 * @returns iprt status code.
1100 * @param ppszString Receives pointer of allocated UTF8 string.
1101 * The returned pointer must be freed using RTStrFree().
1102 * @param pwszString UCS-2 string to convert.
1103 * @deprecated Use RTUtf16ToUtf8().
1104 */
1105DECLINLINE(int) RTStrUcs2ToUtf8(char **ppszString, PCRTUCS2 pwszString)
1106{
1107 return RTUtf16ToUtf8(pwszString, ppszString);
1108}
1109
1110/**
1111 * Translates UCS-2 to UTF-8 using buffer provided by the caller or
1112 * a fittingly sized buffer allocated by the function.
1113 *
1114 * @returns iprt status code.
1115 * @param ppszString If cch is not zero, this points to the pointer to the
1116 * buffer where the converted string shall be resulted.
1117 * If cch is zero, this is where the pointer to the allocated
1118 * buffer with the converted string is stored. The allocated
1119 * buffer must be freed by using RTStrFree().
1120 * @param cch Size of the passed in buffer (*ppszString).
1121 * If 0 a fittingly sized buffer is allocated.
1122 * @param pwszString UCS-2 string to convert.
1123 * @deprecated
1124 */
1125DECLINLINE(int) RTStrUcs2ToUtf8Ex(char **ppszString, size_t cch, PCRTUCS2 pwszString)
1126{
1127 return RTUtf16ToUtf8Ex(pwszString, RTSTR_MAX, ppszString, cch, NULL);
1128}
1129
1130/**
1131 * Free a UCS-2 string allocated by RTStrUtf8ToUcs2().
1132 *
1133 * @returns iprt status code.
1134 * @param pwszString Pointer to buffer with unicode string to free.
1135 * NULL is accepted.
1136 * @deprecated
1137 */
1138DECLINLINE(void) RTStrUcs2Free(PRTUCS2 pwszString)
1139{
1140 RTUtf16Free(pwszString);
1141}
1142
1143/**
1144 * Allocates a new copy of the given UCS-2 string.
1145 *
1146 * @returns Pointer to the allocated string copy. Use RTStrUcs2Free() to free it.
1147 * @returns NULL when out of memory.
1148 * @param pwszString UCS-2 string to duplicate.
1149 * @deprecated
1150 */
1151DECLINLINE(PRTUCS2) RTStrUcs2Dup(PCRTUCS2 pwszString)
1152{
1153 return RTUtf16Dup(pwszString);
1154}
1155
1156/**
1157 * Allocates a new copy of the given UCS-2 string.
1158 *
1159 * @returns iprt status code.
1160 * @param ppwszString Receives pointer of the allocated UCS-2 string.
1161 * The returned pointer must be freed using RTStrUcs2Free().
1162 * @param pwszString UCS-2 string to duplicate.
1163 * @deprecated
1164 */
1165DECLINLINE(int) RTStrUcs2DupEx(PRTUCS2 *ppwszString, PCRTUCS2 pwszString)
1166{
1167 return RTUtf16DupEx(ppwszString, pwszString, 0);
1168}
1169
1170/**
1171 * Returns the length of a UCS-2 string in UCS-2 characters
1172 * without trailing '\\0'.
1173 *
1174 * @returns Length of input string in UCS-2 characters.
1175 * @param pwszString Pointer the UCS-2 string.
1176 * @deprecated
1177 */
1178DECLINLINE(size_t) RTStrUcs2Len(PCRTUCS2 pwszString)
1179{
1180 return RTUtf16Len(pwszString);
1181}
1182
1183/**
1184 * Performs a case sensitive string compare between two UCS-2 strings.
1185 *
1186 * @returns < 0 if the first string less than the second string.
1187 * @returns 0 if the first string identical to the second string.
1188 * @returns > 0 if the first string greater than the second string.
1189 * @param pwsz1 First UCS-2 string.
1190 * @param pwsz2 Second UCS-2 string.
1191 * @deprecated
1192 */
1193DECLINLINE(int) RTStrUcs2Cmp(register PCRTUCS2 pwsz1, register PCRTUCS2 pwsz2)
1194{
1195 return RTUtf16Cmp(pwsz1, pwsz2);
1196}
1197
1198
1199/**
1200 * Get the unicode code point at the given string position.
1201 *
1202 * @returns unicode code point.
1203 * @returns RTUNICP_INVALID if the encoding is invalid.
1204 * @param pwsz The string.
1205 *
1206 * @remark This is an internal worker for RTUtf16GetCp().
1207 */
1208RTDECL(RTUNICP) RTUtf16GetCpInternal(PCRTUTF16 pwsz);
1209
1210/**
1211 * Get the unicode code point at the given string position.
1212 *
1213 * @returns iprt status code.
1214 * @param ppwsz Pointer to the string pointer. This will be updated to
1215 * point to the char following the current code point.
1216 * @param pCp Where to store the code point.
1217 * RTUNICP_INVALID is stored here on failure.
1218 *
1219 * @remark This is an internal worker for RTUtf16GetCpEx().
1220 */
1221RTDECL(int) RTUtf16GetCpExInternal(PCRTUTF16 *ppwsz, PRTUNICP pCp);
1222
1223/**
1224 * Put the unicode code point at the given string position
1225 * and return the pointer to the char following it.
1226 *
1227 * This function will not consider anything at or following the the
1228 * buffer area pointed to by pwsz. It is therefore not suitable for
1229 * inserting code points into a string, only appending/overwriting.
1230 *
1231 * @returns pointer to the char following the written code point.
1232 * @param pwsz The string.
1233 * @param CodePoint The code point to write.
1234 * This sould not be RTUNICP_INVALID or any other charater
1235 * out of the UTF-16 range.
1236 *
1237 * @remark This is an internal worker for RTUtf16GetCpEx().
1238 */
1239RTDECL(PRTUTF16) RTUtf16PutCpInternal(PRTUTF16 pwsz, RTUNICP CodePoint);
1240
1241/**
1242 * Get the unicode code point at the given string position.
1243 *
1244 * @returns unicode code point.
1245 * @returns RTUNICP_INVALID if the encoding is invalid.
1246 * @param pwsz The string.
1247 *
1248 * @remark We optimize this operation by using an inline function for
1249 * everything which isn't a surrogate pair or an endian indicator.
1250 */
1251DECLINLINE(RTUNICP) RTUtf16GetCp(PCRTUTF16 pwsz)
1252{
1253 const RTUTF16 wc = *pwsz;
1254 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
1255 return wc;
1256 return RTUtf16GetCpInternal(pwsz);
1257}
1258
1259/**
1260 * Get the unicode code point at the given string position.
1261 *
1262 * @returns iprt status code.
1263 * @param ppwsz Pointer to the string pointer. This will be updated to
1264 * point to the char following the current code point.
1265 * @param pCp Where to store the code point.
1266 * RTUNICP_INVALID is stored here on failure.
1267 *
1268 * @remark We optimize this operation by using an inline function for
1269 * everything which isn't a surrogate pair or and endian indicator.
1270 */
1271DECLINLINE(int) RTUtf16GetCpEx(PCRTUTF16 *ppwsz, PRTUNICP pCp)
1272{
1273 const RTUTF16 wc = **ppwsz;
1274 if (wc < 0xd800 || (wc > 0xdfff && wc < 0xfffe))
1275 {
1276 (*ppwsz)++;
1277 *pCp = wc;
1278 return VINF_SUCCESS;
1279 }
1280 return RTUtf16GetCpExInternal(ppwsz, pCp);
1281}
1282
1283/**
1284 * Put the unicode code point at the given string position
1285 * and return the pointer to the char following it.
1286 *
1287 * This function will not consider anything at or following the the
1288 * buffer area pointed to by pwsz. It is therefore not suitable for
1289 * inserting code points into a string, only appending/overwriting.
1290 *
1291 * @returns pointer to the char following the written code point.
1292 * @param pwsz The string.
1293 * @param CodePoint The code point to write.
1294 * This sould not be RTUNICP_INVALID or any other charater
1295 * out of the UTF-16 range.
1296 *
1297 * @remark We optimize this operation by using an inline function for
1298 * everything which isn't a surrogate pair or and endian indicator.
1299 */
1300DECLINLINE(PRTUTF16) RTUtf16PutCp(PRTUTF16 pwsz, RTUNICP CodePoint)
1301{
1302 if (CodePoint < 0xd800 || (CodePoint > 0xd800 && CodePoint < 0xfffe))
1303 {
1304 *pwsz++ = (RTUTF16)CodePoint;
1305 return pwsz;
1306 }
1307 return RTUtf16PutCpInternal(pwsz, CodePoint);
1308}
1309
1310/**
1311 * Skips ahead, past the current code point.
1312 *
1313 * @returns Pointer to the char after the current code point.
1314 * @param pwsz Pointer to the current code point.
1315 * @remark This will not move the next valid code point, only past the current one.
1316 */
1317DECLINLINE(PRTUTF16) RTUtf16NextCp(PCRTUTF16 pwsz)
1318{
1319 RTUNICP Cp;
1320 RTUtf16GetCpEx(&pwsz, &Cp);
1321 return (PRTUTF16)pwsz;
1322}
1323
1324/**
1325 * Skips backwards, to the previous code point.
1326 *
1327 * @returns Pointer to the char after the current code point.
1328 * @param pwszStart Pointer to the start of the string.
1329 * @param pwsz Pointer to the current code point.
1330 */
1331RTDECL(PRTUTF16) RTUtf16PrevCp(PCRTUTF16 pwszStart, PCRTUTF16 pwsz);
1332
1333
1334/**
1335 * Checks if the UTF-16 char is the high surrogate char (i.e.
1336 * the 1st char in the pair).
1337 *
1338 * @returns true if it is.
1339 * @returns false if it isn't.
1340 * @param wc The character to investigate.
1341 */
1342DECLINLINE(bool) RTUtf16IsHighSurrogate(RTUTF16 wc)
1343{
1344 return wc >= 0xd800 && wc <= 0xdbff;
1345}
1346
1347/**
1348 * Checks if the UTF-16 char is the low surrogate char (i.e.
1349 * the 2nd char in the pair).
1350 *
1351 * @returns true if it is.
1352 * @returns false if it isn't.
1353 * @param wc The character to investigate.
1354 */
1355DECLINLINE(bool) RTUtf16IsLowSurrogate(RTUTF16 wc)
1356{
1357 return wc >= 0xdc00 && wc <= 0xdfff;
1358}
1359
1360
1361/**
1362 * Checks if the two UTF-16 chars form a valid surrogate pair.
1363 *
1364 * @returns true if they do.
1365 * @returns false if they doesn't.
1366 * @param wcHigh The high (1st) character.
1367 * @param wcLow The low (2nd) character.
1368 */
1369DECLINLINE(bool) RTUtf16IsSurrogatePair(RTUTF16 wcHigh, RTUTF16 wcLow)
1370{
1371 return RTUtf16IsHighSurrogate(wcHigh)
1372 && RTUtf16IsLowSurrogate(wcLow);
1373}
1374
1375/** @} */
1376
1377__END_DECLS
1378
1379/** @} */
1380
1381#endif
1382
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