1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_UNOTOOLS_READWRITEMUTEXGUARD_HXX
21 #define INCLUDED_UNOTOOLS_READWRITEMUTEXGUARD_HXX
23 #include <osl/mutex.hxx>
30 friend class ReadWriteGuard
;
32 sal_uInt32 nReadCount
;
33 sal_uInt32 nBlockCriticalCount
;
35 ::osl::Mutex
* pWriteMutex
;
40 , nBlockCriticalCount(0)
41 , pMutex( new ::osl::Mutex
)
42 , pWriteMutex( new ::osl::Mutex
)
52 namespace ReadWriteGuardMode
{
53 const sal_Int32 nWrite
= 0x01;
54 const sal_Int32 nCriticalChange
= 0x02 | nWrite
;
55 const sal_Int32 nBlockCritical
= 0x04; // only a block, not a read, exclusive flag!
58 /** Enable multiple threads to read simultaneously, but a write blocks all
59 other reads and writes, and a read blocks any write.
60 Used in I18N wrappers to be able to maintain a single instance of a wrapper
61 for the standard Office locale.
62 NEVER construct a writing guard if there is already a reading guard in the
63 same context, the following will dead lock EVEN IN THE SAME THREAD!
66 ReadWriteGuard aGuard1( aMutex );
71 // waits forever for aGuard1
72 ReadWriteGuard aGuard2( aMutex, ReadWriteGuardMode::nWrite );
77 ReadWriteMutex
& rMutex
;
81 ReadWriteMutex
& rMutex
,
82 sal_Int32 nRequestMode
= 0 // read only
86 /** Be careful with this, it does wait for ANY read to complete.
87 The following will dead lock EVEN IN THE SAME THREAD!
90 ReadWriteGuard aGuard1( aMutex );
95 ReadWriteGuard aGuard2( aMutex );
96 aGuard2.changeReadToWrite(); // waits forever for aGuard1
99 void changeReadToWrite();
104 #endif // INCLUDED_UNOTOOLS_READWRITEMUTEXGUARD_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */