Files
libreoffice/dbaccess/source/core/inc/column.hxx

655 lines
32 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* $RCSfile: column.hxx,v $
*
2000-10-17 09:24:43 +00:00
* $Revision: 1.3 $
2000-09-18 23:16:46 +00:00
*
2000-10-17 09:24:43 +00:00
* last change: $Author: oj $ $Date: 2000-10-17 10:24:43 $
2000-09-18 23:16:46 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _DBA_COREAPI_COLUMN_HXX_
#define _DBA_COREAPI_COLUMN_HXX_
#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
#include <com/sun/star/lang/XServiceInfo.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XNAMED_HPP_
#include <com/sun/star/container/XNamed.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XRESULTSET_HPP_
#include <com/sun/star/sdbc/XResultSet.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_WRAPPEDTARGETEXCEPTION_HPP_
#include <com/sun/star/lang/WrappedTargetException.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XENUMERATIONACCESS_HPP_
#include <com/sun/star/container/XEnumerationAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
#include <com/sun/star/container/XNameAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXACCESS_HPP_
#include <com/sun/star/container/XIndexAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_REGISTRY_XREGISTRYKEY_HPP_
#include <com/sun/star/registry/XRegistryKey.hpp>
#endif
#ifndef _COM_SUN_STAR_REGISTRY_XREGISTRYKEY_HPP_
#include <com/sun/star/registry/XRegistryKey.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#endif
#ifndef _COM_SUN_STAR_IO_IOEXCEPTION_HPP_
#include <com/sun/star/io/IOException.hpp>
#endif
#ifndef _COM_SUN_STAR_IO_XOBJECTOUTPUTSTREAM_HPP_
#include <com/sun/star/io/XObjectOutputStream.hpp>
#endif
#ifndef _COM_SUN_STAR_IO_XOBJECTINPUTSTREAM_HPP_
#include <com/sun/star/io/XObjectInputStream.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XAPPEND_HPP_
#include <com/sun/star/sdbcx/XAppend.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XDROP_HPP_
#include <com/sun/star/sdbcx/XDrop.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XUNOTUNNEL_HPP_
#include <com/sun/star/lang/XUnoTunnel.hpp>
#endif
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
#ifndef _CPPUHELPER_COMPBASE3_HXX_
#include <cppuhelper/compbase3.hxx>
#endif
#ifndef _CPPUHELPER_COMPBASE4_HXX_
#include <cppuhelper/compbase4.hxx>
#endif
#ifndef _CPPUHELPER_PROPSHLP_HXX
#include <cppuhelper/propshlp.hxx>
#endif
2000-10-11 10:07:08 +00:00
#ifndef _COMPHELPER_PROPERTY_ARRAY_HELPER_HXX_
#include <comphelper/proparrhlp.hxx>
2000-09-18 23:16:46 +00:00
#endif
#ifndef _CONNECTIVITY_COMMONTOOLS_HXX_
#include <connectivity/CommonTools.hxx>
#endif
#ifndef _CONNECTIVITY_SDBCX_COLLECTION_HXX_
#include <connectivity/sdbcx/VCollection.hxx>
#endif
//************************************************************
// OColumn
//************************************************************
typedef ::cppu::WeakComponentImplHelper3< ::com::sun::star::lang::XServiceInfo,
::com::sun::star::container::XNamed,
::com::sun::star::lang::XUnoTunnel > OColumnBase;
//------------------------------------------------------------
class OColumnSettings;
class OColumn :public connectivity::OBaseMutex
,public OColumnBase
,public ::cppu::OPropertySetHelper
{
friend class OColumns;
protected:
::rtl::OUString m_sName;
protected:
OColumn();
public:
virtual ~OColumn();
// com::sun::star::lang::XTypeProvider
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException) = 0;
// com::sun::star::uno::XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException);
// com::sun::star::beans::XPropertySet
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
// ::cppu::OPropertySetHelper
virtual void SAL_CALL getFastPropertyValue(
::com::sun::star::uno::Any& rValue,
sal_Int32 nHandle
) const;
virtual sal_Bool SAL_CALL convertFastPropertyValue(
::com::sun::star::uno::Any & rConvertedValue,
::com::sun::star::uno::Any & rOldValue,
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException);
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue
)
throw (::com::sun::star::uno::Exception);
// com::sun::star::lang::XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
static ::com::sun::star::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
// cppu::OComponentHelper
virtual void SAL_CALL disposing(void);
// ::com::sun::star::lang::XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
// XNamed
virtual ::rtl::OUString SAL_CALL getName( ) throw(::com::sun::star::uno::RuntimeException)
{
return m_sName;
}
virtual void SAL_CALL setName( const ::rtl::OUString& _rName ) throw(::com::sun::star::uno::RuntimeException)
{
m_sName = _rName;
}
/** return a pointer to the object which holds the UI-settings for this column, if any.
@see OColumnSettings
@see OColumns::loadSettings
@see OColumns::storeSettings
*/
virtual OColumnSettings* getSettings() { return NULL; }
virtual void fireValueChange(const ::com::sun::star::uno::Any& _rOldValue){}
};
//************************************************************
// OColumnSettings
//************************************************************
class OColumnSettings
{
// <properties>
::com::sun::star::uno::Any m_aWidth; // sal_Int32 or void
::com::sun::star::uno::Any m_aFormatKey; // sal_Int32 or void
::com::sun::star::uno::Any m_aRelativePosition; // sal_Int32 or void
::com::sun::star::uno::Any m_aAlignment; // sal_Int32 (::com::sun::star::awt::TextAlign) or void
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
m_xControlModel;
sal_Bool m_bHidden;
// </properties>
// Setting of values
public:
OColumnSettings():m_bHidden(sal_False){}
sal_Bool SAL_CALL convertFastPropertyValue(
::com::sun::star::uno::Any & rConvertedValue,
::com::sun::star::uno::Any & rOldValue,
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException);
void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue
)
throw (::com::sun::star::uno::Exception);
void SAL_CALL getFastPropertyValue( ::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const;
public:
/** write the connection independent information (i.e. the hidden flag or the column width) to the given stream.
@param _rxConfigNode the configuratoin node to write to
@return sal_True, if anything has been written (i.e. there is at least one non-default property)
sal_False else
*/
sal_Bool writeUITo(const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxConfigNode);
/** read the connection independent information (i.e. te hidden flag or the column width) from the given configuration node.
@param _rxConfigNode the configuratoin node to read from
*/
void readUIFrom(const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxConfigNode);
};
//============================================================
//= IColumnFactory - used by OColumns for creating new columns
//============================================================
class IColumnFactory
{
public:
virtual OColumn* createColumn(const ::rtl::OUString& _rName) const = 0;
};
//============================================================
//= OColumns
//= general columns map, could be used for readonly access
//= no appending and dropping is supported
//============================================================
2000-10-11 10:07:08 +00:00
typedef ::std::hash_map<rtl::OUString, OColumn*, ::comphelper::UStringMixHash, ::comphelper::UStringMixEqual> OColumnMap;
2000-09-18 23:16:46 +00:00
typedef ::std::vector<OColumn*> OColumnArray;
//typedef ::cppu::WeakImplHelper4< ::com::sun::star::lang::XServiceInfo,
// ::com::sun::star::container::XEnumerationAccess,
// ::com::sun::star::container::XNameAccess,
// ::com::sun::star::container::XIndexAccess
// > OColumns_Base;
class ODBTable;
typedef connectivity::sdbcx::OCollection OColumns_BASE;
//------------------------------------------------------------
class OColumns : public OColumns_BASE
{
protected:
// // parent access
// ::cppu::OWeakObject& m_rParent; // used for ref counting
// ::osl::Mutex& m_rMutex; // the parent mutex
//
// // single column access
// OColumnArray m_aColArray;
// OColumnMap* m_pColMap;
ODBTable* m_pTable; // in some cases this is the parent
// configuration
2000-10-17 09:24:43 +00:00
::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey > m_xConfigurationNode;
// comes from the driver can be null
::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xDrvColumns;
2000-09-18 23:16:46 +00:00
sal_Bool m_bInitialized : 1;
sal_Bool m_bAddColumn : 1;
sal_Bool m_bDropColumn : 1;
virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNamed > createObject(const ::rtl::OUString& _rName);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createEmptyObject();
public:
// sal_Bool isCaseSensitive() const { return m_pColMap->key_eq().isCaseSensitive(); }
/** set the new case sensitivity flag. will delete all existing columns, so be sure you know what you're doing ...
*/
// void setCaseSensitive(sal_Bool bCaseSensitive);
/** flag which determines whether the container is filled or not
*/
sal_Bool isInitialized() const { return m_bInitialized; }
void setInitialized() {m_bInitialized = sal_True;}
void setParent(ODBTable* _pTable) { m_pTable = _pTable;}
public:
/** constructs an empty container without configuration location.
@param rParent the parent object. This instance will be used for refcounting, so the parent
cannot die before the container does.
@param _rMutex the mutex of the parent.
@param _bCaseSensitive the initial case sensitivity flag
@see setCaseSensitive
*/
OColumns(::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex, sal_Bool _bCaseSensitive,const ::std::vector< ::rtl::OUString> &_rVector,
sal_Bool _bAddColumn = sal_False,sal_Bool _bDropColumn = sal_False);
2000-10-17 09:24:43 +00:00
OColumns(::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex,
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& _rxDrvColumns,
sal_Bool _bCaseSensitive,const ::std::vector< ::rtl::OUString> &_rVector,
sal_Bool _bAddColumn = sal_False,sal_Bool _bDropColumn = sal_False);
2000-09-18 23:16:46 +00:00
~OColumns();
//XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
//XTypeProvider
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::lang::XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
// column settings persistence
/** load the columns UI information from the given configuration node. You can decide whether or not the current
location (aka configuration node) of the container is set to the given node afterwards.<BR>
If the container does contain any columns when this method is called, the informations are merged by name,
i.e. for each column under the node the routine tries to find a column with the same name and overwrites
it's settings, else it creates a new one.
@param _rxLocation the configuration node where the column UI informations are stored
@param _pColFactory a factory for columns which have to be newly created. Must not be NULL.
@param _bAdjustLocation determines if the configuration node of the container should be set to _rxLocation
(this applies only on a successfull load)
@see OColumn::readUIFrom
@see storeSettings
*/
virtual void loadSettings(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation,
const IColumnFactory* _pColFactory,
sal_Bool _bAdjustLocation);
/** store the columns configuration information under the current configuration node.
@see OColumn::writeUITo
@see storeSettingsTo
@see storeSettingsAs
*/
virtual void storeSettings();
/** store the columns UI information under the given configuration node. The current location (aka
configuration node) of the container is not affected.
@param _rxLocation the new location
@see OColumn::writeUITo
@see storeSettings
@see storeSettingsAs
*/
virtual void storeSettingsTo(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation);
/** store the columns UI information under the given configuration node, which becomes
the current node afterwards
@param _rxLocation the new location
@see OColumn::writeUITo
@see storeSettingsTo
@see storeSettings
*/
virtual void storeSettingsAs(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation);
/** return the configuration node where the column's UI informations are stored
@see loadSettings
@see storeSettings
@see storeSettingsTo
@see storeSettingsAs
*/
::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >
getUILocation() const { return m_xConfigurationNode; }
// XAppend
virtual void SAL_CALL appendByDescriptor( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException);
// XDrop
virtual void SAL_CALL dropByName( const ::rtl::OUString& elementName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL dropByIndex( sal_Int32 index ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
void append(const ::rtl::OUString& rName, OColumn*);
void clearColumns();
};
#if 0
protected:
OColumn();
OColumn(const ::rtl::OUString& _rName);
public:
OColumn(const OColumn& _rSource);
virtual ~OColumn();
// com::sun::star::lang::XTypeProvider
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
// com::sun::star::uno::XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException);
// cppu::OComponentHelper
virtual void SAL_CALL disposing(void);
// com::sun::star::beans::XPropertySet
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
2000-10-11 10:07:08 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
// cppu::OPropertySetHelper
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
virtual sal_Bool SAL_CALL convertFastPropertyValue(
::com::sun::star::uno::Any & rConvertedValue,
::com::sun::star::uno::Any & rOldValue,
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException);
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
const ::com::sun::star::uno::Any& rValue
)
throw (::com::sun::star::uno::Exception);
virtual void SAL_CALL getFastPropertyValue( ::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const;
// ::com::sun::star::container::XNamed
virtual ::rtl::OUString SAL_CALL getName( ) throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setName( const ::rtl::OUString& aName ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::lang::XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
// Helper
// void adjustTo(const OColumn& rCol);
// void setNameImpl(const rtl::OUString& rName) { m_sName = rName; }
protected:
/** write the connection independent information (i.e. the hidden flag or the column width) to the given stream.
@param _rxConfigNode the configuratoin node to write to
@return sal_True, if anything has been written (i.e. there is at least one non-default property)
sal_False else
*/
sal_Bool writeUITo(const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxConfigNode);
/** read the connection independent information (i.e. te hidden flag or the column width) from the given configuration node.
@param _rxConfigNode the configuratoin node to read from
*/
void readUIFrom(const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxConfigNode);
protected:
void construct();
void construct(const OColumn& _rSource);
// void construct(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet >& _rxSet, sal_Int32 _nRelativePosition);
};
//============================================================
//= OColumns
//============================================================
2000-10-11 10:07:08 +00:00
typedef ::std::hash_map<rtl::OUString, OColumn*, ::comphelper::UStringMixHash, ::comphelper::UStringMixEqual> OColumnMap;
2000-09-18 23:16:46 +00:00
typedef ::std::vector<OColumn*> OColumnArray;
typedef ::cppu::WeakImplHelper6< ::com::sun::star::lang::XServiceInfo,
::com::sun::star::container::XEnumerationAccess,
::com::sun::star::container::XNameAccess,
::com::sun::star::container::XIndexAccess,
::com::sun::star::sdbcx::XAppend,
::com::sun::star::sdbcx::XDrop
> OColumns_Base;
//------------------------------------------------------------
class OColumns : public OColumns_Base
{
protected:
// parent access
::cppu::OWeakObject& m_rParent; // used for ref counting
::osl::Mutex& m_rMutex; // the parent mutex
// single column access
OColumnArray m_aColArray;
OColumnMap* m_pColMap;
// configuration
::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >
m_xConfigurationNode;
sal_Bool m_bInitialized : 1;
public:
sal_Bool isCaseSensitive() const { return m_pColMap->key_comp().isCaseSensitive(); }
/** set the new case sensitivity flag. will delete all existing columns, so be sure you know what you're doing ...
*/
void setCaseSensitive(sal_Bool bCaseSensitive);
/** flag which determines whether the container is filled or not
*/
sal_Bool isInitialized() const { return m_bInitialized; }
void setInitialized() {m_bInitialized = sal_True;}
public:
/** constructs an empty container without configuration location.
@param rParent the parent object. This instance will be used for refcounting, so the parent
cannot die before the container does.
@param _rMutex the mutex of the parent.
@param _bCaseSensitive the initial case sensitivity flag
@see setCaseSensitive
*/
OColumns(::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex, sal_Bool _bCaseSensitive);
~OColumns();
// dispatch the refcounting to the parent
virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { m_rParent.acquire(); }
virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { m_rParent.release(); }
// ::com::sun::star::lang::XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::container::XElementAccess
virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL hasElements( ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::container::XEnumerationAccess
virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL createEnumeration( ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::container::XIndexAccess
virtual sal_Int32 SAL_CALL getCount( ) throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw(::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
// ::com::sun::star::container::XNameAccess
virtual ::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) throw(::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames( ) throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::sdbcx::XAppend
virtual void SAL_CALL appendByDescriptor( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException);
// ::com::sun::star::sdbcx::XDrop
virtual void SAL_CALL dropByName( const ::rtl::OUString& elementName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL dropByIndex( sal_Int32 index ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
// helper
/** returns the one-based (!) index of the column with the given name, if any.
*/
sal_Int32 findColumn(const rtl::OUString& columnName) throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException );
/** load the columns UI information from the given configuration node. You can decide whether or not the current
location (aka configuration node) of the container is set to the given node afterwards.<BR>
If the container does contain any columns when this method is called, the informations are merged by name,
i.e. for each column under the node the routine tries to find a column with the same name and overwrites
it's settings, else it creates a new one.
@param _rxLocation the configuration node where the column UI informations are stored
@param _bAdjustLocation determines if the configuration node of the container should be set to _rxLocation
(this applies only on a successfull load)
@see OColumn::readUIFrom
@see storeSettings
@see createColumn
*/
virtual void loadSettings(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation,
sal_Bool _bAdjustLocation);
/** store the columns configuration information under the current configuration node.
@see OColumn::writeUITo
@see storeSettingsTo
@see storeSettingsAs
*/
virtual void storeSettings();
/** store the columns UI information under the given configuration node. The current location (aka
configuration node) of the container is not affected.
@param _rxLocation the new location
@see OColumn::writeUITo
@see storeSettings
@see storeSettingsAs
*/
virtual void storeSettingsTo(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation);
/** store the columns UI information under the given configuration node, which becomes
the current node afterwards
@param _rxLocation the new location
@see OColumn::writeUITo
@see storeSettingsTo
@see storeSettings
*/
virtual void storeSettingsAs(
const ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >& _rxLocation);
/** return the configuration node where the column's UI informations are stored
@see loadSettings
@see storeSettings
@see storeSettingsTo
@see storeSettingsAs
*/
::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >
getUILocation() const { return m_xConfigurationNode; }
/** delete all columns from the container
*/
void clearColumns();
virtual void disposing();
// const OColumn* at(const rtl::OUString& rName) const;
// OColumn* operator[] (sal_Int32 nIndex) {return m_aColArray[nIndex];}
// const OColumn* operator[] (sal_Int32 nIndex) const {return m_aColArray[nIndex];}
protected:
/** creates an empty column. May be overwritten by derived classes.
The new object must not be aquired.
*/
virtual OColumn* createColumn(const ::rtl::OUString& _rName) const { return new OColumn(_rName); }
void append(OColumn*);
};
#endif
#endif // _DBA_COREAPI_COLUMN_HXX_