office-gobmx/configmgr/source/inc/utility.hxx

142 lines
4.9 KiB
C++
Raw Normal View History

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: utility.hxx,v $
*
* $Revision: 1.9 $
*
* last change: $Author: kz $ $Date: 2007-11-30 17:04:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
************************************************************************/
#ifndef CONFIGMGR_UTILITY_HXX_
#define CONFIGMGR_UTILITY_HXX_
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
#pragma warning(disable : 4350) // behavior change: 'member1' called instead of 'member2'
#endif
#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
#include <com/sun/star/uno/RuntimeException.hpp>
#endif
2002-03-15 04:39:30 -06:00
#ifndef _SALHELPER_SIMPLEREFERENCEOBJECT_HXX_
#include <salhelper/simplereferenceobject.hxx>
#endif
#include "datalock.hxx"
#include "osl/diagnose.h"
2002-03-15 04:39:30 -06:00
#define CFG_NOTHROW() SAL_THROW( () )
#define CFG_THROW1( Ex1 ) SAL_THROW( (Ex1) )
#define CFG_THROW2( Ex1,Ex2 ) SAL_THROW( (Ex1,Ex2) )
#define CFG_THROW3( Ex1,Ex2,Ex3 ) SAL_THROW( (Ex1,Ex2,Ex3) )
#define CFG_THROW4( Ex1,Ex2,Ex3,Ex4 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4) )
#define CFG_THROW5( Ex1,Ex2,Ex3,Ex4,Ex5 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4,Ex5) )
#define CFG_THROW6( Ex1,Ex2,Ex3,Ex4,Ex5,Ex6 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4,Ex5,Ex6) )
#define CFG_UNO_THROW1( Ex1 ) \
SAL_THROW( (::com::sun::star::Ex1, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW2( Ex1,Ex2 ) \
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW3( Ex1,Ex2,Ex3 ) \
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW4( Ex1,Ex2,Ex3,Ex4 ) \
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
::com::sun::star::Ex4, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW5( Ex1,Ex2,Ex3,Ex4,Ex5 ) \
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
::com::sun::star::Ex4, ::com::sun::star::Ex5, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW6( Ex1,Ex2,Ex3,Ex4,Ex5,Ex6 ) \
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
::com::sun::star::Ex4, ::com::sun::star::Ex5, ::com::sun::star::Ex6, \
::com::sun::star::uno::RuntimeException) )
#define CFG_UNO_THROW_ALL( ) CFG_UNO_THROW1(uno::Exception)
#define CFG_UNO_THROW_RTE( ) CFG_UNO_THROW1(uno::RuntimeException)
namespace configmgr
{
class Noncopyable
{
protected:
Noncopyable() {}
~Noncopyable() {}
private:
Noncopyable (Noncopyable& notImplemented);
void operator= (Noncopyable& notImplemented);
};
// Used for internal, non-UNO objects
class SimpleReferenceObject
2002-03-15 04:39:30 -06:00
{
public:
inline SimpleReferenceObject() SAL_THROW(()): m_nCount(0) {}
#define SIMPLE_REFERENCE_FAST
#ifdef SIMPLE_REFERENCE_FAST
inline void acquire() SAL_THROW(())
{
// OSL_ASSERT(UnoApiLock::isHeld());
m_nCount++;
}
inline void release() SAL_THROW(())
{
// OSL_ASSERT(UnoApiLock::isHeld());
if (--m_nCount == 0)
delete this;
}
#else
void acquire() SAL_THROW(());
void release() SAL_THROW(());
#endif
protected:
virtual ~SimpleReferenceObject() SAL_THROW(());
private:
sal_uInt32 m_nCount;
// not implemented:
SimpleReferenceObject(SimpleReferenceObject &);
void operator =(SimpleReferenceObject);
2002-03-15 04:39:30 -06:00
};
struct Refcounted : virtual configmgr::SimpleReferenceObject
{
};
}
#endif // CONFIGMGR_UTILITY_HXX_