1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
|
/* $Id: string.h 29865 2008-04-18 15:16:47Z umoeller $ */
/** @file
* MS COM / XPCOM Abstraction Layer:
* Smart string classes declaration
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___VBox_com_string_h
#define ___VBox_com_string_h
#if defined (VBOX_WITH_XPCOM)
#include <nsMemory.h>
#endif
#include "VBox/com/defs.h"
#include "VBox/com/assert.h"
#include <iprt/string.h>
#include <iprt/cpputils.h>
#include <iprt/alloc.h>
namespace com
{
class Utf8Str;
/**
* Helper class that represents the |BSTR| type and hides platform-specific
* implementation details.
*
* This class uses COM/XPCOM-provided memory management routines to allocate
* and free string buffers. This makes it possible to:
* - use it as a type of member variables of COM/XPCOM components and pass
* their values to callers through component methods' output parameters
* using the #cloneTo() operation;
* - adopt (take ownership of) string buffers returned in output parameters
* of COM methods using the #asOutParam() operation and correctly free them
* afterwards.
*/
class Bstr
{
public:
typedef BSTR String;
typedef const BSTR ConstString;
Bstr () : bstr (NULL) {}
Bstr (const Bstr &that) : bstr (NULL) { raw_copy (bstr, that.bstr); }
Bstr (const BSTR that) : bstr (NULL) { raw_copy (bstr, that); }
Bstr (const wchar_t *that) : bstr (NULL)
{
AssertCompile (sizeof (wchar_t) == sizeof (OLECHAR));
raw_copy (bstr, (const BSTR) that);
}
Bstr (const Utf8Str &that);
Bstr (const char *that);
/** Shortcut that calls #alloc(aSize) right after object creation. */
Bstr (size_t aSize) : bstr (NULL) { alloc (aSize); }
~Bstr () { setNull(); }
Bstr &operator = (const Bstr &that) { safe_assign (that.bstr); return *this; }
Bstr &operator = (const BSTR that) { safe_assign (that); return *this; }
Bstr &operator = (const Utf8Str &that);
Bstr &operator = (const char *that);
Bstr &setNull()
{
if (bstr)
{
::SysFreeString (bstr);
bstr = NULL;
}
return *this;
}
Bstr &setNullIfEmpty()
{
if (bstr && *bstr == 0)
{
::SysFreeString (bstr);
bstr = NULL;
}
return *this;
}
/**
* Allocates memory for a string capable to store \a aSize - 1 characters
* plus the terminating zero character. If \a aSize is zero, or if a
* memory allocation error occurs, this object will become null.
*/
Bstr &alloc (size_t aSize)
{
setNull();
if (aSize)
{
unsigned int size = (unsigned int) aSize; Assert (size == aSize);
bstr = ::SysAllocStringLen (NULL, size - 1);
if (bstr)
bstr [0] = 0;
}
return *this;
}
int compare (const BSTR str) const
{
return ::RTUtf16Cmp ((PRTUTF16) bstr, (PRTUTF16) str);
}
bool operator == (const Bstr &that) const { return !compare (that.bstr); }
bool operator != (const Bstr &that) const { return !!compare (that.bstr); }
bool operator == (const BSTR that) const { return !compare (that); }
bool operator != (const wchar_t *that) const
{
AssertCompile (sizeof (wchar_t) == sizeof (OLECHAR));
return !!compare ((const BSTR) that);
}
bool operator == (const wchar_t *that) const
{
AssertCompile (sizeof (wchar_t) == sizeof (OLECHAR));
return !compare ((const BSTR) that);
}
bool operator != (const BSTR that) const { return !!compare (that); }
bool operator < (const Bstr &that) const { return compare (that.bstr) < 0; }
bool operator < (const BSTR that) const { return compare (that) < 0; }
bool operator < (const wchar_t *that) const
{
AssertCompile (sizeof (wchar_t) == sizeof (OLECHAR));
return compare ((const BSTR) that) < 0;
}
int compareIgnoreCase (const BSTR str) const
{
return ::RTUtf16LocaleICmp (bstr, str);
}
bool isNull() const { return bstr == NULL; }
operator bool() const { return !isNull(); }
bool isEmpty() const { return isNull() || *bstr == 0; }
size_t length() const { return isNull() ? 0 : ::RTUtf16Len ((PRTUTF16) bstr); }
/** Intended to to pass instances as |BSTR| input parameters to methods. */
operator const BSTR () const { return bstr; }
/** The same as operator const BSTR(), but for situations where the compiler
cannot typecast implicitly (for example, in printf() argument list). */
const BSTR raw() const { return bstr; }
/**
* Returns a non-const raw pointer that allows to modify the string directly.
* @warning
* Be sure not to modify data beyond the allocated memory! The
* guaranteed size of the allocated memory is at least #length()
* bytes after creation and after every assignment operation.
*/
BSTR mutableRaw() { return bstr; }
/**
* Intended to assign copies of instances to |BSTR| out parameters from
* within the interface method. Transfers the ownership of the duplicated
* string to the caller.
*/
const Bstr &cloneTo (BSTR *pstr) const
{
if (pstr)
{
*pstr = NULL;
raw_copy (*pstr, bstr);
}
return *this;
}
/**
* Intended to assign instances to |BSTR| out parameters from within the
* interface method. Transfers the ownership of the original string to the
* caller and resets the instance to null.
*
* As opposed to cloneTo(), this method doesn't create a copy of the
* string.
*/
Bstr &detachTo (BSTR *pstr)
{
*pstr = bstr;
bstr = NULL;
return *this;
}
/**
* Intended to assign copies of instances to |char *| out parameters from
* within the interface method. Transfers the ownership of the duplicated
* string to the caller.
*/
const Bstr &cloneTo (char **pstr) const;
/**
* Intended to pass instances as |BSTR| out parameters to methods.
* Takes the ownership of the returned data.
*/
BSTR *asOutParam() { setNull(); return &bstr; }
/**
* Static immutable null object. May be used for comparison purposes.
*/
static const Bstr Null;
private:
void safe_assign (const BSTR str)
{
if (bstr != str)
{
setNull();
raw_copy (bstr, str);
}
}
inline static void raw_copy (BSTR &ls, const BSTR rs)
{
if (rs)
ls = ::SysAllocString ((const OLECHAR *) rs);
}
inline static void raw_copy (BSTR &ls, const char *rs)
{
if (rs)
{
PRTUTF16 s = NULL;
::RTStrToUtf16 (rs, &s);
raw_copy (ls, (BSTR) s);
::RTUtf16Free (s);
}
}
BSTR bstr;
friend class Utf8Str; // to access our raw_copy()
};
// symmetric compare operators
inline bool operator== (const BSTR l, const Bstr &r) { return r.operator== (l); }
inline bool operator!= (const BSTR l, const Bstr &r) { return r.operator!= (l); }
////////////////////////////////////////////////////////////////////////////////
/**
* Helper class that represents UTF8 (|char *|) strings. Useful in
* conjunction with Bstr to simplify conversions beetween UTF16 (|BSTR|)
* and UTF8.
*
* This class uses COM/XPCOM-provided memory management routines to allocate
* and free string buffers. This makes it possible to:
* - use it as a type of member variables of COM/XPCOM components and pass
* their values to callers through component methods' output parameters
* using the #cloneTo() operation;
* - adopt (take ownership of) string buffers returned in output parameters
* of COM methods using the #asOutParam() operation and correctly free them
* afterwards.
*/
class Utf8Str
{
public:
typedef char *String;
typedef const char *ConstString;
Utf8Str () : str (NULL) {}
Utf8Str (const Utf8Str &that) : str (NULL) { raw_copy (str, that.str); }
Utf8Str (const char *that) : str (NULL) { raw_copy (str, that); }
Utf8Str (const Bstr &that) : str (NULL) { raw_copy (str, that); }
Utf8Str (const BSTR that) : str (NULL) { raw_copy (str, that); }
/** Shortcut that calls #alloc(aSize) right after object creation. */
Utf8Str (size_t aSize) : str (NULL) { alloc(aSize); }
virtual ~Utf8Str () { setNull(); }
Utf8Str &operator = (const Utf8Str &that) { safe_assign (that.str); return *this; }
Utf8Str &operator = (const char *that) { safe_assign (that); return *this; }
Utf8Str &operator = (const Bstr &that)
{
setNull();
raw_copy (str, that);
return *this;
}
Utf8Str &operator = (const BSTR that)
{
setNull();
raw_copy (str, that);
return *this;
}
Utf8Str &setNull()
{
if (str)
{
#if !defined (VBOX_WITH_XPCOM)
::RTStrFree (str);
#else
nsMemory::Free (str);
#endif
str = NULL;
}
return *this;
}
Utf8Str &setNullIfEmpty()
{
if (str && *str == 0)
{
#if !defined (VBOX_WITH_XPCOM)
::RTStrFree (str);
#else
nsMemory::Free (str);
#endif
str = NULL;
}
return *this;
}
/**
* Allocates memory for a string capable to store \a aSize - 1 characters
* plus the terminating zero character. If \a aSize is zero, or if a
* memory allocation error occurs, this object will become null.
*/
Utf8Str &alloc (size_t aSize)
{
setNull();
if (aSize)
{
#if !defined (VBOX_WITH_XPCOM)
str = (char *) ::RTMemTmpAlloc (aSize);
#else
str = (char *) nsMemory::Alloc (aSize);
#endif
if (str)
str [0] = 0;
}
return *this;
}
int compare (const char *s) const
{
if (str == s)
return 0;
if (str == NULL)
return -1;
if (s == NULL)
return 1;
return ::strcmp (str, s);
}
bool operator == (const Utf8Str &that) const { return !compare (that.str); }
bool operator != (const Utf8Str &that) const { return !!compare (that.str); }
bool operator == (const char *that) const { return !compare (that); }
bool operator != (const char *that) const { return !!compare (that); }
bool operator < (const Utf8Str &that) const { return compare (that.str) < 0; }
bool operator < (const char *that) const { return compare (that) < 0; }
bool isNull() const { return str == NULL; }
operator bool() const { return !isNull(); }
bool isEmpty() const { return isNull() || *str == 0; }
size_t length() const { return isNull() ? 0 : ::strlen (str); }
/** Intended to to pass instances as input (|char *|) parameters to methods. */
operator const char *() const { return str; }
/** The same as operator const char *(), but for situations where the compiler
cannot typecast implicitly (for example, in printf() argument list). */
const char *raw() const { return str; }
/**
* Returns a non-const raw pointer that allows to modify the string directly.
* @warning
* Be sure not to modify data beyond the allocated memory! The
* guaranteed size of the allocated memory is at least #length()
* bytes after creation and after every assignment operation.
*/
char *mutableRaw() { return str; }
/**
* Intended to assign instances to |char *| out parameters from within the
* interface method. Transfers the ownership of the duplicated string to the
* caller.
*/
const Utf8Str &cloneTo (char **pstr) const
{
if (pstr)
{
*pstr = NULL;
raw_copy (*pstr, str);
}
return *this;
}
/**
* Intended to assign instances to |char *| out parameters from within the
* interface method. Transfers the ownership of the original string to the
* caller and resets the instance to null.
*
* As opposed to cloneTo(), this method doesn't create a copy of the
* string.
*/
Utf8Str &detachTo (char **pstr)
{
*pstr = str;
str = NULL;
return *this;
}
/**
* Intended to assign instances to |BSTR| out parameters from within the
* interface method. Transfers the ownership of the duplicated string to the
* caller.
*/
const Utf8Str &cloneTo (BSTR *pstr) const
{
if (pstr)
{
*pstr = NULL;
Bstr::raw_copy (*pstr, str);
}
return *this;
}
/**
* Intended to pass instances as out (|char **|) parameters to methods.
* Takes the ownership of the returned data.
*/
char **asOutParam() { setNull(); return &str; }
/**
* Static immutable null object. May be used for comparison purposes.
*/
static const Utf8Str Null;
private:
void safe_assign (const char *s)
{
if (str != s)
{
setNull();
raw_copy (str, s);
}
}
inline static void raw_copy (char *&ls, const char *rs)
{
if (rs)
#if !defined (VBOX_WITH_XPCOM)
::RTStrDupEx (&ls, rs);
#else
ls = (char *) nsMemory::Clone (rs, strlen (rs) + 1);
#endif
}
inline static void raw_copy (char *&ls, const BSTR rs)
{
if (rs)
{
#if !defined (VBOX_WITH_XPCOM)
::RTUtf16ToUtf8 ((PRTUTF16) rs, &ls);
#else
char *s = NULL;
::RTUtf16ToUtf8 ((PRTUTF16) rs, &s);
raw_copy (ls, s);
::RTStrFree (s);
#endif
}
}
char *str;
friend class Bstr; // to access our raw_copy()
};
// symmetric compare operators
inline bool operator== (const char *l, const Utf8Str &r) { return r.operator== (l); }
inline bool operator!= (const char *l, const Utf8Str &r) { return r.operator!= (l); }
// work around error C2593 of the stupid MSVC 7.x ambiguity resolver
WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP (Bstr)
WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP (Utf8Str)
////////////////////////////////////////////////////////////////////////////////
// inlined Bstr members that depend on Utf8Str
inline Bstr::Bstr (const Utf8Str &that) : bstr (NULL) { raw_copy (bstr, that); }
inline Bstr::Bstr (const char *that) : bstr (NULL) { raw_copy (bstr, that); }
inline Bstr &Bstr::operator = (const Utf8Str &that)
{
setNull();
raw_copy (bstr, that);
return *this;
}
inline Bstr &Bstr::operator = (const char *that)
{
setNull();
raw_copy (bstr, that);
return *this;
}
inline const Bstr &Bstr::cloneTo (char **pstr) const
{
if (pstr) {
*pstr = NULL;
Utf8Str::raw_copy (*pstr, bstr);
}
return *this;
}
////////////////////////////////////////////////////////////////////////////////
/**
* This class is a printf-like formatter for Utf8Str strings. Its purpose is
* to construct Utf8Str objects from a format string and a list of arguments
* for the format string.
*
* The usage of this class is like the following:
* <code>
* Utf8StrFmt string ("program name = %s", argv[0]);
* </code>
*/
class Utf8StrFmt : public Utf8Str
{
public:
/**
* Constructs a new string given the format string and the list
* of the arguments for the format string.
*
* @param format printf-like format string (in UTF-8 encoding)
* @param ... list of the arguments for the format string
*/
explicit Utf8StrFmt (const char *format, ...)
{
va_list args;
va_start (args, format);
init (format, args);
va_end (args);
}
protected:
Utf8StrFmt() {}
void init (const char *format, va_list args);
private:
static DECLCALLBACK(size_t) strOutput (void *pvArg, const char *pachChars,
size_t cbChars);
};
/**
* This class is a vprintf-like formatter for Utf8Str strings. It is
* identical to Utf8StrFmt except that its constructor takes a va_list
* argument instead of ellipsis.
*
* Note that a separate class is necessary because va_list is defined as
* |char *| on most platforms. For this reason, if we had two overloaded
* constructors in Utf8StrFmt (one taking ellipsis and another one taking
* va_list) then composing a constructor call using exactly two |char *|
* arguments would cause the compiler to use the va_list overload instead of
* the ellipsis one which is obviously wrong. The compiler would choose
* va_list because ellipsis has the lowest rank when it comes to resolving
* overloads, as opposed to va_list which is an exact match for |char *|.
*/
class Utf8StrFmtVA : public Utf8StrFmt
{
public:
/**
* Constructs a new string given the format string and the list
* of the arguments for the format string.
*
* @param format printf-like format string (in UTF-8 encoding)
* @param args list of arguments for the format string
*/
Utf8StrFmtVA (const char *format, va_list args) { init (format, args); }
};
} /* namespace com */
#endif /* ___VBox_com_string_h */
|