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 .
|
|
|
|
*/
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
#include "DbAdminImpl.hxx"
|
2007-11-01 14:06:03 +00:00
|
|
|
#include "dsmeta.hxx"
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/poolitem.hxx>
|
|
|
|
#include <svl/itempool.hxx>
|
|
|
|
#include <svl/stritem.hxx>
|
|
|
|
#include <svl/intitem.hxx>
|
|
|
|
#include <svl/eitem.hxx>
|
2004-08-02 14:40:50 +00:00
|
|
|
#include "DriverSettings.hxx"
|
|
|
|
#include "IItemSetHelper.hxx"
|
2009-10-16 14:16:52 +02:00
|
|
|
#include "UITools.hxx"
|
2004-08-02 14:40:50 +00:00
|
|
|
#include "dbu_dlg.hrc"
|
|
|
|
#include "dbustrings.hrc"
|
2009-10-16 14:16:52 +02:00
|
|
|
#include "dsitems.hxx"
|
|
|
|
#include "dsnItem.hxx"
|
2007-07-06 07:11:06 +00:00
|
|
|
#include "moduledbu.hxx"
|
2009-10-16 14:16:52 +02:00
|
|
|
#include "optionalboolitem.hxx"
|
|
|
|
#include "propertysetitem.hxx"
|
|
|
|
#include "stringlistitem.hxx"
|
2010-03-16 10:59:46 +01:00
|
|
|
#include "OAuthenticationContinuation.hxx"
|
2009-10-16 14:16:52 +02:00
|
|
|
|
|
|
|
#include <com/sun/star/beans/PropertyAttribute.hpp>
|
2004-08-02 14:40:50 +00:00
|
|
|
#include <com/sun/star/frame/XStorable.hpp>
|
2012-09-18 09:46:34 +02:00
|
|
|
#include <com/sun/star/sdb/DatabaseContext.hpp>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <com/sun/star/sdb/SQLContext.hpp>
|
2012-12-03 13:16:26 +02:00
|
|
|
#include <com/sun/star/sdbc/ConnectionPool.hpp>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <com/sun/star/sdbc/XDriver.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XDriverAccess.hpp>
|
2012-10-02 15:03:12 +02:00
|
|
|
#include <com/sun/star/task/InteractionHandler.hpp>
|
2010-03-16 10:59:46 +01:00
|
|
|
#include <com/sun/star/task/XInteractionRequest.hpp>
|
|
|
|
#include <com/sun/star/ucb/XInteractionSupplyAuthentication2.hpp>
|
|
|
|
#include <com/sun/star/ucb/AuthenticationRequest.hpp>
|
2009-10-16 14:16:52 +02:00
|
|
|
|
2012-01-02 10:55:27 +00:00
|
|
|
#include <comphelper/guarding.hxx>
|
2010-03-16 10:59:46 +01:00
|
|
|
#include <comphelper/interaction.hxx>
|
2012-09-27 13:43:06 +02:00
|
|
|
#include <comphelper/processfactory.hxx>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <comphelper/property.hxx>
|
|
|
|
#include <comphelper/sequence.hxx>
|
2012-01-02 10:55:27 +00:00
|
|
|
#include <comphelper/string.hxx>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <connectivity/DriversConfig.hxx>
|
|
|
|
#include <connectivity/dbexception.hxx>
|
|
|
|
#include <osl/file.hxx>
|
2010-03-16 10:59:46 +01:00
|
|
|
#include <tools/diagnose_ex.h>
|
2011-02-03 00:33:36 +01:00
|
|
|
#include <osl/diagnose.h>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <typelib/typedescription.hxx>
|
2010-03-16 10:59:46 +01:00
|
|
|
#include <vcl/svapp.hxx>
|
2009-10-16 14:16:52 +02:00
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <vcl/stdtext.hxx>
|
|
|
|
#include <vcl/waitobj.hxx>
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
2016-02-17 23:28:26 +01:00
|
|
|
#include <iterator>
|
2004-08-02 14:40:50 +00:00
|
|
|
#include <functional>
|
2015-08-17 14:40:17 +02:00
|
|
|
#include <o3tl/functional.hxx>
|
2011-02-08 19:44:44 +01:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
using namespace ::dbtools;
|
|
|
|
using namespace com::sun::star::uno;
|
2008-01-30 07:43:26 +00:00
|
|
|
using namespace com::sun::star;
|
2010-03-16 10:59:46 +01:00
|
|
|
using namespace com::sun::star::ucb;
|
|
|
|
using namespace com::sun::star::task;
|
2004-08-02 14:40:50 +00:00
|
|
|
using namespace com::sun::star::sdbc;
|
|
|
|
using namespace com::sun::star::sdb;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::beans;
|
|
|
|
using namespace com::sun::star::util;
|
|
|
|
using namespace com::sun::star::container;
|
|
|
|
using namespace com::sun::star::frame;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2016-04-12 11:16:51 +02:00
|
|
|
bool implCheckItemType( SfxItemSet& _rSet, const sal_uInt16 _nId, const std::function<bool ( const SfxPoolItem* )>& isItemType )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2014-04-17 11:16:55 +02:00
|
|
|
bool bCorrectType = false;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
SfxItemPool* pPool = _rSet.GetPool();
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE( pPool, "implCheckItemType: invalid item pool!" );
|
2004-08-02 14:40:50 +00:00
|
|
|
if ( pPool )
|
|
|
|
{
|
|
|
|
const SfxPoolItem& rDefItem = pPool->GetDefaultItem( _nId );
|
2015-09-30 16:10:07 +02:00
|
|
|
bCorrectType = isItemType(&rDefItem);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
return bCorrectType;
|
|
|
|
}
|
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
void lcl_putProperty(const Reference< XPropertySet >& _rxSet, const OUString& _rName, const Any& _rValue)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( _rxSet.is() )
|
|
|
|
_rxSet->setPropertyValue(_rName, _rValue);
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN("dbaccess", "ODbAdminDialog::implTranslateProperty: could not set the property "
|
|
|
|
<< _rName);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString lcl_createHostWithPort(const SfxStringItem* _pHostName,const SfxInt32Item* _pPortNumber)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sNewUrl;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
if ( _pHostName && _pHostName->GetValue().getLength() )
|
2004-08-02 14:40:50 +00:00
|
|
|
sNewUrl = _pHostName->GetValue();
|
|
|
|
|
|
|
|
if ( _pPortNumber )
|
|
|
|
{
|
2013-02-24 16:08:05 +01:00
|
|
|
sNewUrl = sNewUrl + ":" + OUString::number(_pPortNumber->GetValue());
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return sNewUrl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 23:43:14 +02:00
|
|
|
// ODbDataSourceAdministrationHelper
|
2014-09-23 11:20:40 +02:00
|
|
|
ODbDataSourceAdministrationHelper::ODbDataSourceAdministrationHelper(const Reference< XComponentContext >& _xORB, vcl::Window* _pParent,IItemSetHelper* _pItemSetHelper)
|
2013-01-04 09:12:44 +02:00
|
|
|
: m_xContext(_xORB)
|
2004-08-02 14:40:50 +00:00
|
|
|
, m_pParent(_pParent)
|
2006-06-20 02:03:42 +00:00
|
|
|
, m_pItemSetHelper(_pItemSetHelper)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
/// initialize the property translation map
|
|
|
|
// direct properties of a data source
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_CONNECTURL, PROPERTY_URL));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_NAME, PROPERTY_NAME));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_USER, PROPERTY_USER));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_PASSWORD, PROPERTY_PASSWORD));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_PASSWORDREQUIRED, PROPERTY_ISPASSWORDREQUIRED));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_TABLEFILTER, PROPERTY_TABLEFILTER));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_READONLY, PROPERTY_ISREADONLY));
|
|
|
|
m_aDirectPropTranslator.insert(MapInt2String::value_type(DSID_SUPPRESSVERSIONCL, PROPERTY_SUPPRESSVERSIONCL));
|
|
|
|
|
|
|
|
// implicit properties, to be found in the direct property "Info"
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_JDBCDRIVERCLASS, INFO_JDBCDRIVERCLASS));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_TEXTFILEEXTENSION, INFO_TEXTFILEEXTENSION));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CHARSET, INFO_CHARSET));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_TEXTFILEHEADER, INFO_TEXTFILEHEADER));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_FIELDDELIMITER, INFO_FIELDDELIMITER));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_TEXTDELIMITER, INFO_TEXTDELIMITER));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_DECIMALDELIMITER, INFO_DECIMALDELIMITER));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_THOUSANDSDELIMITER, INFO_THOUSANDSDELIMITER));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_SHOWDELETEDROWS, INFO_SHOWDELETEDROWS));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_ALLOWLONGTABLENAMES, INFO_ALLOWLONGTABLENAMES));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_ADDITIONALOPTIONS, INFO_ADDITIONALOPTIONS));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_SQL92CHECK, PROPERTY_ENABLESQL92CHECK));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_AUTOINCREMENTVALUE, PROPERTY_AUTOINCREMENTCREATION));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_AUTORETRIEVEVALUE, INFO_AUTORETRIEVEVALUE));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_AUTORETRIEVEENABLED, INFO_AUTORETRIEVEENABLED));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_APPEND_TABLE_ALIAS, INFO_APPEND_TABLE_ALIAS));
|
2006-12-13 15:48:20 +00:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_AS_BEFORE_CORRNAME, INFO_AS_BEFORE_CORRELATION_NAME ) );
|
2007-11-01 14:06:03 +00:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CHECK_REQUIRED_FIELDS, INFO_FORMS_CHECK_REQUIRED_FIELDS ) );
|
CWS-TOOLING: integrate CWS dba32a
2009-04-16 13:08:19 +0200 oj r270882 : #i14538# set property at control
2009-04-16 13:04:28 +0200 oj r270881 : #i98557# remove binary string for SRB
2009-04-15 13:19:10 +0200 oj r270838 : #i96782# use type set at view
2009-04-14 14:53:20 +0200 oj r270778 : #i96782# set initialize size for custom shape
2009-04-06 14:19:14 +0200 oj r270546 : #i88432# correct pos when < 0 while resizing
2009-04-06 13:36:13 +0200 oj r270541 : #i96782# handle toolbar and menubar differently
2009-04-06 13:33:54 +0200 oj r270540 : #i96782# handle toolbar and menubar differently
2009-04-06 12:28:23 +0200 oj r270534 : #i96782# handle toolbar and menubar differently
2009-04-06 12:27:44 +0200 oj r270533 : #i96782# handle toolbar and menubar differently
2009-04-06 12:24:32 +0200 oj r270532 : #i96782# handle toolbar and menubar differently
2009-04-06 12:15:15 +0200 oj r270531 : do not initialze when field is empty
2009-04-06 10:06:08 +0200 oj r270528 : #i96782# clean up of menubar and remove duplicates
2009-04-06 09:47:49 +0200 oj r270527 : #i96519# adjust help text dynamic
2009-04-03 13:43:20 +0200 oj r270482 : do not need to remove section from observer they are already disposed
2009-04-03 13:27:28 +0200 fs r270479 : #i97356#
2009-04-02 11:30:39 +0200 fs r270386 : UNX line ends
2009-04-02 10:54:51 +0200 fs r270379 : UNX line ends
2009-04-02 10:39:57 +0200 fs r270378 : UNX line ends
2009-04-02 10:37:24 +0200 fs r270377 : why did this survive the rebase? was removed on trunk ...
2009-03-31 13:31:12 +0200 fs r270277 : component_foo should be public
2009-03-28 00:21:01 +0100 fs r270176 : manuallly merged the changes which happened in CWS before resync to m45, where the directory had been moved from reportdesign/registry to reportbuilder/registry
2009-03-27 23:01:20 +0100 fs r270174 : CWS-TOOLING: rebase CWS dba32a to trunk@270033 (milestone: DEV300:m45)
2009-03-11 12:23:35 +0100 fs r269310 : #i99958# ensure the ControlModelLock doesn't release twice
2009-03-06 09:07:32 +0100 fs r268970 : ignore output paths in SVN's status
2009-03-06 09:07:08 +0100 fs r268969 : ignore output paths in SVN's status
2009-03-04 11:28:02 +0100 oj r268800 : copy and paste error, check correct end now
2009-03-03 15:49:11 +0100 fs r268736 : #i10000# those merges were lost during the rebase (m38->m42)
2009-03-03 13:25:27 +0100 lla r268720 : #i99652# fix wrong refactoring
2009-02-27 11:12:56 +0100 fs r268566 : beautified
2009-02-27 10:53:47 +0100 fs r268561 : doFormListening(false) only when actually isFormListening() (found during complex test case XMLFormSettings with assertions)
2009-02-26 20:55:31 +0100 fs r268546 : #i96530# set the Label property of the bound control, if we didn't create a dedicated label control
2009-02-26 11:53:09 +0100 fs r268494 : #i10000#
2009-02-26 11:27:50 +0100 fs r268493 : #i10000#
2009-02-26 11:17:08 +0100 fs r268490 : reportdesign depends on REPORTBUILDER, not REPORTDESIGN
2009-02-25 11:39:48 +0100 fs r268422 : #i10000# post-resync: INFO_ESCAPE_DATETIME got lost during rebase
2009-02-24 23:24:10 +0100 fs r268411 : CWS-TOOLING: rebase CWS dba32a to trunk@268395 (milestone: DEV300:m42)
2009-02-20 15:09:48 +0100 fs r268324 : respect ImplicitCatalog/SchemaRestriction in all necessary places
2009-02-20 13:48:10 +0100 oj r268318 : order of initialize corrected
2009-02-14 15:07:52 +0100 fs r267759 : #i98975# when an image does not have a bitmap, but a text, draw this (as placeholder)
2009-02-14 15:02:40 +0100 fs r267758 : consolidated and removed some duplicate code
2009-02-14 13:52:23 +0100 fs r267756 : #i10000#
2009-02-13 22:08:34 +0100 fs r267750 : #i100000#
2009-02-13 22:07:25 +0100 fs r267749 : #i10000#
2009-02-13 21:55:36 +0100 fs r267747 : #i10000#
2009-02-13 21:54:27 +0100 fs r267746 : use const_cast
2009-02-13 21:29:10 +0100 fs r267745 : #i10000#
2009-02-13 21:27:39 +0100 fs r267744 : #i10000#
2009-02-13 20:59:13 +0100 fs r267742 : #i10000#
2009-02-13 13:21:30 +0100 fs r267717 : better diagnostics
2009-02-13 13:17:24 +0100 fs r267715 : #i58313# support Catalog/SchemaRestriction settings, which are applied in getTables when 'all catalogs/schemas' are to be retrieved
2009-02-13 13:16:14 +0100 fs r267714 : filter out some more known global settings
2009-02-13 12:39:43 +0100 fs r267713 : #i58313# ImplicitCatalog/SchemaRestriction
2009-02-13 12:36:50 +0100 fs r267712 : when exporting data source settings, allow for properties which have a VOID default value, but are currently not VOID
2009-02-13 12:35:57 +0100 fs r267711 : implement XSet, to allow inserting properties which have a default value of VOID
2009-02-13 12:35:03 +0100 fs r267710 : +addVoidProperty
2009-02-13 10:20:08 +0100 fs r267697 : removed unused variable
2009-02-13 09:46:46 +0100 fs r267695 : refactored the table filtering code, to have a better base for introducing additional low level filters
2009-02-10 09:23:07 +0100 lla r267537 : #i10000# wrong line feed, double named variable
2009-02-09 12:13:08 +0100 oj r267508 : #i98605# notify hanlder
2009-02-09 11:50:34 +0100 oj r267507 : #i98926# solve refcount problem
2009-02-09 11:50:05 +0100 oj r267506 : #i98971# fix for simple html
2009-02-09 11:49:24 +0100 oj r267505 : #i98971# fix for simple html
2009-02-09 11:47:27 +0100 oj r267504 : invoke on copy
2009-02-09 09:51:00 +0100 fs r267500 : #i98316#
2009-02-09 09:46:10 +0100 fs r267499 : setCurrentSelection: don't reset the current form when we de-select everything
2009-02-09 09:43:45 +0100 fs r267498 : #i98316#
2009-02-08 21:25:18 +0100 fs r267496 : #i98272# introduce late ctor for cloning
2009-02-07 21:08:39 +0100 fs r267485 : #i98272# when copy-constructing a FmFormPageImpl, use the XCloneable of the forms collection, instead of XPersistObject (which is incompletely implemented)
2009-02-07 21:07:26 +0100 fs r267484 : removed obsolete include guards
2009-02-07 21:05:22 +0100 fs r267483 : #i98272# implement XCloneable
2009-02-06 15:02:48 +0100 lla r267467 : #i96523# add XImageControl
2009-02-06 14:41:38 +0100 oj r267463 : #i98926# late init when connection disposed but only when asked for
2009-02-06 13:49:57 +0100 lla r267457 : #i92860# bigint in forms doesn't allow input of values > 1, fixed
2009-02-06 13:03:55 +0100 oj r267455 : ImageScaleMode
2009-02-05 14:48:19 +0100 lla r267424 : #i89335# dropdown listboxes are 14 instead of 7 lines high
2009-02-05 13:40:00 +0100 oj r267423 : #i96945# insert new prop Opaque
2009-02-05 13:39:19 +0100 oj r267422 : #i96945# insert layer handling for hell and heaven
2009-02-05 13:29:32 +0100 lla r267420 : #i89335# add is null, is not null, is not like filter condition
2009-02-04 12:23:02 +0100 oj r267364 : #i98821# load table font settings
2009-02-04 10:05:27 +0100 oj r267351 : #i98821# load table font settings
2009-02-04 09:23:22 +0100 fs r267350 : checking persistency of UI settings in database documents - for the moment, capture table formattings (which is issue 98821)
2009-02-04 09:22:15 +0100 fs r267349 : moved some methods which are of wider interest from DatabaseDocument to FileHelper resp. TestCase
2009-02-04 08:56:27 +0100 oj r267347 : #i97586# UcbStreamHelper::CreateStream doesn't check all streamModes use different method
2009-02-04 08:23:26 +0100 oj r267346 : #i98701# check key size is >= 3 and some redesign
2009-02-03 23:29:24 +0100 fs r267345 : return the component (controller), not the frame
2009-02-03 23:28:53 +0100 fs r267344 : openExisting returns a controller now, not the frame (this was a bug)
2009-02-03 23:28:25 +0100 fs r267343 : openElement: properly return the component in the table/query case
2009-02-02 12:48:17 +0100 oj r267261 : #i96013# fix for relative path
2009-02-02 10:33:28 +0100 lla r267253 : #i98557# cleanups and consolidation
2009-02-02 09:37:23 +0100 lla r267250 : #i88432# resize will no longer move components to other sections
2009-02-02 09:08:24 +0100 oj r267245 : #i97475# write 0x1A at the end of the file
2009-01-30 19:39:20 +0100 lla r267230 : #i10000# unused parameters
2009-01-30 09:51:09 +0100 fs r267181 : onsolete
2009-01-30 09:49:27 +0100 fs r267180 : onsolete
2009-01-29 14:28:22 +0100 oj r267139 : #i96825# import cell style
2009-01-29 14:23:12 +0100 oj r267137 : #i98601# export imagescalehandler
2009-01-29 14:19:57 +0100 lla r267135 : #i98601# add ImageScaleMode
2009-01-29 13:21:08 +0100 oj r267124 : #i98601# impl ScaleMode
2009-01-29 13:20:56 +0100 oj r267123 : #i98601# impl ScaleMode
2009-01-29 08:46:40 +0100 oj r267095 : new property: ScaleMode
2009-01-29 08:45:23 +0100 oj r267094 : new ScaleMode from UnControlImageModel
2009-01-29 08:28:12 +0100 oj r267093 : #i87930# close all sub forms/reports when the desktop is going to be terminated and no db frame exists
2009-01-28 19:54:34 +0100 lla r267082 : #i98557# pictures in report wizard
2009-01-28 15:06:25 +0100 oj r267060 : #i87930# close all sub forms/reports when the desktop is going to be terminated and no db frame exists
2009-01-28 11:38:41 +0100 lla r267046 : #i76783# handle binary fields in forms
2009-01-28 09:24:43 +0100 lla r267025 : #i10000#
2009-01-28 08:40:04 +0100 fs r267024 : #i10000#
2009-01-28 08:04:43 +0100 oj r267023 : #i93456# use resource strings for function names
2009-01-27 13:26:05 +0100 oj r266988 : check data field is type field or expression
2009-01-27 13:07:17 +0100 oj r266985 : check data field length
2009-01-27 11:48:19 +0100 oj r266974 : #i96823# return dll string as column name when no alias exists
2009-01-27 09:53:11 +0100 fs r266958 : display the message of a caught exception
2009-01-27 09:44:13 +0100 fs r266957 : #i58313# when retrieving all tables, just set an empty table type filter - the connection will care for translating this, by respecting the TableTypeFilterMode setting
2009-01-27 09:36:09 +0100 fs r266956 : #i58313# getTables: per JDBC spec, is not a valid table type filter. Translate it to 'null'.
2009-01-26 11:24:49 +0100 lla r266912 : #i97865# cleanups (AddField viewable in remote mode)
2009-01-26 07:49:27 +0100 lla r266897 : #i97865# AddField opens in remote case
2009-01-26 07:48:58 +0100 lla r266896 : #i97865# AddField opens in remote case
2009-01-26 07:48:42 +0100 lla r266895 : #i97865# AddField opens in remote case
2009-01-23 15:04:40 +0100 fs r266825 : consolidate the usage of OSQLMessageBox with MessageType==Warning into OSQLWarningBox
2009-01-23 10:47:33 +0100 fs r266787 : +supportsUserAdministration
2009-01-23 10:47:11 +0100 fs r266784 : use DatabaseMetaData.supportsUserAdministration
2009-01-23 07:55:59 +0100 lla r266767 : #i10000# fix gcc compiler failures
2009-01-21 15:08:55 +0100 lla r266673 : #i97265# Labels in HC (IsDark) with other color (viewable)
2009-01-19 14:58:54 +0100 lla r266504 : #i96523# last problems with FormatKey and '0' values fixed
2009-01-19 14:58:00 +0100 lla r266503 : #i96519# AddField help text
2009-01-19 11:59:02 +0100 fs r266485 : #i96523# for formatted field models, init them with TreatAsNumber = false
2009-01-16 10:31:49 +0100 lla r266405 : #i96793# add shrink to popup menu
2009-01-16 09:21:44 +0100 lla r266401 : #i96519# AddField contains a help text
2009-01-15 11:21:49 +0100 lla r266357 : #i96523# problem with XVclWindowPeer not fixed now
2009-01-15 09:19:20 +0100 lla r266335 : #i96523# more crashes fixed.
2009-01-14 13:08:34 +0100 lla r266291 : #i96523# problems with crashes fixed
2009-01-13 10:54:24 +0100 lla r266199 : #i96523# show datasource in formattedfields new files
2009-01-13 10:52:39 +0100 lla r266198 : #i96523# show datasource in formattedfields
2009-01-13 09:41:50 +0100 lla r266197 : #i96526# handling none existance default.otr
2009-01-12 12:55:49 +0100 fs r266151 : don't expect the control model to be a BoundComponent before adding as modify listener
2009-01-12 12:51:33 +0100 fs r266149 : #i88458# let the ImageControl be an XModifyBroadcaster, so the forms runtime can notice when the user changes the control content while it does not have the focus
2009-01-09 13:41:22 +0100 fs r266080 : doc
2009-01-09 13:14:14 +0100 fs r266077 : #i97377# SetModified when order is changed via DnD
2009-01-07 09:55:40 +0100 oj r265951 : merge from master
2009-01-07 09:55:24 +0100 oj r265950 : removed observer
2009-01-07 09:55:06 +0100 oj r265949 : merge from master
2009-01-07 07:29:11 +0100 oj r265945 : shadow var changed
2009-01-06 07:25:57 +0100 oj r265893 : CWS-TOOLING: rebase CWS dba32a to trunk@265758 (milestone: DEV300:m38)
2009-01-05 13:18:22 +0100 oj r265865 : convert to unix le
2009-01-05 09:13:52 +0100 lla r265857 : #i79423# lc_ sc_ permutation fix
2009-01-02 19:40:59 +0100 lla r265847 : #i79423# section shrink icons
2008-12-22 11:37:57 +0100 lla r265749 : #i97484# move component to negative Y-position
2008-12-22 11:37:05 +0100 lla r265748 : #i97484# move component to negative Y-position
2008-12-22 11:35:33 +0100 lla r265747 : #i97484# move component to negative Y-position
2008-12-22 11:25:07 +0100 lla r265745 : #i96757# changes via property browser was not undoable
2008-12-18 15:10:38 +0100 fs r265694 : corrected an condition in doFormListening, which otherwise leads to uncommitable grid columns in documents which are loaded from disc (not in documents which are newly created)
2008-12-18 14:54:39 +0100 fs r265692 : Hide Columns text slightly changed
2008-12-18 13:44:15 +0100 fs r265683 : #i94068# properly display erros happening during a form operation - at least once, and at most once
2008-12-18 11:28:29 +0100 fs r265677 : document the new InputRequired property
2008-12-18 11:04:15 +0100 fs r265676 : #i96530# createControlLabelPair: don't actually create a label for a checkbox
2008-12-18 10:35:53 +0100 fs r265674 : #i95226# when a column is replaced, and it's the selected column, update the selection
2008-12-18 10:34:42 +0100 fs r265673 : #i95226# refactoring of the implReplaced method
2008-12-18 10:34:28 +0100 fs r265672 : #i95226# when replacing a grid column, update the property browser
2008-12-18 10:33:17 +0100 fs r265671 : when an element is removed, remove it from m_aCurrentSelection, too (if necessary)
2008-12-18 10:31:57 +0100 fs r265670 : Hide Columns text slightly changed
2008-12-18 10:15:56 +0100 lla r265669 : #i14538# do not allow to press finish button twice
2008-12-18 08:56:33 +0100 lla r265665 : #i10000# build depend=t problem hacked.
2008-12-17 20:59:10 +0100 fs r265656 : #i89821# don't let a MultiLineEdit select all text when it receives the focus
2008-12-17 12:10:54 +0100 fs r265594 : #i97356#
2008-12-17 12:06:29 +0100 fs r265593 : #i97355# Print -> Printable
2008-12-17 11:59:31 +0100 fs r265591 : #i97350# combo boxes comment on list selection (as list boxes already do)
2008-12-16 09:53:57 +0100 lla r265527 : #i96526# handling none existance default.otr
2008-12-15 14:48:39 +0100 lla r265500 : #i79423# reparing, was wrong implemented
2008-12-12 15:08:33 +0100 lla r265424 : #i10000# remove wrong carridge returns
2008-12-12 15:07:55 +0100 lla r265423 : #i10000# remove wrong carridge returns
2008-12-12 15:06:41 +0100 lla r265422 : #i10000# remove wrong carridge returns
2008-12-12 10:23:13 +0100 lla r265395 : #i95234# reset DragDelta
2008-12-12 10:11:02 +0100 lla r265393 : #i79423# pre versions of shrink buttons
2008-12-11 15:32:13 +0100 fs r265318 : prevent a deadlock during complex.dbaccess.DatabaseDocument test
2008-12-11 15:30:06 +0100 fs r265316 : prevent a deadlock during complex.dbaccess.DatabaseDocument test
2008-12-11 15:07:05 +0100 fs r265307 : removed superfluous text
2008-12-11 12:29:54 +0100 lla r265282 : #i96757# cleanup second try
2008-12-11 12:09:15 +0100 lla r265278 : #i96757# cleanup
2008-12-11 12:07:56 +0100 lla r265277 : #i95234#
2008-12-10 14:04:39 +0100 lla r265183 : #i93472# D&D fixes
2008-12-10 12:29:33 +0100 lla r265168 : #i94067# add (APP|SYS)FONT to XUnitConversion
2008-12-10 12:15:02 +0100 lla r265166 : #i94067# add APPFONT, SYSFONT to MeasureUnit
2008-12-10 11:52:10 +0100 lla r265163 : #i94067# add comments
2008-12-06 20:33:05 +0100 fs r264935 : #i10000# precompiled header
2008-12-05 09:29:26 +0100 fs r264889 : #i10000#
2008-12-05 09:07:31 +0100 fs r264888 : #i10000#
2008-12-04 13:25:46 +0100 fs r264838 : CWS-TOOLING: rebase CWS dba32a to trunk@264807 (milestone: DEV300:m37)
2008-12-03 23:49:13 +0100 fs r264808 : merge changes from trunk, to be able to do a rebase
2008-12-03 17:13:09 +0100 lla r264801 : #i91041# update documentation
2008-12-03 16:57:04 +0100 lla r264799 : #i94067# allow convert(Point|Size)ToLogic as pixel also
2008-12-02 12:36:32 +0100 lla r264687 : #i96782# bring toolbar objects to menu structure
2008-12-02 10:32:44 +0100 lla r264667 : #i86255# make property work
2008-12-02 09:22:47 +0100 lla r264659 : #i79423# add section shrink toolbar
2008-12-02 07:41:22 +0100 lla r264657 : #i86255# add check box for Escape DateTime property
2008-12-02 07:37:17 +0100 lla r264656 : #i79423# new shrink buttons
2008-11-26 11:55:28 +0100 fs r264362 : #i96541#
FillPropertySet: do not only catch UnknownPropertyException when setting the Char/ParaAutoStyleName,
but also care for the other exceptions which can be thrown by XPropertySet::setPropertyValue.
This is actually not the real fix for #i96541#, but only a follow-up. The root cause of the issue
was fixed in CWS dba301b, but this here was another (potential) bug which popped up during investigations.
2008-11-25 09:04:40 +0100 lla r264273 : #i82083# new toolbox in GroupsSorting dialog
2008-11-25 08:56:08 +0100 lla r264272 : #i94729# change token strings into string list, move class out of function
2008-11-24 15:52:22 +0100 fs r264251 : #i96532# do not set AppendTableAlias, NameLengthLimit, etc., if the OXMLDataSourceInstance is used for elements at which those attributes never appear
2008-11-24 15:51:45 +0100 fs r264249 : #i96532# do not set AppendTableAlias, NameLengthLimit, etc., if the OXMLDataSourceInstance is used for elements at which those attributes never appear
2008-11-24 15:45:21 +0100 fs r264244 : #i96532# the API default for ParamNameSubst is false
2008-11-24 15:45:04 +0100 fs r264243 : #i96532# do not set AppendTableAlias, NameLengthLimit, etc., if the OXMLDataSourceInstance is used for elements at which those attributes never appear
2008-11-24 15:44:14 +0100 fs r264241 : #i96532# slight refactoring of exporting properties which have a XML default different from the API default
2008-11-24 10:50:01 +0100 lla r264216 : #i82083# icons for new toolbox
2008-11-24 09:38:45 +0100 lla r264205 : #i82083# new toolbox in GroupsSorting dialog
2008-11-24 09:32:20 +0100 lla r264201 : #i96501# cleanup assertions
2008-11-24 09:12:55 +0100 lla r264198 : #i83082# enhancement for toolboxes, better HC comfort
2008-11-24 08:46:43 +0100 lla r264197 : #i96501# fix problem with negative positions
2008-11-21 11:44:47 +0100 fs r264118 : #i57042# introduce a counter for suspending change notifications of a given property, so recursive calls are possible
2008-11-21 11:02:17 +0100 fs r264116 : #i96388# don't call ExecuteContextMenuAction when no action was chosen by the user
2008-11-21 10:36:53 +0100 fs r264114 : #i47384# assertion was wrong
2008-11-14 12:33:15 +0100 fs r263673 : #i47318# XRowSetChangeBroadcaster/Listener, to be able to listen for changes in an XRowSetSupplier's RowSet
2008-11-14 12:30:29 +0100 fs r263672 : #i47318# more refactoring
- BoundControlModels now listen at the XRowSetSupplier for changes in the supplied
RowSet, to properly revoke/register old/new listeners at the RowSet
- replaced ::osl::Mutex in various places with a ControlModelLock
2008-11-14 12:20:55 +0100 fs r263671 : when BUILD_TYPE includes QADEVOOO, the BUILD_QADEVOOO needs to bet set, too
2008-11-14 12:19:21 +0100 fs r263670 : oops, this was not intended to be committed
2008-11-12 11:08:10 +0100 fs r263579 : #i96096# new ctors taking UNO_QUERY_THROW
2008-11-12 09:15:54 +0100 fs r263576 : no need to load the complete dialog just to get a string which the dialog itself loads from resource
2008-11-10 17:55:45 +0100 fs r263535 : spelling in comment
2008-11-10 15:51:14 +0100 fs r263523 : #i47318# various refactorings
1. don't forward syntetic XLoadListener events from the grid control to
the grid columns. Instead, forward GridColumn::XChild::setParent to
the base class, which then can add itself as load listener
2. removed various occurances of XMultiServiceFactory, instead use the
::comphelper::ComponentContext
3. in O(Bound)ControlModel, have a mechanism to lock the instance (using
ControlModelLock) and fire property changes when the last lock dies.
2008-11-10 12:49:24 +0100 oj r263513 : #i94729# change token strings into string list
2008-11-10 12:13:15 +0100 oj r263512 : #i95222# export chart:title style as well
2008-11-10 08:55:25 +0100 oj r263507 : #i93471# show the correct tabpage when selecting a different object
2008-11-07 23:38:29 +0100 fs r263490 : #i95977# for the event input controls, add a component extending their functionality so they're reset when the users presses DEL
2008-11-07 23:35:39 +0100 fs r263489 : during #i95977#: When a VCL Window is deleted from within VCL code, the respective WindowPeer was never disposed. Corrected this.
2008-11-07 14:57:07 +0100 fs r263420 : #i95963# human-readable display names for event bindings
2008-11-06 10:34:52 +0100 fs r263366 : #i95865# don't use library names containing InvalidZipEntryFileNames - workaround until i95409 is fixed
2008-11-06 10:33:28 +0100 fs r263365 : #i95865#
copied the following change from CWS odfmetadata2 (not yet integrated) into CWS dba31d
- comphelper/inc/comphelper/storagehelper.hxx,
comphelper/source/misc/storagehelper.cxx:
+ add function IsValidZipEntryFileName (moved from module package)
2009-04-22 11:01:27 +00:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_ESCAPE_DATETIME, INFO_ESCAPE_DATETIME ) );
|
2013-02-20 04:33:49 +01:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_PRIMARY_KEY_SUPPORT, OUString("PrimaryKeySupport")));
|
2004-08-02 14:40:50 +00:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_PARAMETERNAMESUBST, INFO_PARAMETERNAMESUBST));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_IGNOREDRIVER_PRIV, INFO_IGNOREDRIVER_PRIV));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_BOOLEANCOMPARISON, PROPERTY_BOOLEANCOMPARISONMODE));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_ENABLEOUTERJOIN, PROPERTY_ENABLEOUTERJOIN));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CATALOG, PROPERTY_USECATALOGINSELECT));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_SCHEMA, PROPERTY_USESCHEMAINSELECT));
|
2013-02-20 04:33:49 +01:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_INDEXAPPENDIX, OUString("AddIndexAppendix")));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_DOSLINEENDS, OUString("PreferDosLikeLineEnds")));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CONN_SOCKET, OUString("LocalSocket")));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_NAMED_PIPE, OUString("NamedPipe")));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_RESPECTRESULTSETTYPE, OUString("RespectDriverResultSetType")));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_MAX_ROW_SCAN, OUString("MaxRowScan")));
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
// extra settings for odbc
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_USECATALOG, INFO_USECATALOG));
|
|
|
|
// extra settings for a ldap address book
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CONN_LDAP_BASEDN, INFO_CONN_LDAP_BASEDN));
|
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CONN_LDAP_ROWCOUNT, INFO_CONN_LDAP_ROWCOUNT));
|
2013-02-20 04:33:49 +01:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_CONN_LDAP_USESSL, OUString("UseSSL")));
|
2004-10-27 11:59:37 +00:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_DOCUMENT_URL, PROPERTY_URL));
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2007-11-27 11:09:10 +00:00
|
|
|
// oracle
|
2013-02-20 04:33:49 +01:00
|
|
|
m_aIndirectPropTranslator.insert(MapInt2String::value_type(DSID_IGNORECURRENCY, OUString("IgnoreCurrency")));
|
2007-11-27 11:09:10 +00:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
try
|
|
|
|
{
|
2013-01-04 09:12:44 +02:00
|
|
|
m_xDatabaseContext = DatabaseContext::create(m_xContext);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2012-12-03 11:10:46 +02:00
|
|
|
catch(const Exception&)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-11-06 09:35:25 +01:00
|
|
|
ShowServiceNotAvailableError(_pParent->GetParent(), "com.sun.star.sdb.DatabaseContext", true);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2014-04-17 11:16:55 +02:00
|
|
|
bool ODbDataSourceAdministrationHelper::getCurrentSettings(Sequence< PropertyValue >& _rDriverParam)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(m_pItemSetHelper->getOutputSet(), "ODbDataSourceAdministrationHelper::getCurrentSettings : not to be called without an example set!");
|
2004-08-02 14:40:50 +00:00
|
|
|
if (!m_pItemSetHelper->getOutputSet())
|
2014-04-17 11:16:55 +02:00
|
|
|
return false;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2017-02-17 19:06:24 +02:00
|
|
|
std::vector< PropertyValue > aReturn;
|
2004-08-02 14:40:50 +00:00
|
|
|
// collecting this in a vector because it has a push_back, in opposite to sequences
|
|
|
|
|
|
|
|
// user: DSID_USER -> "user"
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pUser = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_USER);
|
2013-02-20 04:33:49 +01:00
|
|
|
if (pUser && pUser->GetValue().getLength())
|
2004-08-02 14:40:50 +00:00
|
|
|
aReturn.push_back(
|
2017-01-30 16:38:54 +02:00
|
|
|
PropertyValue( "user", 0,
|
2017-05-19 17:18:33 +02:00
|
|
|
makeAny(pUser->GetValue()), PropertyState_DIRECT_VALUE));
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
// check if the connection type requires a password
|
|
|
|
if (hasAuthentication(*m_pItemSetHelper->getOutputSet()))
|
|
|
|
{
|
2014-06-09 09:46:45 +02:00
|
|
|
// password: DSID_PASSWORD -> password
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pPassword = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_PASSWORD);
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sPassword = pPassword ? pPassword->GetValue() : OUString();
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxBoolItem* pPasswordRequired = m_pItemSetHelper->getOutputSet()->GetItem<SfxBoolItem>(DSID_PASSWORDREQUIRED);
|
2004-08-02 14:40:50 +00:00
|
|
|
// if the set does not contain a password, but the item set says it requires one, ask the user
|
2013-02-20 04:33:49 +01:00
|
|
|
if ((!pPassword || !pPassword->GetValue().getLength()) && (pPasswordRequired && pPasswordRequired->GetValue()))
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pName = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_NAME);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2010-03-16 10:59:46 +01:00
|
|
|
Reference< XModel > xModel( getDataSourceOrModel( m_xDatasource ), UNO_QUERY_THROW );
|
|
|
|
::comphelper::NamedValueCollection aArgs( xModel->getArgs() );
|
|
|
|
Reference< XInteractionHandler > xHandler( aArgs.getOrDefault( "InteractionHandler", Reference< XInteractionHandler >() ) );
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2010-03-16 10:59:46 +01:00
|
|
|
if ( !xHandler.is() )
|
|
|
|
{
|
|
|
|
// instantiate the default SDB interaction handler
|
2015-11-10 10:13:39 +01:00
|
|
|
xHandler.set( task::InteractionHandler::createWithParent(m_xContext, nullptr), UNO_QUERY );
|
2010-03-16 10:59:46 +01:00
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sName = pName ? pName->GetValue() : OUString();
|
|
|
|
OUString sLoginRequest(ModuleRes(STR_ENTER_CONNECTION_PASSWORD));
|
|
|
|
OUString sTemp = sName;
|
2015-11-10 10:13:39 +01:00
|
|
|
sName = ::dbaui::getStrippedDatabaseName(nullptr,sTemp);
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( !sName.isEmpty() )
|
2013-02-22 16:38:00 +01:00
|
|
|
sLoginRequest = sLoginRequest.replaceAll("$name$", sName);
|
2005-03-10 15:48:20 +00:00
|
|
|
else
|
|
|
|
{
|
2015-06-25 12:36:31 +02:00
|
|
|
sLoginRequest = sLoginRequest.replaceAll("\"$name$\"", "");
|
2013-02-22 16:38:00 +01:00
|
|
|
// ensure that in other languages the string will be deleted
|
2015-06-25 12:36:31 +02:00
|
|
|
sLoginRequest = sLoginRequest.replaceAll("$name$", "");
|
2005-03-10 15:48:20 +00:00
|
|
|
}
|
|
|
|
|
2010-03-16 10:59:46 +01:00
|
|
|
// the request
|
|
|
|
AuthenticationRequest aRequest;
|
|
|
|
aRequest.ServerName = sName;
|
|
|
|
aRequest.Diagnostic = sLoginRequest;
|
2016-04-20 17:16:13 +02:00
|
|
|
aRequest.HasRealm = aRequest.HasAccount = false;
|
2010-03-16 10:59:46 +01:00
|
|
|
// aRequest.Realm
|
2015-11-10 10:13:39 +01:00
|
|
|
aRequest.HasUserName = pUser != nullptr;
|
2017-05-19 17:18:33 +02:00
|
|
|
aRequest.UserName = pUser ? pUser->GetValue() : OUString();
|
2016-04-20 17:16:13 +02:00
|
|
|
aRequest.HasPassword = true;
|
2010-03-16 10:59:46 +01:00
|
|
|
//aRequest.Password
|
2016-04-20 17:16:13 +02:00
|
|
|
aRequest.HasAccount = false;
|
2010-03-16 10:59:46 +01:00
|
|
|
// aRequest.Account
|
|
|
|
|
|
|
|
comphelper::OInteractionRequest* pRequest = new comphelper::OInteractionRequest(makeAny(aRequest));
|
|
|
|
uno::Reference< XInteractionRequest > xRequest(pRequest);
|
|
|
|
|
|
|
|
// build an interaction request
|
|
|
|
// two continuations (Ok and Cancel)
|
|
|
|
::rtl::Reference< comphelper::OInteractionAbort > pAbort = new comphelper::OInteractionAbort;
|
|
|
|
::rtl::Reference< dbaccess::OAuthenticationContinuation > pAuthenticate = new dbaccess::OAuthenticationContinuation;
|
2014-04-17 11:16:55 +02:00
|
|
|
pAuthenticate->setCanChangeUserName( false );
|
2010-03-16 10:59:46 +01:00
|
|
|
pAuthenticate->setRememberPassword( RememberAuthentication_SESSION );
|
|
|
|
|
|
|
|
// some knittings
|
|
|
|
pRequest->addContinuation(pAbort.get());
|
|
|
|
pRequest->addContinuation(pAuthenticate.get());
|
|
|
|
|
|
|
|
// handle the request
|
|
|
|
try
|
|
|
|
{
|
2010-10-13 01:38:41 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2010-03-16 10:59:46 +01:00
|
|
|
// release the mutex when calling the handler, it may need to lock the SolarMutex
|
|
|
|
xHandler->handle(xRequest);
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
|
|
}
|
|
|
|
if (!pAuthenticate->wasSelected())
|
2014-04-17 11:16:55 +02:00
|
|
|
return false;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2010-03-16 10:59:46 +01:00
|
|
|
sPassword = pAuthenticate->getPassword();
|
|
|
|
if (pAuthenticate->getRememberPassword())
|
2004-08-02 14:40:50 +00:00
|
|
|
m_pItemSetHelper->getWriteOutputSet()->Put(SfxStringItem(DSID_PASSWORD, sPassword));
|
|
|
|
}
|
|
|
|
|
2013-03-09 21:47:17 +01:00
|
|
|
if (!sPassword.isEmpty())
|
2004-08-02 14:40:50 +00:00
|
|
|
aReturn.push_back(
|
2017-05-10 12:37:04 +02:00
|
|
|
PropertyValue( "password", 0,
|
|
|
|
makeAny(sPassword), PropertyState_DIRECT_VALUE));
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2006-04-19 12:20:20 +00:00
|
|
|
if ( !aReturn.empty() )
|
|
|
|
_rDriverParam = Sequence< PropertyValue >(&(*aReturn.begin()), aReturn.size());
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
// append all the other stuff (charset etc.)
|
|
|
|
fillDatasourceInfo(*m_pItemSetHelper->getOutputSet(), _rDriverParam);
|
|
|
|
|
2014-04-17 11:16:55 +02:00
|
|
|
return true;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
void ODbDataSourceAdministrationHelper::successfullyConnected()
|
|
|
|
{
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(m_pItemSetHelper->getOutputSet(), "ODbDataSourceAdministrationHelper::successfullyConnected: not to be called without an example set!");
|
2004-08-02 14:40:50 +00:00
|
|
|
if (!m_pItemSetHelper->getOutputSet())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hasAuthentication(*m_pItemSetHelper->getOutputSet()))
|
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pPassword = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_PASSWORD);
|
2013-02-20 04:33:49 +01:00
|
|
|
if (pPassword && (0 != pPassword->GetValue().getLength()))
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sPassword = pPassword->GetValue();
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
Reference< XPropertySet > xCurrentDatasource = getCurrentDataSource();
|
|
|
|
lcl_putProperty(xCurrentDatasource,m_aDirectPropTranslator[DSID_PASSWORD], makeAny(sPassword));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
void ODbDataSourceAdministrationHelper::clearPassword()
|
|
|
|
{
|
|
|
|
if (m_pItemSetHelper->getWriteOutputSet())
|
|
|
|
m_pItemSetHelper->getWriteOutputSet()->ClearItem(DSID_PASSWORD);
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2017-02-17 19:06:24 +02:00
|
|
|
std::pair< Reference<XConnection>,sal_Bool> ODbDataSourceAdministrationHelper::createConnection()
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2017-02-17 19:06:24 +02:00
|
|
|
std::pair< Reference<XConnection>,sal_Bool> aRet;
|
2016-04-20 17:16:13 +02:00
|
|
|
aRet.second = false;
|
2005-01-21 16:12:45 +00:00
|
|
|
Sequence< PropertyValue > aConnectionParams;
|
|
|
|
if ( getCurrentSettings(aConnectionParams) )
|
|
|
|
{
|
|
|
|
// the current DSN
|
|
|
|
// fill the table list with this connection information
|
|
|
|
SQLExceptionInfo aErrorInfo;
|
|
|
|
try
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2005-01-21 16:12:45 +00:00
|
|
|
WaitObject aWaitCursor(m_pParent);
|
|
|
|
aRet.first = getDriver()->connect(getConnectionURL(), aConnectionParams);
|
2016-04-20 17:16:13 +02:00
|
|
|
aRet.second = true;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2012-05-17 22:39:12 +09:00
|
|
|
catch (const SQLContext& e) { aErrorInfo = SQLExceptionInfo(e); }
|
|
|
|
catch (const SQLWarning& e) { aErrorInfo = SQLExceptionInfo(e); }
|
|
|
|
catch (const SQLException& e) { aErrorInfo = SQLExceptionInfo(e); }
|
2005-01-21 16:12:45 +00:00
|
|
|
|
2013-01-04 09:12:44 +02:00
|
|
|
showError(aErrorInfo,m_pParent,getORB());
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2005-01-21 16:12:45 +00:00
|
|
|
if ( aRet.first.is() )
|
2004-08-02 14:40:50 +00:00
|
|
|
successfullyConnected();// notify the admindlg to save the password
|
|
|
|
|
2005-01-21 16:12:45 +00:00
|
|
|
return aRet;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
Reference< XDriver > ODbDataSourceAdministrationHelper::getDriver()
|
2010-01-08 11:02:32 +01:00
|
|
|
{
|
|
|
|
return getDriver(getConnectionURL());
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
Reference< XDriver > ODbDataSourceAdministrationHelper::getDriver(const OUString& _sURL)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
// get the global DriverManager
|
2012-12-03 13:16:26 +02:00
|
|
|
Reference< XConnectionPool > xDriverManager;
|
|
|
|
|
2013-09-26 12:17:53 +02:00
|
|
|
OUString sCurrentActionError = ModuleRes(STR_COULDNOTCREATE_DRIVERMANAGER);
|
|
|
|
sCurrentActionError = sCurrentActionError.replaceFirst("#servicename#", "com.sun.star.sdbc.ConnectionPool");
|
2012-12-03 13:16:26 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
try
|
|
|
|
{
|
2013-01-04 09:12:44 +02:00
|
|
|
xDriverManager.set( ConnectionPool::create( getORB() ) );
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2012-05-17 22:39:12 +09:00
|
|
|
catch (const Exception& e)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
// wrap the exception into an SQLException
|
2017-01-30 16:38:54 +02:00
|
|
|
SQLException aSQLWrapper(e.Message, getORB(), "S1000", 0, Any());
|
|
|
|
throw SQLException(sCurrentActionError, getORB(), "S1000", 0, makeAny(aSQLWrapper));
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2010-01-08 11:02:32 +01:00
|
|
|
Reference< XDriver > xDriver = xDriverManager->getDriverByURL(_sURL);
|
2004-08-02 14:40:50 +00:00
|
|
|
if (!xDriver.is())
|
|
|
|
{
|
2013-09-26 12:17:53 +02:00
|
|
|
sCurrentActionError = ModuleRes(STR_NOREGISTEREDDRIVER);
|
|
|
|
sCurrentActionError = sCurrentActionError.replaceFirst("#connurl#", _sURL);
|
2004-08-02 14:40:50 +00:00
|
|
|
// will be caught and translated into an SQLContext exception
|
2017-01-30 16:38:54 +02:00
|
|
|
throw SQLException(sCurrentActionError, getORB(), "S1000", 0, Any());
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
return xDriver;
|
|
|
|
}
|
2005-06-30 15:30:42 +00:00
|
|
|
|
2016-07-18 09:22:27 +02:00
|
|
|
Reference< XPropertySet > const & ODbDataSourceAdministrationHelper::getCurrentDataSource()
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
if ( !m_xDatasource.is() )
|
|
|
|
{
|
2005-06-30 15:30:42 +00:00
|
|
|
Reference<XInterface> xIn(m_aDataSourceOrName,UNO_QUERY);
|
2005-03-10 15:48:20 +00:00
|
|
|
if ( !xIn.is() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sCurrentDatasource;
|
2005-06-30 15:30:42 +00:00
|
|
|
m_aDataSourceOrName >>= sCurrentDatasource;
|
2011-12-19 18:10:37 -02:00
|
|
|
OSL_ENSURE(!sCurrentDatasource.isEmpty(),"No datasource name given!");
|
2004-08-02 14:40:50 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( m_xDatabaseContext.is() )
|
|
|
|
m_xDatasource.set(m_xDatabaseContext->getByName(sCurrentDatasource),UNO_QUERY);
|
2005-03-10 15:48:20 +00:00
|
|
|
xIn = m_xDatasource;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
catch(const Exception&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2005-03-10 15:48:20 +00:00
|
|
|
m_xModel.set(getDataSourceOrModel(xIn),UNO_QUERY);
|
|
|
|
if ( m_xModel.is() )
|
|
|
|
m_xDatasource.set(xIn,UNO_QUERY);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_xDatasource.set(getDataSourceOrModel(xIn),UNO_QUERY);
|
|
|
|
m_xModel.set(xIn,UNO_QUERY);
|
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(m_xDatasource.is(), "ODbDataSourceAdministrationHelper::getCurrentDataSource: no data source!");
|
2004-08-02 14:40:50 +00:00
|
|
|
return m_xDatasource;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString ODbDataSourceAdministrationHelper::getDatasourceType( const SfxItemSet& _rSet )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pConnectURL = _rSet.GetItem<SfxStringItem>(DSID_CONNECTURL);
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE( pConnectURL , "ODbDataSourceAdministrationHelper::getDatasourceType: invalid items in the source set!" );
|
2015-10-19 07:18:39 +02:00
|
|
|
const DbuTypeCollectionItem* pTypeCollection = _rSet.GetItem<DbuTypeCollectionItem>(DSID_TYPECOLLECTION);
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pTypeCollection, "ODbDataSourceAdministrationHelper::getDatasourceType: invalid items in the source set!");
|
2008-10-01 12:28:29 +00:00
|
|
|
::dbaccess::ODsnTypeCollection* pCollection = pTypeCollection->getCollection();
|
2009-07-03 12:24:35 +00:00
|
|
|
return pCollection->getType(pConnectURL->GetValue());
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2015-04-24 15:29:31 +02:00
|
|
|
bool ODbDataSourceAdministrationHelper::hasAuthentication(const SfxItemSet& _rSet)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2007-11-01 14:06:03 +00:00
|
|
|
return DataSourceMetaData::getAuthentication( getDatasourceType( _rSet ) ) != AuthNone;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-09-26 12:17:53 +02:00
|
|
|
OUString ODbDataSourceAdministrationHelper::getConnectionURL() const
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-24 16:08:05 +01:00
|
|
|
OUString sNewUrl;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString eType = getDatasourceType(*m_pItemSetHelper->getOutputSet());
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pUrlItem = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_CONNECTURL);
|
|
|
|
const DbuTypeCollectionItem* pTypeCollection = m_pItemSetHelper->getOutputSet()->GetItem<DbuTypeCollectionItem>(DSID_TYPECOLLECTION);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
OSL_ENSURE(pUrlItem,"Connection URL is NULL. -> GPF!");
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pTypeCollection, "ODbDataSourceAdministrationHelper::getDatasourceType: invalid items in the source set!");
|
2008-10-01 12:28:29 +00:00
|
|
|
::dbaccess::ODsnTypeCollection* pCollection = pTypeCollection->getCollection();
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pCollection, "ODbDataSourceAdministrationHelper::getDatasourceType: invalid type collection!");
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2009-07-03 12:24:35 +00:00
|
|
|
switch( pCollection->determineType(eType) )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_DBASE:
|
|
|
|
case ::dbaccess::DST_FLAT:
|
|
|
|
case ::dbaccess::DST_CALC:
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_MSACCESS:
|
|
|
|
case ::dbaccess::DST_MSACCESS_2007:
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sFileName = pCollection->cutPrefix(pUrlItem->GetValue());
|
|
|
|
OUString sNewFileName;
|
2004-08-02 14:40:50 +00:00
|
|
|
if ( ::osl::FileBase::getSystemPathFromFileURL( sFileName, sNewFileName ) == ::osl::FileBase::E_None )
|
|
|
|
{
|
2013-02-24 16:08:05 +01:00
|
|
|
sNewUrl += sNewFileName;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_MYSQL_NATIVE:
|
|
|
|
case ::dbaccess::DST_MYSQL_JDBC:
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pHostName = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_CONN_HOSTNAME);
|
|
|
|
const SfxInt32Item* pPortNumber = m_pItemSetHelper->getOutputSet()->GetItem<SfxInt32Item>(DSID_MYSQL_PORTNUMBER);
|
|
|
|
const SfxStringItem* pDatabaseName = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_DATABASENAME);
|
2004-08-02 14:40:50 +00:00
|
|
|
sNewUrl = lcl_createHostWithPort(pHostName,pPortNumber);
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sDatabaseName = pDatabaseName ? pDatabaseName->GetValue() : OUString();
|
|
|
|
if ( !sDatabaseName.getLength() && pUrlItem )
|
2004-10-27 11:59:37 +00:00
|
|
|
sDatabaseName = pCollection->cutPrefix( pUrlItem->GetValue() );
|
|
|
|
// TODO: what's that? Why is the database name transported via the URL Item?
|
|
|
|
// Huh? Anybody there?
|
2005-01-21 16:12:45 +00:00
|
|
|
// OJ: It is needed when the connection properties are changed. There the URL is used for every type.
|
2004-10-27 11:59:37 +00:00
|
|
|
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( !sDatabaseName.isEmpty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-06-29 14:42:54 +02:00
|
|
|
sNewUrl += "/" + sDatabaseName;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_ORACLE_JDBC:
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pHostName = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_CONN_HOSTNAME);
|
|
|
|
const SfxInt32Item* pPortNumber = m_pItemSetHelper->getOutputSet()->GetItem<SfxInt32Item>(DSID_ORACLE_PORTNUMBER);
|
|
|
|
const SfxStringItem* pDatabaseName = m_pItemSetHelper->getOutputSet()->GetItem<SfxStringItem>(DSID_DATABASENAME);
|
2013-02-20 04:33:49 +01:00
|
|
|
if ( pHostName && pHostName->GetValue().getLength() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-24 16:08:05 +01:00
|
|
|
sNewUrl = "@" + lcl_createHostWithPort(pHostName,pPortNumber);
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sDatabaseName = pDatabaseName ? pDatabaseName->GetValue() : OUString();
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( sDatabaseName.isEmpty() && pUrlItem )
|
2005-03-10 15:48:20 +00:00
|
|
|
sDatabaseName = pCollection->cutPrefix( pUrlItem->GetValue() );
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( !sDatabaseName.isEmpty() )
|
2005-03-10 15:48:20 +00:00
|
|
|
{
|
2013-06-29 14:42:54 +02:00
|
|
|
sNewUrl += ":" + sDatabaseName;
|
2005-03-10 15:48:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // here someone entered a JDBC url which looks like oracle, so we have to use the url property
|
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_LDAP:
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxInt32Item* pPortNumber = m_pItemSetHelper->getOutputSet()->GetItem<SfxInt32Item>(DSID_CONN_LDAP_PORTNUMBER);
|
2015-11-10 10:13:39 +01:00
|
|
|
sNewUrl = pCollection->cutPrefix(pUrlItem->GetValue()) + lcl_createHostWithPort(nullptr,pPortNumber);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_JDBC:
|
2004-08-02 14:40:50 +00:00
|
|
|
// run through
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-02-24 16:08:05 +01:00
|
|
|
if ( !sNewUrl.isEmpty() )
|
|
|
|
sNewUrl = pCollection->getPrefix(eType) + sNewUrl;
|
2004-08-02 14:40:50 +00:00
|
|
|
else
|
|
|
|
sNewUrl = pUrlItem->GetValue();
|
|
|
|
|
|
|
|
return sNewUrl;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
struct PropertyValueLess
|
|
|
|
{
|
|
|
|
bool operator() (const PropertyValue& x, const PropertyValue& y) const
|
2014-05-02 15:42:25 +02:00
|
|
|
{ return x.Name < y.Name; } // construct prevents a MSVC6 warning
|
2004-08-02 14:40:50 +00:00
|
|
|
};
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-12-05 16:16:28 +01:00
|
|
|
typedef std::set<PropertyValue, PropertyValueLess> PropertyValueSet;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
void ODbDataSourceAdministrationHelper::translateProperties(const Reference< XPropertySet >& _rxSource, SfxItemSet& _rDest)
|
|
|
|
{
|
|
|
|
if (_rxSource.is())
|
|
|
|
{
|
2013-12-06 10:17:37 +01:00
|
|
|
for ( MapInt2String::const_iterator aDirect = m_aDirectPropTranslator.begin();
|
2004-08-02 14:40:50 +00:00
|
|
|
aDirect != m_aDirectPropTranslator.end();
|
|
|
|
++aDirect
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// get the property value
|
|
|
|
Any aValue;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
aValue = _rxSource->getPropertyValue(aDirect->second);
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN("dbaccess", "ODbDataSourceAdministrationHelper::translateProperties: could not extract the property "
|
|
|
|
<< aDirect->second);
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
// transfer it into an item
|
|
|
|
implTranslateProperty(_rDest, aDirect->first, aValue);
|
|
|
|
}
|
|
|
|
|
2013-02-28 18:11:24 -04:00
|
|
|
// get the additional information
|
2004-08-02 14:40:50 +00:00
|
|
|
Sequence< PropertyValue > aAdditionalInfo;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
_rxSource->getPropertyValue(PROPERTY_INFO) >>= aAdditionalInfo;
|
|
|
|
}
|
|
|
|
catch(Exception&) { }
|
|
|
|
|
|
|
|
// collect the names of the additional settings
|
|
|
|
const PropertyValue* pAdditionalInfo = aAdditionalInfo.getConstArray();
|
|
|
|
PropertyValueSet aInfos;
|
|
|
|
for (sal_Int32 i=0; i<aAdditionalInfo.getLength(); ++i, ++pAdditionalInfo)
|
|
|
|
{
|
2014-12-15 10:11:27 +01:00
|
|
|
if( pAdditionalInfo->Name == "JDBCDRV" )
|
2004-08-02 14:40:50 +00:00
|
|
|
{ // compatibility
|
|
|
|
PropertyValue aCompatibility(*pAdditionalInfo);
|
2013-11-04 13:33:17 +02:00
|
|
|
aCompatibility.Name = "JavaDriverClass";
|
2004-08-02 14:40:50 +00:00
|
|
|
aInfos.insert(aCompatibility);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aInfos.insert(*pAdditionalInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// go through all known translations and check if we have such a setting
|
2009-07-03 12:24:35 +00:00
|
|
|
if ( !aInfos.empty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2009-07-03 12:24:35 +00:00
|
|
|
PropertyValue aSearchFor;
|
2013-12-06 10:17:37 +01:00
|
|
|
MapInt2String::const_iterator aEnd = m_aIndirectPropTranslator.end();
|
|
|
|
for ( MapInt2String::const_iterator aIndirect = m_aIndirectPropTranslator.begin();
|
2009-07-03 12:24:35 +00:00
|
|
|
aIndirect != aEnd;
|
|
|
|
++aIndirect)
|
|
|
|
{
|
|
|
|
aSearchFor.Name = aIndirect->second;
|
2013-12-05 16:16:28 +01:00
|
|
|
PropertyValueSet::const_iterator aInfoPos = aInfos.find(aSearchFor);
|
2009-07-03 12:24:35 +00:00
|
|
|
if (aInfos.end() != aInfoPos)
|
|
|
|
// the property is contained in the info sequence
|
|
|
|
// -> transfer it into an item
|
|
|
|
implTranslateProperty(_rDest, aIndirect->first, aInfoPos->Value);
|
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
convertUrl(_rDest);
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
_rDest.Put(OPropertySetItem(DSID_DATASOURCE_UNO, _rxSource));
|
2005-03-10 15:48:20 +00:00
|
|
|
Reference<XStorable> xStore(getDataSourceOrModel(_rxSource),UNO_QUERY);
|
2004-08-02 14:40:50 +00:00
|
|
|
_rDest.Put(SfxBoolItem(DSID_READONLY, !xStore.is() || xStore->isReadonly() ));
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2011-03-12 12:04:35 +01:00
|
|
|
OSL_FAIL("IsReadOnly throws an exception!");
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ODbDataSourceAdministrationHelper::translateProperties(const SfxItemSet& _rSource, const Reference< XPropertySet >& _rxDest)
|
|
|
|
{
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(_rxDest.is(), "ODbDataSourceAdministrationHelper::translateProperties: invalid property set!");
|
2004-08-02 14:40:50 +00:00
|
|
|
if (!_rxDest.is())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// the property set info
|
|
|
|
Reference< XPropertySetInfo > xInfo;
|
|
|
|
try { xInfo = _rxDest->getPropertySetInfo(); }
|
|
|
|
catch(Exception&) { }
|
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
const OUString sUrlProp("URL");
|
2004-08-02 14:40:50 +00:00
|
|
|
// transfer the direct properties
|
2013-12-06 10:17:37 +01:00
|
|
|
for ( MapInt2String::const_iterator aDirect = m_aDirectPropTranslator.begin();
|
2004-08-02 14:40:50 +00:00
|
|
|
aDirect != m_aDirectPropTranslator.end();
|
|
|
|
++aDirect
|
|
|
|
)
|
|
|
|
{
|
2011-01-14 15:00:11 +01:00
|
|
|
const SfxPoolItem* pCurrentItem = _rSource.GetItem((sal_uInt16)aDirect->first);
|
2004-08-02 14:40:50 +00:00
|
|
|
if (pCurrentItem)
|
|
|
|
{
|
|
|
|
sal_Int16 nAttributes = PropertyAttribute::READONLY;
|
|
|
|
if (xInfo.is())
|
|
|
|
{
|
|
|
|
try { nAttributes = xInfo->getPropertyByName(aDirect->second).Attributes; }
|
|
|
|
catch(Exception&) { }
|
|
|
|
}
|
|
|
|
if ((nAttributes & PropertyAttribute::READONLY) == 0)
|
|
|
|
{
|
|
|
|
if ( sUrlProp == aDirect->second )
|
|
|
|
{
|
2017-05-19 17:18:33 +02:00
|
|
|
Any aValue(makeAny(getConnectionURL()));
|
2013-02-20 04:33:49 +01:00
|
|
|
// aValue <<= OUString();
|
2004-08-02 14:40:50 +00:00
|
|
|
lcl_putProperty(_rxDest, aDirect->second,aValue);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
implTranslateProperty(_rxDest, aDirect->second, pCurrentItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now for the indirect properties
|
|
|
|
|
|
|
|
Sequence< PropertyValue > aInfo;
|
|
|
|
// the original properties
|
|
|
|
try
|
|
|
|
{
|
|
|
|
_rxDest->getPropertyValue(PROPERTY_INFO) >>= aInfo;
|
|
|
|
}
|
|
|
|
catch(Exception&) { }
|
|
|
|
|
|
|
|
// overwrite and extend them
|
|
|
|
fillDatasourceInfo(_rSource, aInfo);
|
|
|
|
// and propagate the (newly composed) sequence to the set
|
|
|
|
lcl_putProperty(_rxDest,PROPERTY_INFO, makeAny(aInfo));
|
|
|
|
}
|
|
|
|
|
2015-08-03 09:14:58 +02:00
|
|
|
void ODbDataSourceAdministrationHelper::fillDatasourceInfo(const SfxItemSet& _rSource, Sequence< css::beans::PropertyValue >& _rInfo)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
// within the current "Info" sequence, replace the ones we can examine from the item set
|
|
|
|
// (we don't just fill a completely new sequence with our own items, but we preserve any properties unknown to
|
|
|
|
// us)
|
|
|
|
|
|
|
|
// first determine which of all the items are relevant for the data source (depends on the connection url)
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString eType = getDatasourceType(_rSource);
|
2017-02-17 19:06:24 +02:00
|
|
|
std::vector< sal_Int32> aDetailIds;
|
2013-01-04 09:12:44 +02:00
|
|
|
ODriversSettings::getSupportedIndirectSettings(eType, getORB(), aDetailIds);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
// collect the translated property values for the relevant items
|
|
|
|
PropertyValueSet aRelevantSettings;
|
2013-12-06 10:17:37 +01:00
|
|
|
MapInt2String::const_iterator aTranslation;
|
2017-02-17 19:06:24 +02:00
|
|
|
std::vector< sal_Int32>::const_iterator aDetailsEnd = aDetailIds.end();
|
|
|
|
for (std::vector< sal_Int32>::const_iterator aIter = aDetailIds.begin();aIter != aDetailsEnd ; ++aIter)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2011-01-14 15:00:11 +01:00
|
|
|
const SfxPoolItem* pCurrent = _rSource.GetItem((sal_uInt16)*aIter);
|
2004-08-02 14:40:50 +00:00
|
|
|
aTranslation = m_aIndirectPropTranslator.find(*aIter);
|
|
|
|
if ( pCurrent && (m_aIndirectPropTranslator.end() != aTranslation) )
|
|
|
|
{
|
|
|
|
if ( aTranslation->second == INFO_CHARSET )
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sCharSet;
|
2004-08-02 14:40:50 +00:00
|
|
|
implTranslateProperty(pCurrent) >>= sCharSet;
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sCharSet.isEmpty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
aRelevantSettings.insert(PropertyValue(aTranslation->second, 0, makeAny(sCharSet), PropertyState_DIRECT_VALUE));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aRelevantSettings.insert(PropertyValue(aTranslation->second, 0, implTranslateProperty(pCurrent), PropertyState_DIRECT_VALUE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// settings to preserve
|
|
|
|
MapInt2String aPreservedSettings;
|
|
|
|
|
|
|
|
// now aRelevantSettings contains all the property values relevant for the current data source type,
|
|
|
|
// check the original sequence if it already contains any of these values (which have to be overwritten, then)
|
|
|
|
PropertyValue* pInfo = _rInfo.getArray();
|
|
|
|
PropertyValue aSearchFor;
|
|
|
|
sal_Int32 nObsoleteSetting = -1;
|
|
|
|
sal_Int32 nCount = _rInfo.getLength();
|
|
|
|
for (sal_Int32 i = 0; i < nCount; ++i, ++pInfo)
|
|
|
|
{
|
|
|
|
aSearchFor.Name = pInfo->Name;
|
2016-03-28 19:17:45 +02:00
|
|
|
PropertyValueSet::const_iterator aOverwrittenSetting = aRelevantSettings.find(aSearchFor);
|
2004-08-02 14:40:50 +00:00
|
|
|
if (aRelevantSettings.end() != aOverwrittenSetting)
|
|
|
|
{ // the setting was present in the original sequence, and it is to be overwritten -> replace it
|
2015-08-21 10:33:44 +02:00
|
|
|
if ( pInfo->Value != aOverwrittenSetting->Value )
|
2004-08-02 14:40:50 +00:00
|
|
|
*pInfo = *aOverwrittenSetting;
|
|
|
|
aRelevantSettings.erase(aOverwrittenSetting);
|
|
|
|
}
|
2014-12-15 10:11:27 +01:00
|
|
|
else if( pInfo->Name == "JDBCDRV" )
|
2004-08-02 14:40:50 +00:00
|
|
|
{ // this is a compatibility setting, remove it from the sequence (it's replaced by JavaDriverClass)
|
|
|
|
nObsoleteSetting = i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aPreservedSettings[i] = pInfo->Name;
|
|
|
|
}
|
|
|
|
if (-1 != nObsoleteSetting)
|
|
|
|
::comphelper::removeElementAt(_rInfo, nObsoleteSetting);
|
|
|
|
|
|
|
|
if ( !aPreservedSettings.empty() )
|
|
|
|
{ // check if there are settings which
|
|
|
|
// * are known as indirect properties
|
|
|
|
// * but not relevant for the current data source type
|
|
|
|
// These settings have to be removed: If they're not relevant, we have no UI for changing them.
|
|
|
|
|
|
|
|
// for this, we need a string-controlled quick access to m_aIndirectPropTranslator
|
|
|
|
StringSet aIndirectProps;
|
2017-02-17 19:06:24 +02:00
|
|
|
std::transform(m_aIndirectPropTranslator.begin(),
|
2004-08-02 14:40:50 +00:00
|
|
|
m_aIndirectPropTranslator.end(),
|
2017-02-17 19:06:24 +02:00
|
|
|
std::insert_iterator<StringSet>(aIndirectProps,aIndirectProps.begin()),
|
2015-08-11 14:51:35 -04:00
|
|
|
::o3tl::select2nd< MapInt2String::value_type >());
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
// now check the to-be-preserved props
|
2017-02-17 19:06:24 +02:00
|
|
|
std::vector< sal_Int32 > aRemoveIndexes;
|
2004-08-02 14:40:50 +00:00
|
|
|
sal_Int32 nPositionCorrector = 0;
|
2013-12-06 10:17:37 +01:00
|
|
|
MapInt2String::const_iterator aPreservedEnd = aPreservedSettings.end();
|
|
|
|
for ( MapInt2String::const_iterator aPreserved = aPreservedSettings.begin();
|
2004-08-02 14:40:50 +00:00
|
|
|
aPreserved != aPreservedEnd;
|
|
|
|
++aPreserved
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (aIndirectProps.end() != aIndirectProps.find(aPreserved->second))
|
|
|
|
{
|
|
|
|
aRemoveIndexes.push_back(aPreserved->first - nPositionCorrector);
|
|
|
|
++nPositionCorrector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// now finally remove all such props
|
2017-02-17 19:06:24 +02:00
|
|
|
std::vector< sal_Int32 >::const_iterator aRemoveEnd = aRemoveIndexes.end();
|
|
|
|
for ( std::vector< sal_Int32 >::const_iterator aRemoveIndex = aRemoveIndexes.begin();
|
2004-08-02 14:40:50 +00:00
|
|
|
aRemoveIndex != aRemoveEnd;
|
|
|
|
++aRemoveIndex
|
|
|
|
)
|
|
|
|
::comphelper::removeElementAt(_rInfo, *aRemoveIndex);
|
|
|
|
}
|
|
|
|
|
2009-07-03 12:24:35 +00:00
|
|
|
::connectivity::DriversConfig aDriverConfig(getORB());
|
|
|
|
const ::comphelper::NamedValueCollection& aProperties = aDriverConfig.getProperties(eType);
|
|
|
|
Sequence< Any> aTypeSettings;
|
|
|
|
aTypeSettings = aProperties.getOrDefault("TypeInfoSettings",aTypeSettings);
|
2008-01-30 07:43:26 +00:00
|
|
|
// here we have a special entry for types from oracle
|
2009-07-03 12:24:35 +00:00
|
|
|
if ( aTypeSettings.getLength() )
|
2008-01-30 07:43:26 +00:00
|
|
|
{
|
2017-01-30 16:38:54 +02:00
|
|
|
aRelevantSettings.insert(PropertyValue("TypeInfoSettings", 0, makeAny(aTypeSettings), PropertyState_DIRECT_VALUE));
|
2008-01-30 07:43:26 +00:00
|
|
|
}
|
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
// check which values are still left ('cause they were not present in the original sequence, but are to be set)
|
|
|
|
if ( !aRelevantSettings.empty() )
|
|
|
|
{
|
|
|
|
sal_Int32 nOldLength = _rInfo.getLength();
|
|
|
|
_rInfo.realloc(nOldLength + aRelevantSettings.size());
|
|
|
|
PropertyValue* pAppendValues = _rInfo.getArray() + nOldLength;
|
2013-12-05 16:16:28 +01:00
|
|
|
PropertyValueSet::const_iterator aRelevantEnd = aRelevantSettings.end();
|
|
|
|
for ( PropertyValueSet::const_iterator aLoop = aRelevantSettings.begin();
|
2004-08-02 14:40:50 +00:00
|
|
|
aLoop != aRelevantEnd;
|
|
|
|
++aLoop, ++pAppendValues
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if ( aLoop->Name == INFO_CHARSET )
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sCharSet;
|
2004-08-02 14:40:50 +00:00
|
|
|
aLoop->Value >>= sCharSet;
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sCharSet.isEmpty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
*pAppendValues = *aLoop;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*pAppendValues = *aLoop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
Any ODbDataSourceAdministrationHelper::implTranslateProperty(const SfxPoolItem* _pItem)
|
|
|
|
{
|
|
|
|
// translate the SfxPoolItem
|
|
|
|
Any aValue;
|
2009-10-16 14:16:52 +02:00
|
|
|
|
2015-09-28 11:42:43 +02:00
|
|
|
const SfxStringItem* pStringItem = dynamic_cast<const SfxStringItem*>( _pItem );
|
|
|
|
const SfxBoolItem* pBoolItem = dynamic_cast<const SfxBoolItem*>( _pItem );
|
|
|
|
const OptionalBoolItem* pOptBoolItem = dynamic_cast<const OptionalBoolItem*>( _pItem );
|
|
|
|
const SfxInt32Item* pInt32Item = dynamic_cast< const SfxInt32Item* >( _pItem );
|
|
|
|
const OStringListItem* pStringListItem = dynamic_cast<const OStringListItem*>( _pItem );
|
2009-10-16 14:16:52 +02:00
|
|
|
|
|
|
|
if ( pStringItem )
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
aValue <<= OUString( pStringItem->GetValue().getStr() );
|
2009-10-16 14:16:52 +02:00
|
|
|
}
|
|
|
|
else if ( pBoolItem )
|
|
|
|
{
|
|
|
|
aValue <<= pBoolItem->GetValue();
|
|
|
|
}
|
|
|
|
else if ( pOptBoolItem )
|
|
|
|
{
|
|
|
|
if ( !pOptBoolItem->HasValue() )
|
|
|
|
aValue.clear();
|
|
|
|
else
|
2014-04-17 11:16:55 +02:00
|
|
|
aValue <<= pOptBoolItem->GetValue();
|
2009-10-16 14:16:52 +02:00
|
|
|
}
|
|
|
|
else if ( pInt32Item )
|
|
|
|
{
|
|
|
|
aValue <<= pInt32Item->GetValue();
|
|
|
|
}
|
|
|
|
else if ( pStringListItem )
|
|
|
|
{
|
|
|
|
aValue <<= pStringListItem->getList();
|
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
else
|
|
|
|
{
|
2011-02-25 17:47:41 +01:00
|
|
|
OSL_FAIL("ODbDataSourceAdministrationHelper::implTranslateProperty: unsupported item type!");
|
2004-08-02 14:40:50 +00:00
|
|
|
return aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aValue;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-02-20 04:33:49 +01:00
|
|
|
void ODbDataSourceAdministrationHelper::implTranslateProperty(const Reference< XPropertySet >& _rxSet, const OUString& _rName, const SfxPoolItem* _pItem)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
Any aValue = implTranslateProperty(_pItem);
|
|
|
|
lcl_putProperty(_rxSet, _rName,aValue);
|
|
|
|
}
|
2011-02-25 15:47:48 +01:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OString ODbDataSourceAdministrationHelper::translatePropertyId( sal_Int32 _nId )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString aString;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
MapInt2String::const_iterator aPos = m_aDirectPropTranslator.find( _nId );
|
|
|
|
if ( m_aDirectPropTranslator.end() != aPos )
|
|
|
|
{
|
|
|
|
aString = aPos->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-06-20 02:03:42 +00:00
|
|
|
MapInt2String::const_iterator indirectPos = m_aIndirectPropTranslator.find( _nId );
|
|
|
|
if ( m_aIndirectPropTranslator.end() != indirectPos )
|
|
|
|
aString = indirectPos->second;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OString aReturn( aString.getStr(), aString.getLength(), RTL_TEXTENCODING_ASCII_US );
|
2004-08-02 14:40:50 +00:00
|
|
|
return aReturn;
|
|
|
|
}
|
2015-09-30 16:10:07 +02:00
|
|
|
template<class T> bool checkItemType(const SfxPoolItem* pItem){ return dynamic_cast<const T*>(pItem) != nullptr;}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
void ODbDataSourceAdministrationHelper::implTranslateProperty( SfxItemSet& _rSet, sal_Int32 _nId, const Any& _rValue )
|
|
|
|
{
|
2009-10-16 14:16:52 +02:00
|
|
|
switch ( _rValue.getValueType().getTypeClass() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
case TypeClass_STRING:
|
2015-09-30 16:10:07 +02:00
|
|
|
if ( implCheckItemType( _rSet, _nId, checkItemType<SfxStringItem> ) )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sValue;
|
2004-08-02 14:40:50 +00:00
|
|
|
_rValue >>= sValue;
|
2012-06-12 13:40:45 +01:00
|
|
|
_rSet.Put(SfxStringItem(_nId, sValue));
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2008-04-22 14:20:18 +00:00
|
|
|
else {
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN( "dbaccess", "ODbDataSourceAdministrationHelper::implTranslateProperty: invalid property value ("
|
|
|
|
<< translatePropertyId(_nId) << " should be no string)!");
|
2008-04-22 14:20:18 +00:00
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TypeClass_BOOLEAN:
|
2015-09-30 16:10:07 +02:00
|
|
|
if ( implCheckItemType( _rSet, _nId, checkItemType<SfxBoolItem> ) )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2014-04-17 11:16:55 +02:00
|
|
|
bool bVal = false;
|
2004-08-02 14:40:50 +00:00
|
|
|
_rValue >>= bVal;
|
2009-10-16 14:16:52 +02:00
|
|
|
_rSet.Put(SfxBoolItem(_nId, bVal));
|
|
|
|
}
|
2015-09-30 16:10:07 +02:00
|
|
|
else if ( implCheckItemType( _rSet, _nId, checkItemType<OptionalBoolItem> ) )
|
2009-10-16 14:16:52 +02:00
|
|
|
{
|
|
|
|
OptionalBoolItem aItem( _nId );
|
|
|
|
if ( _rValue.hasValue() )
|
|
|
|
{
|
2014-04-17 11:16:55 +02:00
|
|
|
bool bValue = false;
|
2009-10-16 14:16:52 +02:00
|
|
|
_rValue >>= bValue;
|
|
|
|
aItem.SetValue( bValue );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aItem.ClearValue();
|
|
|
|
_rSet.Put( aItem );
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2008-04-22 14:20:18 +00:00
|
|
|
else {
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN( "dbaccess", "ODbDataSourceAdministrationHelper::implTranslateProperty: invalid property value ("
|
|
|
|
<< translatePropertyId(_nId)
|
|
|
|
<< " should be no boolean)!");
|
2008-04-22 14:20:18 +00:00
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TypeClass_LONG:
|
2015-09-30 16:10:07 +02:00
|
|
|
if ( implCheckItemType( _rSet, _nId, checkItemType<SfxInt32Item> ) )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
sal_Int32 nValue = 0;
|
|
|
|
_rValue >>= nValue;
|
2009-10-16 14:16:52 +02:00
|
|
|
_rSet.Put( SfxInt32Item( _nId, nValue ) );
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2008-04-22 14:20:18 +00:00
|
|
|
else {
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN( "dbaccess", "ODbDataSourceAdministrationHelper::implTranslateProperty: invalid property value ("
|
|
|
|
<< translatePropertyId(_nId)
|
|
|
|
<< " should be no int)!");
|
2008-04-22 14:20:18 +00:00
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TypeClass_SEQUENCE:
|
2015-09-30 16:10:07 +02:00
|
|
|
if ( implCheckItemType( _rSet, _nId, checkItemType<OStringListItem> ) )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
// determine the element type
|
|
|
|
TypeDescription aTD(_rValue.getValueType());
|
|
|
|
typelib_IndirectTypeDescription* pSequenceTD =
|
|
|
|
reinterpret_cast< typelib_IndirectTypeDescription* >(aTD.get());
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pSequenceTD && pSequenceTD->pType, "ODbDataSourceAdministrationHelper::implTranslateProperty: invalid sequence type!");
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
Type aElementType(pSequenceTD->pType);
|
|
|
|
switch (aElementType.getTypeClass())
|
|
|
|
{
|
|
|
|
case TypeClass_STRING:
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
Sequence< OUString > aStringList;
|
2004-08-02 14:40:50 +00:00
|
|
|
_rValue >>= aStringList;
|
2009-10-16 14:16:52 +02:00
|
|
|
_rSet.Put(OStringListItem(_nId, aStringList));
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2011-02-25 17:47:41 +01:00
|
|
|
OSL_FAIL("ODbDataSourceAdministrationHelper::implTranslateProperty: unsupported property value type!");
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-22 14:20:18 +00:00
|
|
|
else {
|
2017-05-26 10:58:42 +02:00
|
|
|
SAL_WARN( "dbaccess", "ODbDataSourceAdministrationHelper::implTranslateProperty: invalid property value ("
|
|
|
|
<< translatePropertyId(_nId)
|
|
|
|
<< " should be no string sequence)!");
|
2008-04-22 14:20:18 +00:00
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TypeClass_VOID:
|
2009-10-16 14:16:52 +02:00
|
|
|
_rSet.ClearItem(_nId);
|
2004-08-02 14:40:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-02-25 17:47:41 +01:00
|
|
|
OSL_FAIL("ODbDataSourceAdministrationHelper::implTranslateProperty: unsupported property value type!");
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-27 11:59:37 +00:00
|
|
|
|
2013-09-26 12:17:53 +02:00
|
|
|
OUString ODbDataSourceAdministrationHelper::getDocumentUrl(SfxItemSet& _rDest)
|
2004-10-27 11:59:37 +00:00
|
|
|
{
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pUrlItem = _rDest.GetItem<SfxStringItem>(DSID_DOCUMENT_URL);
|
2004-10-27 11:59:37 +00:00
|
|
|
OSL_ENSURE(pUrlItem,"Document URL is NULL. -> GPF!");
|
|
|
|
return pUrlItem->GetValue();
|
|
|
|
}
|
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
void ODbDataSourceAdministrationHelper::convertUrl(SfxItemSet& _rDest)
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString eType = getDatasourceType(_rDest);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2015-10-19 07:18:39 +02:00
|
|
|
const SfxStringItem* pUrlItem = _rDest.GetItem<SfxStringItem>(DSID_CONNECTURL);
|
|
|
|
const DbuTypeCollectionItem* pTypeCollection = _rDest.GetItem<DbuTypeCollectionItem>(DSID_TYPECOLLECTION);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
OSL_ENSURE(pUrlItem,"Connection URL is NULL. -> GPF!");
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pTypeCollection, "ODbAdminDialog::getDatasourceType: invalid items in the source set!");
|
2008-10-01 12:28:29 +00:00
|
|
|
::dbaccess::ODsnTypeCollection* pCollection = pTypeCollection->getCollection();
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE(pCollection, "ODbAdminDialog::getDatasourceType: invalid type collection!");
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2011-01-14 15:00:11 +01:00
|
|
|
sal_uInt16 nPortNumberId = 0;
|
2004-08-02 14:40:50 +00:00
|
|
|
sal_Int32 nPortNumber = -1;
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sNewHostName;
|
|
|
|
OUString sUrlPart;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2004-11-22 14:05:55 +00:00
|
|
|
pCollection->extractHostNamePort(pUrlItem->GetValue(),sUrlPart,sNewHostName,nPortNumber);
|
2009-07-03 12:24:35 +00:00
|
|
|
const ::dbaccess::DATASOURCE_TYPE eTy = pCollection->determineType(eType);
|
2004-08-02 14:40:50 +00:00
|
|
|
|
2009-07-03 12:24:35 +00:00
|
|
|
switch( eTy )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_MYSQL_NATIVE:
|
|
|
|
case ::dbaccess::DST_MYSQL_JDBC:
|
2004-08-02 14:40:50 +00:00
|
|
|
nPortNumberId = DSID_MYSQL_PORTNUMBER;
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_ORACLE_JDBC:
|
2004-08-02 14:40:50 +00:00
|
|
|
nPortNumberId = DSID_ORACLE_PORTNUMBER;
|
|
|
|
break;
|
2008-10-01 12:28:29 +00:00
|
|
|
case ::dbaccess::DST_LDAP:
|
2004-08-02 14:40:50 +00:00
|
|
|
nPortNumberId = DSID_CONN_LDAP_PORTNUMBER;
|
|
|
|
break;
|
2006-06-20 02:03:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( !sUrlPart.isEmpty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2009-07-03 12:24:35 +00:00
|
|
|
if ( eTy == ::dbaccess::DST_MYSQL_NATIVE )
|
2009-02-16 07:31:09 +00:00
|
|
|
{
|
|
|
|
_rDest.Put( SfxStringItem( DSID_DATABASENAME, sUrlPart ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-02-20 04:33:49 +01:00
|
|
|
OUString sNewUrl = pCollection->getPrefix(eType);
|
2009-02-16 07:31:09 +00:00
|
|
|
sNewUrl += sUrlPart;
|
|
|
|
_rDest.Put( SfxStringItem( DSID_CONNECTURL, sNewUrl ) );
|
|
|
|
}
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
|
|
|
|
2013-03-09 21:47:17 +01:00
|
|
|
if ( !sNewHostName.isEmpty() )
|
2004-08-02 14:40:50 +00:00
|
|
|
_rDest.Put(SfxStringItem(DSID_CONN_HOSTNAME, sNewHostName));
|
|
|
|
|
|
|
|
if ( nPortNumber != -1 && nPortNumberId != 0 )
|
|
|
|
_rDest.Put(SfxInt32Item(nPortNumberId, nPortNumber));
|
|
|
|
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2014-04-17 11:16:55 +02:00
|
|
|
bool ODbDataSourceAdministrationHelper::saveChanges(const SfxItemSet& _rSource)
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
|
|
|
// put the remembered settings into the property set
|
|
|
|
Reference<XPropertySet> xDatasource = getCurrentDataSource();
|
|
|
|
if ( !xDatasource.is() )
|
2014-04-17 11:16:55 +02:00
|
|
|
return false;
|
2004-08-02 14:40:50 +00:00
|
|
|
|
|
|
|
translateProperties(_rSource,xDatasource );
|
|
|
|
|
2014-04-17 11:16:55 +02:00
|
|
|
return true;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2005-06-30 15:30:42 +00:00
|
|
|
void ODbDataSourceAdministrationHelper::setDataSourceOrName( const Any& _rDataSourceOrName )
|
2004-08-02 14:40:50 +00:00
|
|
|
{
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE( !m_aDataSourceOrName.hasValue(), "ODbDataSourceAdministrationHelper::setDataSourceOrName: already have one!" );
|
2005-06-30 15:30:42 +00:00
|
|
|
// hmm. We could reset m_xDatasource/m_xModel, probably, and continue working
|
|
|
|
m_aDataSourceOrName = _rDataSourceOrName;
|
2004-08-02 14:40:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
|
|
|
// DbuTypeCollectionItem
|
2008-10-01 12:28:29 +00:00
|
|
|
DbuTypeCollectionItem::DbuTypeCollectionItem(sal_Int16 _nWhich, ::dbaccess::ODsnTypeCollection* _pCollection)
|
|
|
|
:SfxPoolItem(_nWhich)
|
|
|
|
,m_pCollection(_pCollection)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DbuTypeCollectionItem::DbuTypeCollectionItem(const DbuTypeCollectionItem& _rSource)
|
|
|
|
:SfxPoolItem(_rSource)
|
|
|
|
,m_pCollection(_rSource.getCollection())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-01-10 17:01:52 +01:00
|
|
|
bool DbuTypeCollectionItem::operator==(const SfxPoolItem& _rItem) const
|
2008-10-01 12:28:29 +00:00
|
|
|
{
|
2015-09-28 11:42:43 +02:00
|
|
|
const DbuTypeCollectionItem* pCompare = dynamic_cast<const DbuTypeCollectionItem*>( &_rItem );
|
2008-10-01 12:28:29 +00:00
|
|
|
return pCompare && (pCompare->getCollection() == getCollection());
|
|
|
|
}
|
|
|
|
|
|
|
|
SfxPoolItem* DbuTypeCollectionItem::Clone(SfxItemPool* /*_pPool*/) const
|
|
|
|
{
|
|
|
|
return new DbuTypeCollectionItem(*this);
|
|
|
|
}
|
|
|
|
|
2004-08-02 14:40:50 +00:00
|
|
|
} // namespace dbaui
|
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|