1f8e07b45SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3f8e07b45SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4f8e07b45SAndrew Rist * or more contributor license agreements. See the NOTICE file 5f8e07b45SAndrew Rist * distributed with this work for additional information 6f8e07b45SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7f8e07b45SAndrew Rist * to you under the Apache License, Version 2.0 (the 8f8e07b45SAndrew Rist * "License"); you may not use this file except in compliance 9f8e07b45SAndrew Rist * with the License. You may obtain a copy of the License at 10f8e07b45SAndrew Rist * 11f8e07b45SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12f8e07b45SAndrew Rist * 13f8e07b45SAndrew Rist * Unless required by applicable law or agreed to in writing, 14f8e07b45SAndrew Rist * software distributed under the License is distributed on an 15f8e07b45SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16f8e07b45SAndrew Rist * KIND, either express or implied. See the License for the 17f8e07b45SAndrew Rist * specific language governing permissions and limitations 18f8e07b45SAndrew Rist * under the License. 19f8e07b45SAndrew Rist * 20f8e07b45SAndrew Rist *************************************************************/ 21f8e07b45SAndrew Rist 22f8e07b45SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_ 25cdf0e10cSrcweir #define __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 28cdf0e10cSrcweir // my own includes 29cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 30cdf0e10cSrcweir 31cdf0e10cSrcweir #include <threadhelp/inoncopyable.h> 32cdf0e10cSrcweir #include <threadhelp/itransactionmanager.h> 33cdf0e10cSrcweir #include <threadhelp/gate.hxx> 34cdf0e10cSrcweir #include <macros/debug.hxx> 35cdf0e10cSrcweir 36cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 37cdf0e10cSrcweir // interface includes 38cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 39cdf0e10cSrcweir #include <com/sun/star/uno/Reference.hxx> 40cdf0e10cSrcweir #include <com/sun/star/uno/XInterface.hpp> 41cdf0e10cSrcweir #include <com/sun/star/uno/RuntimeException.hpp> 42cdf0e10cSrcweir #include <com/sun/star/lang/DisposedException.hpp> 43cdf0e10cSrcweir 44cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 45cdf0e10cSrcweir // other includes 46cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 47cdf0e10cSrcweir #include <osl/mutex.hxx> 48cdf0e10cSrcweir #include <fwidllapi.h> 49cdf0e10cSrcweir 50cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 51cdf0e10cSrcweir // namespace 52cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 53cdf0e10cSrcweir 54cdf0e10cSrcweir namespace framework{ 55cdf0e10cSrcweir 56cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 57cdf0e10cSrcweir // const 58cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 59cdf0e10cSrcweir 60cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 61cdf0e10cSrcweir // declarations 62cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 63cdf0e10cSrcweir 64cdf0e10cSrcweir /*-************************************************************************************************************//** 65cdf0e10cSrcweir @short implement a transaction manager to support non breakable interface methods 66cdf0e10cSrcweir @descr Use it to support non breakable interface methods without using any thread 67cdf0e10cSrcweir synchronization like e.g. mutex, rw-lock! 68cdf0e10cSrcweir That protect your code against wrong calls at wrong time ... e.g. calls after disposing an object! 69cdf0e10cSrcweir Use combination of EExceptionMode and ERejectReason to detect rejected requests 70*07a3d7f1SPedro Giffuni and react for it. You can enable automatically throwing of exceptions too. 71cdf0e10cSrcweir 72cdf0e10cSrcweir @implements ITransactionManager 73cdf0e10cSrcweir @base INonCopyable 74cdf0e10cSrcweir ITransactionManager 75cdf0e10cSrcweir 76cdf0e10cSrcweir @devstatus draft 77cdf0e10cSrcweir *//*-*************************************************************************************************************/ 78cdf0e10cSrcweir class FWI_DLLPUBLIC TransactionManager : public ITransactionManager 79cdf0e10cSrcweir , private INonCopyable 80cdf0e10cSrcweir { 81cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 82cdf0e10cSrcweir // public methods 83cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 84cdf0e10cSrcweir public: 85cdf0e10cSrcweir 86cdf0e10cSrcweir TransactionManager ( ); 87cdf0e10cSrcweir virtual ~TransactionManager ( ); 88cdf0e10cSrcweir virtual void setWorkingMode ( EWorkingMode eMode ); 89cdf0e10cSrcweir virtual EWorkingMode getWorkingMode ( ) const; 90cdf0e10cSrcweir virtual sal_Bool isCallRejected ( ERejectReason& eReason ) const; 91cdf0e10cSrcweir virtual void registerTransaction ( EExceptionMode eMode, ERejectReason& eReason ) throw( css::uno::RuntimeException, css::lang::DisposedException ); 92cdf0e10cSrcweir virtual void unregisterTransaction ( ) throw( css::uno::RuntimeException, css::lang::DisposedException ); 93cdf0e10cSrcweir 94cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 95cdf0e10cSrcweir // private methods 96cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 97cdf0e10cSrcweir private: 98cdf0e10cSrcweir 99cdf0e10cSrcweir void impl_throwExceptions( EExceptionMode eMode, ERejectReason eReason ) const throw( css::uno::RuntimeException, css::lang::DisposedException ); 100cdf0e10cSrcweir 101cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 102cdf0e10cSrcweir // private member 103cdf0e10cSrcweir //------------------------------------------------------------------------------------------------------------- 104cdf0e10cSrcweir private: 105cdf0e10cSrcweir 106cdf0e10cSrcweir mutable ::osl::Mutex m_aAccessLock ; /// regulate access on internal member of this instance 107cdf0e10cSrcweir Gate m_aBarrier ; /// used to block transactions requests during change or work mode 108cdf0e10cSrcweir EWorkingMode m_eWorkingMode ; /// current working mode of object which use this manager (used to reject calls at wrong time) 109cdf0e10cSrcweir sal_Int32 m_nTransactionCount ; /// every transaction request is registered by this counter 110cdf0e10cSrcweir 111cdf0e10cSrcweir }; // class TransactionManager 112cdf0e10cSrcweir 113cdf0e10cSrcweir } // namespace framework 114cdf0e10cSrcweir 115cdf0e10cSrcweir #endif // #ifndef __FRAMEWORK_THREADHELP_TRANSACTIONMANAGER_HXX_ 116