VirtualBox

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

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

com/Guid: remove conversion operators to eliminate any compiler surprises. Caught one totally unexpected issue which was indirectly caused by the similar Bstr cleanup, as there still is a Bstr->Guid conversion and thus the Guid magic was triggered

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