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
|
/* $Id: Guid.h $ */
/** @file
* MS COM / XPCOM Abstraction Layer - Guid class declaration.
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* 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.
*/
#ifndef ___VBox_com_Guid_h
#define ___VBox_com_Guid_h
/* Make sure all the stdint.h macros are included - must come first! */
#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif
#if defined(VBOX_WITH_XPCOM)
# include <nsMemory.h>
#endif
#include "VBox/com/string.h"
#include <iprt/uuid.h>
#include <iprt/err.h>
namespace com
{
typedef enum
{
ZERO_GUID,
NORMAL_GUID,
INVALID_GUID
}GuidState_t;
/**
* Helper class that represents the UUID type and hides platform-specific
* implementation details.
*/
class Guid
{
public:
Guid()
{
::RTUuidClear(&mUuid);
refresh();
mGuidState = ZERO_GUID;
}
Guid(const Guid &that)
{
mUuid = that.mUuid;
refresh();
if (isEmpty())
mGuidState = ZERO_GUID;
else
mGuidState = NORMAL_GUID;
}
Guid(const RTUUID &that)
{
mUuid = that;
refresh();
if (isEmpty())
mGuidState = ZERO_GUID;
else
mGuidState = NORMAL_GUID;
}
Guid(const GUID &that)
{
AssertCompileSize(GUID, sizeof(RTUUID));
::memcpy(&mUuid, &that, sizeof(GUID));
refresh();
if (isEmpty())
mGuidState = ZERO_GUID;
else
mGuidState = NORMAL_GUID;
}
/**
* Construct a GUID from a string.
*
* Should the string be invalid, the object will be set to the null GUID
* (isEmpty() == true).
*
* @param that The UUID string. We feed this to RTUuidFromStr(),
* so check it out for the exact format.
*/
Guid(const char *that)
{
mGuidState = NORMAL_GUID;
int rc = ::RTUuidFromStr(&mUuid, that);
if (RT_FAILURE(rc))
{
::RTUuidClear(&mUuid);
mGuidState = INVALID_GUID;
}
else if(isEmpty())
mGuidState = ZERO_GUID;
refresh();
}
/**
* Construct a GUID from a BSTR.
*
* Should the string be empty or invalid, the object will be set to the
* null GUID (isEmpty() == true).
*
* @param that The UUID BSTR. We feed this to RTUuidFromUtf16(),
* so check it out for the exact format.
*/
Guid(const Bstr &that)
{
mGuidState = NORMAL_GUID;
if (that.isEmpty())
{
::RTUuidClear(&mUuid);
mGuidState = ZERO_GUID;
}
else
{
int rc = ::RTUuidFromUtf16(&mUuid, that.raw());
if (RT_FAILURE(rc))
{
::RTUuidClear(&mUuid);
mGuidState = INVALID_GUID;
}
}
refresh();
}
Guid& operator=(const Guid &that)
{
mGuidState = NORMAL_GUID;
::memcpy(&mUuid, &that.mUuid, sizeof (RTUUID));
if (isEmpty())
mGuidState = ZERO_GUID;
refresh();
return *this;
}
Guid& operator=(const GUID &guid)
{
mGuidState = NORMAL_GUID;
::memcpy(&mUuid, &guid, sizeof (GUID));
if (isEmpty())
mGuidState = ZERO_GUID;
refresh();
return *this;
}
Guid& operator=(const RTUUID &guid)
{
mGuidState = NORMAL_GUID;
::memcpy(&mUuid, &guid, sizeof (RTUUID));
if (isEmpty())
mGuidState = ZERO_GUID;
refresh();
return *this;
}
Guid& operator=(const char *str)
{
mGuidState = NORMAL_GUID;
int rc = ::RTUuidFromStr(&mUuid, str);
if (RT_FAILURE(rc))
{
::RTUuidClear(&mUuid);
mGuidState = INVALID_GUID;
}
else
{
if (isEmpty())
mGuidState = ZERO_GUID;
}
refresh();
return *this;
}
void create()
{
::RTUuidCreate(&mUuid);
mGuidState = NORMAL_GUID;
refresh();
}
void clear()
{
::RTUuidClear(&mUuid);
mGuidState = ZERO_GUID;
refresh();
}
/**
* Convert the GUID to a string.
*
* @returns String object containing the formatted GUID.
* @throws std::bad_alloc
*/
Utf8Str toString() const
{
char buf[RTUUID_STR_LENGTH];
::memset(buf,0,RTUUID_STR_LENGTH);
if (mGuidState == INVALID_GUID)
{
/* What to return in case of wrong Guid */
return Utf8Str("00000000-0000-0000-0000-00000000000");
}
::RTUuidToStr(&mUuid, buf, RTUUID_STR_LENGTH);
return Utf8Str(buf);
}
/**
* Like toString, but encloses the returned string in curly brackets.
*
* @returns String object containing the formatted GUID in curly brackets.
* @throws std::bad_alloc
*/
Utf8Str toStringCurly() const
{
if (mGuidState == INVALID_GUID)
{
/* What to return in case of wrong Guid */
return Utf8Str("{00000000-0000-0000-0000-00000000000}");
}
char buf[RTUUID_STR_LENGTH + 2] = "{";
::RTUuidToStr(&mUuid, buf + 1, RTUUID_STR_LENGTH);
buf[sizeof(buf) - 2] = '}';
buf[sizeof(buf) - 1] = '\0';
return Utf8Str(buf);
}
/**
* Convert the GUID to a string.
*
* @returns Bstr object containing the formatted GUID.
* @throws std::bad_alloc
*/
Bstr toUtf16() const
{
if (mGuidState == INVALID_GUID)
return Bstr("00000000-0000-0000-0000-00000000000");
RTUTF16 buf[RTUUID_STR_LENGTH];
::RTUuidToUtf16(&mUuid, buf, RTUUID_STR_LENGTH);
return Bstr(buf);
}
bool isValid() const
{
bool res = true;
if (mGuidState == INVALID_GUID)
res = false;
return res;
}
bool isZero() const
{
return (::RTUuidIsNull(&mUuid) && mGuidState == ZERO_GUID);
}
bool operator==(const Guid &that) const { return ::RTUuidCompare(&mUuid, &that.mUuid) == 0; }
bool operator==(const GUID &guid) const { return ::RTUuidCompare(&mUuid, (PRTUUID)&guid) == 0; }
bool operator!=(const Guid &that) const { return !operator==(that); }
bool operator!=(const GUID &guid) const { return !operator==(guid); }
bool operator<( const Guid &that) const { return ::RTUuidCompare(&mUuid, &that.mUuid) < 0; }
bool operator<( const GUID &guid) const { return ::RTUuidCompare(&mUuid, (PRTUUID)&guid) < 0; }
/**
* To directly copy the contents to a GUID, or for passing it as an input
* parameter of type (const GUID *), the compiler converts. */
const GUID &ref() const
{
return *(const GUID *)&mUuid;
}
/**
* To pass instances to printf-like functions.
*/
PCRTUUID raw() const
{
return (PCRTUUID)&mUuid;
}
#if !defined(VBOX_WITH_XPCOM)
/** To assign instances to OUT_GUID parameters from within the interface
* method. */
const Guid &cloneTo(GUID *pguid) const
{
if (pguid)
::memcpy(pguid, &mUuid, sizeof(GUID));
return *this;
}
/** To pass instances as OUT_GUID parameters to interface methods. */
GUID *asOutParam()
{
return (GUID *)&mUuid;
}
#else
/** To assign instances to OUT_GUID parameters from within the
* interface method */
const Guid &cloneTo(nsID **ppGuid) const
{
if (ppGuid)
*ppGuid = (nsID *)nsMemory::Clone(&mUuid, sizeof(nsID));
return *this;
}
/**
* Internal helper class for asOutParam().
*
* This takes a GUID refrence in the constructor and copies the mUuid from
* the method to that instance in its destructor.
*/
class GuidOutParam
{
GuidOutParam(Guid &guid)
: ptr(0),
outer(guid)
{
outer.clear();
}
nsID *ptr;
Guid &outer;
GuidOutParam(const GuidOutParam &that); // disabled
GuidOutParam &operator=(const GuidOutParam &that); // disabled
public:
operator nsID**() { return &ptr; }
~GuidOutParam()
{
if (ptr && outer.isEmpty())
{
outer = *ptr;
outer.refresh();
nsMemory::Free(ptr);
}
}
friend class Guid;
};
/** to pass instances as OUT_GUID parameters to interface methods */
GuidOutParam asOutParam() { return GuidOutParam(*this); }
#endif
/* to directly test IN_GUID interface method's parameters */
static bool isEmpty(const GUID &guid)
{
return ::RTUuidIsNull((PRTUUID)&guid);
}
/**
* Static immutable empty object. May be used for comparison purposes.
*/
static const Guid Empty;
protected:
bool isEmpty() const
{
return ::RTUuidIsNull(&mUuid);
}
bool isNotEmpty() const
{
return !::RTUuidIsNull(&mUuid);
}
private:
/**
* Refresh the debug-only UUID string.
*
* In debug code, refresh the UUID string representatino for debugging;
* must be called every time the internal uuid changes; compiles to nothing
* in release code.
*/
inline void refresh()
{
#ifdef DEBUG
// ::RTUuidToStr(&mUuid, mszUuid, RTUUID_STR_LENGTH);
// m_pcszUUID = mszUuid;
#endif
}
/** The UUID. */
RTUUID mUuid;
GuidState_t mGuidState;
#ifdef DEBUG
/** String representation of mUuid for printing in the debugger. */
char mszUuid[RTUUID_STR_LENGTH];
/** Another string variant for the debugger, points to szUUID. */
const char *m_pcszUUID;
#endif
};
/*
inline Bstr asGuidStr(const Bstr& str)
{
Guid guid(str);
return guid.isEmpty() ? Bstr() : guid.toUtf16();
}
*/
//inline bool isValidGuid(const Bstr& str)
//{
// Guid guid(str);
// return guid.isValid();
//// return !guid.isEmpty();
//}
} /* namespace com */
#endif /* !___VBox_com_Guid_h */
|