1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Basic Frontend (BFE):
|
---|
4 | * Declarations of the BFE base classes
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek 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 |
|
---|
19 | #ifndef ____H_VIRTUALBOXBASEIMPL
|
---|
20 | #define ____H_VIRTUALBOXBASEIMPL
|
---|
21 |
|
---|
22 | #ifdef VBOXBFE_WITHOUT_COM
|
---|
23 | # include "COMDefs.h" // Our wrapper for COM definitions left in the code
|
---|
24 | #else
|
---|
25 | # include <VBox/com/defs.h>
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | #include <VBox/com/assert.h> // For the AssertComRC macro
|
---|
29 |
|
---|
30 | #include <iprt/alloc.h>
|
---|
31 | #include <iprt/assert.h>
|
---|
32 | #include <iprt/critsect.h>
|
---|
33 | #include <iprt/string.h>
|
---|
34 | #include <iprt/asm.h> // for ASMReturnAddress
|
---|
35 |
|
---|
36 | #include <list>
|
---|
37 | #include <map>
|
---|
38 |
|
---|
39 | // macros and inlines
|
---|
40 | ////////////////////////////////////////////////////////////////////////////////
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * A lightweight replacement for the COM setError function. I am
|
---|
44 | * assuming that this is only called in circumstances justifying
|
---|
45 | * an assertion.
|
---|
46 | *
|
---|
47 | * @returns error number
|
---|
48 | * @param iNum error number - this is simply returned
|
---|
49 | * @param pszFormat formatted error message
|
---|
50 | */
|
---|
51 | static inline int setError(int iNum, const char *pszFormat, ...)
|
---|
52 | {
|
---|
53 | va_list args;
|
---|
54 | va_start(args, pszFormat);
|
---|
55 | AssertMsgFailed((pszFormat, args));
|
---|
56 | va_end(args);
|
---|
57 | return iNum;
|
---|
58 | }
|
---|
59 |
|
---|
60 | /**
|
---|
61 | * Translate an error string. We do not do translation.
|
---|
62 | */
|
---|
63 | #define tr(a) a
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * A special version of the Assert macro to be used within VirtualBoxBase
|
---|
67 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
68 | *
|
---|
69 | * In the debug build, this macro is equivalent to Assert.
|
---|
70 | * In the release build, this macro uses |setError (E_FAIL, ...)| to set the
|
---|
71 | * error info from the asserted expression.
|
---|
72 | *
|
---|
73 | * @see VirtualBoxSupportErrorInfoImpl::setError
|
---|
74 | *
|
---|
75 | * @param expr Expression which should be true.
|
---|
76 | */
|
---|
77 | #if defined (DEBUG)
|
---|
78 | #define ComAssert(expr) Assert (expr)
|
---|
79 | #else
|
---|
80 | #define ComAssert(expr) \
|
---|
81 | do { } while (0)
|
---|
82 | #endif
|
---|
83 |
|
---|
84 | /**
|
---|
85 | * A special version of the AssertMsg macro to be used within VirtualBoxBase
|
---|
86 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
87 | *
|
---|
88 | * See ComAssert for more info.
|
---|
89 | *
|
---|
90 | * @param expr Expression which should be true.
|
---|
91 | * @param a printf argument list (in parenthesis).
|
---|
92 | */
|
---|
93 | #if defined (DEBUG)
|
---|
94 | #define ComAssertMsg(expr, a) AssertMsg (expr, a)
|
---|
95 | #else
|
---|
96 | #define ComAssertMsg(expr, a) \
|
---|
97 | do { } while (0)
|
---|
98 | #endif
|
---|
99 |
|
---|
100 | /**
|
---|
101 | * A special version of the AssertRC macro to be used within VirtualBoxBase
|
---|
102 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
103 | *
|
---|
104 | * See ComAssert for more info.
|
---|
105 | *
|
---|
106 | * @param vrc VBox status code.
|
---|
107 | */
|
---|
108 | #if defined (DEBUG)
|
---|
109 | #define ComAssertRC(vrc) AssertRC (vrc)
|
---|
110 | #else
|
---|
111 | #define ComAssertRC(vrc) ComAssertMsgRC (vrc, ("%Vra", vrc))
|
---|
112 | #endif
|
---|
113 |
|
---|
114 | /**
|
---|
115 | * A special version of the AssertMsgRC macro to be used within VirtualBoxBase
|
---|
116 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
117 | *
|
---|
118 | * See ComAssert for more info.
|
---|
119 | *
|
---|
120 | * @param vrc VBox status code.
|
---|
121 | * @param msg printf argument list (in parenthesis).
|
---|
122 | */
|
---|
123 | #if defined (DEBUG)
|
---|
124 | #define ComAssertMsgRC(vrc, msg) AssertMsgRC (vrc, msg)
|
---|
125 | #else
|
---|
126 | #define ComAssertMsgRC(vrc, msg) ComAssertMsg (VBOX_SUCCESS (vrc), msg)
|
---|
127 | #endif
|
---|
128 |
|
---|
129 |
|
---|
130 | /**
|
---|
131 | * A special version of the AssertFailed macro to be used within VirtualBoxBase
|
---|
132 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
133 | *
|
---|
134 | * See ComAssert for more info.
|
---|
135 | */
|
---|
136 | #if defined (DEBUG)
|
---|
137 | #define ComAssertFailed() AssertFailed()
|
---|
138 | #else
|
---|
139 | #define ComAssertFailed() \
|
---|
140 | do { } while (0)
|
---|
141 | #endif
|
---|
142 |
|
---|
143 | /**
|
---|
144 | * A special version of the AssertMsgFailed macro to be used within VirtualBoxBase
|
---|
145 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
146 | *
|
---|
147 | * See ComAssert for more info.
|
---|
148 | *
|
---|
149 | * @param a printf argument list (in parenthesis).
|
---|
150 | */
|
---|
151 | #if defined (DEBUG)
|
---|
152 | #define ComAssertMsgFailed(a) AssertMsgFailed(a)
|
---|
153 | #else
|
---|
154 | #define ComAssertMsgFailed(a) \
|
---|
155 | do { } while (0)
|
---|
156 | #endif
|
---|
157 |
|
---|
158 | /**
|
---|
159 | * A special version of the AssertComRC macro to be used within VirtualBoxBase
|
---|
160 | * subclasses that also inherit the VirtualBoxSupportErrorInfoImpl template.
|
---|
161 | *
|
---|
162 | * See ComAssert for more info.
|
---|
163 | *
|
---|
164 | * @param rc COM result code
|
---|
165 | */
|
---|
166 | #if defined (DEBUG)
|
---|
167 | #define ComAssertComRC(rc) AssertComRC (rc)
|
---|
168 | #else
|
---|
169 | #define ComAssertComRC(rc) ComAssertMsg (SUCCEEDED (rc), ("COM RC = 0x%08X\n", rc))
|
---|
170 | #endif
|
---|
171 |
|
---|
172 |
|
---|
173 | /** Special version of ComAssert that returns ret if expr fails */
|
---|
174 | #define ComAssertRet(expr, ret) \
|
---|
175 | do { ComAssert (expr); if (!(expr)) return (ret); } while (0)
|
---|
176 | /** Special version of ComAssertMsg that returns ret if expr fails */
|
---|
177 | #define ComAssertMsgRet(expr, a, ret) \
|
---|
178 | do { ComAssertMsg (expr, a); if (!(expr)) return (ret); } while (0)
|
---|
179 | /** Special version of ComAssertRC that returns ret if vrc does not succeed */
|
---|
180 | #define ComAssertRCRet(vrc, ret) \
|
---|
181 | do { ComAssertRC (vrc); if (!VBOX_SUCCESS (vrc)) return (ret); } while (0)
|
---|
182 | /** Special version of ComAssertMsgRC that returns ret if vrc does not succeed */
|
---|
183 | #define ComAssertMsgRCRet(vrc, msg, ret) \
|
---|
184 | do { ComAssertMsgRC (vrc, msg); if (!VBOX_SUCCESS (vrc)) return (ret); } while (0)
|
---|
185 | /** Special version of ComAssertFailed that returns ret */
|
---|
186 | #define ComAssertFailedRet(ret) \
|
---|
187 | do { ComAssertFailed(); return (ret); } while (0)
|
---|
188 | /** Special version of ComAssertMsgFailed that returns ret */
|
---|
189 | #define ComAssertMsgFailedRet(msg, ret) \
|
---|
190 | do { ComAssertMsgFailed (msg); return (ret); } while (0)
|
---|
191 | /** Special version of ComAssertComRC that returns ret if rc does not succeed */
|
---|
192 | #define ComAssertComRCRet(rc, ret) \
|
---|
193 | do { ComAssertComRC (rc); if (!SUCCEEDED (rc)) return (ret); } while (0)
|
---|
194 |
|
---|
195 |
|
---|
196 | /** Special version of ComAssert that evaulates eval and breaks if expr fails */
|
---|
197 | #define ComAssertBreak(expr, eval) \
|
---|
198 | if (1) { ComAssert (expr); if (!(expr)) { eval; break; } } else do {} while (0)
|
---|
199 | /** Special version of ComAssertMsg that evaulates eval and breaks if expr fails */
|
---|
200 | #define ComAssertMsgBreak(expr, a, eval) \
|
---|
201 | if (1) { ComAssertMsg (expr, a); if (!(expr)) { eval; break; } } else do {} while (0)
|
---|
202 | /** Special version of ComAssertRC that evaulates eval and breaks if vrc does not succeed */
|
---|
203 | #define ComAssertRCBreak(vrc, eval) \
|
---|
204 | if (1) { ComAssertRC (vrc); if (!VBOX_SUCCESS (vrc)) { eval; break; } } else do {} while (0)
|
---|
205 | /** Special version of ComAssertMsgRC that evaulates eval and breaks if vrc does not succeed */
|
---|
206 | #define ComAssertMsgRCBreak(vrc, msg, eval) \
|
---|
207 | if (1) { ComAssertMsgRC (vrc, msg); if (!VBOX_SUCCESS (vrc)) { eval; break; } } else do {} while (0)
|
---|
208 | /** Special version of ComAssertFailed that vaulates eval and breaks */
|
---|
209 | #define ComAssertFailedBreak(eval) \
|
---|
210 | if (1) { ComAssertFailed(); { eval; break; } } else do {} while (0)
|
---|
211 | /** Special version of ComAssertMsgFailed that vaulates eval and breaks */
|
---|
212 | #define ComAssertMsgFailedBreak(msg, eval) \
|
---|
213 | if (1) { ComAssertMsgFailed (msg); { eval; break; } } else do {} while (0)
|
---|
214 | /** Special version of ComAssertComRC that vaulates eval and breaks if rc does not succeed */
|
---|
215 | #define ComAssertComRCBreak(rc, eval) \
|
---|
216 | if (1) { ComAssertComRC (rc); if (!SUCCEEDED (rc)) { eval; break; } } else do {} while (0)
|
---|
217 |
|
---|
218 | /**
|
---|
219 | * Checks whether this object is ready or not. Objects are typically ready
|
---|
220 | * after they are successfully created by their parent objects and become
|
---|
221 | * not ready when the respective parent itsef becomes not ready or gets
|
---|
222 | * destroyed while a reference to the child is still held by the caller
|
---|
223 | * (which prevents it from destruction).
|
---|
224 | *
|
---|
225 | * When this object is not ready, the macro sets error info and returns
|
---|
226 | * E_UNEXPECTED (the translatable error message is defined in null context).
|
---|
227 | * Otherwise, the macro does nothing.
|
---|
228 | *
|
---|
229 | * This macro <b>must</b> be used at the beginning of all interface methods
|
---|
230 | * (right after entering the class lock) in classes derived from both
|
---|
231 | * VirtualBoxBase and VirtualBoxSupportErrorInfoImpl.
|
---|
232 | */
|
---|
233 | #define CHECK_READY() \
|
---|
234 | do { \
|
---|
235 | if (!isReady()) \
|
---|
236 | return setError (E_UNEXPECTED, tr ("The object is not ready")); \
|
---|
237 | } while (0)
|
---|
238 |
|
---|
239 | /**
|
---|
240 | * Declares an empty construtor and destructor for the given class.
|
---|
241 | * This is useful to prevent the compiler from generating the default
|
---|
242 | * ctor and dtor, which in turn allows to use forward class statements
|
---|
243 | * (instead of including their header files) when declaring data members of
|
---|
244 | * non-fundamental types with constructors (which are always called implicitly
|
---|
245 | * by constructors and by the destructor of the class).
|
---|
246 | *
|
---|
247 | * This macro is to be palced within (the public section of) the class
|
---|
248 | * declaration. Its counterpart, DEFINE_EMPTY_CTOR_DTOR, must be placed
|
---|
249 | * somewhere in one of the translation units (usually .cpp source files).
|
---|
250 | *
|
---|
251 | * @param cls class to declare a ctor and dtor for
|
---|
252 | */
|
---|
253 | #define DECLARE_EMPTY_CTOR_DTOR(cls) cls(); ~cls();
|
---|
254 |
|
---|
255 | /**
|
---|
256 | * Defines an empty construtor and destructor for the given class.
|
---|
257 | * See DECLARE_EMPTY_CTOR_DTOR for more info.
|
---|
258 | */
|
---|
259 | #define DEFINE_EMPTY_CTOR_DTOR(cls) \
|
---|
260 | cls::cls () {}; cls::~cls () {};
|
---|
261 |
|
---|
262 | ////////////////////////////////////////////////////////////////////////////////
|
---|
263 |
|
---|
264 | namespace stdx
|
---|
265 | {
|
---|
266 | /**
|
---|
267 | * A wrapper around the container that owns pointers it stores.
|
---|
268 | *
|
---|
269 | * @note
|
---|
270 | * Ownership is recognized only when destructing the container!
|
---|
271 | * Pointers are not deleted when erased using erase() etc.
|
---|
272 | *
|
---|
273 | * @param container
|
---|
274 | * class that meets Container requirements (for example, an instance of
|
---|
275 | * std::list<>, std::vector<> etc.). The given class must store
|
---|
276 | * pointers (for example, std::list <MyType *>).
|
---|
277 | */
|
---|
278 | template <typename container>
|
---|
279 | class ptr_container : public container
|
---|
280 | {
|
---|
281 | public:
|
---|
282 | ~ptr_container()
|
---|
283 | {
|
---|
284 | for (typename container::iterator it = container::begin();
|
---|
285 | it != container::end();
|
---|
286 | ++ it)
|
---|
287 | delete (*it);
|
---|
288 | }
|
---|
289 | };
|
---|
290 | };
|
---|
291 |
|
---|
292 | ////////////////////////////////////////////////////////////////////////////////
|
---|
293 |
|
---|
294 | class ATL_NO_VTABLE VirtualBoxBase
|
---|
295 | {
|
---|
296 |
|
---|
297 | public:
|
---|
298 | VirtualBoxBase()
|
---|
299 | {
|
---|
300 | mReady = false;
|
---|
301 | RTCritSectInit(&mCritSec);
|
---|
302 | }
|
---|
303 | virtual ~VirtualBoxBase()
|
---|
304 | {
|
---|
305 | RTCritSectDelete(&mCritSec);
|
---|
306 | }
|
---|
307 |
|
---|
308 | /**
|
---|
309 | * Virtual unintialization method. Called during parent object's
|
---|
310 | * uninitialization, if the given subclass instance is a dependent child of
|
---|
311 | * a class dervived from VirtualBoxBaseWithChildren (@sa
|
---|
312 | * VirtualBoxBaseWithChildren::addDependentChild). In this case, this
|
---|
313 | * method's impelemtation must call setReady (false),
|
---|
314 | */
|
---|
315 | virtual void uninit() {}
|
---|
316 |
|
---|
317 | // lock the object
|
---|
318 | void lock()
|
---|
319 | {
|
---|
320 | RTCritSectEnter(&mCritSec);
|
---|
321 | }
|
---|
322 | // unlock the object
|
---|
323 | void unlock()
|
---|
324 | {
|
---|
325 | RTCritSectLeave(&mCritSec);
|
---|
326 | }
|
---|
327 |
|
---|
328 | /** Returns true when the current thread owns this object's lock. */
|
---|
329 | bool isLockedOnCurrentThread()
|
---|
330 | {
|
---|
331 | return RTCritSectIsOwner (&mCritSec);
|
---|
332 | }
|
---|
333 |
|
---|
334 | /**
|
---|
335 | * Helper class to make safe locking / unlocking.
|
---|
336 | * The constructor, given the VirtualBoxBase pointer, safely acquires the
|
---|
337 | * lock protecting its data. This lock will be released automatically
|
---|
338 | * when the instance goes out of scope (block, funciton etc.).
|
---|
339 | *
|
---|
340 | * @note
|
---|
341 | * An instance of this class must be declared as a local variable,
|
---|
342 | * otherwise the optimizer will most likely destruct it right after
|
---|
343 | * creation (but not at the end of the block), so the lock will be
|
---|
344 | * released immediately.
|
---|
345 | */
|
---|
346 | class AutoLock
|
---|
347 | {
|
---|
348 | public:
|
---|
349 |
|
---|
350 | #if defined(DEBUG)
|
---|
351 | # define ___CritSectEnter(cs) \
|
---|
352 | RTCritSectEnterDebug ((cs), \
|
---|
353 | "AutoLock::lock()/enter() return address >>>", 0, \
|
---|
354 | (RTUINTPTR) ASMReturnAddress())
|
---|
355 | #else
|
---|
356 | # define ___CritSectEnter(cs) RTCritSectEnter ((cs))
|
---|
357 | #endif
|
---|
358 |
|
---|
359 | /** Internal lock handle */
|
---|
360 | class Handle
|
---|
361 | {
|
---|
362 | public:
|
---|
363 | Handle (RTCRITSECT &critSect) : lock (critSect) {}
|
---|
364 | private:
|
---|
365 | RTCRITSECT &lock;
|
---|
366 | friend class AutoLock;
|
---|
367 | };
|
---|
368 |
|
---|
369 | AutoLock() : mLock (NULL), mLevel (0), mLeftLevel (0) {}
|
---|
370 |
|
---|
371 | AutoLock (VirtualBoxBase *that)
|
---|
372 | : mLock (that ? &that->mCritSec : NULL)
|
---|
373 | , mLevel (0), mLeftLevel (0)
|
---|
374 | {
|
---|
375 | if (mLock)
|
---|
376 | {
|
---|
377 | ___CritSectEnter (mLock);
|
---|
378 | ++ mLevel;
|
---|
379 | }
|
---|
380 | }
|
---|
381 |
|
---|
382 | AutoLock (RTCRITSECT &critSect)
|
---|
383 | : mLock (&critSect), mLevel (0), mLeftLevel (0)
|
---|
384 | {
|
---|
385 | if (mLock)
|
---|
386 | {
|
---|
387 | ___CritSectEnter (mLock);
|
---|
388 | ++ mLevel;
|
---|
389 | }
|
---|
390 | }
|
---|
391 |
|
---|
392 | AutoLock (const Handle &handle)
|
---|
393 | : mLock (&handle.lock), mLevel (0), mLeftLevel (0)
|
---|
394 | {
|
---|
395 | if (mLock)
|
---|
396 | {
|
---|
397 | ___CritSectEnter (mLock);
|
---|
398 | ++ mLevel;
|
---|
399 | }
|
---|
400 | }
|
---|
401 |
|
---|
402 | ~AutoLock()
|
---|
403 | {
|
---|
404 | if (mLock)
|
---|
405 | {
|
---|
406 | if (mLeftLevel)
|
---|
407 | {
|
---|
408 | mLeftLevel -= mLevel;
|
---|
409 | mLevel = 0;
|
---|
410 | for (; mLeftLevel; -- mLeftLevel)
|
---|
411 | RTCritSectEnter (mLock);
|
---|
412 | }
|
---|
413 | AssertMsg (mLevel <= 1, ("Lock level > 1: %d\n", mLevel));
|
---|
414 | for (; mLevel; -- mLevel)
|
---|
415 | RTCritSectLeave (mLock);
|
---|
416 | }
|
---|
417 | }
|
---|
418 |
|
---|
419 | /**
|
---|
420 | * Tries to acquire the lock or increases the lock level
|
---|
421 | * if the lock is already owned by this thread.
|
---|
422 | */
|
---|
423 | void lock()
|
---|
424 | {
|
---|
425 | if (mLock)
|
---|
426 | {
|
---|
427 | AssertMsgReturn (mLeftLevel == 0, ("lock() after leave()\n"), (void) 0);
|
---|
428 | ___CritSectEnter (mLock);
|
---|
429 | ++ mLevel;
|
---|
430 | }
|
---|
431 | }
|
---|
432 |
|
---|
433 | /**
|
---|
434 | * Decreases the lock level. If the level goes to zero, the lock
|
---|
435 | * is released by the current thread.
|
---|
436 | */
|
---|
437 | void unlock()
|
---|
438 | {
|
---|
439 | if (mLock)
|
---|
440 | {
|
---|
441 | AssertMsgReturn (mLevel > 0, ("Lock level is zero\n"), (void) 0);
|
---|
442 | AssertMsgReturn (mLeftLevel == 0, ("lock() after leave()\n"), (void) 0);
|
---|
443 | -- mLevel;
|
---|
444 | RTCritSectLeave (mLock);
|
---|
445 | }
|
---|
446 | }
|
---|
447 |
|
---|
448 | /**
|
---|
449 | * Causes the current thread to completely release the lock
|
---|
450 | * (including locks acquired by all other instances of this class
|
---|
451 | * referring to the same object or handle). #enter() must be called
|
---|
452 | * to acquire the lock back and restore all lock levels.
|
---|
453 | */
|
---|
454 | void leave()
|
---|
455 | {
|
---|
456 | if (mLock)
|
---|
457 | {
|
---|
458 | AssertMsg (mLevel > 0, ("Lock level is zero\n"));
|
---|
459 | AssertMsgReturn (mLeftLevel == 0, ("leave() w/o enter()\n"), (void) 0);
|
---|
460 | mLeftLevel = RTCritSectGetRecursion (mLock);
|
---|
461 | for (uint32_t left = mLeftLevel; left; -- left)
|
---|
462 | RTCritSectLeave (mLock);
|
---|
463 | Assert (mLeftLevel >= mLevel);
|
---|
464 | }
|
---|
465 | }
|
---|
466 |
|
---|
467 | /**
|
---|
468 | * Causes the current thread to acquire the lock again and restore
|
---|
469 | * all lock levels after calling #leave().
|
---|
470 | */
|
---|
471 | void enter()
|
---|
472 | {
|
---|
473 | if (mLock)
|
---|
474 | {
|
---|
475 | AssertMsg (mLevel > 0, ("Lock level is zero\n"));
|
---|
476 | AssertMsgReturn (mLeftLevel > 0, ("enter() w/o leave()\n"), (void) 0);
|
---|
477 | for (; mLeftLevel; -- mLeftLevel)
|
---|
478 | ___CritSectEnter (mLock);
|
---|
479 | }
|
---|
480 | }
|
---|
481 |
|
---|
482 | uint32_t level() const { return mLevel; }
|
---|
483 |
|
---|
484 | bool isNull() const { return mLock == NULL; }
|
---|
485 | bool operator !() const { return isNull(); }
|
---|
486 |
|
---|
487 | bool belongsTo (VirtualBoxBase *that) const
|
---|
488 | {
|
---|
489 | return that && &that->mCritSec == mLock;
|
---|
490 | }
|
---|
491 |
|
---|
492 | private:
|
---|
493 |
|
---|
494 | AutoLock (const AutoLock &that); // disabled
|
---|
495 | AutoLock &operator = (const AutoLock &that); // disabled
|
---|
496 |
|
---|
497 | RTCRITSECT *mLock;
|
---|
498 | uint32_t mLevel;
|
---|
499 | uint32_t mLeftLevel;
|
---|
500 |
|
---|
501 | #undef ___CritSectEnter
|
---|
502 | };
|
---|
503 |
|
---|
504 | // sets the ready state of the object
|
---|
505 | void setReady(bool isReady)
|
---|
506 | {
|
---|
507 | mReady = isReady;
|
---|
508 | }
|
---|
509 | // get the ready state of the object
|
---|
510 | bool isReady()
|
---|
511 | {
|
---|
512 | return mReady;
|
---|
513 | }
|
---|
514 |
|
---|
515 | /**
|
---|
516 | * Translates the given text string according to the currently installed
|
---|
517 | * translation table and current context. The current context is determined
|
---|
518 | * by the context parameter. Additionally, a comment to the source text
|
---|
519 | * string text can be given. This comment (which is NULL by default)
|
---|
520 | * is helpful in sutuations where it is necessary to distinguish between
|
---|
521 | * two or more semantically different roles of the same source text in the
|
---|
522 | * same context.
|
---|
523 | *
|
---|
524 | * @param context the context of the the translation
|
---|
525 | * @param sourceText the string to translate
|
---|
526 | * @param comment the comment to the string (NULL means no comment)
|
---|
527 | *
|
---|
528 | * @return
|
---|
529 | * the translated version of the source string in UTF-8 encoding,
|
---|
530 | * or the source string itself if the translation is not found
|
---|
531 | * in the given context.
|
---|
532 | */
|
---|
533 | static const char *translate (const char *context, const char *sourceText,
|
---|
534 | const char *comment = 0);
|
---|
535 |
|
---|
536 | private:
|
---|
537 |
|
---|
538 | // flag determining whether an object is ready
|
---|
539 | // for usage, i.e. methods may be called
|
---|
540 | bool mReady;
|
---|
541 | // mutex semaphore to lock the object
|
---|
542 | RTCRITSECT mCritSec;
|
---|
543 | };
|
---|
544 |
|
---|
545 | ////////////////////////////////////////////////////////////////////////////////
|
---|
546 |
|
---|
547 | /**
|
---|
548 | * Simple template that manages data structure allocation/deallocation
|
---|
549 | * and supports data pointer sharing (the instance that shares the pointer is
|
---|
550 | * not responsible for memory deallocation as opposed to the instance that
|
---|
551 | * owns it).
|
---|
552 | */
|
---|
553 | template <class D>
|
---|
554 | class Shareable
|
---|
555 | {
|
---|
556 | public:
|
---|
557 |
|
---|
558 | Shareable() : mData (NULL), mIsShared (FALSE) {}
|
---|
559 | ~Shareable() { free(); }
|
---|
560 |
|
---|
561 | void allocate() { attach (new D); }
|
---|
562 |
|
---|
563 | virtual void free() {
|
---|
564 | if (mData) {
|
---|
565 | if (!mIsShared)
|
---|
566 | delete mData;
|
---|
567 | mData = NULL;
|
---|
568 | mIsShared = false;
|
---|
569 | }
|
---|
570 | }
|
---|
571 |
|
---|
572 | void attach (D *data) {
|
---|
573 | AssertMsg (data, ("new data must not be NULL"));
|
---|
574 | if (data && mData != data) {
|
---|
575 | if (mData && !mIsShared)
|
---|
576 | delete mData;
|
---|
577 | mData = data;
|
---|
578 | mIsShared = false;
|
---|
579 | }
|
---|
580 | }
|
---|
581 |
|
---|
582 | void attach (Shareable &data) {
|
---|
583 | AssertMsg (
|
---|
584 | data.mData == mData || !data.mIsShared,
|
---|
585 | ("new data must not be shared")
|
---|
586 | );
|
---|
587 | if (this != &data && !data.mIsShared) {
|
---|
588 | attach (data.mData);
|
---|
589 | data.mIsShared = true;
|
---|
590 | }
|
---|
591 | }
|
---|
592 |
|
---|
593 | void share (D *data) {
|
---|
594 | AssertMsg (data, ("new data must not be NULL"));
|
---|
595 | if (mData != data) {
|
---|
596 | if (mData && !mIsShared)
|
---|
597 | delete mData;
|
---|
598 | mData = data;
|
---|
599 | mIsShared = true;
|
---|
600 | }
|
---|
601 | }
|
---|
602 |
|
---|
603 | void share (const Shareable &data) { share (data.mData); }
|
---|
604 |
|
---|
605 | void attachCopy (const D *data) {
|
---|
606 | AssertMsg (data, ("data to copy must not be NULL"));
|
---|
607 | if (data)
|
---|
608 | attach (new D (*data));
|
---|
609 | }
|
---|
610 |
|
---|
611 | void attachCopy (const Shareable &data) {
|
---|
612 | attachCopy (data.mData);
|
---|
613 | }
|
---|
614 |
|
---|
615 | virtual D *detach() {
|
---|
616 | D *d = mData;
|
---|
617 | mData = NULL;
|
---|
618 | mIsShared = false;
|
---|
619 | return d;
|
---|
620 | }
|
---|
621 |
|
---|
622 | D *data() const {
|
---|
623 | return mData;
|
---|
624 | }
|
---|
625 |
|
---|
626 | D *operator->() const {
|
---|
627 | AssertMsg (mData, ("data must not be NULL"));
|
---|
628 | return mData;
|
---|
629 | }
|
---|
630 |
|
---|
631 | bool isNull() const { return mData == NULL; }
|
---|
632 | bool operator!() const { return isNull(); }
|
---|
633 |
|
---|
634 | bool isShared() const { return mIsShared; }
|
---|
635 |
|
---|
636 | protected:
|
---|
637 |
|
---|
638 | D *mData;
|
---|
639 | bool mIsShared;
|
---|
640 | };
|
---|
641 |
|
---|
642 | /**
|
---|
643 | * Simple template that enhances Shareable<> and supports data
|
---|
644 | * backup/rollback/commit (using the copy constructor of the managed data
|
---|
645 | * structure).
|
---|
646 | */
|
---|
647 | template <class D>
|
---|
648 | class Backupable : public Shareable <D>
|
---|
649 | {
|
---|
650 | public:
|
---|
651 |
|
---|
652 | Backupable() : Shareable <D> (), mBackupData (NULL) {}
|
---|
653 |
|
---|
654 | void free()
|
---|
655 | {
|
---|
656 | AssertMsg (this->mData || !mBackupData, ("backup must be NULL if data is NULL"));
|
---|
657 | rollback();
|
---|
658 | Shareable <D>::free();
|
---|
659 | }
|
---|
660 |
|
---|
661 | D *detach()
|
---|
662 | {
|
---|
663 | AssertMsg (this->mData || !mBackupData, ("backup must be NULL if data is NULL"));
|
---|
664 | rollback();
|
---|
665 | return Shareable <D>::detach();
|
---|
666 | }
|
---|
667 |
|
---|
668 | void share (const Backupable &data)
|
---|
669 | {
|
---|
670 | AssertMsg (!data.isBackedUp(), ("data to share must not be backed up"));
|
---|
671 | if (!data.isBackedUp())
|
---|
672 | Shareable <D>::share (data.mData);
|
---|
673 | }
|
---|
674 |
|
---|
675 | /**
|
---|
676 | * Stores the current data pointer in the backup area, allocates new data
|
---|
677 | * using the copy constructor on current data and makes new data active.
|
---|
678 | */
|
---|
679 | void backup()
|
---|
680 | {
|
---|
681 | AssertMsg (this->mData, ("data must not be NULL"));
|
---|
682 | if (this->mData && !mBackupData)
|
---|
683 | {
|
---|
684 | mBackupData = this->mData;
|
---|
685 | this->mData = new D (*mBackupData);
|
---|
686 | }
|
---|
687 | }
|
---|
688 |
|
---|
689 | /**
|
---|
690 | * Deletes new data created by #backup() and restores previous data pointer
|
---|
691 | * stored in the backup area, making it active again.
|
---|
692 | */
|
---|
693 | void rollback()
|
---|
694 | {
|
---|
695 | if (this->mData && mBackupData)
|
---|
696 | {
|
---|
697 | delete this->mData;
|
---|
698 | this->mData = mBackupData;
|
---|
699 | mBackupData = NULL;
|
---|
700 | }
|
---|
701 | }
|
---|
702 |
|
---|
703 | /**
|
---|
704 | * Commits current changes by deleting backed up data and clearing up the
|
---|
705 | * backup area. The new data pointer created by #backup() remains active
|
---|
706 | * and becomes the only managed pointer.
|
---|
707 | *
|
---|
708 | * This method is much faster than #commitCopy() (just a single pointer
|
---|
709 | * assignment operation), but makes the previous data pointer invalid
|
---|
710 | * (because it is freed). For this reason, this method must not be
|
---|
711 | * used if it's possible that data managed by this instance is shared with
|
---|
712 | * some other Shareable instance. See #commitCopy().
|
---|
713 | */
|
---|
714 | void commit()
|
---|
715 | {
|
---|
716 | if (this->mData && mBackupData)
|
---|
717 | {
|
---|
718 | if (!this->mIsShared)
|
---|
719 | delete mBackupData;
|
---|
720 | mBackupData = NULL;
|
---|
721 | this->mIsShared = false;
|
---|
722 | }
|
---|
723 | }
|
---|
724 |
|
---|
725 | /**
|
---|
726 | * Commits current changes by assigning new data to the previous data
|
---|
727 | * pointer stored in the backup area using the assignment operator.
|
---|
728 | * New data is deleted, the backup area is cleared and the previous data
|
---|
729 | * pointer becomes active and the only managed pointer.
|
---|
730 | *
|
---|
731 | * This method is slower than #commit(), but it keeps the previous data
|
---|
732 | * pointer valid (i.e. new data is copied to the same memory location).
|
---|
733 | * For that reason it's safe to use this method on instances that share
|
---|
734 | * managed data with other Shareable instances.
|
---|
735 | */
|
---|
736 | void commitCopy()
|
---|
737 | {
|
---|
738 | if (this->mData && mBackupData)
|
---|
739 | {
|
---|
740 | *mBackupData = *(this->mData);
|
---|
741 | delete this->mData;
|
---|
742 | this->mData = mBackupData;
|
---|
743 | mBackupData = NULL;
|
---|
744 | }
|
---|
745 | }
|
---|
746 |
|
---|
747 | void assignCopy (const D *data)
|
---|
748 | {
|
---|
749 | AssertMsg (this->mData, ("data must not be NULL"));
|
---|
750 | AssertMsg (data, ("data to copy must not be NULL"));
|
---|
751 | if (this->mData && data)
|
---|
752 | {
|
---|
753 | if (!mBackupData)
|
---|
754 | {
|
---|
755 | mBackupData = this->mData;
|
---|
756 | this->mData = new D (*data);
|
---|
757 | }
|
---|
758 | else
|
---|
759 | *this->mData = *data;
|
---|
760 | }
|
---|
761 | }
|
---|
762 |
|
---|
763 | void assignCopy (const Backupable &data)
|
---|
764 | {
|
---|
765 | assignCopy (data.mData);
|
---|
766 | }
|
---|
767 |
|
---|
768 | bool isBackedUp() const
|
---|
769 | {
|
---|
770 | return mBackupData != NULL;
|
---|
771 | }
|
---|
772 |
|
---|
773 | bool hasActualChanges() const
|
---|
774 | {
|
---|
775 | AssertMsg (this->mData, ("data must not be NULL"));
|
---|
776 | return this->mData != NULL && mBackupData != NULL &&
|
---|
777 | !(*this->mData == *mBackupData);
|
---|
778 | }
|
---|
779 |
|
---|
780 | D *backedUpData() const
|
---|
781 | {
|
---|
782 | return mBackupData;
|
---|
783 | }
|
---|
784 |
|
---|
785 | protected:
|
---|
786 |
|
---|
787 | D *mBackupData;
|
---|
788 | };
|
---|
789 |
|
---|
790 | #endif // ____H_VIRTUALBOXBASEIMPL
|
---|