Files
libreoffice/dbaccess/source/core/api/definitioncolumn.cxx

614 lines
25 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 23:16:46 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-09-18 23:16:46 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:16:46 +00:00
*
* $RCSfile: definitioncolumn.cxx,v $
* $Revision: 1.26 $
2000-09-18 23:16:46 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 23:16:46 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 23:16:46 +00:00
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 23:16:46 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 23:16:46 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_dbaccess.hxx"
#include "apitools.hxx"
#include "dbastrings.hrc"
2000-09-18 23:16:46 +00:00
#include "definitioncolumn.hxx"
#include "sdbcoretools.hxx"
#include <com/sun/star/beans/PropertyAttribute.hpp>
2000-10-11 10:21:40 +00:00
#include <comphelper/property.hxx>
#include <comphelper/types.hxx>
#include <cppuhelper/typeprovider.hxx>
2000-09-18 23:16:46 +00:00
#include <tools/debug.hxx>
#include <tools/diagnose_ex.h>
2000-09-18 23:16:46 +00:00
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::cppu;
2000-11-03 13:32:31 +00:00
using namespace ::comphelper;
2000-09-18 23:16:46 +00:00
using namespace ::osl;
using namespace dbaccess;
#define HAS_DESCRIPTION 0x00000001
#define HAS_DEFAULTVALUE 0x00000002
#define HAS_ROWVERSION 0x00000004
#define HAS_AUTOINCREMENT_CREATION 0x00000008
2000-09-18 23:16:46 +00:00
//============================================================
//= OTableColumnDescriptor
//============================================================
IMPLEMENT_FORWARD_XINTERFACE2(OTableColumnDescriptor,OColumn,TXChild)
//------------------------------------------------------------------------------
void OTableColumnDescriptor::impl_registerProperties()
{
sal_Int32 nDefaultAttr = m_bActAsDescriptor ? 0 : PropertyAttribute::READONLY;
registerProperty( PROPERTY_TYPENAME, PROPERTY_ID_TYPENAME, nDefaultAttr, &m_aTypeName, ::getCppuType( &m_aTypeName ) );
registerProperty( PROPERTY_DESCRIPTION, PROPERTY_ID_DESCRIPTION, nDefaultAttr, &m_aDescription, ::getCppuType( &m_aDescription ) );
registerProperty( PROPERTY_DEFAULTVALUE, PROPERTY_ID_DEFAULTVALUE, nDefaultAttr, &m_aDefaultValue, ::getCppuType( &m_aDefaultValue ) );
if ( m_bActAsDescriptor )
registerProperty( PROPERTY_AUTOINCREMENTCREATION, PROPERTY_ID_AUTOINCREMENTCREATION, nDefaultAttr, &m_aAutoIncrementValue, ::getCppuType( &m_aAutoIncrementValue ) );
registerProperty( PROPERTY_TYPE, PROPERTY_ID_TYPE, nDefaultAttr, &m_nType, ::getCppuType( &m_nType ) );
registerProperty( PROPERTY_PRECISION, PROPERTY_ID_PRECISION, nDefaultAttr, &m_nPrecision, ::getCppuType( &m_nPrecision ) );
registerProperty( PROPERTY_SCALE, PROPERTY_ID_SCALE, nDefaultAttr, &m_nScale, ::getCppuType( &m_nScale ) );
registerProperty( PROPERTY_ISNULLABLE, PROPERTY_ID_ISNULLABLE, nDefaultAttr, &m_nIsNullable, ::getCppuType( &m_nIsNullable ) );
registerProperty( PROPERTY_ISAUTOINCREMENT, PROPERTY_ID_ISAUTOINCREMENT, nDefaultAttr, &m_bAutoIncrement, ::getCppuType( &m_bAutoIncrement ) );
registerProperty( PROPERTY_ISROWVERSION, PROPERTY_ID_ISROWVERSION, nDefaultAttr, &m_bRowVersion, ::getCppuType( &m_bRowVersion ) );
registerProperty( PROPERTY_ISCURRENCY, PROPERTY_ID_ISCURRENCY, nDefaultAttr, &m_bCurrency, ::getCppuType( &m_bCurrency ) );
OColumnSettings::registerProperties( *this );
}
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID( OTableColumnDescriptor )
2000-09-18 23:16:46 +00:00
// ::com::sun::star::lang::XServiceInfo
//------------------------------------------------------------------------------
rtl::OUString OTableColumnDescriptor::getImplementationName( ) throw (RuntimeException)
{
return rtl::OUString::createFromAscii("com.sun.star.sdb.OTableColumnDescriptor");
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > OTableColumnDescriptor::getSupportedServiceNames( ) throw (RuntimeException)
{
Sequence< ::rtl::OUString > aSNS( 2 );
aSNS[0] = m_bActAsDescriptor ? SERVICE_SDBCX_COLUMNDESCRIPTOR : SERVICE_SDBCX_COLUMN;
2000-09-18 23:16:46 +00:00
aSNS[1] = SERVICE_SDB_COLUMNSETTINGS;
return aSNS;
}
2000-10-11 10:21:40 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OTableColumnDescriptor::createArrayHelper( ) const
{
Sequence< Property > aProps;
describeProperties( aProps );
return new ::cppu::OPropertyArrayHelper( aProps );
2000-09-18 23:16:46 +00:00
}
// cppu::OPropertySetHelper
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& OTableColumnDescriptor::getInfoHelper()
{
2000-10-11 10:21:40 +00:00
return *static_cast< ::comphelper::OPropertyArrayUsageHelper< OTableColumnDescriptor >* >(this)->getArrayHelper();
2000-09-18 23:16:46 +00:00
}
//------------------------------------------------------------------------------
void OTableColumnDescriptor::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const Any& rValue ) throw (Exception)
2000-09-18 23:16:46 +00:00
{
OColumn::setFastPropertyValue_NoBroadcast( nHandle, rValue );
::dbaccess::notifyDataSourceModified( m_xParent, sal_True );
}
// -----------------------------------------------------------------------------
sal_Int64 SAL_CALL OTableColumnDescriptor::getSomething( const Sequence< sal_Int8 >& aIdentifier ) throw(RuntimeException)
{
sal_Int64 nReturn = OColumn::getSomething( aIdentifier );
if ( !nReturn )
nReturn = OColumnSettings::getSomething( aIdentifier );
return nReturn;
}
// -----------------------------------------------------------------------------
Reference< XInterface > SAL_CALL OTableColumnDescriptor::getParent( ) throw (RuntimeException)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_xParent;
}
// -----------------------------------------------------------------------------
void SAL_CALL OTableColumnDescriptor::setParent( const Reference< XInterface >& _xParent ) throw (NoSupportException, RuntimeException)
{
::osl::MutexGuard aGuard(m_aMutex);
m_xParent = _xParent;
2000-09-18 23:16:46 +00:00
}
//============================================================
//= OTableColumn
//============================================================
2001-08-15 12:05:15 +00:00
DBG_NAME(OTableColumn);
// -------------------------------------------------------------------------
OTableColumn::OTableColumn( const ::rtl::OUString& _rName )
:OTableColumnDescriptor( false /* do not act as descriptor */ )
2001-08-15 12:05:15 +00:00
{
DBG_CTOR(OTableColumn,NULL);
m_sName = _rName;
}
// -----------------------------------------------------------------------------
OTableColumn::~OTableColumn()
2001-02-23 14:22:32 +00:00
{
DBG_DTOR(OTableColumn,NULL);
}
//--------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID( OTableColumn )
2001-08-15 12:05:15 +00:00
//------------------------------------------------------------------------------
rtl::OUString OTableColumn::getImplementationName( ) throw (RuntimeException)
{
return rtl::OUString::createFromAscii("com.sun.star.sdb.OTableColumn");
}
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& SAL_CALL OTableColumn::getInfoHelper()
{
return *OTableColumn_PBase::getArrayHelper();
}
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OTableColumn::createArrayHelper( ) const
{
return OTableColumnDescriptor::createArrayHelper();
}
// =========================================================================
//= OQueryColumn
// =========================================================================
DBG_NAME( OQueryColumn );
// -------------------------------------------------------------------------
OQueryColumn::OQueryColumn( const Reference< XPropertySet >& _rxParserColumn )
:OTableColumnDescriptor( false /* do not act as descriptor */ )
{
const sal_Int32 nPropAttr = PropertyAttribute::READONLY;
registerProperty( PROPERTY_CATALOGNAME, PROPERTY_ID_CATALOGNAME, nPropAttr, &m_sCatalogName, ::getCppuType( &m_sCatalogName ) );
registerProperty( PROPERTY_SCHEMANAME, PROPERTY_ID_SCHEMANAME, nPropAttr, &m_sSchemaName, ::getCppuType( &m_sSchemaName ) );
registerProperty( PROPERTY_TABLENAME, PROPERTY_ID_TABLENAME, nPropAttr, &m_sTableName, ::getCppuType( &m_sTableName ) );
registerProperty( PROPERTY_REALNAME, PROPERTY_ID_REALNAME, nPropAttr, &m_sRealName, ::getCppuType( &m_sRealName ) );
DBG_CTOR( OQueryColumn, NULL );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_TYPENAME ) >>= m_aTypeName );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_ISNULLABLE ) >>= m_nIsNullable );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_PRECISION ) >>= m_nPrecision );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_SCALE ) >>= m_nScale );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_TYPE ) >>= m_nType );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_ISAUTOINCREMENT ) >>= m_bAutoIncrement );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_ISCURRENCY ) >>= m_bCurrency );
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_NAME ) >>= m_sName );
m_bRowVersion = sal_False;
Reference< XPropertySetInfo > xPSI( _rxParserColumn->getPropertySetInfo(), UNO_SET_THROW );
if ( xPSI->hasPropertyByName( PROPERTY_DEFAULTVALUE ) )
OSL_VERIFY( _rxParserColumn->getPropertyValue( PROPERTY_DEFAULTVALUE ) >>= m_aDefaultValue );
// if the source column also has column settings, copy those
struct ColumnSettingDescriptor
{
::rtl::OUString sName;
sal_Int32 nHandle;
};
ColumnSettingDescriptor aProps[] =
{
{ PROPERTY_WIDTH, PROPERTY_ID_WIDTH },
{ PROPERTY_NUMBERFORMAT, PROPERTY_ID_NUMBERFORMAT },
{ PROPERTY_RELATIVEPOSITION, PROPERTY_ID_RELATIVEPOSITION },
{ PROPERTY_ALIGN, PROPERTY_ID_ALIGN },
{ PROPERTY_HELPTEXT, PROPERTY_ID_HELPTEXT },
{ PROPERTY_CONTROLDEFAULT, PROPERTY_ID_CONTROLDEFAULT },
{ PROPERTY_HIDDEN, PROPERTY_ID_HIDDEN },
{ PROPERTY_CATALOGNAME, PROPERTY_ID_CATALOGNAME },
{ PROPERTY_SCHEMANAME, PROPERTY_ID_SCHEMANAME },
{ PROPERTY_TABLENAME, PROPERTY_ID_TABLENAME },
{ PROPERTY_REALNAME, PROPERTY_ID_REALNAME }
};
for ( size_t i=0; i < sizeof( aProps ) / sizeof( aProps[0] ); ++i )
{
if ( xPSI->hasPropertyByName( aProps[i].sName ) )
OTableColumnDescriptor::setFastPropertyValue_NoBroadcast( aProps[i].nHandle, _rxParserColumn->getPropertyValue( aProps[i].sName ) );
}
2001-02-23 14:22:32 +00:00
}
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
OQueryColumn::~OQueryColumn()
2000-09-18 23:16:46 +00:00
{
DBG_DTOR( OQueryColumn, NULL );
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID( OQueryColumn )
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
::rtl::OUString SAL_CALL OQueryColumn::getImplementationName( ) throw(RuntimeException)
2000-09-18 23:16:46 +00:00
{
return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "org.openoffice.comp.dbaccess.OQueryColumn" ) );
2000-09-18 23:16:46 +00:00
}
2001-05-04 09:02:31 +00:00
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& SAL_CALL OQueryColumn::getInfoHelper()
2001-05-04 09:02:31 +00:00
{
return *OQueryColumn_PBase::getArrayHelper();
2001-05-04 09:02:31 +00:00
}
//--------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OQueryColumn::createArrayHelper() const
2000-09-18 23:16:46 +00:00
{
return OTableColumnDescriptor::createArrayHelper();
2000-09-18 23:16:46 +00:00
}
//==========================================================================
2000-09-18 23:16:46 +00:00
//= OColumnWrapper
//==========================================================================
2001-08-15 12:05:15 +00:00
DBG_NAME(OColumnWrapper);
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
OColumnWrapper::OColumnWrapper( const Reference< XPropertySet > & rCol, const bool _bNameIsReadOnly )
:OColumn( _bNameIsReadOnly )
,m_xAggregate(rCol)
,m_nColTypeID(-1)
2000-09-18 23:16:46 +00:00
{
2001-08-15 12:05:15 +00:00
DBG_CTOR(OColumnWrapper,NULL);
// which type of aggregate property do we have?
// we distingish the properties by the containment of optional properties
m_nColTypeID = 0;
if ( m_xAggregate.is() )
2000-09-18 23:16:46 +00:00
{
Reference <XPropertySetInfo > xInfo(m_xAggregate->getPropertySetInfo());
m_nColTypeID |= xInfo->hasPropertyByName(PROPERTY_DESCRIPTION) ? HAS_DESCRIPTION : 0;
m_nColTypeID |= xInfo->hasPropertyByName(PROPERTY_DEFAULTVALUE) ? HAS_DEFAULTVALUE : 0;
m_nColTypeID |= xInfo->hasPropertyByName(PROPERTY_ISROWVERSION) ? HAS_ROWVERSION : 0;
m_nColTypeID |= xInfo->hasPropertyByName(PROPERTY_AUTOINCREMENTCREATION) ? HAS_AUTOINCREMENT_CREATION : 0;
m_xAggregate->getPropertyValue(PROPERTY_NAME) >>= m_sName;
2000-09-18 23:16:46 +00:00
}
}
2001-08-15 12:05:15 +00:00
// -----------------------------------------------------------------------------
OColumnWrapper::~OColumnWrapper()
{
DBG_DTOR(OColumnWrapper,NULL);
}
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
::rtl::OUString OColumnWrapper::impl_getPropertyNameFromHandle( const sal_Int32 _nHandle ) const
{
::rtl::OUString sPropName;
sal_Int16 nAttributes( 0 );
const_cast< OColumnWrapper* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, &nAttributes, _nHandle );
OSL_ENSURE( sPropName.getLength(), "OColumnWrapper::impl_getPropertyNameFromHandle: property not found!" );
return sPropName;
}
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
void OColumnWrapper::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) const
{
// derived classes are free to either use the OPropertyContainer(Helper) mechanisms for properties,
// or to declare additional properties which are to be forwarded to the wrapped object. So we need
// to distinguish those cases.
if ( OColumn::isRegisteredProperty( nHandle ) )
2000-09-18 23:16:46 +00:00
{
OColumn::getFastPropertyValue( rValue, nHandle );
}
else
{
rValue = m_xAggregate->getPropertyValue( impl_getPropertyNameFromHandle( nHandle ) );
2000-09-18 23:16:46 +00:00
}
}
//------------------------------------------------------------------------------
sal_Bool OColumnWrapper::convertFastPropertyValue( Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle,
const Any& rValue ) throw (IllegalArgumentException)
2000-09-18 23:16:46 +00:00
{
sal_Bool bModified( sal_False );
if ( OColumn::isRegisteredProperty( nHandle ) )
{
bModified = OColumn::convertFastPropertyValue( rConvertedValue, rOldValue, nHandle, rValue );
}
else
{
getFastPropertyValue( rOldValue, nHandle );
if ( rOldValue != rValue )
{
rConvertedValue = rValue;
bModified = sal_True;
}
}
2000-09-18 23:16:46 +00:00
return bModified;
}
//------------------------------------------------------------------------------
void OColumnWrapper::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const Any& rValue ) throw (Exception)
2000-09-18 23:16:46 +00:00
{
if ( OColumn::isRegisteredProperty( nHandle ) )
{
OColumn::setFastPropertyValue_NoBroadcast( nHandle, rValue );
}
else
{
m_xAggregate->setPropertyValue( impl_getPropertyNameFromHandle( nHandle ), rValue );
}
2000-09-18 23:16:46 +00:00
}
// -----------------------------------------------------------------------------
sal_Int64 SAL_CALL OColumnWrapper::getSomething( const Sequence< sal_Int8 >& aIdentifier ) throw(RuntimeException)
{
sal_Int64 nRet = OColumn::getSomething(aIdentifier);
if(!nRet)
{
Reference<XUnoTunnel> xTunnel(m_xAggregate,UNO_QUERY);
if(xTunnel.is())
nRet = xTunnel->getSomething(aIdentifier);
}
return nRet;
}
2000-09-18 23:16:46 +00:00
//============================================================
//= OTableColumnDescriptorWrapper
//============================================================
//--------------------------------------------------------------------------
OTableColumnDescriptorWrapper::OTableColumnDescriptorWrapper( const Reference< XPropertySet >& _rCol, const bool _bPureWrap, const bool _bIsDescriptor )
:OColumnWrapper( _rCol, !_bIsDescriptor )
,m_bPureWrap( _bPureWrap )
,m_bIsDescriptor( _bIsDescriptor )
{
// let the ColumnSettings register its properties
OColumnSettings::registerProperties( *this );
}
2000-09-18 23:16:46 +00:00
// com::sun::star::lang::XTypeProvider
//--------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID( OTableColumnDescriptorWrapper )
2000-09-18 23:16:46 +00:00
// ::com::sun::star::lang::XServiceInfo
//------------------------------------------------------------------------------
rtl::OUString OTableColumnDescriptorWrapper::getImplementationName( ) throw (RuntimeException)
{
return rtl::OUString::createFromAscii("com.sun.star.sdb.OTableColumnDescriptorWrapper");
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > OTableColumnDescriptorWrapper::getSupportedServiceNames( ) throw (RuntimeException)
{
Sequence< ::rtl::OUString > aSNS( 2 );
aSNS[0] = SERVICE_SDBCX_COLUMNDESCRIPTOR;
aSNS[1] = SERVICE_SDB_COLUMNSETTINGS;
return aSNS;
}
// -----------------------------------------------------------------------------
sal_Int64 SAL_CALL OTableColumnDescriptorWrapper::getSomething( const Sequence< sal_Int8 >& aIdentifier ) throw(RuntimeException)
{
sal_Int64 nReturn = OColumnWrapper::getSomething( aIdentifier );
if ( !nReturn )
nReturn = OColumnSettings::getSomething( aIdentifier );
return nReturn;
}
2000-10-11 10:21:40 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OTableColumnDescriptorWrapper::createArrayHelper( sal_Int32 nId ) const
{
const sal_Int32 nHaveAlways = 7;
2000-09-18 23:16:46 +00:00
// Which optional properties are contained?
sal_Int32 nHaveOptionally = 0;
2000-09-18 23:16:46 +00:00
if (nId & HAS_DESCRIPTION)
++nHaveOptionally;
2000-09-18 23:16:46 +00:00
if (nId & HAS_DEFAULTVALUE)
++nHaveOptionally;
2000-09-18 23:16:46 +00:00
if (nId & HAS_ROWVERSION)
++nHaveOptionally;
if ( nId & HAS_AUTOINCREMENT_CREATION )
++nHaveOptionally;
2000-09-18 23:16:46 +00:00
const sal_Int32 nPropertyCount( nHaveAlways + nHaveOptionally );
Sequence< Property > aTableDescProperties( nPropertyCount );
Property* pDesc = aTableDescProperties.getArray();
2000-09-18 23:16:46 +00:00
sal_Int32 nPos = 0;
DECL_PROP0_BOOL( ISAUTOINCREMENT );
DECL_PROP0_BOOL( ISCURRENCY );
DECL_PROP0( ISNULLABLE, sal_Int32 );
DECL_PROP0( PRECISION, sal_Int32 );
DECL_PROP0( SCALE, sal_Int32 );
DECL_PROP0( TYPE, sal_Int32 );
DECL_PROP0( TYPENAME, ::rtl::OUString );
2000-09-18 23:16:46 +00:00
if ( nId & HAS_AUTOINCREMENT_CREATION )
{
DECL_PROP1( AUTOINCREMENTCREATION, ::rtl::OUString, MAYBEVOID );
}
if ( nId & HAS_DEFAULTVALUE )
{
DECL_PROP0( DEFAULTVALUE, ::rtl::OUString );
}
if ( nId & HAS_DESCRIPTION )
{
DECL_PROP0( DESCRIPTION, ::rtl::OUString );
}
if ( nId & HAS_ROWVERSION )
{
DECL_PROP0_BOOL( ISROWVERSION );
}
2000-09-18 23:16:46 +00:00
OSL_ENSURE( nPos == nPropertyCount, "OTableColumnDescriptorWrapper::createArrayHelper: something went wrong!" );
2000-09-18 23:16:46 +00:00
if ( !m_bIsDescriptor )
{
for ( Property* prop = aTableDescProperties.getArray();
prop != aTableDescProperties.getArray() + aTableDescProperties.getLength();
++prop
)
2000-09-18 23:16:46 +00:00
{
prop->Attributes |= PropertyAttribute::READONLY;
2000-09-18 23:16:46 +00:00
}
}
// finally also describe the properties which are maintained by our base class, in particular the OPropertyContainerHelper
Sequence< Property > aBaseProperties;
describeProperties( aBaseProperties );
2000-09-18 23:16:46 +00:00
Sequence< Property > aAllProperties( ::comphelper::concatSequences( aTableDescProperties, aBaseProperties ) );
return new ::cppu::OPropertyArrayHelper( aAllProperties, sal_False );
2000-09-18 23:16:46 +00:00
}
// cppu::OPropertySetHelper
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& OTableColumnDescriptorWrapper::getInfoHelper()
{
return *static_cast< OIdPropertyArrayUsageHelper< OTableColumnDescriptorWrapper >* >(this)->getArrayHelper(m_nColTypeID);
}
//------------------------------------------------------------------------------
void OTableColumnDescriptorWrapper::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) const
{
if ( m_bPureWrap )
2000-09-18 23:16:46 +00:00
{
rValue = m_xAggregate->getPropertyValue( impl_getPropertyNameFromHandle( nHandle ) );
}
else
{
OColumnWrapper::getFastPropertyValue( rValue, nHandle );
2000-09-18 23:16:46 +00:00
}
}
//------------------------------------------------------------------------------
sal_Bool OTableColumnDescriptorWrapper::convertFastPropertyValue( Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle, const Any& rValue ) throw (IllegalArgumentException)
2000-09-18 23:16:46 +00:00
{
sal_Bool bModified(sal_False);
if ( m_bPureWrap )
2000-09-18 23:16:46 +00:00
{
// do not delegate to OColumnWrapper: It would, for the properties which were registered with registerProperty,
// ask the OPropertyContainer base class, which is not what we want here.
// TODO: the whole "m_bPureWrap"-thingie is strange. We should have a dedicated class doing this wrapping,
// not a class which normally serves other purposes, and only sometimes does a "pure wrap". It makes the
// code unnecessarily hard to maintain, and error prone.
rOldValue = m_xAggregate->getPropertyValue( impl_getPropertyNameFromHandle( nHandle ) );
if ( rOldValue != rValue )
{
rConvertedValue = rValue;
bModified = sal_True;
}
2000-09-18 23:16:46 +00:00
}
else
{
bModified = OColumnWrapper::convertFastPropertyValue( rConvertedValue, rOldValue, nHandle, rValue );
}
2000-09-18 23:16:46 +00:00
return bModified;
}
//------------------------------------------------------------------------------
void OTableColumnDescriptorWrapper::setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
const Any& rValue
)
throw (Exception)
{
if ( m_bPureWrap )
{
m_xAggregate->setPropertyValue( impl_getPropertyNameFromHandle( nHandle ), rValue );
}
else
2000-09-18 23:16:46 +00:00
{
OColumnWrapper::setFastPropertyValue_NoBroadcast( nHandle, rValue );
2000-09-18 23:16:46 +00:00
}
}
//============================================================
//= OTableColumnWrapper
//============================================================
//--------------------------------------------------------------------------
OTableColumnWrapper::OTableColumnWrapper( const Reference< XPropertySet >& rCol, const Reference< XPropertySet >& _xColDefintion,
bool _bPureWrap )
:OTableColumnDescriptorWrapper( rCol, _bPureWrap, false )
{
osl_incrementInterlockedCount( &m_refCount );
if ( _xColDefintion.is() )
{
try
{
::comphelper::copyProperties( _xColDefintion, this );
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION();
}
}
osl_decrementInterlockedCount( &m_refCount );
}
//--------------------------------------------------------------------------
OTableColumnWrapper::~OTableColumnWrapper()
{
}
2000-09-18 23:16:46 +00:00
// com::sun::star::lang::XTypeProvider
//--------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID( OTableColumnWrapper )
2000-09-18 23:16:46 +00:00
// ::com::sun::star::lang::XServiceInfo
//------------------------------------------------------------------------------
rtl::OUString OTableColumnWrapper::getImplementationName( ) throw (RuntimeException)
{
return rtl::OUString::createFromAscii( "com.sun.star.sdb.OTableColumnWrapper" );
2000-09-18 23:16:46 +00:00
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > OTableColumnWrapper::getSupportedServiceNames( ) throw (RuntimeException)
{
Sequence< ::rtl::OUString > aSNS( 2 );
aSNS[0] = SERVICE_SDBCX_COLUMN;
aSNS[1] = SERVICE_SDB_COLUMNSETTINGS;
return aSNS;
}
2001-05-04 09:02:31 +00:00
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& OTableColumnWrapper::getInfoHelper()
{
return *static_cast< OIdPropertyArrayUsageHelper< OTableColumnWrapper >* >(this)->getArrayHelper(m_nColTypeID);
}
2000-10-11 10:21:40 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OTableColumnWrapper::createArrayHelper( sal_Int32 nId ) const
{
return OTableColumnDescriptorWrapper::createArrayHelper( nId );
2001-05-04 09:02:31 +00:00
}