Files
libreoffice/framework/inc/threadhelp/transactionmanager.hxx

154 lines
7.4 KiB
C++
Raw Normal View History

2001-05-02 12:00:52 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2001-05-02 12:00:52 +00:00
*
* $RCSfile: transactionmanager.hxx,v $
2001-05-02 12:00:52 +00:00
*
* $Revision: 1.8 $
2001-05-02 12:00:52 +00:00
*
* last change: $Author: hr $ $Date: 2006-06-19 11:02:16 $
2001-05-02 12:00:52 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2001-05-02 12:00:52 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-05-02 12:00:52 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2001-05-02 12:00:52 +00:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2001-05-02 12:00:52 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2001-05-02 12:00:52 +00:00
*
************************************************************************/
#ifndef __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_
#define __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_
//_________________________________________________________________________________________________________________
// my own includes
//_________________________________________________________________________________________________________________
#ifndef __FRAMEWORK_THREADHELP_INONCOPYABLE_H_
#include <threadhelp/inoncopyable.h>
#endif
#ifndef __FRAMEWORK_THREADHELP_ITRANSACTIONMANAGER_H_
#include <threadhelp/itransactionmanager.h>
#endif
#ifndef __FRAMEWORK_THREADHELP_GATE_HXX_
#include <threadhelp/gate.hxx>
#endif
2001-06-11 09:25:40 +00:00
#ifndef __FRAMEWORK_MACROS_DEBUG_HXX_
#include <macros/debug.hxx>
#endif
2001-05-02 12:00:52 +00:00
//_________________________________________________________________________________________________________________
// interface includes
//_________________________________________________________________________________________________________________
2001-08-20 12:00:36 +00:00
#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
#include <com/sun/star/uno/Reference.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_
#include <com/sun/star/uno/XInterface.hpp>
#endif
#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
#include <com/sun/star/uno/RuntimeException.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_
#include <com/sun/star/lang/DisposedException.hpp>
#endif
2001-05-02 12:00:52 +00:00
//_________________________________________________________________________________________________________________
// other includes
//_________________________________________________________________________________________________________________
#ifndef _OSL_MUTEX_HXX_
#include <osl/mutex.hxx>
#endif
//_________________________________________________________________________________________________________________
// namespace
//_________________________________________________________________________________________________________________
namespace framework{
//_________________________________________________________________________________________________________________
// const
//_________________________________________________________________________________________________________________
//_________________________________________________________________________________________________________________
// declarations
//_________________________________________________________________________________________________________________
/*-************************************************************************************************************//**
@short implement a transaction manager to support non breakable interface methods
@descr Use it to support non breakable interface methods without using any thread
synchronization like e.g. mutex, rw-lock!
That protect your code against wrong calls at wrong time ... e.g. calls after disposing an object!
Use combination of EExceptionMode and ERejectReason to detect rejected requests
and react for it. You can enable automaticly throwing of exceptions too.
@implements ITransactionManager
2001-06-11 09:25:40 +00:00
@base INonCopyable
2001-05-02 12:00:52 +00:00
ITransactionManager
@devstatus draft
*//*-*************************************************************************************************************/
2001-06-11 09:25:40 +00:00
class TransactionManager : public ITransactionManager
, private INonCopyable
2001-05-02 12:00:52 +00:00
{
//-------------------------------------------------------------------------------------------------------------
// public methods
//-------------------------------------------------------------------------------------------------------------
public:
2001-06-11 09:25:40 +00:00
TransactionManager ( );
virtual ~TransactionManager ( );
virtual void setWorkingMode ( EWorkingMode eMode );
virtual EWorkingMode getWorkingMode ( ) const;
virtual sal_Bool isCallRejected ( ERejectReason& eReason ) const;
virtual void registerTransaction ( EExceptionMode eMode, ERejectReason& eReason ) throw( css::uno::RuntimeException, css::lang::DisposedException );
virtual void unregisterTransaction ( ) throw( css::uno::RuntimeException, css::lang::DisposedException );
static TransactionManager& getGlobalTransactionManager ( );
2001-05-02 12:00:52 +00:00
//-------------------------------------------------------------------------------------------------------------
// private methods
//-------------------------------------------------------------------------------------------------------------
private:
2001-06-11 09:25:40 +00:00
void impl_throwExceptions( EExceptionMode eMode, ERejectReason eReason ) const throw( css::uno::RuntimeException, css::lang::DisposedException );
2001-05-02 12:00:52 +00:00
//-------------------------------------------------------------------------------------------------------------
// private member
//-------------------------------------------------------------------------------------------------------------
private:
mutable ::osl::Mutex m_aAccessLock ; /// regulate access on internal member of this instance
Gate m_aBarrier ; /// used to block transactions requests during change or work mode
EWorkingMode m_eWorkingMode ; /// current working mode of object which use this manager (used to reject calls at wrong time)
sal_Int32 m_nTransactionCount ; /// every transaction request is registered by this counter
}; // class TransactionManager
} // namespace framework
#endif // #ifndef __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_