1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: mutex.hxx,v $
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_MACROS_DEBUG_MUTEX_HXX_
32 #define __FRAMEWORK_MACROS_DEBUG_MUTEX_HXX_
34 //*****************************************************************************************************************
35 // special macros for mutex handling
36 //*****************************************************************************************************************
38 #ifdef ENABLE_MUTEXDEBUG
40 //_____________________________________________________________________________________________________________
42 //_____________________________________________________________________________________________________________
44 #ifndef _RTL_STRBUF_HXX_
45 #include <rtl/strbuf.hxx>
48 /*_____________________________________________________________________________________________________________
51 For follow macros we need a special log file. If user forget to specify anyone, we must do it for him!
52 _____________________________________________________________________________________________________________*/
55 #define LOGFILE_MUTEX "mutex.log"
58 /*_____________________________________________________________________________________________________________
59 LOG_LOCKTYPE( _EFALLBACK, _ECURRENT )
61 Write informations about current set lock type for whole framework project to special file.
62 _____________________________________________________________________________________________________________*/
64 #define LOG_LOCKTYPE( _EFALLBACK, _ECURRENT ) \
65 /* new scope to prevent us against multiple definitions of variables ... */ \
67 ::rtl::OStringBuffer _sBuffer( 256 ); \
68 _sBuffer.append( "Set framework lock type to fallback: \"" ); \
69 switch( _EFALLBACK ) \
71 case E_NOTHING : _sBuffer.append( "E_NOTHING" ); \
73 case E_OWNMUTEX : _sBuffer.append( "E_OWNMUTEX" ); \
75 case E_SOLARMUTEX : _sBuffer.append( "E_SOLARMUTEX" ); \
77 case E_FAIRRWLOCK : _sBuffer.append( "E_FAIRRWLOCK" ); \
80 _sBuffer.append( "\"\n" ); \
81 if( _EFALLBACK != _ECURRENT ) \
83 _sBuffer.append( "... environment overwrite framework lock type with: \"" ); \
86 case E_NOTHING : _sBuffer.append( "E_NOTHING" ); \
88 case E_OWNMUTEX : _sBuffer.append( "E_OWNMUTEX" ); \
90 case E_SOLARMUTEX : _sBuffer.append( "E_SOLARMUTEX" ); \
92 case E_FAIRRWLOCK : _sBuffer.append( "E_FAIRRWLOCK" ); \
95 _sBuffer.append( "\"\n" ); \
99 _sBuffer.append( "... use fallback, because user don't set another value!\n" ); \
101 WRITE_LOGFILE( LOGFILE_MUTEX, _sBuffer.makeStringAndClear() ) \
104 #else // #ifdef ENABLE_MUTEXDEBUG
106 /*_____________________________________________________________________________________________________________
107 If right testmode is'nt set - implements these macro with normal functionality!
108 We need the guard but not the log mechanism.
109 _____________________________________________________________________________________________________________*/
112 #define LOG_LOCKTYPE( _EFALLBACK, _ECURRENT )
114 #endif // #ifdef ENABLE_MUTEXDEBUG
116 //*****************************************************************************************************************
118 //*****************************************************************************************************************
120 #endif // #ifndef __FRAMEWORK_MACROS_DEBUG_MUTEX_HXX_