/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_DBACCESS_SOURCE_CORE_INC_DEFINITIONCOLUMN_HXX #define INCLUDED_DBACCESS_SOURCE_CORE_INC_DEFINITIONCOLUMN_HXX #include "apitools.hxx" #include "column.hxx" #include "columnsettings.hxx" #include #include #include #include #include #include namespace dbaccess { typedef ::cppu::ImplHelper1< css::container::XChild > TXChild; // OTableColumnDescriptor /** * provides the properties for description. A descriptor could be used to create a new table column. */ class OTableColumnDescriptor : public OColumn ,public OColumnSettings ,public ::comphelper::OPropertyArrayUsageHelper < OTableColumnDescriptor > ,public TXChild { css::uno::Reference< css::uno::XInterface > m_xParent; const bool m_bActAsDescriptor; protected: // OUString m_aTypeName; OUString m_aDescription; OUString m_aDefaultValue; OUString m_aAutoIncrementValue; sal_Int32 m_nType; sal_Int32 m_nPrecision; sal_Int32 m_nScale; sal_Int32 m_nIsNullable; bool m_bAutoIncrement; bool m_bRowVersion; bool m_bCurrency; // public: OTableColumnDescriptor( const bool _bActAsDescriptor ) :OColumn( !_bActAsDescriptor ) ,m_bActAsDescriptor( _bActAsDescriptor ) ,m_nType( css::sdbc::DataType::SQLNULL ) ,m_nPrecision( 0 ) ,m_nScale( 0 ) ,m_nIsNullable( css::sdbc::ColumnValue::NULLABLE_UNKNOWN ) ,m_bAutoIncrement( false ) ,m_bRowVersion( false ) ,m_bCurrency( false ) { impl_registerProperties(); } DECLARE_XINTERFACE( ) // css::lang::XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::lang::XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::container::XChild virtual css::uno::Reference< css::uno::XInterface > SAL_CALL getParent( ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL setParent( const css::uno::Reference< css::uno::XInterface >& Parent ) throw (css::lang::NoSupportException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ::comphelper::OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE; // ::cppu::OPropertySetHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue ) throw (css::uno::Exception, std::exception) SAL_OVERRIDE; private: void impl_registerProperties(); }; // OTableColumn class OTableColumn; typedef ::comphelper::OPropertyArrayUsageHelper < OTableColumn > OTableColumn_PBase; /** describes a column of a table */ class OTableColumn :public OTableColumnDescriptor ,public OTableColumn_PBase { protected: virtual ~OTableColumn(); public: OTableColumn(const OUString& _rName); // XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE; }; // OQueryColumn class OQueryColumn; typedef ::comphelper::OPropertyArrayUsageHelper< OQueryColumn > OQueryColumn_PBase; /** a column of a Query, with additional information obtained from parsing the query statement */ class OQueryColumn :public OTableColumnDescriptor ,public OQueryColumn_PBase { // OUString m_sCatalogName; OUString m_sSchemaName; OUString m_sTableName; OUString m_sRealName; OUString m_sLabel; // css::uno::Reference< css::beans::XPropertySet > m_xOriginalTableColumn; protected: virtual ~OQueryColumn(); public: OQueryColumn( const css::uno::Reference< css::beans::XPropertySet>& _rxParserColumn, const css::uno::Reference< css::sdbc::XConnection >& _rxConnection, const OUString &i_sLabel ); // XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // *Property* virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE; virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE; private: css::uno::Reference< css::beans::XPropertySet > impl_determineOriginalTableColumn( const css::uno::Reference< css::sdbc::XConnection >& _rxConnection ); using ::cppu::OPropertySetHelper::getFastPropertyValue; }; // OColumnWrapper /** * describes all properties for a columns of a table. Only the view parts are provided * directly, all the other parts are derived from a driver implementation */ class OColumnWrapper :public OColumn { protected: // definition which is provided by a driver! css::uno::Reference< css::beans::XPropertySet > m_xAggregate; sal_Int32 m_nColTypeID; protected: OColumnWrapper( const css::uno::Reference< css::beans::XPropertySet >& _rCol, const bool _bNameIsReadOnly ); virtual ~OColumnWrapper(); public: virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE; virtual sal_Bool SAL_CALL convertFastPropertyValue( css::uno::Any & rConvertedValue, css::uno::Any & rOldValue, sal_Int32 nHandle, const css::uno::Any& rValue ) throw (css::lang::IllegalArgumentException) SAL_OVERRIDE; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue ) throw (css::uno::Exception, std::exception) SAL_OVERRIDE; protected: OUString impl_getPropertyNameFromHandle( const sal_Int32 _nHandle ) const; protected: using OColumn::getFastPropertyValue; }; // OTableColumnDescriptorWrapper /** * provides the properties for description. A descriptor could be used to create a new table column. */ class OTableColumnDescriptorWrapper :public OColumnWrapper ,public OColumnSettings ,public ::comphelper::OIdPropertyArrayUsageHelper < OTableColumnDescriptorWrapper > { const bool m_bPureWrap; const bool m_bIsDescriptor; public: OTableColumnDescriptorWrapper(const css::uno::Reference< css::beans::XPropertySet >& rCol, const bool _bPureWrap, const bool _bIsDescriptor ); // css::lang::XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::lang::XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // OIdPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const SAL_OVERRIDE; // cppu::OPropertySetHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue, sal_Int32 nHandle ) const SAL_OVERRIDE; virtual sal_Bool SAL_CALL convertFastPropertyValue( css::uno::Any & rConvertedValue, css::uno::Any & rOldValue, sal_Int32 nHandle, const css::uno::Any& rValue ) throw (css::lang::IllegalArgumentException) SAL_OVERRIDE; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue ) throw (css::uno::Exception, std::exception) SAL_OVERRIDE; protected: using OColumnWrapper::getFastPropertyValue; }; // OTableColumnWrapper /** * describes all properties for a columns of a table. Only the view parts are provided * directly, all the other parts are derived from a driver implementation */ class OTableColumnWrapper :public OTableColumnDescriptorWrapper ,public ::comphelper::OIdPropertyArrayUsageHelper < OTableColumnWrapper > { protected: virtual ~OTableColumnWrapper(); public: OTableColumnWrapper( const css::uno::Reference< css::beans::XPropertySet >& rCol, const css::uno::Reference< css::beans::XPropertySet >& rColDefintion, const bool _bPureWrap ); // css::lang::XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::lang::XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // OIdPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const SAL_OVERRIDE; }; } #endif // INCLUDED_DBACCESS_SOURCE_CORE_INC_DEFINITIONCOLUMN_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */