bump product version to 4.2.0.1
[LibreOffice.git] / include / unotools / readwritemutexguard.hxx
blobdd182d1e9a6752ca305295c85a634ce6aa461cbd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
25 namespace utl {
27 class ReadWriteGuard;
28 class ReadWriteMutex
30 friend class ReadWriteGuard;
32 sal_uInt32 nReadCount;
33 sal_uInt32 nBlockCriticalCount;
34 ::osl::Mutex* pMutex;
35 ::osl::Mutex* pWriteMutex;
37 public:
38 ReadWriteMutex()
39 : nReadCount(0)
40 , nBlockCriticalCount(0)
41 , pMutex( new ::osl::Mutex )
42 , pWriteMutex( new ::osl::Mutex )
44 ~ReadWriteMutex()
46 delete pMutex;
47 delete pWriteMutex;
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!
64 void foo()
66 ReadWriteGuard aGuard1( aMutex );
67 bar();
69 void bar()
71 // waits forever for aGuard1
72 ReadWriteGuard aGuard2( aMutex, ReadWriteGuardMode::nWrite );
75 class ReadWriteGuard
77 ReadWriteMutex& rMutex;
78 sal_Int32 nMode;
79 public:
80 ReadWriteGuard(
81 ReadWriteMutex& rMutex,
82 sal_Int32 nRequestMode = 0 // read only
84 ~ReadWriteGuard();
86 /** Be careful with this, it does wait for ANY read to complete.
87 The following will dead lock EVEN IN THE SAME THREAD!
88 void foo()
90 ReadWriteGuard aGuard1( aMutex );
91 bar();
93 void bar()
95 ReadWriteGuard aGuard2( aMutex );
96 aGuard2.changeReadToWrite(); // waits forever for aGuard1
99 void changeReadToWrite();
102 } // namespace utl
104 #endif // INCLUDED_UNOTOOLS_READWRITEMUTEXGUARD_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */