merge the formfield patch from ooo-build
[ooovba.git] / framework / inc / threadhelp / irwlock.h
blob89fc74dbfdcdc724f6466279056d7385922c4d0d
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: irwlock.h,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __FRAMEWORK_THREADHELP_IRWLOCK_H_
32 #define __FRAMEWORK_THREADHELP_IRWLOCK_H_
34 //_________________________________________________________________________________________________________________
35 // includes
36 //_________________________________________________________________________________________________________________
38 //_________________________________________________________________________________________________________________
39 // namespace
40 //_________________________________________________________________________________________________________________
42 namespace framework{
44 //_________________________________________________________________________________________________________________
45 // declarations
46 //_________________________________________________________________________________________________________________
48 /*-************************************************************************************************************//**
49 @descr A guard (specialy a write guard) support different internal working states.
50 His lock can set for reading or writing/reading! Or he was unlocked by user ...
51 *//*-*************************************************************************************************************/
52 enum ELockMode
54 E_NOLOCK ,
55 E_READLOCK ,
56 E_WRITELOCK
59 /*-************************************************************************************************************//**
60 @descr We implement two guards for using an rw-lock. But if you wish to implement
61 different rw-locks to you will have problems by using with same guard implementation!
62 Thats why we define this "pure virtual base class" ...
63 All rw-locks must support this base interface for working and all guard must use this one too!
64 *//*-*************************************************************************************************************/
65 class IRWLock
67 //-------------------------------------------------------------------------------------------------------------
68 // public methods
69 //-------------------------------------------------------------------------------------------------------------
70 public:
72 /*-****************************************************************************************************//**
73 @descr These functions must be supported by a derived class!
74 acquireReadAccess() -try to register thread as reader
75 releaseReadAccess() -unregister thread as reader
76 acquireWriteAccess() -try to register thread as writer
77 releaseWriteAccess() -unregister thread as writer
78 downgradeWriteAccess() -make writer to reader
79 *//*-*****************************************************************************************************/
80 virtual void acquireReadAccess () =0;
81 virtual void releaseReadAccess () =0;
82 virtual void acquireWriteAccess () =0;
83 virtual void releaseWriteAccess () =0;
84 virtual void downgradeWriteAccess () =0;
86 }; // class IRWLock
88 } // namespace framework
90 #endif // #ifndef __FRAMEWORK_THREADHELP_IRWLOCK_H_