VirtualBox

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

Last change on this file since 2734 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/** @file
2 *
3 * MS COM / XPCOM Abstraction Layer:
4 * Guid class declaration
5 */
6
7/*
8 * Copyright (C) 2006 InnoTek Systemberatung GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23#ifndef __VBox_com_Guid_h__
24#define __VBox_com_Guid_h__
25
26#if !defined (__WIN__)
27#include <nsMemory.h>
28#endif
29
30#include "VBox/com/string.h"
31
32#include <iprt/uuid.h>
33
34namespace com
35{
36
37/**
38 * Helper class that represents the UUID type and hides platform-siecific
39 * implementation details.
40 */
41class Guid
42{
43public:
44
45 Guid () { ::RTUuidClear (&uuid); }
46 Guid (const Guid &that) { uuid = that.uuid; }
47 Guid (const RTUUID &that) { uuid = that; }
48 Guid (const GUID &that) { ::memcpy (&uuid, &that, sizeof (GUID)); }
49 Guid (const char *that) {
50 ::RTUuidClear (&uuid);
51 ::RTUuidFromStr (&uuid, that);
52 }
53
54 Guid &operator= (const Guid &that) {
55 ::memcpy (&uuid, &that.uuid, sizeof (RTUUID));
56 return *this;
57 }
58 Guid &operator= (const GUID &guid) {
59 ::memcpy (&uuid, &guid, sizeof (GUID));
60 return *this;
61 }
62 Guid &operator= (const RTUUID &guid) {
63 ::memcpy (&uuid, &guid, sizeof (RTUUID));
64 return *this;
65 }
66 Guid &operator= (const char *str) {
67 ::RTUuidFromStr (&uuid, str);
68 return *this;
69 }
70
71 void create() { ::RTUuidCreate (&uuid); }
72 void clear() { ::RTUuidClear (&uuid); }
73
74 Utf8Str toString () const {
75 char buf [RTUUID_STR_LENGTH];
76 ::RTUuidToStr (&uuid, buf, RTUUID_STR_LENGTH);
77 return Utf8Str (buf);
78 }
79
80 bool isEmpty() const { return ::RTUuidIsNull (&uuid) != 0; }
81 operator bool() const { return !isEmpty(); }
82
83 bool operator== (const Guid &that) const { return ::RTUuidCompare (&uuid, &that.uuid) == 0; }
84 bool operator== (const GUID &guid) const { return ::RTUuidCompare (&uuid, (PRTUUID) &guid) == 0; }
85 bool operator!= (const Guid &that) const { return !operator==(that); }
86 bool operator!= (const GUID &guid) const { return !operator==(guid); }
87 bool operator< (const Guid &that) const { return ::RTUuidCompare (&uuid, &that.uuid) < 0; }
88 bool operator< (const GUID &guid) const { return ::RTUuidCompare (&uuid, (PRTUUID) &guid) < 0; }
89
90 // to pass instances as GUIDPARAM parameters to interface methods
91 operator const GUID &() const { return *(GUID *) &uuid; }
92
93 // to directly pass instances to CFGLDRQueryUUID()
94 PRTUUID ptr() { return &uuid; }
95
96 // to pass instances to printf-like functions
97 PCRTUUID raw() const { return &uuid; }
98
99 // to pass instances to RTUuid*() as a constant argument
100 operator const RTUUID * const () const { return &uuid; }
101
102#if defined(__WIN__)
103
104 // to assign instances to GUIDPARAMOUT parameters from within the interface method
105 const Guid &cloneTo (GUID *pguid) const {
106 if (pguid) { ::memcpy (pguid, &uuid, sizeof (GUID)); }
107 return *this;
108 }
109
110 // to pass instances as GUIDPARAMOUT parameters to interface methods
111 GUID *asOutParam() { return (GUID *) &uuid; }
112
113#else
114
115 // to assign instances to GUIDPARAMOUT parameters from within the interface method
116 const Guid &cloneTo (nsID **ppguid) const {
117 if (ppguid) { *ppguid = (nsID *) nsMemory::Clone (&uuid, sizeof (nsID)); }
118 return *this;
119 }
120
121 // internal helper class for asOutParam()
122 class GuidOutParam {
123 GuidOutParam (Guid &guid) : ptr (0), outer (guid) { outer.clear(); }
124 nsID *ptr;
125 Guid &outer;
126 GuidOutParam (const GuidOutParam &that); // disabled
127 GuidOutParam &operator= (const GuidOutParam &that); // disabled
128 public:
129 operator nsID **() { return &ptr; }
130 ~GuidOutParam() {
131 if (ptr && outer.isEmpty()) { outer = *ptr; nsMemory::Free (ptr); }
132 }
133 friend class Guid;
134 };
135
136 // to pass instances as GUIDPARAMOUT parameters to interface methods
137 GuidOutParam asOutParam() { return GuidOutParam (*this); }
138
139#endif
140
141 // to directly test GUIDPARAM interface method's parameters
142 static BOOL isEmpty (const GUID &guid) { return ::RTUuidIsNull ((PRTUUID) &guid); }
143
144private:
145
146 RTUUID uuid;
147};
148
149#if defined (_MSC_VER)
150
151// work around error C2593 of the stupid MSVC 7.x ambiguity resolver
152inline bool operator! (const Guid& guid) { return !bool (guid); }
153inline bool operator&& (const Guid& guid, bool b) { return bool (guid) && b; }
154inline bool operator|| (const Guid& guid, bool b) { return bool (guid) || b; }
155inline bool operator&& (bool b, const Guid& guid) { return b && bool (guid); }
156inline bool operator|| (bool b, const Guid& guid) { return b || bool (guid); }
157
158#endif
159
160}; // namespace com
161
162#endif // __VBox_com_Guid_h__
163
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