VirtualBox

source: vbox/trunk/include/VBox/com/Guid.h@ 36254

Last change on this file since 36254 was 34071, checked in by vboxsync, 14 years ago

com::Guid: Don't depend on RTUuitFromStr/Utf16 to not touch the output buffer. Cleanup. Added isNotEmpty. Provide compile targets for the VBox/com/*.h files as well.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.8 KB
Line 
1/* $Id: Guid.h 34071 2010-11-15 15:35:10Z vboxsync $ */
2/** @file
3 * MS COM / XPCOM Abstraction Layer - Guid class declaration.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_com_Guid_h
28#define ___VBox_com_Guid_h
29
30/* Make sure all the stdint.h macros are included - must come first! */
31#ifndef __STDC_LIMIT_MACROS
32# define __STDC_LIMIT_MACROS
33#endif
34#ifndef __STDC_CONSTANT_MACROS
35# define __STDC_CONSTANT_MACROS
36#endif
37
38#if defined(VBOX_WITH_XPCOM)
39# include <nsMemory.h>
40#endif
41
42#include "VBox/com/string.h"
43
44#include <iprt/uuid.h>
45#include <iprt/err.h>
46
47namespace com
48{
49
50/**
51 * Helper class that represents the UUID type and hides platform-specific
52 * implementation details.
53 */
54class Guid
55{
56public:
57
58 Guid()
59 {
60 ::RTUuidClear(&mUuid);
61 refresh();
62 }
63
64 Guid(const Guid &that)
65 {
66 mUuid = that.mUuid;
67 refresh();
68 }
69
70 Guid(const RTUUID &that)
71 {
72 mUuid = that;
73 refresh();
74 }
75
76 Guid(const GUID &that)
77 {
78 AssertCompileSize(GUID, sizeof(RTUUID));
79 ::memcpy(&mUuid, &that, sizeof(GUID));
80 refresh();
81 }
82
83 /**
84 * Construct a GUID from a string.
85 *
86 * Should the string be invalid, the object will be set to the null GUID
87 * (isEmpty() == true).
88 *
89 * @param that The UUID string. We feed this to RTUuidFromStr(),
90 * so check it out for the exact format.
91 */
92 Guid(const char *that)
93 {
94 int rc = ::RTUuidFromStr(&mUuid, that);
95 if (RT_FAILURE(rc))
96 ::RTUuidClear(&mUuid);
97 refresh();
98 }
99
100 /**
101 * Construct a GUID from a BSTR.
102 *
103 * Should the string be empty or invalid, the object will be set to the
104 * null GUID (isEmpty() == true).
105 *
106 * @param that The UUID BSTR. We feed this to RTUuidFromUtf16(),
107 * so check it out for the exact format.
108 */
109 Guid(const Bstr &that)
110 {
111 int rc = !that.isEmpty()
112 ? ::RTUuidFromUtf16(&mUuid, that.raw())
113 : VERR_INVALID_UUID_FORMAT;
114 if (RT_FAILURE(rc))
115 ::RTUuidClear(&mUuid);
116 refresh();
117 }
118
119 Guid& operator=(const Guid &that)
120 {
121 ::memcpy(&mUuid, &that.mUuid, sizeof (RTUUID));
122 refresh();
123 return *this;
124 }
125 Guid& operator=(const GUID &guid)
126 {
127 ::memcpy(&mUuid, &guid, sizeof (GUID));
128 refresh();
129 return *this;
130 }
131 Guid& operator=(const RTUUID &guid)
132 {
133 ::memcpy(&mUuid, &guid, sizeof (RTUUID));
134 refresh();
135 return *this;
136 }
137 Guid& operator=(const char *str)
138 {
139 int rc = ::RTUuidFromStr(&mUuid, str);
140 if (RT_FAILURE(rc))
141 ::RTUuidClear(&mUuid);
142 refresh();
143 return *this;
144 }
145
146 void create()
147 {
148 ::RTUuidCreate(&mUuid);
149 refresh();
150 }
151 void clear()
152 {
153 ::RTUuidClear(&mUuid);
154 refresh();
155 }
156
157 /**
158 * Convert the GUID to a string.
159 *
160 * @returns String object containing the formatted GUID.
161 * @throws std::bad_alloc
162 */
163 Utf8Str toString() const
164 {
165 char buf[RTUUID_STR_LENGTH];
166 ::RTUuidToStr(&mUuid, buf, RTUUID_STR_LENGTH);
167 return Utf8Str(buf);
168 }
169
170 /**
171 * Like toString, but encloses the returned string in curly brackets.
172 *
173 * @returns String object containing the formatted GUID in curly brackets.
174 * @throws std::bad_alloc
175 */
176 Utf8Str toStringCurly() const
177 {
178 char buf[RTUUID_STR_LENGTH + 2] = "{";
179 ::RTUuidToStr(&mUuid, buf + 1, RTUUID_STR_LENGTH);
180 buf[sizeof(buf) - 2] = '}';
181 buf[sizeof(buf) - 1] = '\0';
182 return Utf8Str(buf);
183 }
184
185 /**
186 * Convert the GUID to a string.
187 *
188 * @returns Bstr object containing the formatted GUID.
189 * @throws std::bad_alloc
190 */
191 Bstr toUtf16() const
192 {
193 if (isEmpty())
194 return Bstr();
195
196 RTUTF16 buf[RTUUID_STR_LENGTH];
197 ::RTUuidToUtf16(&mUuid, buf, RTUUID_STR_LENGTH);
198 return Bstr(buf);
199 }
200
201 bool isEmpty() const
202 {
203 return ::RTUuidIsNull(&mUuid);
204 }
205
206 bool isNotEmpty() const
207 {
208 return !::RTUuidIsNull(&mUuid);
209 }
210
211 bool operator==(const Guid &that) const { return ::RTUuidCompare(&mUuid, &that.mUuid) == 0; }
212 bool operator==(const GUID &guid) const { return ::RTUuidCompare(&mUuid, (PRTUUID)&guid) == 0; }
213 bool operator!=(const Guid &that) const { return !operator==(that); }
214 bool operator!=(const GUID &guid) const { return !operator==(guid); }
215 bool operator<( const Guid &that) const { return ::RTUuidCompare(&mUuid, &that.mUuid) < 0; }
216 bool operator<( const GUID &guid) const { return ::RTUuidCompare(&mUuid, (PRTUUID)&guid) < 0; }
217
218 /**
219 * To directly copy the contents to a GUID, or for passing it as an input
220 * parameter of type (const GUID *), the compiler converts. */
221 const GUID &ref() const
222 {
223 return *(const GUID *)&mUuid;
224 }
225
226 /**
227 * To pass instances to printf-like functions.
228 */
229 PCRTUUID raw() const
230 {
231 return (PCRTUUID)&mUuid;
232 }
233
234#if !defined(VBOX_WITH_XPCOM)
235
236 /** To assign instances to OUT_GUID parameters from within the interface
237 * method. */
238 const Guid &cloneTo(GUID *pguid) const
239 {
240 if (pguid)
241 ::memcpy(pguid, &mUuid, sizeof(GUID));
242 return *this;
243 }
244
245 /** To pass instances as OUT_GUID parameters to interface methods. */
246 GUID *asOutParam()
247 {
248 return (GUID *)&mUuid;
249 }
250
251#else
252
253 /** To assign instances to OUT_GUID parameters from within the
254 * interface method */
255 const Guid &cloneTo(nsID **ppGuid) const
256 {
257 if (ppGuid)
258 *ppGuid = (nsID *)nsMemory::Clone(&mUuid, sizeof(nsID));
259 return *this;
260 }
261
262 /**
263 * Internal helper class for asOutParam().
264 *
265 * This takes a GUID refrence in the constructor and copies the mUuid from
266 * the method to that instance in its destructor.
267 */
268 class GuidOutParam
269 {
270 GuidOutParam(Guid &guid)
271 : ptr(0),
272 outer(guid)
273 {
274 outer.clear();
275 }
276
277 nsID *ptr;
278 Guid &outer;
279 GuidOutParam(const GuidOutParam &that); // disabled
280 GuidOutParam &operator=(const GuidOutParam &that); // disabled
281 public:
282 operator nsID**() { return &ptr; }
283 ~GuidOutParam()
284 {
285 if (ptr && outer.isEmpty())
286 {
287 outer = *ptr;
288 outer.refresh();
289 nsMemory::Free(ptr);
290 }
291 }
292 friend class Guid;
293 };
294
295 /** to pass instances as OUT_GUID parameters to interface methods */
296 GuidOutParam asOutParam() { return GuidOutParam(*this); }
297
298#endif
299
300 /* to directly test IN_GUID interface method's parameters */
301 static bool isEmpty(const GUID &guid)
302 {
303 return ::RTUuidIsNull((PRTUUID)&guid);
304 }
305
306 /**
307 * Static immutable empty object. May be used for comparison purposes.
308 */
309 static const Guid Empty;
310
311private:
312 /**
313 * Refresh the debug-only UUID string.
314 *
315 * In debug code, refresh the UUID string representatino for debugging;
316 * must be called every time the internal uuid changes; compiles to nothing
317 * in release code.
318 */
319 inline void refresh()
320 {
321#ifdef DEBUG
322 ::RTUuidToStr(&mUuid, mszUuid, RTUUID_STR_LENGTH);
323 m_pcszUUID = mszUuid;
324#endif
325 }
326
327 /** The UUID. */
328 RTUUID mUuid;
329
330#ifdef DEBUG
331 /** String representation of mUuid for printing in the debugger. */
332 char mszUuid[RTUUID_STR_LENGTH];
333 /** Another string variant for the debugger, points to szUUID. */
334 const char *m_pcszUUID;
335#endif
336};
337
338inline Bstr asGuidStr(const Bstr& str)
339{
340 Guid guid(str);
341 return guid.isEmpty() ? Bstr() : guid.toUtf16();
342}
343
344inline bool isValidGuid(const Bstr& str)
345{
346 Guid guid(str);
347 return !guid.isEmpty();
348}
349
350} /* namespace com */
351
352#endif /* !___VBox_com_Guid_h */
353
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