VirtualBox

source: vbox/trunk/src/VBox/Main/glue/AutoLock.cpp@ 63470

Last change on this file since 63470 was 63147, checked in by vboxsync, 8 years ago

Main: warnings

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 21.7 KB
Line 
1/* $Id: AutoLock.cpp 63147 2016-08-08 11:12:33Z vboxsync $ */
2/** @file
3 * Automatic locks, implementation.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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
18
19/*********************************************************************************************************************************
20* Defined Constants And Macros *
21*********************************************************************************************************************************/
22#define GLUE_USE_CRITSECTRW
23
24
25/*********************************************************************************************************************************
26* Header Files *
27*********************************************************************************************************************************/
28#include <iprt/cdefs.h>
29#include <iprt/critsect.h>
30#include <iprt/thread.h>
31#include <iprt/semaphore.h>
32
33#include <iprt/err.h>
34#include <iprt/assert.h>
35
36#if defined(RT_LOCK_STRICT)
37# include <iprt/asm.h> // for ASMReturnAddress
38#endif
39
40#include <iprt/string.h>
41#include <iprt/path.h>
42#include <iprt/stream.h>
43
44#include "VBox/com/AutoLock.h"
45#include <VBox/com/string.h>
46
47#include <vector>
48#include <list>
49#include <map>
50
51
52namespace util
53{
54
55////////////////////////////////////////////////////////////////////////////////
56//
57// RuntimeLockClass
58//
59////////////////////////////////////////////////////////////////////////////////
60
61#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
62typedef std::map<VBoxLockingClass, RTLOCKVALCLASS> LockValidationClassesMap;
63LockValidationClassesMap g_mapLockValidationClasses;
64#endif
65
66/**
67 * Called from initterm.cpp on process initialization (on the main thread)
68 * to give us a chance to initialize lock validation runtime data.
69 */
70void InitAutoLockSystem()
71{
72#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
73 struct
74 {
75 VBoxLockingClass cls;
76 const char *pcszDescription;
77 } aClasses[] =
78 {
79 { LOCKCLASS_VIRTUALBOXOBJECT, "2-VIRTUALBOXOBJECT" },
80 { LOCKCLASS_HOSTOBJECT, "3-HOSTOBJECT" },
81 { LOCKCLASS_LISTOFMACHINES, "4-LISTOFMACHINES" },
82 { LOCKCLASS_MACHINEOBJECT, "5-MACHINEOBJECT" },
83 { LOCKCLASS_SNAPSHOTOBJECT, "6-SNAPSHOTOBJECT" },
84 { LOCKCLASS_MEDIUMQUERY, "7-MEDIUMQUERY" },
85 { LOCKCLASS_LISTOFMEDIA, "8-LISTOFMEDIA" },
86 { LOCKCLASS_LISTOFOTHEROBJECTS, "9-LISTOFOTHEROBJECTS" },
87 { LOCKCLASS_OTHEROBJECT, "10-OTHEROBJECT" },
88 { LOCKCLASS_PROGRESSLIST, "11-PROGRESSLIST" },
89 { LOCKCLASS_OBJECTSTATE, "12-OBJECTSTATE" }
90 };
91
92 RTLOCKVALCLASS hClass;
93 int vrc;
94 for (unsigned i = 0; i < RT_ELEMENTS(aClasses); ++i)
95 {
96 vrc = RTLockValidatorClassCreate(&hClass,
97 true, /*fAutodidact*/
98 RT_SRC_POS,
99 aClasses[i].pcszDescription);
100 AssertRC(vrc);
101
102 // teach the new class that the classes created previously can be held
103 // while the new class is being acquired
104 for (LockValidationClassesMap::iterator it = g_mapLockValidationClasses.begin();
105 it != g_mapLockValidationClasses.end();
106 ++it)
107 {
108 RTLOCKVALCLASS &canBeHeld = it->second;
109 vrc = RTLockValidatorClassAddPriorClass(hClass,
110 canBeHeld);
111 AssertRC(vrc);
112 }
113
114 // and store the new class
115 g_mapLockValidationClasses[aClasses[i].cls] = hClass;
116 }
117
118/* WriteLockHandle critsect1(LOCKCLASS_VIRTUALBOXOBJECT);
119 WriteLockHandle critsect2(LOCKCLASS_VIRTUALBOXLIST);
120
121 AutoWriteLock lock1(critsect1 COMMA_LOCKVAL_SRC_POS);
122 AutoWriteLock lock2(critsect2 COMMA_LOCKVAL_SRC_POS);*/
123#endif
124}
125
126bool AutoLockHoldsLocksInClass(VBoxLockingClass lockClass)
127{
128#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
129 return RTLockValidatorHoldsLocksInClass(NIL_RTTHREAD, g_mapLockValidationClasses[lockClass]);
130#else
131 RT_NOREF(lockClass);
132 return false;
133#endif
134}
135
136////////////////////////////////////////////////////////////////////////////////
137//
138// RWLockHandle
139//
140////////////////////////////////////////////////////////////////////////////////
141
142struct RWLockHandle::Data
143{
144 Data()
145 { }
146
147#ifdef GLUE_USE_CRITSECTRW
148 mutable RTCRITSECTRW CritSect;
149#else
150 RTSEMRW sem;
151#endif
152 VBoxLockingClass lockClass;
153
154#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
155 com::Utf8Str strDescription;
156#endif
157};
158
159RWLockHandle::RWLockHandle(VBoxLockingClass lockClass)
160{
161 m = new Data();
162
163 m->lockClass = lockClass;
164#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
165 m->strDescription = com::Utf8StrFmt("r/w %RCv", this);
166#endif
167
168#ifdef GLUE_USE_CRITSECTRW
169# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
170 int vrc = RTCritSectRwInitEx(&m->CritSect, 0 /*fFlags*/, g_mapLockValidationClasses[lockClass], RTLOCKVAL_SUB_CLASS_ANY, NULL);
171# else
172 int vrc = RTCritSectRwInitEx(&m->CritSect, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, NULL);
173# endif
174#else
175# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
176 int vrc = RTSemRWCreateEx(&m->sem, 0 /*fFlags*/, g_mapLockValidationClasses[lockClass], RTLOCKVAL_SUB_CLASS_ANY, NULL);
177# else
178 int vrc = RTSemRWCreateEx(&m->sem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, NULL);
179# endif
180#endif
181 AssertRC(vrc);
182}
183
184/*virtual*/ RWLockHandle::~RWLockHandle()
185{
186#ifdef GLUE_USE_CRITSECTRW
187 RTCritSectRwDelete(&m->CritSect);
188#else
189 RTSemRWDestroy(m->sem);
190#endif
191 delete m;
192}
193
194/*virtual*/ bool RWLockHandle::isWriteLockOnCurrentThread() const
195{
196#ifdef GLUE_USE_CRITSECTRW
197 return RTCritSectRwIsWriteOwner(&m->CritSect);
198#else
199 return RTSemRWIsWriteOwner(m->sem);
200#endif
201}
202
203/*virtual*/ void RWLockHandle::lockWrite(LOCKVAL_SRC_POS_DECL)
204{
205#ifdef GLUE_USE_CRITSECTRW
206# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
207 int vrc = RTCritSectRwEnterExclDebug(&m->CritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS_ARGS);
208# else
209 int vrc = RTCritSectRwEnterExcl(&m->CritSect);
210# endif
211#else
212# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
213 int vrc = RTSemRWRequestWriteDebug(m->sem, RT_INDEFINITE_WAIT, (uintptr_t)ASMReturnAddress(), RT_SRC_POS_ARGS);
214# else
215 int vrc = RTSemRWRequestWrite(m->sem, RT_INDEFINITE_WAIT);
216# endif
217#endif
218 AssertRC(vrc);
219}
220
221/*virtual*/ void RWLockHandle::unlockWrite()
222{
223#ifdef GLUE_USE_CRITSECTRW
224 int vrc = RTCritSectRwLeaveExcl(&m->CritSect);
225#else
226 int vrc = RTSemRWReleaseWrite(m->sem);
227#endif
228 AssertRC(vrc);
229
230}
231
232/*virtual*/ void RWLockHandle::lockRead(LOCKVAL_SRC_POS_DECL)
233{
234#ifdef GLUE_USE_CRITSECTRW
235# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
236 int vrc = RTCritSectRwEnterSharedDebug(&m->CritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS_ARGS);
237# else
238 int vrc = RTCritSectRwEnterShared(&m->CritSect);
239# endif
240#else
241# ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
242 int vrc = RTSemRWRequestReadDebug(m->sem, RT_INDEFINITE_WAIT, (uintptr_t)ASMReturnAddress(), RT_SRC_POS_ARGS);
243# else
244 int vrc = RTSemRWRequestRead(m->sem, RT_INDEFINITE_WAIT);
245# endif
246#endif
247 AssertRC(vrc);
248}
249
250/*virtual*/ void RWLockHandle::unlockRead()
251{
252#ifdef GLUE_USE_CRITSECTRW
253 int vrc = RTCritSectRwLeaveShared(&m->CritSect);
254#else
255 int vrc = RTSemRWReleaseRead(m->sem);
256#endif
257 AssertRC(vrc);
258}
259
260/*virtual*/ uint32_t RWLockHandle::writeLockLevel() const
261{
262 /* Note! This does not include read recursions done by the writer! */
263#ifdef GLUE_USE_CRITSECTRW
264 return RTCritSectRwGetWriteRecursion(&m->CritSect);
265#else
266 return RTSemRWGetWriteRecursion(m->sem);
267#endif
268}
269
270#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
271/*virtual*/ const char* RWLockHandle::describe() const
272{
273 return m->strDescription.c_str();
274}
275#endif
276
277////////////////////////////////////////////////////////////////////////////////
278//
279// WriteLockHandle
280//
281////////////////////////////////////////////////////////////////////////////////
282
283struct WriteLockHandle::Data
284{
285 Data()
286 { }
287
288 mutable RTCRITSECT sem;
289 VBoxLockingClass lockClass;
290
291#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
292 com::Utf8Str strDescription;
293#endif
294};
295
296WriteLockHandle::WriteLockHandle(VBoxLockingClass lockClass)
297{
298 m = new Data;
299
300 m->lockClass = lockClass;
301
302#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
303 m->strDescription = com::Utf8StrFmt("crit %RCv", this);
304 int vrc = RTCritSectInitEx(&m->sem, 0/*fFlags*/, g_mapLockValidationClasses[lockClass], RTLOCKVAL_SUB_CLASS_ANY, NULL);
305#else
306 int vrc = RTCritSectInitEx(&m->sem, 0/*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, NULL);
307#endif
308 AssertRC(vrc);
309}
310
311WriteLockHandle::~WriteLockHandle()
312{
313 RTCritSectDelete(&m->sem);
314 delete m;
315}
316
317/*virtual*/ bool WriteLockHandle::isWriteLockOnCurrentThread() const
318{
319 return RTCritSectIsOwner(&m->sem);
320}
321
322/*virtual*/ void WriteLockHandle::lockWrite(LOCKVAL_SRC_POS_DECL)
323{
324#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
325 RTCritSectEnterDebug(&m->sem, (uintptr_t)ASMReturnAddress(), RT_SRC_POS_ARGS);
326#else
327 RTCritSectEnter(&m->sem);
328#endif
329}
330
331/*virtual*/ void WriteLockHandle::unlockWrite()
332{
333 RTCritSectLeave(&m->sem);
334}
335
336/*virtual*/ void WriteLockHandle::lockRead(LOCKVAL_SRC_POS_DECL)
337{
338 lockWrite(LOCKVAL_SRC_POS_ARGS);
339}
340
341/*virtual*/ void WriteLockHandle::unlockRead()
342{
343 unlockWrite();
344}
345
346/*virtual*/ uint32_t WriteLockHandle::writeLockLevel() const
347{
348 return RTCritSectGetRecursion(&m->sem);
349}
350
351#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
352/*virtual*/ const char* WriteLockHandle::describe() const
353{
354 return m->strDescription.c_str();
355}
356#endif
357
358////////////////////////////////////////////////////////////////////////////////
359//
360// AutoLockBase
361//
362////////////////////////////////////////////////////////////////////////////////
363
364typedef std::vector<LockHandle*> HandlesVector;
365
366struct AutoLockBase::Data
367{
368 Data(size_t cHandles
369#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
370 , const char *pcszFile_,
371 unsigned uLine_,
372 const char *pcszFunction_
373#endif
374 )
375 : fIsLocked(false),
376 aHandles(cHandles) // size of array
377#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
378 , pcszFile(pcszFile_),
379 uLine(uLine_),
380 pcszFunction(pcszFunction_)
381#endif
382 {
383 for (uint32_t i = 0; i < cHandles; ++i)
384 aHandles[i] = NULL;
385 }
386
387 bool fIsLocked; // if true, then all items in aHandles are locked by this AutoLock and
388 // need to be unlocked in the destructor
389 HandlesVector aHandles; // array (vector) of LockHandle instances; in the case of AutoWriteLock
390 // and AutoReadLock, there will only be one item on the list; with the
391 // AutoMulti* derivatives, there will be multiple
392
393#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
394 // information about where the lock occurred (passed down from the AutoLock classes)
395 const char *pcszFile;
396 unsigned uLine;
397 const char *pcszFunction;
398#endif
399};
400
401AutoLockBase::AutoLockBase(uint32_t cHandles
402 COMMA_LOCKVAL_SRC_POS_DECL)
403{
404 m = new Data(cHandles COMMA_LOCKVAL_SRC_POS_ARGS);
405}
406
407AutoLockBase::AutoLockBase(uint32_t cHandles,
408 LockHandle *pHandle
409 COMMA_LOCKVAL_SRC_POS_DECL)
410{
411 Assert(cHandles == 1); NOREF(cHandles);
412 m = new Data(1 COMMA_LOCKVAL_SRC_POS_ARGS);
413 m->aHandles[0] = pHandle;
414}
415
416AutoLockBase::~AutoLockBase()
417{
418 delete m;
419}
420
421/**
422 * Requests ownership of all contained lock handles by calling
423 * the pure virtual callLockImpl() function on each of them,
424 * which must be implemented by the descendant class; in the
425 * implementation, AutoWriteLock will request a write lock
426 * whereas AutoReadLock will request a read lock.
427 *
428 * Does *not* modify the lock counts in the member variables.
429 */
430void AutoLockBase::callLockOnAllHandles()
431{
432 for (HandlesVector::iterator it = m->aHandles.begin();
433 it != m->aHandles.end();
434 ++it)
435 {
436 LockHandle *pHandle = *it;
437 if (pHandle)
438 // call virtual function implemented in AutoWriteLock or AutoReadLock
439 this->callLockImpl(*pHandle);
440 }
441}
442
443/**
444 * Releases ownership of all contained lock handles by calling
445 * the pure virtual callUnlockImpl() function on each of them,
446 * which must be implemented by the descendant class; in the
447 * implementation, AutoWriteLock will release a write lock
448 * whereas AutoReadLock will release a read lock.
449 *
450 * Does *not* modify the lock counts in the member variables.
451 */
452void AutoLockBase::callUnlockOnAllHandles()
453{
454 // unlock in reverse order!
455 for (HandlesVector::reverse_iterator it = m->aHandles.rbegin();
456 it != m->aHandles.rend();
457 ++it)
458 {
459 LockHandle *pHandle = *it;
460 if (pHandle)
461 // call virtual function implemented in AutoWriteLock or AutoReadLock
462 this->callUnlockImpl(*pHandle);
463 }
464}
465
466/**
467 * Destructor implementation that can also be called explicitly, if required.
468 * Restores the exact state before the AutoLock was created; that is, unlocks
469 * all contained semaphores.
470 */
471void AutoLockBase::cleanup()
472{
473 if (m->fIsLocked)
474 callUnlockOnAllHandles();
475}
476
477/**
478 * Requests ownership of all contained semaphores. Public method that can
479 * only be called once and that also gets called by the AutoLock constructors.
480 */
481void AutoLockBase::acquire()
482{
483 AssertMsgReturnVoid(!m->fIsLocked, ("m->fIsLocked is true, attempting to lock twice!"));
484 callLockOnAllHandles();
485 m->fIsLocked = true;
486}
487
488/**
489 * Releases ownership of all contained semaphores. Public method.
490 */
491void AutoLockBase::release()
492{
493 AssertMsgReturnVoid(m->fIsLocked, ("m->fIsLocked is false, cannot release!"));
494 callUnlockOnAllHandles();
495 m->fIsLocked = false;
496}
497
498////////////////////////////////////////////////////////////////////////////////
499//
500// AutoReadLock
501//
502////////////////////////////////////////////////////////////////////////////////
503
504/**
505 * Release all read locks acquired by this instance through the #lock()
506 * call and destroys the instance.
507 *
508 * Note that if there there are nested #lock() calls without the
509 * corresponding number of #unlock() calls when the destructor is called, it
510 * will assert. This is because having an unbalanced number of nested locks
511 * is a program logic error which must be fixed.
512 */
513/*virtual*/ AutoReadLock::~AutoReadLock()
514{
515 LockHandle *pHandle = m->aHandles[0];
516
517 if (pHandle)
518 {
519 if (m->fIsLocked)
520 callUnlockImpl(*pHandle);
521 }
522}
523
524/**
525 * Implementation of the pure virtual declared in AutoLockBase.
526 * This gets called by AutoLockBase.acquire() to actually request
527 * the semaphore; in the AutoReadLock implementation, we request
528 * the semaphore in read mode.
529 */
530/*virtual*/ void AutoReadLock::callLockImpl(LockHandle &l)
531{
532#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
533 l.lockRead(m->pcszFile, m->uLine, m->pcszFunction);
534#else
535 l.lockRead();
536#endif
537}
538
539/**
540 * Implementation of the pure virtual declared in AutoLockBase.
541 * This gets called by AutoLockBase.release() to actually release
542 * the semaphore; in the AutoReadLock implementation, we release
543 * the semaphore in read mode.
544 */
545/*virtual*/ void AutoReadLock::callUnlockImpl(LockHandle &l)
546{
547 l.unlockRead();
548}
549
550////////////////////////////////////////////////////////////////////////////////
551//
552// AutoWriteLockBase
553//
554////////////////////////////////////////////////////////////////////////////////
555
556/**
557 * Implementation of the pure virtual declared in AutoLockBase.
558 * This gets called by AutoLockBase.acquire() to actually request
559 * the semaphore; in the AutoWriteLock implementation, we request
560 * the semaphore in write mode.
561 */
562/*virtual*/ void AutoWriteLockBase::callLockImpl(LockHandle &l)
563{
564#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
565 l.lockWrite(m->pcszFile, m->uLine, m->pcszFunction);
566#else
567 l.lockWrite();
568#endif
569}
570
571/**
572 * Implementation of the pure virtual declared in AutoLockBase.
573 * This gets called by AutoLockBase.release() to actually release
574 * the semaphore; in the AutoWriteLock implementation, we release
575 * the semaphore in write mode.
576 */
577/*virtual*/ void AutoWriteLockBase::callUnlockImpl(LockHandle &l)
578{
579 l.unlockWrite();
580}
581
582////////////////////////////////////////////////////////////////////////////////
583//
584// AutoWriteLock
585//
586////////////////////////////////////////////////////////////////////////////////
587
588AutoWriteLock::AutoWriteLock(uint32_t cHandles,
589 LockHandle** pHandles
590 COMMA_LOCKVAL_SRC_POS_DECL)
591 : AutoWriteLockBase(cHandles
592 COMMA_LOCKVAL_SRC_POS_ARGS)
593{
594 Assert(cHandles);
595 Assert(pHandles);
596
597 for (uint32_t i = 0; i < cHandles; ++i)
598 m->aHandles[i] = pHandles[i];
599
600 acquire();
601}
602
603
604
605/**
606 * Attaches another handle to this auto lock instance.
607 *
608 * The previous object's lock is completely released before the new one is
609 * acquired. The lock level of the new handle will be the same. This
610 * also means that if the lock was not acquired at all before #attach(), it
611 * will not be acquired on the new handle too.
612 *
613 * @param aHandle New handle to attach.
614 */
615void AutoWriteLock::attach(LockHandle *aHandle)
616{
617 LockHandle *pHandle = m->aHandles[0];
618
619 /* detect simple self-reattachment */
620 if (pHandle != aHandle)
621 {
622 bool fWasLocked = m->fIsLocked;
623
624 cleanup();
625
626 m->aHandles[0] = aHandle;
627 m->fIsLocked = fWasLocked;
628
629 if (aHandle)
630 if (fWasLocked)
631 callLockImpl(*aHandle);
632 }
633}
634
635/**
636 * Returns @c true if the current thread holds a write lock on the managed
637 * read/write semaphore. Returns @c false if the managed semaphore is @c
638 * NULL.
639 *
640 * @note Intended for debugging only.
641 */
642bool AutoWriteLock::isWriteLockOnCurrentThread() const
643{
644 return m->aHandles[0] ? m->aHandles[0]->isWriteLockOnCurrentThread() : false;
645}
646
647 /**
648 * Returns the current write lock level of the managed semaphore. The lock
649 * level determines the number of nested #lock() calls on the given
650 * semaphore handle. Returns @c 0 if the managed semaphore is @c
651 * NULL.
652 *
653 * Note that this call is valid only when the current thread owns a write
654 * lock on the given semaphore handle and will assert otherwise.
655 *
656 * @note Intended for debugging only.
657 */
658uint32_t AutoWriteLock::writeLockLevel() const
659{
660 return m->aHandles[0] ? m->aHandles[0]->writeLockLevel() : 0;
661}
662
663////////////////////////////////////////////////////////////////////////////////
664//
665// AutoMultiWriteLock*
666//
667////////////////////////////////////////////////////////////////////////////////
668
669AutoMultiWriteLock2::AutoMultiWriteLock2(Lockable *pl1,
670 Lockable *pl2
671 COMMA_LOCKVAL_SRC_POS_DECL)
672 : AutoWriteLockBase(2
673 COMMA_LOCKVAL_SRC_POS_ARGS)
674{
675 if (pl1)
676 m->aHandles[0] = pl1->lockHandle();
677 if (pl2)
678 m->aHandles[1] = pl2->lockHandle();
679 acquire();
680}
681
682AutoMultiWriteLock2::AutoMultiWriteLock2(LockHandle *pl1,
683 LockHandle *pl2
684 COMMA_LOCKVAL_SRC_POS_DECL)
685 : AutoWriteLockBase(2
686 COMMA_LOCKVAL_SRC_POS_ARGS)
687{
688 m->aHandles[0] = pl1;
689 m->aHandles[1] = pl2;
690 acquire();
691}
692
693AutoMultiWriteLock3::AutoMultiWriteLock3(Lockable *pl1,
694 Lockable *pl2,
695 Lockable *pl3
696 COMMA_LOCKVAL_SRC_POS_DECL)
697 : AutoWriteLockBase(3
698 COMMA_LOCKVAL_SRC_POS_ARGS)
699{
700 if (pl1)
701 m->aHandles[0] = pl1->lockHandle();
702 if (pl2)
703 m->aHandles[1] = pl2->lockHandle();
704 if (pl3)
705 m->aHandles[2] = pl3->lockHandle();
706 acquire();
707}
708
709AutoMultiWriteLock3::AutoMultiWriteLock3(LockHandle *pl1,
710 LockHandle *pl2,
711 LockHandle *pl3
712 COMMA_LOCKVAL_SRC_POS_DECL)
713 : AutoWriteLockBase(3
714 COMMA_LOCKVAL_SRC_POS_ARGS)
715{
716 m->aHandles[0] = pl1;
717 m->aHandles[1] = pl2;
718 m->aHandles[2] = pl3;
719 acquire();
720}
721
722AutoMultiWriteLock4::AutoMultiWriteLock4(Lockable *pl1,
723 Lockable *pl2,
724 Lockable *pl3,
725 Lockable *pl4
726 COMMA_LOCKVAL_SRC_POS_DECL)
727 : AutoWriteLockBase(4
728 COMMA_LOCKVAL_SRC_POS_ARGS)
729{
730 if (pl1)
731 m->aHandles[0] = pl1->lockHandle();
732 if (pl2)
733 m->aHandles[1] = pl2->lockHandle();
734 if (pl3)
735 m->aHandles[2] = pl3->lockHandle();
736 if (pl4)
737 m->aHandles[3] = pl4->lockHandle();
738 acquire();
739}
740
741AutoMultiWriteLock4::AutoMultiWriteLock4(LockHandle *pl1,
742 LockHandle *pl2,
743 LockHandle *pl3,
744 LockHandle *pl4
745 COMMA_LOCKVAL_SRC_POS_DECL)
746 : AutoWriteLockBase(4
747 COMMA_LOCKVAL_SRC_POS_ARGS)
748{
749 m->aHandles[0] = pl1;
750 m->aHandles[1] = pl2;
751 m->aHandles[2] = pl3;
752 m->aHandles[3] = pl4;
753 acquire();
754}
755
756} /* namespace util */
757/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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