2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
#include "dbu_reghelper.hxx"
|
|
|
|
#include "dbu_resource.hrc"
|
|
|
|
#include "dbu_uno.hrc"
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#include "moduledbu.hxx"
|
|
|
|
#include "sqlmessage.hxx"
|
|
|
|
#include "WCopyTable.hxx"
|
|
|
|
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/sdb/application/XCopyTableWizard.hpp>
|
|
|
|
#include <com/sun/star/sdb/application/CopyTableContinuation.hpp>
|
|
|
|
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
|
|
|
|
#include <com/sun/star/ucb/AlreadyInitializedException.hpp>
|
|
|
|
#include <com/sun/star/lang/NotInitializedException.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XDataSource.hpp>
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
|
|
|
#include <com/sun/star/container/XChild.hpp>
|
2012-10-02 15:03:12 +02:00
|
|
|
#include <com/sun/star/task/InteractionHandler.hpp>
|
2008-01-30 07:56:36 +00:00
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
2012-09-18 09:46:34 +02:00
|
|
|
#include <com/sun/star/sdb/DatabaseContext.hpp>
|
2008-01-30 07:56:36 +00:00
|
|
|
#include <com/sun/star/sdb/XDocumentDataSource.hpp>
|
|
|
|
#include <com/sun/star/sdb/XCompletedConnection.hpp>
|
|
|
|
#include <com/sun/star/sdb/CommandType.hpp>
|
|
|
|
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
|
|
|
|
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
|
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
|
|
#include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XParameters.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
2009-11-11 14:01:37 +01:00
|
|
|
#include <com/sun/star/sdbc/XBlob.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XClob.hpp>
|
2008-01-30 07:56:36 +00:00
|
|
|
#include <com/sun/star/sdbcx/XRowLocate.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
|
|
|
|
#include <com/sun/star/sdb/SQLContext.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XDriverManager.hpp>
|
|
|
|
|
|
|
|
#include <comphelper/componentcontext.hxx>
|
|
|
|
#include <comphelper/interaction.hxx>
|
|
|
|
#include <comphelper/namedvaluecollection.hxx>
|
|
|
|
#include <comphelper/proparrhlp.hxx>
|
|
|
|
#include <connectivity/dbexception.hxx>
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
#include <cppuhelper/exc_hlp.hxx>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
2009-04-23 10:42:05 +00:00
|
|
|
#include <rtl/logfile.hxx>
|
2008-01-30 07:56:36 +00:00
|
|
|
#include <svtools/genericunodialog.hxx>
|
|
|
|
#include <tools/diagnose_ex.h>
|
|
|
|
#include <unotools/sharedunocomponent.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <vcl/waitobj.hxx>
|
|
|
|
|
|
|
|
//........................................................................
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//........................................................................
|
|
|
|
|
|
|
|
/** === begin UNO using === **/
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::com::sun::star::uno::XInterface;
|
|
|
|
using ::com::sun::star::uno::UNO_QUERY;
|
|
|
|
using ::com::sun::star::uno::UNO_QUERY_THROW;
|
|
|
|
using ::com::sun::star::uno::UNO_SET_THROW;
|
|
|
|
using ::com::sun::star::uno::Exception;
|
|
|
|
using ::com::sun::star::uno::RuntimeException;
|
|
|
|
using ::com::sun::star::uno::Any;
|
|
|
|
using ::com::sun::star::uno::makeAny;
|
|
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
using ::com::sun::star::beans::XPropertySetInfo;
|
|
|
|
using ::com::sun::star::lang::XMultiServiceFactory;
|
|
|
|
using ::com::sun::star::beans::Property;
|
|
|
|
using ::com::sun::star::sdb::application::XCopyTableWizard;
|
|
|
|
using ::com::sun::star::sdb::application::XCopyTableListener;
|
|
|
|
using ::com::sun::star::sdb::application::CopyTableRowEvent;
|
|
|
|
using ::com::sun::star::beans::Optional;
|
|
|
|
using ::com::sun::star::lang::IllegalArgumentException;
|
|
|
|
using ::com::sun::star::ucb::AlreadyInitializedException;
|
|
|
|
using ::com::sun::star::beans::XPropertySet;
|
|
|
|
using ::com::sun::star::lang::NotInitializedException;
|
|
|
|
using ::com::sun::star::lang::XServiceInfo;
|
|
|
|
using ::com::sun::star::sdbc::XConnection;
|
|
|
|
using ::com::sun::star::sdbc::XDataSource;
|
|
|
|
using ::com::sun::star::container::XNameAccess;
|
|
|
|
using ::com::sun::star::container::XChild;
|
2012-10-02 15:03:12 +02:00
|
|
|
using ::com::sun::star::task::InteractionHandler;
|
2008-01-30 07:56:36 +00:00
|
|
|
using ::com::sun::star::task::XInteractionHandler;
|
|
|
|
using ::com::sun::star::frame::XModel;
|
2012-09-18 09:46:34 +02:00
|
|
|
using ::com::sun::star::sdb::DatabaseContext;
|
|
|
|
using ::com::sun::star::sdb::XDatabaseContext;
|
2008-01-30 07:56:36 +00:00
|
|
|
using ::com::sun::star::sdb::XDocumentDataSource;
|
|
|
|
using ::com::sun::star::sdb::XCompletedConnection;
|
|
|
|
using ::com::sun::star::lang::WrappedTargetException;
|
|
|
|
using ::com::sun::star::sdbcx::XTablesSupplier;
|
|
|
|
using ::com::sun::star::sdb::XQueriesSupplier;
|
|
|
|
using ::com::sun::star::lang::DisposedException;
|
|
|
|
using ::com::sun::star::sdbc::XPreparedStatement;
|
|
|
|
using ::com::sun::star::sdb::XSingleSelectQueryComposer;
|
|
|
|
using ::com::sun::star::sdbc::XDatabaseMetaData;
|
|
|
|
using ::com::sun::star::sdbcx::XColumnsSupplier;
|
|
|
|
using ::com::sun::star::sdbc::XParameters;
|
|
|
|
using ::com::sun::star::sdbc::XResultSet;
|
|
|
|
using ::com::sun::star::sdbc::XRow;
|
2009-11-11 14:01:37 +01:00
|
|
|
using ::com::sun::star::sdbc::XBlob;
|
|
|
|
using ::com::sun::star::sdbc::XClob;
|
2008-01-30 07:56:36 +00:00
|
|
|
using ::com::sun::star::sdbcx::XRowLocate;
|
|
|
|
using ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
|
|
|
|
using ::com::sun::star::sdbc::XResultSetMetaData;
|
|
|
|
using ::com::sun::star::sdbc::SQLException;
|
|
|
|
using ::com::sun::star::sdb::SQLContext;
|
|
|
|
using ::com::sun::star::sdbc::XDriverManager;
|
|
|
|
using ::com::sun::star::beans::PropertyValue;
|
|
|
|
/** === end UNO using === **/
|
|
|
|
namespace CopyTableOperation = ::com::sun::star::sdb::application::CopyTableOperation;
|
|
|
|
namespace CopyTableContinuation = ::com::sun::star::sdb::application::CopyTableContinuation;
|
|
|
|
namespace CommandType = ::com::sun::star::sdb::CommandType;
|
|
|
|
namespace DataType = ::com::sun::star::sdbc::DataType;
|
|
|
|
|
|
|
|
typedef ::utl::SharedUNOComponent< XConnection > SharedConnection;
|
|
|
|
|
|
|
|
//=========================================================================
|
|
|
|
//= CopyTableWizard
|
|
|
|
//=========================================================================
|
|
|
|
typedef ::svt::OGenericUnoDialog CopyTableWizard_DialogBase;
|
|
|
|
typedef ::cppu::ImplInheritanceHelper1 < CopyTableWizard_DialogBase
|
|
|
|
, XCopyTableWizard
|
|
|
|
> CopyTableWizard_Base;
|
|
|
|
class CopyTableWizard
|
|
|
|
:public CopyTableWizard_Base
|
|
|
|
,public ::comphelper::OPropertyArrayUsageHelper< CopyTableWizard >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// XServiceInfo
|
|
|
|
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(RuntimeException);
|
|
|
|
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(RuntimeException);
|
|
|
|
|
|
|
|
// XServiceInfo - static methods
|
|
|
|
static Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( RuntimeException );
|
|
|
|
static ::rtl::OUString getImplementationName_Static(void) throw( RuntimeException );
|
|
|
|
static Reference< XInterface > Create( const Reference< XMultiServiceFactory >& );
|
|
|
|
|
|
|
|
// XCopyTableWizard
|
|
|
|
virtual ::sal_Int16 SAL_CALL getOperation() throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL setOperation( ::sal_Int16 _operation ) throw (IllegalArgumentException, RuntimeException);
|
|
|
|
virtual ::rtl::OUString SAL_CALL getDestinationTableName() throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL setDestinationTableName( const ::rtl::OUString& _destinationTableName ) throw (RuntimeException);
|
|
|
|
virtual Optional< ::rtl::OUString > SAL_CALL getCreatePrimaryKey() throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL setCreatePrimaryKey( const Optional< ::rtl::OUString >& _newPrimaryKey ) throw (IllegalArgumentException, RuntimeException);
|
2009-07-06 09:00:26 +00:00
|
|
|
virtual sal_Bool SAL_CALL getUseHeaderLineAsColumnNames() throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL setUseHeaderLineAsColumnNames( sal_Bool _bUseHeaderLineAsColumnNames ) throw (RuntimeException);
|
2008-01-30 07:56:36 +00:00
|
|
|
virtual void SAL_CALL addCopyTableListener( const Reference< XCopyTableListener >& Listener ) throw (RuntimeException);
|
|
|
|
virtual void SAL_CALL removeCopyTableListener( const Reference< XCopyTableListener >& Listener ) throw (RuntimeException);
|
|
|
|
|
|
|
|
// XCopyTableWizard::XExecutableDialog
|
|
|
|
virtual void SAL_CALL setTitle( const ::rtl::OUString& aTitle ) throw (RuntimeException);
|
|
|
|
virtual ::sal_Int16 SAL_CALL execute( ) throw (RuntimeException);
|
|
|
|
|
|
|
|
// XInitialization
|
|
|
|
virtual void SAL_CALL initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException);
|
|
|
|
|
|
|
|
// XPropertySet
|
|
|
|
virtual Reference< XPropertySetInfo > SAL_CALL getPropertySetInfo() throw(RuntimeException);
|
|
|
|
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
|
|
|
|
|
|
|
|
// OPropertyArrayUsageHelper
|
|
|
|
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
::osl::Mutex& getMutex() { return m_aMutex; }
|
|
|
|
bool isInitialized() const { return m_xSourceConnection.is() && m_pSourceObject.get() && m_xDestConnection.is(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CopyTableWizard( const Reference< XMultiServiceFactory >& _rxORB );
|
|
|
|
~CopyTableWizard();
|
|
|
|
|
|
|
|
// OGenericUnoDialog overridables
|
|
|
|
virtual Dialog* createDialog( Window* _pParent );
|
|
|
|
virtual void executedDialog( sal_Int16 _nExecutionResult );
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// ensures our current attribute values are reflected in the dialog
|
|
|
|
void impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const;
|
|
|
|
|
|
|
|
/// ensures the current dialog settings are reflected in our attributes
|
|
|
|
void impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog );
|
|
|
|
|
|
|
|
/** returns our typed dialog
|
|
|
|
|
|
|
|
@throws ::com::sun::star::uno::RuntimeException
|
|
|
|
if we don't have a dialog at the moment the method is called
|
|
|
|
*/
|
|
|
|
OCopyTableWizard&
|
|
|
|
impl_getDialog_throw();
|
|
|
|
|
|
|
|
/** returns our typed dialog
|
|
|
|
|
|
|
|
@throws ::com::sun::star::uno::RuntimeException
|
|
|
|
if we don't have a dialog at the moment the method is called
|
|
|
|
*/
|
|
|
|
const OCopyTableWizard&
|
|
|
|
impl_getDialog_throw() const;
|
|
|
|
|
|
|
|
/** ensures the given argument sequence contains a valid data access descriptor at the given position
|
|
|
|
@param _rAllArgs
|
|
|
|
the arguments as passed to ->initialize
|
|
|
|
@param _nArgPos
|
|
|
|
the position within ->_rAllArgs which contains the data access descriptor
|
|
|
|
@param _out_rxConnection
|
|
|
|
will, upon successful return, contain the connection for the data source
|
|
|
|
@param _out_rxDocInteractionHandler
|
|
|
|
will, upon successful return, contain the interaction handler which could
|
|
|
|
be deduced from database document described by the descriptor, if any.
|
|
|
|
(It is possible that the descriptor does not allow to deduce a database document,
|
|
|
|
in which case <code>_out_rxDocInteractionHandler</code> will be <NULL/>.)
|
|
|
|
@return the data access descriptor
|
|
|
|
*/
|
|
|
|
Reference< XPropertySet >
|
|
|
|
impl_ensureDataAccessDescriptor_throw(
|
|
|
|
const Sequence< Any >& _rAllArgs,
|
|
|
|
const sal_Int16 _nArgPos,
|
|
|
|
SharedConnection& _out_rxConnection,
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler >& _out_rxDocInteractionHandler
|
2008-01-30 07:56:36 +00:00
|
|
|
) const;
|
|
|
|
|
|
|
|
/** extracts the source object (table or query) described by the given descriptor,
|
|
|
|
relative to m_xSourceConnection
|
|
|
|
*/
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
2008-01-30 07:56:36 +00:00
|
|
|
::std::auto_ptr< ICopyTableSourceObject >
|
|
|
|
impl_extractSourceObject_throw(
|
|
|
|
const Reference< XPropertySet >& _rxDescriptor,
|
|
|
|
sal_Int32& _out_rCommandType
|
|
|
|
) const;
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_POP
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
/** extracts the result set to copy records from, and the selection-related aspects, if any.
|
|
|
|
|
|
|
|
Effectively, this method extracts m_xSourceResultSet, m_aSourceSelection, and m_bSourceSelectionBookmarks.
|
|
|
|
|
|
|
|
If an inconsistent/insufficent sub set of those properties is present in the descriptor, and exception
|
|
|
|
is thrown.
|
|
|
|
*/
|
|
|
|
void impl_extractSourceResultSet_throw(
|
|
|
|
const Reference< XPropertySet >& i_rDescriptor
|
|
|
|
);
|
|
|
|
|
2008-01-30 07:56:36 +00:00
|
|
|
/** checks whether the given copy source descriptor contains settings which are not
|
|
|
|
supported (yet)
|
|
|
|
|
|
|
|
Throws an IllegalArgumentException if the descriptor contains a valid setting, which is
|
|
|
|
not yet supported.
|
|
|
|
*/
|
|
|
|
void impl_checkForUnsupportedSettings_throw(
|
|
|
|
const Reference< XPropertySet >& _rxSourceDescriptor ) const;
|
|
|
|
|
|
|
|
/** obtaines the connection described by the given data access descriptor
|
|
|
|
|
|
|
|
If needed and possible, the method will ask the user, using the interaction
|
|
|
|
handler associated with the database described by the descriptor.
|
|
|
|
|
|
|
|
All errors are handled with the InteractionHandler associated with the data source,
|
|
|
|
if there is one. Else, they will be silenced (but asserted in non-product builds).
|
|
|
|
|
|
|
|
@param _rxDataSourceDescriptor
|
|
|
|
the data access descriptor describing the data source whose connection
|
|
|
|
should be obtained. Must not be <NULL/>.
|
|
|
|
@param _out_rxDocInteractionHandler
|
|
|
|
the interaction handler which could be deduced from the descriptor
|
|
|
|
|
|
|
|
@throws RuntimeException
|
|
|
|
if anything goes seriously wrong.
|
|
|
|
*/
|
|
|
|
SharedConnection
|
|
|
|
impl_extractConnection_throw(
|
|
|
|
const Reference< XPropertySet >& _rxDataSourceDescriptor,
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler >& _out_rxDocInteractionHandler
|
2008-01-30 07:56:36 +00:00
|
|
|
) const;
|
|
|
|
|
|
|
|
/** actually copies the table
|
|
|
|
|
|
|
|
This method is called after the dialog has been successfully executed.
|
|
|
|
*/
|
|
|
|
void impl_doCopy_nothrow();
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
/** creates the INSERT INTO statement
|
|
|
|
@param _xTable The destination table.
|
|
|
|
*/
|
2010-01-11 12:15:28 +01:00
|
|
|
::rtl::OUString impl_getServerSideCopyStatement_throw( const Reference< XPropertySet >& _xTable );
|
2009-04-23 10:42:05 +00:00
|
|
|
|
2008-01-30 07:56:36 +00:00
|
|
|
/** creates the statement which, when executed, will produce the source data to copy
|
|
|
|
|
|
|
|
If the source object refers to a query which contains parameters, those parameters
|
|
|
|
are filled in, using an interaction handler.
|
|
|
|
*/
|
|
|
|
::utl::SharedUNOComponent< XPreparedStatement >
|
|
|
|
impl_createSourceStatement_throw() const;
|
|
|
|
|
|
|
|
/** copies the data rows from the given source result set to the given destination table
|
|
|
|
*/
|
|
|
|
void impl_copyRows_throw(
|
|
|
|
const Reference< XResultSet >& _rxSourceResultSet,
|
|
|
|
const Reference< XPropertySet >& _rxDestTable
|
|
|
|
);
|
|
|
|
|
2010-12-04 12:33:49 +09:00
|
|
|
/** processes an error which occurred during copying
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
First, all listeners are ask. If a listener tells to cancel or continue copying, this is reported to the
|
|
|
|
method's caller. If a listener tells to ask the user, this is done, and the user's decision is
|
|
|
|
reported to the method's caller.
|
|
|
|
|
|
|
|
@return
|
|
|
|
<TRUE/> if and only if copying should be continued.
|
|
|
|
*/
|
|
|
|
bool impl_processCopyError_nothrow(
|
|
|
|
const CopyTableRowEvent& _rEvent );
|
|
|
|
|
|
|
|
private:
|
|
|
|
::comphelper::ComponentContext m_aContext;
|
|
|
|
|
|
|
|
// attributes
|
|
|
|
sal_Int16 m_nOperation;
|
|
|
|
::rtl::OUString m_sDestinationTable;
|
|
|
|
Optional< ::rtl::OUString > m_aPrimaryKeyName;
|
2009-07-06 09:00:26 +00:00
|
|
|
sal_Bool m_bUseHeaderLineAsColumnNames;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
// source
|
|
|
|
SharedConnection m_xSourceConnection;
|
|
|
|
sal_Int32 m_nCommandType;
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
2008-01-30 07:56:36 +00:00
|
|
|
::std::auto_ptr< ICopyTableSourceObject >
|
|
|
|
m_pSourceObject;
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_POP
|
2010-01-11 12:15:28 +01:00
|
|
|
Reference< XResultSet > m_xSourceResultSet;
|
2008-01-30 07:56:36 +00:00
|
|
|
Sequence< Any > m_aSourceSelection;
|
2010-01-11 12:15:28 +01:00
|
|
|
sal_Bool m_bSourceSelectionBookmarks;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
// destination
|
|
|
|
SharedConnection m_xDestConnection;
|
|
|
|
|
|
|
|
// other
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > m_xInteractionHandler;
|
2008-01-30 07:56:36 +00:00
|
|
|
::cppu::OInterfaceContainerHelper
|
|
|
|
m_aCopyTableListeners;
|
|
|
|
sal_Int16 m_nOverrideExecutionResult;
|
|
|
|
};
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//=========================================================================
|
|
|
|
//= MethodGuard
|
|
|
|
//=========================================================================
|
|
|
|
class CopyTableAccessGuard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CopyTableAccessGuard( CopyTableWizard& _rWizard )
|
|
|
|
:m_rWizard( _rWizard )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
m_rWizard.getMutex().acquire();
|
|
|
|
if ( !m_rWizard.isInitialized() )
|
|
|
|
throw NotInitializedException();
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
~CopyTableAccessGuard()
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
m_rWizard.getMutex().release();
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
private:
|
|
|
|
CopyTableWizard& m_rWizard;
|
|
|
|
};
|
|
|
|
|
|
|
|
//=========================================================================
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
CopyTableWizard::CopyTableWizard( const Reference< XMultiServiceFactory >& _rxORB )
|
|
|
|
:CopyTableWizard_Base( _rxORB )
|
|
|
|
,m_aContext( _rxORB )
|
|
|
|
,m_nOperation( CopyTableOperation::CopyDefinitionAndData )
|
|
|
|
,m_sDestinationTable()
|
|
|
|
,m_aPrimaryKeyName( sal_False, ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ID" ) ))
|
2009-07-06 09:00:26 +00:00
|
|
|
,m_bUseHeaderLineAsColumnNames( sal_True )
|
2009-04-23 10:42:05 +00:00
|
|
|
,m_xSourceConnection()
|
|
|
|
,m_nCommandType( CommandType::COMMAND )
|
|
|
|
,m_pSourceObject()
|
2010-01-11 12:15:28 +01:00
|
|
|
,m_xSourceResultSet()
|
2009-04-23 10:42:05 +00:00
|
|
|
,m_aSourceSelection()
|
2010-01-11 12:15:28 +01:00
|
|
|
,m_bSourceSelectionBookmarks( sal_True )
|
2009-04-23 10:42:05 +00:00
|
|
|
,m_xDestConnection()
|
|
|
|
,m_aCopyTableListeners( m_aMutex )
|
|
|
|
,m_nOverrideExecutionResult( -1 )
|
|
|
|
{
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
CopyTableWizard::~CopyTableWizard()
|
|
|
|
{
|
|
|
|
acquire();
|
|
|
|
|
|
|
|
// protect some members whose dtor might potentially throw
|
|
|
|
try { m_xSourceConnection.clear(); }
|
|
|
|
catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); }
|
|
|
|
try { m_xDestConnection.clear(); }
|
|
|
|
catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); }
|
|
|
|
|
|
|
|
// TODO: shouldn't we have explicit disposal support? If a listener is registered
|
|
|
|
// at our instance, and perhaps holds this our instance by a hard ref, then we'll never
|
2010-01-11 12:15:28 +01:00
|
|
|
// be destroyed.
|
2009-04-23 10:42:05 +00:00
|
|
|
// However, adding XComponent support to the GenericUNODialog probably requires
|
|
|
|
// some thinking - would it break existing clients which do not call a dispose, then?
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
Reference< XInterface > CopyTableWizard::Create( const Reference< XMultiServiceFactory >& _rxFactory )
|
|
|
|
{
|
|
|
|
return *( new CopyTableWizard( _rxFactory ) );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL CopyTableWizard::getImplementationName() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
return getImplementationName_Static();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::rtl::OUString CopyTableWizard::getImplementationName_Static() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "org.openoffice.comp.dbu.CopyTableWizard" ) );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::comphelper::StringSequence SAL_CALL CopyTableWizard::getSupportedServiceNames() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
return getSupportedServiceNames_Static();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::comphelper::StringSequence CopyTableWizard::getSupportedServiceNames_Static() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
::comphelper::StringSequence aSupported(1);
|
|
|
|
aSupported.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.sdb.application.CopyTableWizard" ) );
|
|
|
|
return aSupported;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
Reference< XPropertySetInfo > SAL_CALL CopyTableWizard::getPropertySetInfo() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
Reference< XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
|
|
|
|
return xInfo;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::sal_Int16 SAL_CALL CopyTableWizard::getOperation() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
return m_nOperation;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::setOperation( ::sal_Int16 _operation ) throw (IllegalArgumentException, RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
|
|
|
|
if ( ( _operation != CopyTableOperation::CopyDefinitionAndData )
|
|
|
|
&& ( _operation != CopyTableOperation::CopyDefinitionOnly )
|
|
|
|
&& ( _operation != CopyTableOperation::CreateAsView )
|
|
|
|
&& ( _operation != CopyTableOperation::AppendData )
|
|
|
|
)
|
|
|
|
throw IllegalArgumentException( ::rtl::OUString(), *this, 1 );
|
|
|
|
|
|
|
|
if ( ( _operation == CopyTableOperation::CreateAsView )
|
|
|
|
&& !OCopyTableWizard::supportsViews( m_xDestConnection )
|
|
|
|
)
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
String( ModuleRes( STR_CTW_NO_VIEWS_SUPPORT ) ),
|
|
|
|
*this,
|
|
|
|
1
|
|
|
|
);
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
m_nOperation = _operation;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL CopyTableWizard::getDestinationTableName() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
return m_sDestinationTable;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::setDestinationTableName( const ::rtl::OUString& _destinationTableName ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
m_sDestinationTable = _destinationTableName;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
Optional< ::rtl::OUString > SAL_CALL CopyTableWizard::getCreatePrimaryKey() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
return m_aPrimaryKeyName;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::setCreatePrimaryKey( const Optional< ::rtl::OUString >& _newPrimaryKey ) throw (IllegalArgumentException, RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
|
|
|
|
if ( _newPrimaryKey.IsPresent && !OCopyTableWizard::supportsPrimaryKey( m_xDestConnection ) )
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
String( ModuleRes( STR_CTW_NO_PRIMARY_KEY_SUPPORT ) ),
|
|
|
|
*this,
|
|
|
|
1
|
|
|
|
);
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
m_aPrimaryKeyName = _newPrimaryKey;
|
|
|
|
}
|
2009-07-06 09:00:26 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL CopyTableWizard::getUseHeaderLineAsColumnNames() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
return m_bUseHeaderLineAsColumnNames;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::setUseHeaderLineAsColumnNames( sal_Bool _bUseHeaderLineAsColumnNames ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
m_bUseHeaderLineAsColumnNames = _bUseHeaderLineAsColumnNames;
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::addCopyTableListener( const Reference< XCopyTableListener >& _rxListener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
if ( _rxListener.is() )
|
|
|
|
m_aCopyTableListeners.addInterface( _rxListener );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::removeCopyTableListener( const Reference< XCopyTableListener >& _rxListener ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
if ( _rxListener.is() )
|
|
|
|
m_aCopyTableListeners.removeInterface( _rxListener );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::setTitle( const ::rtl::OUString& _rTitle ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
|
|
|
CopyTableWizard_DialogBase::setTitle( _rTitle );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::sal_Int16 SAL_CALL CopyTableWizard::execute( ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
CopyTableAccessGuard aGuard( *this );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
m_nOverrideExecutionResult = -1;
|
|
|
|
sal_Int16 nExecutionResult = CopyTableWizard_DialogBase::execute();
|
|
|
|
if ( m_nOverrideExecutionResult )
|
|
|
|
nExecutionResult = m_nOverrideExecutionResult;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
return nExecutionResult;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
OCopyTableWizard& CopyTableWizard::impl_getDialog_throw()
|
|
|
|
{
|
|
|
|
OCopyTableWizard* pWizard = dynamic_cast< OCopyTableWizard* >( m_pDialog );
|
|
|
|
if ( !pWizard )
|
|
|
|
throw DisposedException( ::rtl::OUString(), *this );
|
|
|
|
return *pWizard;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
const OCopyTableWizard& CopyTableWizard::impl_getDialog_throw() const
|
|
|
|
{
|
|
|
|
const OCopyTableWizard* pWizard = dynamic_cast< const OCopyTableWizard* >( m_pDialog );
|
|
|
|
if ( !pWizard )
|
|
|
|
throw DisposedException( ::rtl::OUString(), *const_cast< CopyTableWizard* >( this ) );
|
|
|
|
return *pWizard;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const
|
|
|
|
{
|
|
|
|
// primary key column
|
|
|
|
_rDialog.setCreatePrimaryKey( m_aPrimaryKeyName.IsPresent, m_aPrimaryKeyName.Value );
|
2009-07-06 09:00:26 +00:00
|
|
|
_rDialog.setUseHeaderLine(m_bUseHeaderLineAsColumnNames);
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// everything else was passed at construction time already
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog )
|
|
|
|
{
|
|
|
|
m_aPrimaryKeyName.IsPresent = _rDialog.shouldCreatePrimaryKey();
|
|
|
|
if ( m_aPrimaryKeyName.IsPresent )
|
|
|
|
m_aPrimaryKeyName.Value = _rDialog.getPrimaryKeyName();
|
|
|
|
else
|
|
|
|
m_aPrimaryKeyName.Value = ::rtl::OUString();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
m_sDestinationTable = _rDialog.getName();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
m_nOperation = _rDialog.getOperation();
|
2009-07-06 09:00:26 +00:00
|
|
|
m_bUseHeaderLineAsColumnNames = _rDialog.UseHeaderLine();
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
//.....................................................................
|
|
|
|
/** tries to obtain the InteractionHandler associated with a given data source
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
If the data source is a sdb-level data source, it will have a DatabaseDocument associated
|
|
|
|
with it. This doocument may have an InteractionHandler used while loading it.
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
@throws RuntimeException
|
|
|
|
if it occures during invoking any of the data source's methods, or if any of the involved
|
|
|
|
components violates its contract by not providing the required interfaces
|
|
|
|
*/
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > lcl_getInteractionHandler_throw( const Reference< XDataSource >& _rxDataSource, const Reference< XInteractionHandler >& _rFallback )
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > xHandler( _rFallback );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// try to obtain the document model
|
|
|
|
Reference< XModel > xDocumentModel;
|
|
|
|
Reference< XDocumentDataSource > xDocDataSource( _rxDataSource, UNO_QUERY );
|
|
|
|
if ( xDocDataSource.is() )
|
|
|
|
xDocumentModel.set( xDocDataSource->getDatabaseDocument(), UNO_QUERY_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// see whether the document model can provide a handler
|
|
|
|
if ( xDocumentModel.is() )
|
|
|
|
{
|
|
|
|
::comphelper::NamedValueCollection aModelArgs( xDocumentModel->getArgs() );
|
|
|
|
xHandler = aModelArgs.getOrDefault( "InteractionHandler", xHandler );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
return xHandler;
|
|
|
|
}
|
|
|
|
//.....................................................................
|
|
|
|
/** tries to obtain the InteractionHandler associated with a given connection
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
If the connection belongs to a sdb-level data source, then this data source
|
|
|
|
is examined for an interaction handler. Else, <NULL/> is returned.
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
@throws RuntimeException
|
|
|
|
if it occures during invoking any of the data source's methods, or if any of the involved
|
|
|
|
components violates its contract by not providing the required interfaces
|
|
|
|
*/
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > lcl_getInteractionHandler_throw( const Reference< XConnection >& _rxConnection, const Reference< XInteractionHandler >& _rFallback )
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
// try whether there is a data source which the connection belongs to
|
|
|
|
Reference< XDataSource > xDataSource;
|
|
|
|
Reference< XChild > xAsChild( _rxConnection, UNO_QUERY );
|
|
|
|
if ( xAsChild.is() )
|
|
|
|
xDataSource = xDataSource.query( xAsChild->getParent() );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( xDataSource.is() )
|
|
|
|
return lcl_getInteractionHandler_throw( xDataSource, _rFallback );
|
|
|
|
|
|
|
|
return _rFallback;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
Reference< XPropertySet > CopyTableWizard::impl_ensureDataAccessDescriptor_throw(
|
|
|
|
const Sequence< Any >& _rAllArgs, const sal_Int16 _nArgPos, SharedConnection& _out_rxConnection,
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler >& _out_rxDocInteractionHandler ) const
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
Reference< XPropertySet > xDescriptor;
|
|
|
|
_rAllArgs[ _nArgPos ] >>= xDescriptor;
|
|
|
|
|
|
|
|
// the descriptor must be non-NULL, of course
|
|
|
|
bool bIsValid = xDescriptor.is();
|
|
|
|
|
|
|
|
// it must support the proper service
|
|
|
|
if ( bIsValid )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XServiceInfo > xSI( xDescriptor, UNO_QUERY );
|
|
|
|
bIsValid = ( xSI.is()
|
|
|
|
&& xSI->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.sdb.DataAccessDescriptor" ) ) )
|
|
|
|
);
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// it must be able to provide a connection
|
|
|
|
if ( bIsValid )
|
|
|
|
{
|
|
|
|
_out_rxConnection = impl_extractConnection_throw( xDescriptor, _out_rxDocInteractionHandler );
|
|
|
|
bIsValid = _out_rxConnection.is();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( !bIsValid )
|
|
|
|
{
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
String( ModuleRes( STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR ) ),
|
|
|
|
*const_cast< CopyTableWizard* >( this ),
|
|
|
|
_nArgPos + 1
|
|
|
|
);
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
return xDescriptor;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
bool lcl_hasNonEmptyStringValue_throw( const Reference< XPropertySet >& _rxDescriptor,
|
|
|
|
const Reference< XPropertySetInfo > _rxPSI, const ::rtl::OUString& _rPropertyName )
|
|
|
|
{
|
|
|
|
::rtl::OUString sValue;
|
|
|
|
if ( _rxPSI->hasPropertyByName( _rPropertyName ) )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
OSL_VERIFY( _rxDescriptor->getPropertyValue( _rPropertyName ) >>= sValue );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2011-12-19 18:10:37 -02:00
|
|
|
return !sValue.isEmpty();
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_checkForUnsupportedSettings_throw( const Reference< XPropertySet >& _rxSourceDescriptor ) const
|
|
|
|
{
|
|
|
|
OSL_PRECOND( _rxSourceDescriptor.is(), "CopyTableWizard::impl_checkForUnsupportedSettings_throw: illegal argument!" );
|
|
|
|
Reference< XPropertySetInfo > xPSI( _rxSourceDescriptor->getPropertySetInfo(), UNO_SET_THROW );
|
|
|
|
::rtl::OUString sUnsupportedSetting;
|
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
const ::rtl::OUString aSettings[] = {
|
|
|
|
PROPERTY_FILTER, PROPERTY_ORDER, PROPERTY_HAVING_CLAUSE, PROPERTY_GROUP_BY
|
|
|
|
};
|
2012-05-31 12:36:21 +01:00
|
|
|
for ( size_t i=0; i < sizeof( aSettings ) / sizeof( aSettings[0] ); ++i )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2010-01-11 12:15:28 +01:00
|
|
|
if ( lcl_hasNonEmptyStringValue_throw( _rxSourceDescriptor, xPSI, aSettings[i] ) )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2010-01-11 12:15:28 +01:00
|
|
|
sUnsupportedSetting = aSettings[i];
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sUnsupportedSetting.isEmpty() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2012-02-15 15:26:43 +01:00
|
|
|
::rtl::OUString sMessage(
|
|
|
|
rtl::OUString(String(ModuleRes(STR_CTW_ERROR_UNSUPPORTED_SETTING))).
|
2012-03-08 00:49:32 +01:00
|
|
|
replaceFirst("$name$", sUnsupportedSetting));
|
2009-04-23 10:42:05 +00:00
|
|
|
throw IllegalArgumentException(
|
|
|
|
sMessage,
|
|
|
|
*const_cast< CopyTableWizard* >( this ),
|
|
|
|
1
|
|
|
|
);
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
2009-04-23 10:42:05 +00:00
|
|
|
::std::auto_ptr< ICopyTableSourceObject > CopyTableWizard::impl_extractSourceObject_throw( const Reference< XPropertySet >& _rxDescriptor, sal_Int32& _out_rCommandType ) const
|
|
|
|
{
|
|
|
|
OSL_PRECOND( _rxDescriptor.is() && m_xSourceConnection.is(), "CopyTableWizard::impl_extractSourceObject_throw: illegal arguments!" );
|
|
|
|
|
|
|
|
Reference< XPropertySetInfo > xPSI( _rxDescriptor->getPropertySetInfo(), UNO_SET_THROW );
|
|
|
|
if ( !xPSI->hasPropertyByName( PROPERTY_COMMAND )
|
|
|
|
|| !xPSI->hasPropertyByName( PROPERTY_COMMAND_TYPE )
|
|
|
|
)
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Expecting a table or query specification." ) ),
|
2010-01-11 12:15:28 +01:00
|
|
|
// TODO: resource
|
2009-04-23 10:42:05 +00:00
|
|
|
*const_cast< CopyTableWizard* >( this ),
|
|
|
|
1
|
|
|
|
);
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::OUString sCommand;
|
|
|
|
_out_rCommandType = CommandType::COMMAND;
|
|
|
|
OSL_VERIFY( _rxDescriptor->getPropertyValue( PROPERTY_COMMAND ) >>= sCommand );
|
|
|
|
OSL_VERIFY( _rxDescriptor->getPropertyValue( PROPERTY_COMMAND_TYPE ) >>= _out_rCommandType );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::std::auto_ptr< ICopyTableSourceObject > pSourceObject;
|
|
|
|
Reference< XNameAccess > xContainer;
|
|
|
|
switch ( _out_rCommandType )
|
|
|
|
{
|
|
|
|
case CommandType::TABLE:
|
|
|
|
{
|
|
|
|
Reference< XTablesSupplier > xSuppTables( m_xSourceConnection.getTyped(), UNO_QUERY );
|
|
|
|
if ( xSuppTables.is() )
|
|
|
|
xContainer.set( xSuppTables->getTables(), UNO_SET_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
break;
|
|
|
|
case CommandType::QUERY:
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XQueriesSupplier > xSuppQueries( m_xSourceConnection.getTyped(), UNO_QUERY );
|
|
|
|
if ( xSuppQueries.is() )
|
|
|
|
xContainer.set( xSuppQueries->getQueries(), UNO_SET_THROW );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
String( ModuleRes( STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT ) ),
|
|
|
|
*const_cast< CopyTableWizard* >( this ),
|
|
|
|
1
|
|
|
|
);
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( xContainer.is() )
|
|
|
|
{
|
|
|
|
pSourceObject.reset( new ObjectCopySource( m_xSourceConnection,
|
|
|
|
Reference< XPropertySet >( xContainer->getByName( sCommand ), UNO_QUERY_THROW ) ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// our source connection is an SDBC level connection only, not a SDBCX level one
|
|
|
|
// Which means it cannot provide the to-be-copied object as component.
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( _out_rCommandType == CommandType::QUERY )
|
|
|
|
// we cannot copy a query if the connection cannot provide it ...
|
2008-01-30 07:56:36 +00:00
|
|
|
throw IllegalArgumentException(
|
2009-11-27 10:17:16 +01:00
|
|
|
String(ModuleRes( STR_CTW_ERROR_NO_QUERY )),
|
2008-01-30 07:56:36 +00:00
|
|
|
*const_cast< CopyTableWizard* >( this ),
|
|
|
|
1
|
|
|
|
);
|
2009-04-23 10:42:05 +00:00
|
|
|
pSourceObject.reset( new NamedTableCopySource( m_xSourceConnection, sCommand ) );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
return pSourceObject;
|
|
|
|
}
|
2011-09-22 15:00:08 +01:00
|
|
|
SAL_WNODEPRECATED_DECLARATIONS_POP
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_extractSourceResultSet_throw( const Reference< XPropertySet >& i_rDescriptor )
|
|
|
|
{
|
|
|
|
Reference< XPropertySetInfo > xPSI( i_rDescriptor->getPropertySetInfo(), UNO_SET_THROW );
|
|
|
|
|
|
|
|
// extract relevant settings
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_RESULT_SET ) )
|
|
|
|
m_xSourceResultSet.set( i_rDescriptor->getPropertyValue( PROPERTY_RESULT_SET ), UNO_QUERY );
|
|
|
|
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_SELECTION ) )
|
|
|
|
OSL_VERIFY( i_rDescriptor->getPropertyValue( PROPERTY_SELECTION ) >>= m_aSourceSelection );
|
|
|
|
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_BOOKMARK_SELECTION ) )
|
|
|
|
OSL_VERIFY( i_rDescriptor->getPropertyValue( PROPERTY_BOOKMARK_SELECTION ) >>= m_bSourceSelectionBookmarks );
|
|
|
|
|
|
|
|
// sanity checks
|
|
|
|
const bool bHasResultSet = m_xSourceResultSet.is();
|
|
|
|
const bool bHasSelection = ( m_aSourceSelection.getLength() != 0 );
|
|
|
|
if ( bHasSelection && !bHasResultSet )
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "A result set is needed when specifying a selection to copy." ) ),
|
|
|
|
// TODO: resource
|
|
|
|
*this,
|
|
|
|
1
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( bHasSelection && m_bSourceSelectionBookmarks )
|
|
|
|
{
|
|
|
|
Reference< XRowLocate > xRowLocate( m_xSourceResultSet, UNO_QUERY );
|
|
|
|
if ( !xRowLocate.is() )
|
|
|
|
{
|
|
|
|
::dbtools::throwGenericSQLException(
|
|
|
|
String( ModuleRes( STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS ) ),
|
|
|
|
*this
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
SharedConnection CopyTableWizard::impl_extractConnection_throw( const Reference< XPropertySet >& _rxDataSourceDescriptor,
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler >& _out_rxDocInteractionHandler ) const
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
SharedConnection xConnection;
|
|
|
|
|
|
|
|
OSL_PRECOND( _rxDataSourceDescriptor.is(), "CopyTableWizard::impl_extractConnection_throw: no descriptor!" );
|
|
|
|
if ( !_rxDataSourceDescriptor.is() )
|
|
|
|
return xConnection;
|
|
|
|
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > xInteractionHandler;
|
2009-04-23 10:42:05 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Reference< XPropertySetInfo > xPSI( _rxDataSourceDescriptor->getPropertySetInfo(), UNO_SET_THROW );
|
|
|
|
|
|
|
|
// if there's an ActiveConnection, use it
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_ACTIVE_CONNECTION ) )
|
|
|
|
{
|
|
|
|
Reference< XConnection > xPure;
|
|
|
|
OSL_VERIFY( _rxDataSourceDescriptor->getPropertyValue( PROPERTY_ACTIVE_CONNECTION ) >>= xPure );
|
|
|
|
xConnection.reset( xPure, SharedConnection::NoTakeOwnership );
|
|
|
|
}
|
|
|
|
if ( xConnection.is() )
|
|
|
|
{
|
|
|
|
xInteractionHandler = lcl_getInteractionHandler_throw( xConnection.getTyped(), m_xInteractionHandler );
|
|
|
|
OSL_POSTCOND( xInteractionHandler.is(), "CopyTableWizard::impl_extractConnection_throw: lcl_getInteractionHandler_throw returned nonsense!" );
|
2008-01-30 07:56:36 +00:00
|
|
|
break;
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// there could be a DataSourceName or a DatabaseLocation, describing the css.sdb.DataSource
|
|
|
|
::rtl::OUString sDataSource, sDatabaseLocation;
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_DATASOURCENAME ) )
|
|
|
|
OSL_VERIFY( _rxDataSourceDescriptor->getPropertyValue( PROPERTY_DATASOURCENAME ) >>= sDataSource );
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_DATABASE_LOCATION ) )
|
|
|
|
OSL_VERIFY( _rxDataSourceDescriptor->getPropertyValue( PROPERTY_DATABASE_LOCATION ) >>= sDatabaseLocation );
|
|
|
|
|
|
|
|
// need a DatabaseContext for loading the data source
|
2012-09-18 09:46:34 +02:00
|
|
|
Reference< XDatabaseContext > xDatabaseContext = DatabaseContext::create( m_aContext.getUNOContext() );
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XDataSource > xDataSource;
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sDataSource.isEmpty() )
|
2009-04-23 10:42:05 +00:00
|
|
|
xDataSource.set( xDatabaseContext->getByName( sDataSource ), UNO_QUERY_THROW );
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !xDataSource.is() && !sDatabaseLocation.isEmpty() )
|
2009-04-23 10:42:05 +00:00
|
|
|
xDataSource.set( xDatabaseContext->getByName( sDatabaseLocation ), UNO_QUERY_THROW );
|
|
|
|
|
|
|
|
if ( xDataSource.is() )
|
|
|
|
{
|
|
|
|
// first, try connecting with completion
|
|
|
|
xInteractionHandler = lcl_getInteractionHandler_throw( xDataSource, m_xInteractionHandler );
|
|
|
|
OSL_POSTCOND( xInteractionHandler.is(), "CopyTableWizard::impl_extractConnection_throw: lcl_getInteractionHandler_throw returned nonsense!" );
|
|
|
|
if ( xInteractionHandler.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XCompletedConnection > xInteractiveConnection( xDataSource, UNO_QUERY );
|
|
|
|
if ( xInteractiveConnection.is() )
|
|
|
|
xConnection.reset( xInteractiveConnection->connectWithCompletion( xInteractionHandler ), SharedConnection::TakeOwnership );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// interactively connecting was not successful or possible -> connect without interaction
|
|
|
|
if ( !xConnection.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
xConnection.reset( xDataSource->getConnection( ::rtl::OUString(), ::rtl::OUString() ), SharedConnection::TakeOwnership );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( xConnection.is() )
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// finally, there could be a ConnectionResource/ConnectionInfo
|
|
|
|
::rtl::OUString sConnectionResource;
|
|
|
|
Sequence< PropertyValue > aConnectionInfo;
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_CONNECTION_RESOURCE ) )
|
|
|
|
OSL_VERIFY( _rxDataSourceDescriptor->getPropertyValue( PROPERTY_CONNECTION_RESOURCE ) >>= sConnectionResource );
|
|
|
|
if ( xPSI->hasPropertyByName( PROPERTY_CONNECTION_INFO ) )
|
|
|
|
OSL_VERIFY( _rxDataSourceDescriptor->getPropertyValue( PROPERTY_CONNECTION_INFO ) >>= aConnectionInfo );
|
|
|
|
|
|
|
|
Reference< XDriverManager > xDriverManager;
|
|
|
|
xDriverManager.set( m_aContext.createComponent( "com.sun.star.sdbc.ConnectionPool" ), UNO_QUERY );
|
|
|
|
if ( !xDriverManager.is() )
|
|
|
|
// no connection pool installed
|
|
|
|
xDriverManager.set( m_aContext.createComponent( "com.sun.star.sdbc.DriverManager" ), UNO_QUERY_THROW );
|
|
|
|
|
|
|
|
if ( aConnectionInfo.getLength() )
|
|
|
|
xConnection.set( xDriverManager->getConnectionWithInfo( sConnectionResource, aConnectionInfo ), UNO_SET_THROW );
|
|
|
|
else
|
|
|
|
xConnection.set( xDriverManager->getConnection( sConnectionResource ), UNO_SET_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
while ( false );
|
|
|
|
|
|
|
|
if ( xInteractionHandler != m_xInteractionHandler )
|
|
|
|
_out_rxDocInteractionHandler = xInteractionHandler;
|
|
|
|
|
|
|
|
return xConnection;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::utl::SharedUNOComponent< XPreparedStatement > CopyTableWizard::impl_createSourceStatement_throw() const
|
|
|
|
{
|
|
|
|
OSL_PRECOND( m_xSourceConnection.is(), "CopyTableWizard::impl_createSourceStatement_throw: illegal call!" );
|
|
|
|
if ( !m_xSourceConnection.is() )
|
2012-04-12 18:05:34 +05:30
|
|
|
throw RuntimeException( "CopyTableWizard::impl_createSourceStatement_throw: illegal call!", *const_cast< CopyTableWizard* >( this ));
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::utl::SharedUNOComponent< XPreparedStatement > xStatement;
|
|
|
|
switch ( m_nCommandType )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
case CommandType::TABLE:
|
|
|
|
xStatement.set( m_pSourceObject->getPreparedSelectStatement(), UNO_SET_THROW );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case CommandType::QUERY:
|
|
|
|
{
|
|
|
|
::rtl::OUString sQueryCommand( m_pSourceObject->getSelectStatement() );
|
|
|
|
xStatement.set( m_pSourceObject->getPreparedSelectStatement(), UNO_SET_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// check whether we have to fill in parameter values
|
|
|
|
// create and fill a composer
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XMultiServiceFactory > xFactory( m_xSourceConnection, UNO_QUERY );
|
|
|
|
::utl::SharedUNOComponent< XSingleSelectQueryComposer > xComposer;
|
|
|
|
if ( xFactory.is() )
|
|
|
|
// note: connections below the sdb-level are allowed to not support the XMultiServiceFactory interface
|
|
|
|
xComposer.set( xFactory->createInstance( SERVICE_NAME_SINGLESELECTQUERYCOMPOSER ), UNO_QUERY );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( xComposer.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
xComposer->setQuery( sQueryCommand );
|
|
|
|
|
|
|
|
Reference< XParameters > xStatementParams( xStatement, UNO_QUERY );
|
|
|
|
OSL_ENSURE( xStatementParams.is(), "CopyTableWizard::impl_createSourceStatement_throw: no access to the statement's parameters!" );
|
|
|
|
// the statement should be a css.sdbc.PreparedStatement (this is what
|
|
|
|
// we created), and a prepared statement is required to support XParameters
|
|
|
|
if ( xStatementParams.is() )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( m_xInteractionHandler.is(),
|
|
|
|
"CopyTableWizard::impl_createSourceStatement_throw: no interaction handler for the parameters request!" );
|
|
|
|
// we should always have an interaction handler - as last fallback, we create an own one in ::initialize
|
|
|
|
|
|
|
|
if ( m_xInteractionHandler.is() )
|
|
|
|
::dbtools::askForParameters( xComposer, xStatementParams, m_xSourceConnection, m_xInteractionHandler );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// this should not have survived initialization phase
|
2012-04-12 18:05:34 +05:30
|
|
|
throw RuntimeException("No case matched, this should not have survived the initialization phase", *const_cast< CopyTableWizard* >( this ));
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return xStatement;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
class ValueTransfer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ValueTransfer( const sal_Int32& _rSourcePos, const sal_Int32& _rDestPos, const ::std::vector< sal_Int32 >& _rColTypes,
|
|
|
|
const Reference< XRow >& _rxSource, const Reference< XParameters >& _rxDest )
|
|
|
|
:m_rSourcePos( _rSourcePos )
|
|
|
|
,m_rDestPos( _rDestPos )
|
|
|
|
,m_rColTypes( _rColTypes )
|
|
|
|
,m_xSource( _rxSource )
|
|
|
|
,m_xDest( _rxDest )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
template< typename VALUE_TYPE >
|
|
|
|
void transferValue( VALUE_TYPE ( SAL_CALL XRow::*_pGetter )( sal_Int32 ),
|
|
|
|
void (SAL_CALL XParameters::*_pSetter)( sal_Int32, VALUE_TYPE ) )
|
|
|
|
{
|
|
|
|
VALUE_TYPE value( (m_xSource.get()->*_pGetter)( m_rSourcePos ) );
|
|
|
|
if ( m_xSource->wasNull() )
|
|
|
|
m_xDest->setNull( m_rDestPos, m_rColTypes[ m_rSourcePos ] );
|
|
|
|
else
|
|
|
|
(m_xDest.get()->*_pSetter)( m_rDestPos, value );
|
|
|
|
}
|
CWS-TOOLING: integrate CWS dba32c
2009-06-29 20:53:25 +0200 fs r273484 : #i103138# Rectangle conversion
2009-06-29 20:51:50 +0200 fs r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time
2009-06-29 13:40:26 +0200 fs r273470 : added svn:ignore to ignore output paths
2009-06-29 10:08:54 +0200 fs r273455 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-25 13:41:35 +0200 msc r273380 : #100000# the tabs changed die to new properties
2009-06-24 12:42:40 +0200 msc r273330 : #102082# remove issue warning
2009-06-22 10:43:14 +0200 fs r273201 : createPrimitive2DSequence: care for being disposed
2009-06-18 12:35:13 +0200 oj r273109 : #i102305# make nooptfiles for gcc
2009-06-17 12:14:37 +0200 oj r273056 : #i102305# fix for linux
2009-06-17 07:20:22 +0200 oj r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux
2009-06-17 07:17:28 +0200 oj r273045 : #i102305# use varchar
2009-06-15 14:11:27 +0200 fs r272983 : added since tag
2009-06-15 12:11:39 +0200 oj r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted
2009-06-15 11:08:53 +0200 fs r272969 : #i10000#
2009-06-15 09:25:13 +0200 fs r272963 : merging fix for P1 issue #i102701#
2009-06-11 11:31:24 +0200 fs r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src
2009-06-11 09:38:14 +0200 fs r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50)
2009-06-02 09:53:10 +0200 fs r272483 : #i10000#
2009-05-29 15:55:03 +0200 fs r272465 : #i100818#
2009-05-29 12:58:43 +0200 fs r272452 : don't apply comphelper::getString on possibly VOID any
2009-05-29 10:38:35 +0200 oj r272437 : #i101519# handle where condition
2009-05-29 09:53:39 +0200 fs r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex
2009-05-28 07:53:44 +0200 oj r272375 : #i101369# parse tree changed
2009-05-27 14:53:36 +0200 fs r272347 : #i10000#
2009-05-27 09:29:15 +0200 oj r272327 : #i101626# check for double before hard cast
2009-05-27 09:13:58 +0200 oj r272326 : #i101626# handle void correctly
2009-05-27 08:04:39 +0200 oj r272321 : #i102256# wrong method signature used
2009-05-27 07:55:52 +0200 oj r272320 : #i101519# look up parameter typ if used in function
2009-05-27 06:49:07 +0200 oj r272319 : #i101519# set parameter from rowset as well
2009-05-26 13:30:56 +0200 oj r272297 : #i101987# impl XBatchExecution
2009-05-26 12:44:34 +0200 oj r272293 : #i101700# check if group is not set
2009-05-26 12:16:53 +0200 oj r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition
2009-05-26 12:12:42 +0200 oj r272289 : #i101369# fix for or on one line criteria
2009-05-25 16:02:25 +0200 fs r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR
2009-05-25 16:01:55 +0200 fs r272256 : merging the changes from CWS dba32b herein
2009-05-25 15:49:57 +0200 fs r272254 : #i999704#
2009-05-25 15:32:57 +0200 fs r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property
2009-05-25 15:23:43 +0200 fs r272251 : don't pass empty Anys to ::comphelper::getString
2009-05-25 14:48:43 +0200 fs r272248 : merged changes from CWS dba32b herein
2009-05-25 14:44:40 +0200 fs r272247 : #i99704# support new MouseWheelBehavior property
2009-05-25 14:43:18 +0200 fs r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property)
2009-05-25 14:41:03 +0200 fs r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default
2009-05-25 14:39:31 +0200 fs r272243 : removed dead import
2009-05-25 14:35:36 +0200 fs r272242 : the new EnableVisible doesn't make sense for grid columns
2009-05-25 14:34:33 +0200 fs r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent
2009-05-25 14:26:11 +0200 fs r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel
2009-05-23 21:35:59 +0200 fs r272213 : localize 'sub component opened/closed' event
2009-05-22 21:42:47 +0200 fs r272211 : #i102003#
2009-05-22 21:42:20 +0200 fs r272210 : grammar
2009-05-22 21:36:10 +0200 fs r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously
2009-05-22 21:35:11 +0200 fs r272208 : #i102140# +clear
2009-05-22 14:50:30 +0200 fs r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG
2009-05-22 12:03:42 +0200 fs r272180 : #i88878#
provided by noel.power@novell.com
implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs
2009-05-15 15:37:31 +0200 fs r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them
2009-05-15 15:33:11 +0200 fs r271940 : don't call comphelper::getFOO for VOID values
2009-05-15 15:08:31 +0200 fs r271937 : includes
2009-05-15 13:39:22 +0200 fs r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint
2009-05-15 12:33:48 +0200 fs r271933 : make the geometry a part of the ControlPrimitive2D's identity
2009-05-15 10:15:44 +0200 fs r271928 : #i10000#
2009-05-14 20:55:38 +0200 fs r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:55:31 +0200 fs r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:23:23 +0200 fs r271919 : #i101622#
2009-05-14 16:04:38 +0200 fs r271898 : don't use comphelper::getInt32 on voids
2009-05-14 16:04:12 +0200 fs r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b)
2009-05-14 15:36:55 +0200 fs r271895 : merging changes from DEV300:m48
2009-05-07 14:43:19 +0200 fs r271670 : #i101477#
2009-05-07 14:37:30 +0200 fs r271668 : #i101477#
2009-05-07 09:27:30 +0200 oj r271628 : #i101343# remove pch
2009-05-06 09:36:02 +0200 fs r271568 : getFoo: diagnostics
2009-05-04 09:23:06 +0200 oj r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47)
2009-04-29 23:18:13 +0200 fs r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control
2009-04-29 13:52:25 +0200 fs r271366 : #i101308#
2009-07-03 14:21:50 +00:00
|
|
|
template< typename VALUE_TYPE >
|
2009-04-23 10:42:05 +00:00
|
|
|
void transferComplexValue( VALUE_TYPE ( SAL_CALL XRow::*_pGetter )( sal_Int32 ),
|
|
|
|
void (SAL_CALL XParameters::*_pSetter)( sal_Int32, const VALUE_TYPE& ) )
|
|
|
|
{
|
CWS-TOOLING: integrate CWS dba32c
2009-06-29 20:53:25 +0200 fs r273484 : #i103138# Rectangle conversion
2009-06-29 20:51:50 +0200 fs r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time
2009-06-29 13:40:26 +0200 fs r273470 : added svn:ignore to ignore output paths
2009-06-29 10:08:54 +0200 fs r273455 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-25 13:41:35 +0200 msc r273380 : #100000# the tabs changed die to new properties
2009-06-24 12:42:40 +0200 msc r273330 : #102082# remove issue warning
2009-06-22 10:43:14 +0200 fs r273201 : createPrimitive2DSequence: care for being disposed
2009-06-18 12:35:13 +0200 oj r273109 : #i102305# make nooptfiles for gcc
2009-06-17 12:14:37 +0200 oj r273056 : #i102305# fix for linux
2009-06-17 07:20:22 +0200 oj r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux
2009-06-17 07:17:28 +0200 oj r273045 : #i102305# use varchar
2009-06-15 14:11:27 +0200 fs r272983 : added since tag
2009-06-15 12:11:39 +0200 oj r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted
2009-06-15 11:08:53 +0200 fs r272969 : #i10000#
2009-06-15 09:25:13 +0200 fs r272963 : merging fix for P1 issue #i102701#
2009-06-11 11:31:24 +0200 fs r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src
2009-06-11 09:38:14 +0200 fs r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50)
2009-06-02 09:53:10 +0200 fs r272483 : #i10000#
2009-05-29 15:55:03 +0200 fs r272465 : #i100818#
2009-05-29 12:58:43 +0200 fs r272452 : don't apply comphelper::getString on possibly VOID any
2009-05-29 10:38:35 +0200 oj r272437 : #i101519# handle where condition
2009-05-29 09:53:39 +0200 fs r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex
2009-05-28 07:53:44 +0200 oj r272375 : #i101369# parse tree changed
2009-05-27 14:53:36 +0200 fs r272347 : #i10000#
2009-05-27 09:29:15 +0200 oj r272327 : #i101626# check for double before hard cast
2009-05-27 09:13:58 +0200 oj r272326 : #i101626# handle void correctly
2009-05-27 08:04:39 +0200 oj r272321 : #i102256# wrong method signature used
2009-05-27 07:55:52 +0200 oj r272320 : #i101519# look up parameter typ if used in function
2009-05-27 06:49:07 +0200 oj r272319 : #i101519# set parameter from rowset as well
2009-05-26 13:30:56 +0200 oj r272297 : #i101987# impl XBatchExecution
2009-05-26 12:44:34 +0200 oj r272293 : #i101700# check if group is not set
2009-05-26 12:16:53 +0200 oj r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition
2009-05-26 12:12:42 +0200 oj r272289 : #i101369# fix for or on one line criteria
2009-05-25 16:02:25 +0200 fs r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR
2009-05-25 16:01:55 +0200 fs r272256 : merging the changes from CWS dba32b herein
2009-05-25 15:49:57 +0200 fs r272254 : #i999704#
2009-05-25 15:32:57 +0200 fs r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property
2009-05-25 15:23:43 +0200 fs r272251 : don't pass empty Anys to ::comphelper::getString
2009-05-25 14:48:43 +0200 fs r272248 : merged changes from CWS dba32b herein
2009-05-25 14:44:40 +0200 fs r272247 : #i99704# support new MouseWheelBehavior property
2009-05-25 14:43:18 +0200 fs r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property)
2009-05-25 14:41:03 +0200 fs r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default
2009-05-25 14:39:31 +0200 fs r272243 : removed dead import
2009-05-25 14:35:36 +0200 fs r272242 : the new EnableVisible doesn't make sense for grid columns
2009-05-25 14:34:33 +0200 fs r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent
2009-05-25 14:26:11 +0200 fs r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel
2009-05-23 21:35:59 +0200 fs r272213 : localize 'sub component opened/closed' event
2009-05-22 21:42:47 +0200 fs r272211 : #i102003#
2009-05-22 21:42:20 +0200 fs r272210 : grammar
2009-05-22 21:36:10 +0200 fs r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously
2009-05-22 21:35:11 +0200 fs r272208 : #i102140# +clear
2009-05-22 14:50:30 +0200 fs r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG
2009-05-22 12:03:42 +0200 fs r272180 : #i88878#
provided by noel.power@novell.com
implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs
2009-05-15 15:37:31 +0200 fs r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them
2009-05-15 15:33:11 +0200 fs r271940 : don't call comphelper::getFOO for VOID values
2009-05-15 15:08:31 +0200 fs r271937 : includes
2009-05-15 13:39:22 +0200 fs r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint
2009-05-15 12:33:48 +0200 fs r271933 : make the geometry a part of the ControlPrimitive2D's identity
2009-05-15 10:15:44 +0200 fs r271928 : #i10000#
2009-05-14 20:55:38 +0200 fs r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:55:31 +0200 fs r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:23:23 +0200 fs r271919 : #i101622#
2009-05-14 16:04:38 +0200 fs r271898 : don't use comphelper::getInt32 on voids
2009-05-14 16:04:12 +0200 fs r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b)
2009-05-14 15:36:55 +0200 fs r271895 : merging changes from DEV300:m48
2009-05-07 14:43:19 +0200 fs r271670 : #i101477#
2009-05-07 14:37:30 +0200 fs r271668 : #i101477#
2009-05-07 09:27:30 +0200 oj r271628 : #i101343# remove pch
2009-05-06 09:36:02 +0200 fs r271568 : getFoo: diagnostics
2009-05-04 09:23:06 +0200 oj r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47)
2009-04-29 23:18:13 +0200 fs r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control
2009-04-29 13:52:25 +0200 fs r271366 : #i101308#
2009-07-03 14:21:50 +00:00
|
|
|
const VALUE_TYPE value( (m_xSource.get()->*_pGetter)( m_rSourcePos ) );
|
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( m_xSource->wasNull() )
|
|
|
|
m_xDest->setNull( m_rDestPos, m_rColTypes[ m_rSourcePos ] );
|
|
|
|
else
|
|
|
|
(m_xDest.get()->*_pSetter)( m_rDestPos, value );
|
CWS-TOOLING: integrate CWS dba32c
2009-06-29 20:53:25 +0200 fs r273484 : #i103138# Rectangle conversion
2009-06-29 20:51:50 +0200 fs r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time
2009-06-29 13:40:26 +0200 fs r273470 : added svn:ignore to ignore output paths
2009-06-29 10:08:54 +0200 fs r273455 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-25 13:41:35 +0200 msc r273380 : #100000# the tabs changed die to new properties
2009-06-24 12:42:40 +0200 msc r273330 : #102082# remove issue warning
2009-06-22 10:43:14 +0200 fs r273201 : createPrimitive2DSequence: care for being disposed
2009-06-18 12:35:13 +0200 oj r273109 : #i102305# make nooptfiles for gcc
2009-06-17 12:14:37 +0200 oj r273056 : #i102305# fix for linux
2009-06-17 07:20:22 +0200 oj r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux
2009-06-17 07:17:28 +0200 oj r273045 : #i102305# use varchar
2009-06-15 14:11:27 +0200 fs r272983 : added since tag
2009-06-15 12:11:39 +0200 oj r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted
2009-06-15 11:08:53 +0200 fs r272969 : #i10000#
2009-06-15 09:25:13 +0200 fs r272963 : merging fix for P1 issue #i102701#
2009-06-11 11:31:24 +0200 fs r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src
2009-06-11 09:38:14 +0200 fs r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50)
2009-06-02 09:53:10 +0200 fs r272483 : #i10000#
2009-05-29 15:55:03 +0200 fs r272465 : #i100818#
2009-05-29 12:58:43 +0200 fs r272452 : don't apply comphelper::getString on possibly VOID any
2009-05-29 10:38:35 +0200 oj r272437 : #i101519# handle where condition
2009-05-29 09:53:39 +0200 fs r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex
2009-05-28 07:53:44 +0200 oj r272375 : #i101369# parse tree changed
2009-05-27 14:53:36 +0200 fs r272347 : #i10000#
2009-05-27 09:29:15 +0200 oj r272327 : #i101626# check for double before hard cast
2009-05-27 09:13:58 +0200 oj r272326 : #i101626# handle void correctly
2009-05-27 08:04:39 +0200 oj r272321 : #i102256# wrong method signature used
2009-05-27 07:55:52 +0200 oj r272320 : #i101519# look up parameter typ if used in function
2009-05-27 06:49:07 +0200 oj r272319 : #i101519# set parameter from rowset as well
2009-05-26 13:30:56 +0200 oj r272297 : #i101987# impl XBatchExecution
2009-05-26 12:44:34 +0200 oj r272293 : #i101700# check if group is not set
2009-05-26 12:16:53 +0200 oj r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition
2009-05-26 12:12:42 +0200 oj r272289 : #i101369# fix for or on one line criteria
2009-05-25 16:02:25 +0200 fs r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR
2009-05-25 16:01:55 +0200 fs r272256 : merging the changes from CWS dba32b herein
2009-05-25 15:49:57 +0200 fs r272254 : #i999704#
2009-05-25 15:32:57 +0200 fs r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property
2009-05-25 15:23:43 +0200 fs r272251 : don't pass empty Anys to ::comphelper::getString
2009-05-25 14:48:43 +0200 fs r272248 : merged changes from CWS dba32b herein
2009-05-25 14:44:40 +0200 fs r272247 : #i99704# support new MouseWheelBehavior property
2009-05-25 14:43:18 +0200 fs r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property)
2009-05-25 14:41:03 +0200 fs r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default
2009-05-25 14:39:31 +0200 fs r272243 : removed dead import
2009-05-25 14:35:36 +0200 fs r272242 : the new EnableVisible doesn't make sense for grid columns
2009-05-25 14:34:33 +0200 fs r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent
2009-05-25 14:26:11 +0200 fs r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel
2009-05-23 21:35:59 +0200 fs r272213 : localize 'sub component opened/closed' event
2009-05-22 21:42:47 +0200 fs r272211 : #i102003#
2009-05-22 21:42:20 +0200 fs r272210 : grammar
2009-05-22 21:36:10 +0200 fs r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously
2009-05-22 21:35:11 +0200 fs r272208 : #i102140# +clear
2009-05-22 14:50:30 +0200 fs r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG
2009-05-22 12:03:42 +0200 fs r272180 : #i88878#
provided by noel.power@novell.com
implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs
2009-05-15 15:37:31 +0200 fs r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them
2009-05-15 15:33:11 +0200 fs r271940 : don't call comphelper::getFOO for VOID values
2009-05-15 15:08:31 +0200 fs r271937 : includes
2009-05-15 13:39:22 +0200 fs r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint
2009-05-15 12:33:48 +0200 fs r271933 : make the geometry a part of the ControlPrimitive2D's identity
2009-05-15 10:15:44 +0200 fs r271928 : #i10000#
2009-05-14 20:55:38 +0200 fs r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:55:31 +0200 fs r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:23:23 +0200 fs r271919 : #i101622#
2009-05-14 16:04:38 +0200 fs r271898 : don't use comphelper::getInt32 on voids
2009-05-14 16:04:12 +0200 fs r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b)
2009-05-14 15:36:55 +0200 fs r271895 : merging changes from DEV300:m48
2009-05-07 14:43:19 +0200 fs r271670 : #i101477#
2009-05-07 14:37:30 +0200 fs r271668 : #i101477#
2009-05-07 09:27:30 +0200 oj r271628 : #i101343# remove pch
2009-05-06 09:36:02 +0200 fs r271568 : getFoo: diagnostics
2009-05-04 09:23:06 +0200 oj r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47)
2009-04-29 23:18:13 +0200 fs r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control
2009-04-29 13:52:25 +0200 fs r271366 : #i101308#
2009-07-03 14:21:50 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
const sal_Int32& m_rSourcePos;
|
|
|
|
const sal_Int32& m_rDestPos;
|
|
|
|
const ::std::vector< sal_Int32 > m_rColTypes;
|
|
|
|
const Reference< XRow > m_xSource;
|
|
|
|
const Reference< XParameters > m_xDest;
|
|
|
|
};
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool CopyTableWizard::impl_processCopyError_nothrow( const CopyTableRowEvent& _rEvent )
|
|
|
|
{
|
|
|
|
Reference< XCopyTableListener > xListener;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
::cppu::OInterfaceIteratorHelper aIter( m_aCopyTableListeners );
|
|
|
|
while ( aIter.hasMoreElements() )
|
|
|
|
{
|
|
|
|
xListener.set( aIter.next(), UNO_QUERY_THROW );
|
|
|
|
sal_Int16 nListenerChoice = xListener->copyRowError( _rEvent );
|
|
|
|
switch ( nListenerChoice )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
case CopyTableContinuation::Proceed: return true; // continue copying
|
|
|
|
case CopyTableContinuation::CallNextHandler: continue; // continue the loop, ask next listener
|
|
|
|
case CopyTableContinuation::Cancel: return false; // cancel copying
|
|
|
|
case CopyTableContinuation::AskUser: break; // stop asking the listeners, ask the user
|
|
|
|
|
|
|
|
default:
|
2011-03-12 11:27:59 +01:00
|
|
|
OSL_FAIL( "CopyTableWizard::impl_processCopyError_nothrow: invalid listener response!" );
|
2009-04-23 10:42:05 +00:00
|
|
|
// ask next listener
|
|
|
|
continue;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// no listener felt responsible for the error, or a listener told to ask the user
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SQLContext aError;
|
|
|
|
aError.Context = *this;
|
2010-12-04 12:33:49 +09:00
|
|
|
aError.Message = String( ModuleRes( STR_ERROR_OCCURRED_WHILE_COPYING ) );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::dbtools::SQLExceptionInfo aInfo( _rEvent.Error );
|
|
|
|
if ( aInfo.isValid() )
|
|
|
|
aError.NextException = _rEvent.Error;
|
2008-01-30 07:56:36 +00:00
|
|
|
else
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
// a non-SQL exception happend
|
|
|
|
Exception aException;
|
|
|
|
OSL_VERIFY( _rEvent.Error >>= aException );
|
|
|
|
SQLContext aContext;
|
|
|
|
aContext.Context = aException.Context;
|
|
|
|
aContext.Message = aException.Message;
|
|
|
|
aContext.Details = _rEvent.Error.getValueTypeName();
|
|
|
|
aError.NextException <<= aContext;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::Reference< ::comphelper::OInteractionRequest > xRequest( new ::comphelper::OInteractionRequest( makeAny( aError ) ) );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::Reference< ::comphelper::OInteractionApprove > xYes = new ::comphelper::OInteractionApprove;
|
|
|
|
xRequest->addContinuation( xYes.get() );
|
|
|
|
xRequest->addContinuation( new ::comphelper::OInteractionDisapprove );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
OSL_ENSURE( m_xInteractionHandler.is(),
|
|
|
|
"CopyTableWizard::impl_processCopyError_nothrow: we always should have an interaction handler!" );
|
|
|
|
if ( m_xInteractionHandler.is() )
|
|
|
|
m_xInteractionHandler->handle( xRequest.get() );
|
|
|
|
|
|
|
|
if ( xYes->wasSelected() )
|
|
|
|
// continue copying
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// cancel copying
|
|
|
|
return false;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_copyRows_throw( const Reference< XResultSet >& _rxSourceResultSet,
|
|
|
|
const Reference< XPropertySet >& _rxDestTable )
|
|
|
|
{
|
|
|
|
OSL_PRECOND( m_xDestConnection.is(), "CopyTableWizard::impl_copyRows_throw: illegal call!" );
|
|
|
|
if ( !m_xDestConnection.is() )
|
2012-04-12 18:05:34 +05:30
|
|
|
throw RuntimeException( "m_xDestConnection is set to null, CopyTableWizard::impl_copyRows_throw: illegal call!", *this );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XDatabaseMetaData > xDestMetaData( m_xDestConnection->getMetaData(), UNO_QUERY_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
const OCopyTableWizard& rWizard = impl_getDialog_throw();
|
|
|
|
ODatabaseExport::TPositions aColumnMapping = rWizard.GetColumnPositions();
|
|
|
|
bool bAutoIncrement = rWizard.shouldCreatePrimaryKey();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XRow > xRow ( _rxSourceResultSet, UNO_QUERY_THROW );
|
2010-01-11 12:15:28 +01:00
|
|
|
Reference< XRowLocate > xRowLocate ( _rxSourceResultSet, UNO_QUERY_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XResultSetMetaDataSupplier > xSuppResMeta( _rxSourceResultSet, UNO_QUERY_THROW );
|
|
|
|
Reference< XResultSetMetaData> xMeta( xSuppResMeta->getMetaData() );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// we need a vector which all types
|
|
|
|
sal_Int32 nCount = xMeta->getColumnCount();
|
|
|
|
::std::vector< sal_Int32 > aSourceColTypes;
|
|
|
|
aSourceColTypes.reserve( nCount + 1 );
|
|
|
|
aSourceColTypes.push_back( -1 ); // just to avoid a everytime i-1 call
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-11-25 14:11:53 +01:00
|
|
|
::std::vector< sal_Int32 > aSourcePrec;
|
|
|
|
aSourcePrec.reserve( nCount + 1 );
|
|
|
|
aSourcePrec.push_back( -1 ); // just to avoid a everytime i-1 call
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
for ( sal_Int32 k=1; k <= nCount; ++k )
|
2010-11-25 14:11:53 +01:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
aSourceColTypes.push_back( xMeta->getColumnType( k ) );
|
2010-11-25 14:11:53 +01:00
|
|
|
aSourcePrec.push_back( xMeta->getPrecision( k ) );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// now create, fill and execute the prepared statement
|
|
|
|
Reference< XPreparedStatement > xStatement( ODatabaseExport::createPreparedStatment( xDestMetaData, _rxDestTable, aColumnMapping ), UNO_SET_THROW );
|
|
|
|
Reference< XParameters > xStatementParams( xStatement, UNO_QUERY_THROW );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
const bool bSelectedRecordsOnly = m_aSourceSelection.getLength() != 0;
|
|
|
|
const Any* pSelectedRow = m_aSourceSelection.getConstArray();
|
|
|
|
const Any* pSelEnd = pSelectedRow + m_aSourceSelection.getLength();
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
sal_Int32 nRowCount = 0;
|
|
|
|
bool bContinue = false;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
CopyTableRowEvent aCopyEvent;
|
|
|
|
aCopyEvent.Source = *this;
|
|
|
|
aCopyEvent.SourceData = _rxSourceResultSet;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
do // loop as long as there are more rows or the selection ends
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
bContinue = false;
|
|
|
|
if ( bSelectedRecordsOnly )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( pSelectedRow != pSelEnd )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( m_bSourceSelectionBookmarks )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2010-01-11 12:15:28 +01:00
|
|
|
bContinue = xRowLocate->moveToBookmark( *pSelectedRow );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
sal_Int32 nPos = 0;
|
|
|
|
OSL_VERIFY( *pSelectedRow >>= nPos );
|
|
|
|
bContinue = _rxSourceResultSet->absolute( nPos );
|
|
|
|
}
|
|
|
|
++pSelectedRow;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
else
|
|
|
|
bContinue = _rxSourceResultSet->next();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( !bContinue )
|
CWS-TOOLING: integrate CWS dba32c
2009-06-29 20:53:25 +0200 fs r273484 : #i103138# Rectangle conversion
2009-06-29 20:51:50 +0200 fs r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time
2009-06-29 13:40:26 +0200 fs r273470 : added svn:ignore to ignore output paths
2009-06-29 10:08:54 +0200 fs r273455 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-25 13:41:35 +0200 msc r273380 : #100000# the tabs changed die to new properties
2009-06-24 12:42:40 +0200 msc r273330 : #102082# remove issue warning
2009-06-22 10:43:14 +0200 fs r273201 : createPrimitive2DSequence: care for being disposed
2009-06-18 12:35:13 +0200 oj r273109 : #i102305# make nooptfiles for gcc
2009-06-17 12:14:37 +0200 oj r273056 : #i102305# fix for linux
2009-06-17 07:20:22 +0200 oj r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux
2009-06-17 07:17:28 +0200 oj r273045 : #i102305# use varchar
2009-06-15 14:11:27 +0200 fs r272983 : added since tag
2009-06-15 12:11:39 +0200 oj r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted
2009-06-15 11:08:53 +0200 fs r272969 : #i10000#
2009-06-15 09:25:13 +0200 fs r272963 : merging fix for P1 issue #i102701#
2009-06-11 11:31:24 +0200 fs r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src
2009-06-11 09:38:14 +0200 fs r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50)
2009-06-02 09:53:10 +0200 fs r272483 : #i10000#
2009-05-29 15:55:03 +0200 fs r272465 : #i100818#
2009-05-29 12:58:43 +0200 fs r272452 : don't apply comphelper::getString on possibly VOID any
2009-05-29 10:38:35 +0200 oj r272437 : #i101519# handle where condition
2009-05-29 09:53:39 +0200 fs r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex
2009-05-28 07:53:44 +0200 oj r272375 : #i101369# parse tree changed
2009-05-27 14:53:36 +0200 fs r272347 : #i10000#
2009-05-27 09:29:15 +0200 oj r272327 : #i101626# check for double before hard cast
2009-05-27 09:13:58 +0200 oj r272326 : #i101626# handle void correctly
2009-05-27 08:04:39 +0200 oj r272321 : #i102256# wrong method signature used
2009-05-27 07:55:52 +0200 oj r272320 : #i101519# look up parameter typ if used in function
2009-05-27 06:49:07 +0200 oj r272319 : #i101519# set parameter from rowset as well
2009-05-26 13:30:56 +0200 oj r272297 : #i101987# impl XBatchExecution
2009-05-26 12:44:34 +0200 oj r272293 : #i101700# check if group is not set
2009-05-26 12:16:53 +0200 oj r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition
2009-05-26 12:12:42 +0200 oj r272289 : #i101369# fix for or on one line criteria
2009-05-25 16:02:25 +0200 fs r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR
2009-05-25 16:01:55 +0200 fs r272256 : merging the changes from CWS dba32b herein
2009-05-25 15:49:57 +0200 fs r272254 : #i999704#
2009-05-25 15:32:57 +0200 fs r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property
2009-05-25 15:23:43 +0200 fs r272251 : don't pass empty Anys to ::comphelper::getString
2009-05-25 14:48:43 +0200 fs r272248 : merged changes from CWS dba32b herein
2009-05-25 14:44:40 +0200 fs r272247 : #i99704# support new MouseWheelBehavior property
2009-05-25 14:43:18 +0200 fs r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property)
2009-05-25 14:41:03 +0200 fs r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default
2009-05-25 14:39:31 +0200 fs r272243 : removed dead import
2009-05-25 14:35:36 +0200 fs r272242 : the new EnableVisible doesn't make sense for grid columns
2009-05-25 14:34:33 +0200 fs r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent
2009-05-25 14:26:11 +0200 fs r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel
2009-05-23 21:35:59 +0200 fs r272213 : localize 'sub component opened/closed' event
2009-05-22 21:42:47 +0200 fs r272211 : #i102003#
2009-05-22 21:42:20 +0200 fs r272210 : grammar
2009-05-22 21:36:10 +0200 fs r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously
2009-05-22 21:35:11 +0200 fs r272208 : #i102140# +clear
2009-05-22 14:50:30 +0200 fs r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG
2009-05-22 12:03:42 +0200 fs r272180 : #i88878#
provided by noel.power@novell.com
implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs
2009-05-15 15:37:31 +0200 fs r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them
2009-05-15 15:33:11 +0200 fs r271940 : don't call comphelper::getFOO for VOID values
2009-05-15 15:08:31 +0200 fs r271937 : includes
2009-05-15 13:39:22 +0200 fs r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint
2009-05-15 12:33:48 +0200 fs r271933 : make the geometry a part of the ControlPrimitive2D's identity
2009-05-15 10:15:44 +0200 fs r271928 : #i10000#
2009-05-14 20:55:38 +0200 fs r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:55:31 +0200 fs r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:23:23 +0200 fs r271919 : #i101622#
2009-05-14 16:04:38 +0200 fs r271898 : don't use comphelper::getInt32 on voids
2009-05-14 16:04:12 +0200 fs r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b)
2009-05-14 15:36:55 +0200 fs r271895 : merging changes from DEV300:m48
2009-05-07 14:43:19 +0200 fs r271670 : #i101477#
2009-05-07 14:37:30 +0200 fs r271668 : #i101477#
2009-05-07 09:27:30 +0200 oj r271628 : #i101343# remove pch
2009-05-06 09:36:02 +0200 fs r271568 : getFoo: diagnostics
2009-05-04 09:23:06 +0200 oj r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47)
2009-04-29 23:18:13 +0200 fs r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control
2009-04-29 13:52:25 +0200 fs r271366 : #i101308#
2009-07-03 14:21:50 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
break;
|
CWS-TOOLING: integrate CWS dba32c
2009-06-29 20:53:25 +0200 fs r273484 : #i103138# Rectangle conversion
2009-06-29 20:51:50 +0200 fs r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time
2009-06-29 13:40:26 +0200 fs r273470 : added svn:ignore to ignore output paths
2009-06-29 10:08:54 +0200 fs r273455 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-25 13:41:35 +0200 msc r273380 : #100000# the tabs changed die to new properties
2009-06-24 12:42:40 +0200 msc r273330 : #102082# remove issue warning
2009-06-22 10:43:14 +0200 fs r273201 : createPrimitive2DSequence: care for being disposed
2009-06-18 12:35:13 +0200 oj r273109 : #i102305# make nooptfiles for gcc
2009-06-17 12:14:37 +0200 oj r273056 : #i102305# fix for linux
2009-06-17 07:20:22 +0200 oj r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux
2009-06-17 07:17:28 +0200 oj r273045 : #i102305# use varchar
2009-06-15 14:11:27 +0200 fs r272983 : added since tag
2009-06-15 12:11:39 +0200 oj r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted
2009-06-15 11:08:53 +0200 fs r272969 : #i10000#
2009-06-15 09:25:13 +0200 fs r272963 : merging fix for P1 issue #i102701#
2009-06-11 11:31:24 +0200 fs r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src
2009-06-11 09:38:14 +0200 fs r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50)
2009-06-02 09:53:10 +0200 fs r272483 : #i10000#
2009-05-29 15:55:03 +0200 fs r272465 : #i100818#
2009-05-29 12:58:43 +0200 fs r272452 : don't apply comphelper::getString on possibly VOID any
2009-05-29 10:38:35 +0200 oj r272437 : #i101519# handle where condition
2009-05-29 09:53:39 +0200 fs r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex
2009-05-28 07:53:44 +0200 oj r272375 : #i101369# parse tree changed
2009-05-27 14:53:36 +0200 fs r272347 : #i10000#
2009-05-27 09:29:15 +0200 oj r272327 : #i101626# check for double before hard cast
2009-05-27 09:13:58 +0200 oj r272326 : #i101626# handle void correctly
2009-05-27 08:04:39 +0200 oj r272321 : #i102256# wrong method signature used
2009-05-27 07:55:52 +0200 oj r272320 : #i101519# look up parameter typ if used in function
2009-05-27 06:49:07 +0200 oj r272319 : #i101519# set parameter from rowset as well
2009-05-26 13:30:56 +0200 oj r272297 : #i101987# impl XBatchExecution
2009-05-26 12:44:34 +0200 oj r272293 : #i101700# check if group is not set
2009-05-26 12:16:53 +0200 oj r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition
2009-05-26 12:12:42 +0200 oj r272289 : #i101369# fix for or on one line criteria
2009-05-25 16:02:25 +0200 fs r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR
2009-05-25 16:01:55 +0200 fs r272256 : merging the changes from CWS dba32b herein
2009-05-25 15:49:57 +0200 fs r272254 : #i999704#
2009-05-25 15:32:57 +0200 fs r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property
2009-05-25 15:23:43 +0200 fs r272251 : don't pass empty Anys to ::comphelper::getString
2009-05-25 14:48:43 +0200 fs r272248 : merged changes from CWS dba32b herein
2009-05-25 14:44:40 +0200 fs r272247 : #i99704# support new MouseWheelBehavior property
2009-05-25 14:43:18 +0200 fs r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property)
2009-05-25 14:41:03 +0200 fs r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default
2009-05-25 14:39:31 +0200 fs r272243 : removed dead import
2009-05-25 14:35:36 +0200 fs r272242 : the new EnableVisible doesn't make sense for grid columns
2009-05-25 14:34:33 +0200 fs r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent
2009-05-25 14:26:11 +0200 fs r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel
2009-05-23 21:35:59 +0200 fs r272213 : localize 'sub component opened/closed' event
2009-05-22 21:42:47 +0200 fs r272211 : #i102003#
2009-05-22 21:42:20 +0200 fs r272210 : grammar
2009-05-22 21:36:10 +0200 fs r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously
2009-05-22 21:35:11 +0200 fs r272208 : #i102140# +clear
2009-05-22 14:50:30 +0200 fs r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG
2009-05-22 12:03:42 +0200 fs r272180 : #i88878#
provided by noel.power@novell.com
implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs
2009-05-15 15:37:31 +0200 fs r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them
2009-05-15 15:33:11 +0200 fs r271940 : don't call comphelper::getFOO for VOID values
2009-05-15 15:08:31 +0200 fs r271937 : includes
2009-05-15 13:39:22 +0200 fs r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint
2009-05-15 12:33:48 +0200 fs r271933 : make the geometry a part of the ControlPrimitive2D's identity
2009-05-15 10:15:44 +0200 fs r271928 : #i10000#
2009-05-14 20:55:38 +0200 fs r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:55:31 +0200 fs r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique
2009-05-14 20:23:23 +0200 fs r271919 : #i101622#
2009-05-14 16:04:38 +0200 fs r271898 : don't use comphelper::getInt32 on voids
2009-05-14 16:04:12 +0200 fs r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b)
2009-05-14 15:36:55 +0200 fs r271895 : merging changes from DEV300:m48
2009-05-07 14:43:19 +0200 fs r271670 : #i101477#
2009-05-07 14:37:30 +0200 fs r271668 : #i101477#
2009-05-07 09:27:30 +0200 oj r271628 : #i101343# remove pch
2009-05-06 09:36:02 +0200 fs r271568 : getFoo: diagnostics
2009-05-04 09:23:06 +0200 oj r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47)
2009-04-29 23:18:13 +0200 fs r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control
2009-04-29 13:52:25 +0200 fs r271366 : #i101308#
2009-07-03 14:21:50 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
++nRowCount;
|
|
|
|
sal_Bool bInsertAutoIncrement = sal_True;
|
|
|
|
ODatabaseExport::TPositions::const_iterator aPosIter = aColumnMapping.begin();
|
2009-07-03 12:24:35 +00:00
|
|
|
ODatabaseExport::TPositions::const_iterator aPosEnd = aColumnMapping.end();
|
2009-04-23 10:42:05 +00:00
|
|
|
|
|
|
|
aCopyEvent.Error.clear();
|
2008-01-30 07:56:36 +00:00
|
|
|
try
|
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
// notify listeners
|
|
|
|
m_aCopyTableListeners.notifyEach( &XCopyTableListener::copyingRow, aCopyEvent );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
sal_Int32 nDestColumn( 0 );
|
|
|
|
sal_Int32 nSourceColumn( 1 );
|
|
|
|
ValueTransfer aTransfer( nSourceColumn, nDestColumn, aSourceColTypes, xRow, xStatementParams );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-07-03 12:24:35 +00:00
|
|
|
for ( ; aPosIter != aPosEnd; ++aPosIter )
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
nDestColumn = aPosIter->first;
|
|
|
|
if ( nDestColumn == COLUMN_POSITION_NOT_FOUND )
|
|
|
|
{
|
|
|
|
++nSourceColumn;
|
|
|
|
// otherwise we don't get the correct value when only the 2nd source column was selected
|
|
|
|
continue;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( bAutoIncrement && bInsertAutoIncrement )
|
|
|
|
{
|
|
|
|
xStatementParams->setInt( 1, nRowCount );
|
|
|
|
bInsertAutoIncrement = sal_False;
|
|
|
|
continue;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( ( nSourceColumn < 1 ) || ( nSourceColumn >= (sal_Int32)aSourceColTypes.size() ) )
|
|
|
|
{ // ( we have to check here against 1 because the parameters are 1 based)
|
|
|
|
::dbtools::throwSQLException(
|
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Internal error: invalid column type index." ) ),
|
|
|
|
::dbtools::SQL_INVALID_DESCRIPTOR_INDEX,
|
|
|
|
*this
|
|
|
|
);
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
switch ( aSourceColTypes[ nSourceColumn ] )
|
|
|
|
{
|
|
|
|
case DataType::DOUBLE:
|
|
|
|
case DataType::REAL:
|
|
|
|
aTransfer.transferValue( &XRow::getDouble, &XParameters::setDouble );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::CHAR:
|
|
|
|
case DataType::VARCHAR:
|
|
|
|
case DataType::LONGVARCHAR:
|
|
|
|
case DataType::DECIMAL:
|
|
|
|
case DataType::NUMERIC:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getString, &XParameters::setString );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::BIGINT:
|
|
|
|
aTransfer.transferValue( &XRow::getLong, &XParameters::setLong );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::FLOAT:
|
|
|
|
aTransfer.transferValue( &XRow::getFloat, &XParameters::setFloat );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::LONGVARBINARY:
|
|
|
|
case DataType::BINARY:
|
|
|
|
case DataType::VARBINARY:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getBytes, &XParameters::setBytes );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::DATE:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getDate, &XParameters::setDate );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::TIME:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getTime, &XParameters::setTime );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::TIMESTAMP:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getTimestamp, &XParameters::setTimestamp );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-11-25 14:11:53 +01:00
|
|
|
case DataType::BIT:
|
|
|
|
if ( aSourcePrec[nSourceColumn] > 1 )
|
|
|
|
{
|
|
|
|
aTransfer.transferComplexValue( &XRow::getBytes, &XParameters::setBytes );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run through
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::BOOLEAN:
|
|
|
|
aTransfer.transferValue( &XRow::getBoolean, &XParameters::setBoolean );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::TINYINT:
|
|
|
|
aTransfer.transferValue( &XRow::getByte, &XParameters::setByte );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::SMALLINT:
|
|
|
|
aTransfer.transferValue( &XRow::getShort, &XParameters::setShort );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case DataType::INTEGER:
|
|
|
|
aTransfer.transferValue( &XRow::getInt, &XParameters::setInt );
|
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-11-11 14:01:37 +01:00
|
|
|
case DataType::BLOB:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getBlob, &XParameters::setBlob );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DataType::CLOB:
|
|
|
|
aTransfer.transferComplexValue( &XRow::getClob, &XParameters::setClob );
|
|
|
|
break;
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
default:
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::OUString aMessage( String( ModuleRes( STR_CTW_UNSUPPORTED_COLUMN_TYPE ) ) );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
aMessage.replaceAt( aMessage.indexOfAsciiL( "$type$", 6 ), 6, ::rtl::OUString::valueOf( aSourceColTypes[ nSourceColumn ] ) );
|
|
|
|
aMessage.replaceAt( aMessage.indexOfAsciiL( "$pos$", 5 ), 5, ::rtl::OUString::valueOf( nSourceColumn ) );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
::dbtools::throwSQLException(
|
2009-04-23 10:42:05 +00:00
|
|
|
aMessage,
|
|
|
|
::dbtools::SQL_INVALID_SQL_DATA_TYPE,
|
2008-01-30 07:56:36 +00:00
|
|
|
*this
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
++nSourceColumn;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
xStatement->executeUpdate();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// notify listeners
|
|
|
|
m_aCopyTableListeners.notifyEach( &XCopyTableListener::copiedRow, aCopyEvent );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
aCopyEvent.Error = ::cppu::getCaughtException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( aCopyEvent.Error.hasValue() )
|
|
|
|
bContinue = impl_processCopyError_nothrow( aCopyEvent );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
while( bContinue );
|
|
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::impl_doCopy_nothrow()
|
|
|
|
{
|
|
|
|
Any aError;
|
|
|
|
|
|
|
|
try
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
OCopyTableWizard& rWizard( impl_getDialog_throw() );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
WaitObject aWO( rWizard.GetParent() );
|
|
|
|
Reference< XPropertySet > xTable;
|
|
|
|
|
|
|
|
switch ( rWizard.getOperation() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
case CopyTableOperation::CopyDefinitionOnly:
|
|
|
|
case CopyTableOperation::CopyDefinitionAndData:
|
|
|
|
{
|
|
|
|
xTable = rWizard.createTable();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if( !xTable.is() )
|
|
|
|
{
|
2011-03-12 11:27:59 +01:00
|
|
|
OSL_FAIL( "CopyTableWizard::impl_doCopy_nothrow: createTable should throw here, shouldn't it?" );
|
2009-04-23 10:42:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( CopyTableOperation::CopyDefinitionOnly == rWizard.getOperation() )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run through
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case CopyTableOperation::AppendData:
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
|
|
|
|
if ( !xTable.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
|
|
|
xTable = rWizard.createTable();
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( !xTable.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2011-03-12 11:27:59 +01:00
|
|
|
OSL_FAIL( "CopyTableWizard::impl_doCopy_nothrow: createTable should throw here, shouldn't it?" );
|
2008-01-30 07:56:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
::utl::SharedUNOComponent< XPreparedStatement > xSourceStatement;
|
|
|
|
::utl::SharedUNOComponent< XResultSet > xSourceResultSet;
|
|
|
|
|
|
|
|
if ( m_xSourceResultSet.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2010-01-11 12:15:28 +01:00
|
|
|
xSourceResultSet.reset( m_xSourceResultSet, ::utl::SharedUNOComponent< XResultSet >::NoTakeOwnership );
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2010-01-11 12:15:28 +01:00
|
|
|
else
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
2010-01-11 12:15:28 +01:00
|
|
|
const bool bIsSameConnection = ( m_xSourceConnection.getTyped() == m_xDestConnection.getTyped() );
|
|
|
|
const bool bIsTable = ( CommandType::TABLE == m_nCommandType );
|
|
|
|
bool bDone = false;
|
|
|
|
if ( bIsSameConnection && bIsTable )
|
|
|
|
{
|
|
|
|
// try whether the server supports copying via SQL
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_xDestConnection->createStatement()->executeUpdate( impl_getServerSideCopyStatement_throw(xTable) );
|
|
|
|
bDone = true;
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
// this is allowed.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bDone )
|
|
|
|
{
|
|
|
|
xSourceStatement.set( impl_createSourceStatement_throw(), UNO_SET_THROW );
|
|
|
|
xSourceResultSet.set( xSourceStatement->executeQuery(), UNO_SET_THROW );
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2010-01-11 12:15:28 +01:00
|
|
|
if ( xSourceResultSet.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
impl_copyRows_throw( xSourceResultSet, xTable );
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
case CopyTableOperation::CreateAsView:
|
|
|
|
rWizard.createView();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-03-12 11:27:59 +01:00
|
|
|
OSL_FAIL( "CopyTableWizard::impl_doCopy_nothrow: What operation, please?" );
|
2009-04-23 10:42:05 +00:00
|
|
|
break;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
aError = ::cppu::getCaughtException();
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
// silence the error of the user cancelling the parameter's dialog
|
|
|
|
SQLException aSQLError;
|
|
|
|
if ( ( aError >>= aSQLError ) && ( aSQLError.ErrorCode == ::dbtools::ParameterInteractionCancelled ) )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
aError.clear();
|
|
|
|
m_nOverrideExecutionResult = RET_CANCEL;
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( aError.hasValue() && m_xInteractionHandler.is() )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::Reference< ::comphelper::OInteractionRequest > xRequest( new ::comphelper::OInteractionRequest( aError ) );
|
|
|
|
m_xInteractionHandler->handle( xRequest.get() );
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2008-01-30 07:56:36 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2010-01-11 12:15:28 +01:00
|
|
|
::rtl::OUString CopyTableWizard::impl_getServerSideCopyStatement_throw(const Reference< XPropertySet >& _xTable)
|
2009-04-23 10:42:05 +00:00
|
|
|
{
|
|
|
|
const Reference<XColumnsSupplier> xDestColsSup(_xTable,UNO_QUERY_THROW);
|
|
|
|
const Sequence< ::rtl::OUString> aDestColumnNames = xDestColsSup->getColumns()->getElementNames();
|
|
|
|
const Sequence< ::rtl::OUString > aColumnNames = m_pSourceObject->getColumnNames();
|
|
|
|
const Reference< XDatabaseMetaData > xDestMetaData( m_xDestConnection->getMetaData(), UNO_QUERY_THROW );
|
|
|
|
const ::rtl::OUString sQuote = xDestMetaData->getIdentifierQuoteString();
|
|
|
|
::rtl::OUStringBuffer sColumns;
|
|
|
|
// 1st check if the columns matching
|
|
|
|
const OCopyTableWizard& rWizard = impl_getDialog_throw();
|
|
|
|
ODatabaseExport::TPositions aColumnMapping = rWizard.GetColumnPositions();
|
|
|
|
ODatabaseExport::TPositions::const_iterator aPosIter = aColumnMapping.begin();
|
|
|
|
for ( sal_Int32 i = 0; aPosIter != aColumnMapping.end() ; ++aPosIter,++i )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( COLUMN_POSITION_NOT_FOUND != aPosIter->second )
|
|
|
|
{
|
|
|
|
if ( sColumns.getLength() )
|
|
|
|
sColumns.appendAscii(",");
|
|
|
|
sColumns.append(sQuote);
|
|
|
|
sColumns.append(aDestColumnNames[aPosIter->second - 1]);
|
|
|
|
sColumns.append(sQuote);
|
|
|
|
}
|
2010-11-23 23:56:34 +00:00
|
|
|
}
|
2009-04-23 10:42:05 +00:00
|
|
|
::rtl::OUStringBuffer sSql;
|
|
|
|
sSql.appendAscii("INSERT INTO ");
|
|
|
|
const ::rtl::OUString sComposedTableName = ::dbtools::composeTableName( xDestMetaData, _xTable, ::dbtools::eInDataManipulation, false, false, true );
|
|
|
|
sSql.append( sComposedTableName );
|
|
|
|
sSql.appendAscii(" ( ");
|
2011-09-27 20:21:15 +02:00
|
|
|
sSql.append( sColumns.makeStringAndClear() );
|
2009-04-23 10:42:05 +00:00
|
|
|
sSql.appendAscii(" ) ( ");
|
|
|
|
sSql.append( m_pSourceObject->getSelectStatement());
|
|
|
|
sSql.appendAscii(" )");
|
|
|
|
|
|
|
|
return sSql.makeStringAndClear();
|
|
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void SAL_CALL CopyTableWizard::initialize( const Sequence< Any >& _rArguments ) throw (Exception, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
if ( isInitialized() )
|
|
|
|
throw AlreadyInitializedException( ::rtl::OUString(), *this );
|
|
|
|
|
|
|
|
sal_Int32 nArgCount( _rArguments.getLength() );
|
|
|
|
if ( ( nArgCount != 2 ) && ( nArgCount != 3 ) )
|
|
|
|
throw IllegalArgumentException(
|
|
|
|
String( ModuleRes( STR_CTW_ILLEGAL_PARAMETER_COUNT ) ),
|
|
|
|
*this,
|
|
|
|
1
|
|
|
|
);
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
try
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( nArgCount == 3 )
|
|
|
|
{ // ->createWithInteractionHandler
|
|
|
|
if ( !( _rArguments[2] >>= m_xInteractionHandler ) )
|
|
|
|
throw IllegalArgumentException(
|
2009-11-27 10:17:16 +01:00
|
|
|
String(ModuleRes( STR_CTW_ERROR_INVALID_INTERACTIONHANDLER )),
|
2009-04-23 10:42:05 +00:00
|
|
|
*this,
|
|
|
|
3
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ( !m_xInteractionHandler.is() )
|
2012-10-04 14:36:34 +02:00
|
|
|
m_xInteractionHandler.set( InteractionHandler::createWithParent(m_aContext.getUNOContext(), 0), UNO_QUERY );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > xSourceDocHandler;
|
2009-04-23 10:42:05 +00:00
|
|
|
Reference< XPropertySet > xSourceDescriptor( impl_ensureDataAccessDescriptor_throw( _rArguments, 0, m_xSourceConnection, xSourceDocHandler ) );
|
2010-01-11 12:15:28 +01:00
|
|
|
impl_checkForUnsupportedSettings_throw( xSourceDescriptor );
|
2009-04-23 10:42:05 +00:00
|
|
|
m_pSourceObject = impl_extractSourceObject_throw( xSourceDescriptor, m_nCommandType );
|
2010-01-11 12:15:28 +01:00
|
|
|
impl_extractSourceResultSet_throw( xSourceDescriptor );
|
2009-04-23 10:42:05 +00:00
|
|
|
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference< XInteractionHandler > xDestDocHandler;
|
2009-04-23 10:42:05 +00:00
|
|
|
impl_ensureDataAccessDescriptor_throw( _rArguments, 1, m_xDestConnection, xDestDocHandler );
|
|
|
|
|
|
|
|
if ( xDestDocHandler.is() && !m_xInteractionHandler.is() )
|
|
|
|
m_xInteractionHandler = xDestDocHandler;
|
|
|
|
}
|
|
|
|
catch( const RuntimeException& ) { throw; }
|
|
|
|
catch( const SQLException& ) { throw; }
|
|
|
|
catch( const Exception& )
|
2008-01-30 07:56:36 +00:00
|
|
|
{
|
2009-04-23 10:42:05 +00:00
|
|
|
throw WrappedTargetException(
|
|
|
|
String( ModuleRes( STR_CTW_ERROR_DURING_INITIALIZATION ) ),
|
|
|
|
*this,
|
|
|
|
::cppu::getCaughtException()
|
2008-01-30 07:56:36 +00:00
|
|
|
);
|
2009-04-23 10:42:05 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
::cppu::IPropertyArrayHelper& CopyTableWizard::getInfoHelper()
|
|
|
|
{
|
|
|
|
return *getArrayHelper();
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
::cppu::IPropertyArrayHelper* CopyTableWizard::createArrayHelper( ) const
|
|
|
|
{
|
|
|
|
Sequence< Property > aProps;
|
|
|
|
describeProperties( aProps );
|
|
|
|
return new ::cppu::OPropertyArrayHelper( aProps );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
Dialog* CopyTableWizard::createDialog( Window* _pParent )
|
|
|
|
{
|
|
|
|
OSL_PRECOND( isInitialized(), "CopyTableWizard::createDialog: not initialized!" );
|
|
|
|
// this should have been prevented in ::execute already
|
|
|
|
|
|
|
|
OCopyTableWizard* pWizard = new OCopyTableWizard(
|
|
|
|
_pParent,
|
|
|
|
m_sDestinationTable,
|
|
|
|
m_nOperation,
|
|
|
|
*m_pSourceObject,
|
|
|
|
m_xSourceConnection.getTyped(),
|
|
|
|
m_xDestConnection.getTyped(),
|
2009-11-25 13:48:21 +01:00
|
|
|
m_aContext.getLegacyServiceFactory(),
|
|
|
|
m_xInteractionHandler
|
2009-04-23 10:42:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
impl_attributesToDialog_nothrow( *pWizard );
|
|
|
|
|
|
|
|
return pWizard;
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void CopyTableWizard::executedDialog( sal_Int16 _nExecutionResult )
|
|
|
|
{
|
|
|
|
CopyTableWizard_DialogBase::executedDialog( _nExecutionResult );
|
2008-01-30 07:56:36 +00:00
|
|
|
|
2009-04-23 10:42:05 +00:00
|
|
|
if ( _nExecutionResult == RET_OK )
|
|
|
|
impl_doCopy_nothrow();
|
|
|
|
|
|
|
|
// do this after impl_doCopy_nothrow: The attributes may change during copying, for instance
|
|
|
|
// if the user entered an unqualified table name
|
|
|
|
impl_dialogToAttributes_nothrow( impl_getDialog_throw() );
|
|
|
|
}
|
2008-01-30 07:56:36 +00:00
|
|
|
|
|
|
|
//........................................................................
|
|
|
|
} // namespace dbaui
|
|
|
|
//........................................................................
|
|
|
|
|
|
|
|
extern "C" void SAL_CALL createRegistryInfo_CopyTableWizard()
|
|
|
|
{
|
|
|
|
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::CopyTableWizard > aAutoRegistration;
|
|
|
|
}
|
2010-10-12 15:59:03 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|