/* -*- 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 CONNECTIVITY_TABLEHELPER_HXX #define CONNECTIVITY_TABLEHELPER_HXX #include "connectivity/dbtoolsdllapi.hxx" #include "connectivity/sdbcx/VTable.hxx" #include "connectivity/sdbcx/VKey.hxx" #include "connectivity/StdTypeDefs.hxx" #include #include #include #include #include namespace connectivity { typedef sal_Int32 OrdinalPosition; struct ColumnDesc { OUString sName; OUString aField6; OUString sField12; // REMARKS OUString sField13; sal_Int32 nField5 , nField7 , nField9 , nField11; OrdinalPosition nOrdinalPosition; ColumnDesc() {} ColumnDesc( const OUString& _rName , sal_Int32 _nField5 , const OUString& _aField6 , sal_Int32 _nField7 , sal_Int32 _nField9 , sal_Int32 _nField11 , const OUString& _sField12 , const OUString& _sField13 ,OrdinalPosition _nPosition ) :sName( _rName ) ,aField6(_aField6) ,sField12(_sField12) ,sField13(_sField13) ,nField5(_nField5) ,nField7(_nField7) ,nField9(_nField9) ,nField11(_nField11) ,nOrdinalPosition( _nPosition ) { } }; typedef connectivity::sdbcx::OTable OTable_TYPEDEF; OOO_DLLPUBLIC_DBTOOLS OUString getTypeString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp); DECLARE_STL_USTRINGACCESS_MAP( sdbcx::TKeyProperties , TKeyMap); struct OTableHelperImpl; class OOO_DLLPUBLIC_DBTOOLS OTableHelper : public OTable_TYPEDEF { ::std::auto_ptr m_pImpl; void refreshPrimaryKeys(TStringVector& _rKeys); void refreshForeignKeys(TStringVector& _rKeys); protected: /** creates the column collection for the table @param _rNames The column names. */ virtual sdbcx::OCollection* createColumns(const TStringVector& _rNames) = 0; /** creates the key collection for the table @param _rNames The key names. */ virtual sdbcx::OCollection* createKeys(const TStringVector& _rNames) = 0; /** creates the index collection for the table @param _rNames The index names. */ virtual sdbcx::OCollection* createIndexes(const TStringVector& _rNames) = 0; /** this function is called upon disposing the component */ virtual void SAL_CALL disposing(); /** The default returns "RENAME TABLE " or "RENAME VIEW " depending on the type. * * \return The start of the rename statement. */ virtual OUString getRenameStart() const; virtual ~OTableHelper(); public: virtual void refreshColumns(); virtual void refreshKeys(); virtual void refreshIndexes(); const ColumnDesc* getColumnDescription(const OUString& _sName) const; public: OTableHelper( sdbcx::OCollection* _pTables, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection, sal_Bool _bCase); OTableHelper( sdbcx::OCollection* _pTables, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection, sal_Bool _bCase, const OUString& _Name, const OUString& _Type, const OUString& _Description = OUString(), const OUString& _SchemaName = OUString(), const OUString& _CatalogName = OUString() ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData> getMetaData() const; ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> getConnection() const; virtual void SAL_CALL acquire() throw(); virtual void SAL_CALL release() throw(); // XRename virtual void SAL_CALL rename( const OUString& newName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException); // XAlterTable virtual void SAL_CALL alterColumnByIndex( sal_Int32 index, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); // XNamed virtual OUString SAL_CALL getName() throw(::com::sun::star::uno::RuntimeException); // helper method to get key properties sdbcx::TKeyProperties getKeyProperties(const OUString& _sName) const; void addKey(const OUString& _sName,const sdbcx::TKeyProperties& _aKeyProperties); virtual OUString getTypeCreatePattern() const; ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XTableRename> getRenameService() const; ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XTableAlteration> getAlterService() const; ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XKeyAlteration> getKeyService() const; ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XIndexAlteration> getIndexService() const; }; } #endif // CONNECTIVITY_TABLEHELPER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */