349 lines
14 KiB
C++
349 lines
14 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <config_features.h>
|
|
#include "ConnectionPage.hxx"
|
|
#include "ConnectionPage.hrc"
|
|
#include "dbu_dlg.hrc"
|
|
#include "dsmeta.hxx"
|
|
#if HAVE_FEATURE_JAVA
|
|
#include <jvmaccess/virtualmachine.hxx>
|
|
#endif
|
|
#include <svl/itemset.hxx>
|
|
#include <unotools/pathoptions.hxx>
|
|
#include <svl/stritem.hxx>
|
|
#include <svl/eitem.hxx>
|
|
#include <svl/intitem.hxx>
|
|
#include <unotools/moduleoptions.hxx>
|
|
#include "dsitems.hxx"
|
|
#include "dbaccess_helpid.hrc"
|
|
#include "localresaccess.hxx"
|
|
#include <osl/process.h>
|
|
#include <vcl/msgbox.hxx>
|
|
#include "dbadmin.hxx"
|
|
#include <comphelper/types.hxx>
|
|
#include <vcl/stdtext.hxx>
|
|
#include "sqlmessage.hxx"
|
|
#include "odbcconfig.hxx"
|
|
#include "dsselect.hxx"
|
|
#include <svl/filenotation.hxx>
|
|
#include "dbustrings.hrc"
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
#include <com/sun/star/awt/XWindow.hpp>
|
|
#include <com/sun/star/task/XInteractionHandler.hpp>
|
|
#include <com/sun/star/ucb/XProgressHandler.hpp>
|
|
#include <com/sun/star/sdbc/XConnection.hpp>
|
|
#include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
|
|
#include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
|
|
#include <com/sun/star/ui/dialogs/XFilePicker.hpp>
|
|
#include "UITools.hxx"
|
|
#include <unotools/localfilehelper.hxx>
|
|
#include <unotools/ucbhelper.hxx>
|
|
#include <ucbhelper/commandenvironment.hxx>
|
|
#include "finteraction.hxx"
|
|
#include <connectivity/CommonTools.hxx>
|
|
#include <sfx2/docfilt.hxx>
|
|
#include "dsnItem.hxx"
|
|
#if defined(WNT)
|
|
#define _ADO_DATALINK_BROWSE_
|
|
#endif
|
|
|
|
#ifdef _ADO_DATALINK_BROWSE_
|
|
#include <vcl/sysdata.hxx>
|
|
#include "adodatalinks.hxx"
|
|
#endif //_ADO_DATALINK_BROWSE_
|
|
|
|
#include "AutoControls.hrc"
|
|
|
|
namespace dbaui
|
|
{
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::ucb;
|
|
using namespace ::com::sun::star::ui::dialogs;
|
|
using namespace ::com::sun::star::sdbc;
|
|
using namespace ::com::sun::star::beans;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::container;
|
|
using namespace ::dbtools;
|
|
using namespace ::svt;
|
|
|
|
SfxTabPage* OConnectionTabPage::Create( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OConnectionTabPage( pParent, _rAttrSet ) );
|
|
}
|
|
// OConnectionTabPage
|
|
OConnectionTabPage::OConnectionTabPage(Window* pParent, const SfxItemSet& _rCoreAttrs)
|
|
:OConnectionHelper(pParent, ModuleRes(PAGE_CONNECTION), _rCoreAttrs)
|
|
,m_aFL1(this, ModuleRes(FL_SEPARATOR1))
|
|
,m_aFL2(this, ModuleRes(FL_SEPARATOR2))
|
|
,m_aUserNameLabel(this, ModuleRes(FT_USERNAME))
|
|
,m_aUserName(this, ModuleRes(ET_USERNAME))
|
|
,m_aPasswordRequired(this, ModuleRes(CB_PASSWORD_REQUIRED))
|
|
,m_aFL3(this, ModuleRes(FL_SEPARATOR3))
|
|
,m_aJavaDriverLabel(this, ModuleRes(FT_JDBCDRIVERCLASS))
|
|
,m_aJavaDriver(this, ModuleRes(ET_JDBCDRIVERCLASS))
|
|
,m_aTestJavaDriver(this, ModuleRes(PB_TESTDRIVERCLASS))
|
|
,m_aTestConnection(this, ModuleRes(PB_TESTCONNECTION))
|
|
{
|
|
m_aConnectionURL.SetModifyHdl(LINK(this, OConnectionTabPage, OnEditModified));
|
|
m_aJavaDriver.SetModifyHdl(getControlModifiedLink());
|
|
m_aJavaDriver.SetModifyHdl(LINK(this, OConnectionTabPage, OnEditModified));
|
|
m_aUserName.SetModifyHdl(getControlModifiedLink());
|
|
m_aPasswordRequired.SetClickHdl(getControlModifiedLink());
|
|
|
|
m_aTestConnection.SetClickHdl(LINK(this,OGenericAdministrationPage,OnTestConnectionClickHdl));
|
|
m_aTestJavaDriver.SetClickHdl(LINK(this,OConnectionTabPage,OnTestJavaClickHdl));
|
|
|
|
FreeResource();
|
|
|
|
LayoutHelper::fitSizeRightAligned( m_aTestConnection );
|
|
}
|
|
|
|
OConnectionTabPage::~OConnectionTabPage()
|
|
{
|
|
}
|
|
|
|
void OConnectionTabPage::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
// check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
|
|
m_eType = m_pAdminDialog->getDatasourceType(_rSet);
|
|
OConnectionHelper::implInitControls( _rSet, _bSaveValue);
|
|
|
|
LocalResourceAccess aLocRes( PAGE_CONNECTION, RSC_TABPAGE );
|
|
::dbaccess::DATASOURCE_TYPE eType = m_pCollection->determineType(m_eType);
|
|
switch( eType )
|
|
{
|
|
case ::dbaccess::DST_DBASE:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_DBASE_PATH_OR_FILE)));
|
|
m_aConnectionURL.SetHelpId(HID_DSADMIN_DBASE_PATH);
|
|
break;
|
|
case ::dbaccess::DST_FLAT:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_FLAT_PATH_OR_FILE)));
|
|
m_aConnectionURL.SetHelpId(HID_DSADMIN_FLAT_PATH);
|
|
break;
|
|
case ::dbaccess::DST_CALC:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_CALC_PATH_OR_FILE)));
|
|
m_aConnectionURL.SetHelpId(HID_DSADMIN_CALC_PATH);
|
|
break;
|
|
case ::dbaccess::DST_ADO:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_COMMONURL)));
|
|
break;
|
|
case ::dbaccess::DST_MSACCESS:
|
|
case ::dbaccess::DST_MSACCESS_2007:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_MSACCESS_MDB_FILE)));
|
|
m_aConnectionURL.SetHelpId(HID_DSADMIN_MSACCESS_MDB_FILE);
|
|
break;
|
|
case ::dbaccess::DST_MYSQL_NATIVE:
|
|
case ::dbaccess::DST_MYSQL_JDBC:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_MYSQL_DATABASE_NAME)));
|
|
m_aConnectionURL.SetHelpId( HID_DSADMIN_MYSQL_DATABASE );
|
|
break;
|
|
case ::dbaccess::DST_ORACLE_JDBC:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_ORACLE_DATABASE_NAME)));
|
|
m_aConnectionURL.SetHelpId(HID_DSADMIN_ORACLE_DATABASE);
|
|
break;
|
|
case ::dbaccess::DST_MYSQL_ODBC:
|
|
case ::dbaccess::DST_ODBC:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_NAME_OF_ODBC_DATASOURCE)));
|
|
m_aConnectionURL.SetHelpId( eType == ::dbaccess::DST_MYSQL_ODBC ? HID_DSADMIN_MYSQL_ODBC_DATASOURCE : HID_DSADMIN_ODBC_DATASOURCE);
|
|
break;
|
|
case ::dbaccess::DST_LDAP:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_HOSTNAME)));
|
|
m_aConnectionURL.SetHelpId( HID_DSADMIN_LDAP_HOSTNAME );
|
|
break;
|
|
case ::dbaccess::DST_MOZILLA:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_MOZILLA_PROFILE_NAME)));
|
|
m_aConnectionURL.SetHelpId( HID_DSADMIN_MOZILLA_PROFILE_NAME );
|
|
break;
|
|
case ::dbaccess::DST_THUNDERBIRD:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_THUNDERBIRD_PROFILE_NAME)));
|
|
m_aConnectionURL.SetHelpId( HID_DSADMIN_THUNDERBIRD_PROFILE_NAME );
|
|
break;
|
|
case ::dbaccess::DST_OUTLOOK:
|
|
case ::dbaccess::DST_OUTLOOKEXP:
|
|
case ::dbaccess::DST_EVOLUTION:
|
|
case ::dbaccess::DST_EVOLUTION_GROUPWISE:
|
|
case ::dbaccess::DST_EVOLUTION_LDAP:
|
|
case ::dbaccess::DST_KAB:
|
|
case ::dbaccess::DST_MACAB:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_NO_ADDITIONAL_SETTINGS)));
|
|
{
|
|
OUString sText = m_aFT_Connection.GetText();
|
|
sText = sText.replaceAll("%test",m_aTestConnection.GetText());
|
|
OUString sTemp;
|
|
sText = sText.replaceAll("~",sTemp);
|
|
m_aFT_Connection.SetText(sText);
|
|
}
|
|
m_aConnectionURL.Hide();
|
|
break;
|
|
case ::dbaccess::DST_JDBC:
|
|
default:
|
|
m_aFT_Connection.SetText(OUString(ModuleRes(STR_COMMONURL)));
|
|
break;
|
|
}
|
|
|
|
;
|
|
AuthenticationMode eAuthMode( DataSourceMetaData::getAuthentication( m_eType ) );
|
|
bool bShowUserAuthenfication = ( eAuthMode != AuthNone );
|
|
bool bShowUser = ( eAuthMode == AuthUserPwd );
|
|
|
|
m_aPB_Connection.SetHelpId(HID_DSADMIN_BROWSECONN);
|
|
m_aFL2.Show( bShowUserAuthenfication );
|
|
m_aUserNameLabel.Show( bShowUser && bShowUserAuthenfication );
|
|
m_aUserName.Show( bShowUser && bShowUserAuthenfication );
|
|
m_aPasswordRequired.Show( bShowUserAuthenfication );
|
|
if ( !bShowUser && bShowUserAuthenfication )
|
|
m_aPasswordRequired.SetPosPixel(m_aUserNameLabel.GetPosPixel());
|
|
|
|
// collect the items
|
|
SFX_ITEMSET_GET(_rSet, pUidItem, SfxStringItem, DSID_USER, true);
|
|
|
|
SFX_ITEMSET_GET(_rSet, pJdbcDrvItem, SfxStringItem, DSID_JDBCDRIVERCLASS, true);
|
|
SFX_ITEMSET_GET(_rSet, pUrlItem, SfxStringItem, DSID_CONNECTURL, true);
|
|
SFX_ITEMSET_GET(_rSet, pAllowEmptyPwd, SfxBoolItem, DSID_PASSWORDREQUIRED, true);
|
|
|
|
// forward the values to the controls
|
|
if ( bValid )
|
|
{
|
|
m_aUserName.SetText(pUidItem->GetValue());
|
|
m_aPasswordRequired.Check(pAllowEmptyPwd->GetValue());
|
|
|
|
OUString sUrl = pUrlItem->GetValue();
|
|
setURL( sUrl );
|
|
|
|
const sal_Bool bEnableJDBC = m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC;
|
|
if ( !pJdbcDrvItem->GetValue().getLength() )
|
|
{
|
|
OUString sDefaultJdbcDriverName = m_pCollection->getJavaDriverClass(m_eType);
|
|
if ( !sDefaultJdbcDriverName.isEmpty() )
|
|
{
|
|
m_aJavaDriver.SetText(sDefaultJdbcDriverName);
|
|
m_aJavaDriver.SetModifyFlag();
|
|
}
|
|
}
|
|
else
|
|
m_aJavaDriver.SetText(pJdbcDrvItem->GetValue());
|
|
|
|
m_aJavaDriverLabel.Show(bEnableJDBC);
|
|
m_aJavaDriver.Show(bEnableJDBC);
|
|
m_aTestJavaDriver.Show(bEnableJDBC);
|
|
m_aTestJavaDriver.Enable( !m_aJavaDriver.GetText().isEmpty() );
|
|
m_aFL3.Show(bEnableJDBC);
|
|
|
|
checkTestConnection();
|
|
|
|
m_aUserName.ClearModifyFlag();
|
|
m_aConnectionURL.ClearModifyFlag();
|
|
m_aJavaDriver.ClearModifyFlag();
|
|
}
|
|
}
|
|
void OConnectionTabPage::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedLine>(&m_aFL1));
|
|
|
|
_rControlList.push_back(new ODisableWrapper<FixedLine>(&m_aFL2));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aJavaDriverLabel));
|
|
_rControlList.push_back(new ODisableWrapper<PushButton>(&m_aTestJavaDriver));
|
|
|
|
_rControlList.push_back(new ODisableWrapper<FixedLine>(&m_aFL3));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aUserNameLabel));
|
|
_rControlList.push_back(new ODisableWrapper<PushButton>(&m_aTestConnection));
|
|
OConnectionHelper::fillWindows(_rControlList);
|
|
|
|
}
|
|
void OConnectionTabPage::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aJavaDriver));
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aUserName));
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(&m_aPasswordRequired));
|
|
OConnectionHelper::fillControls(_rControlList);
|
|
}
|
|
|
|
sal_Bool OConnectionTabPage::FillItemSet(SfxItemSet& _rSet)
|
|
{
|
|
sal_Bool bChangedSomething = sal_False;
|
|
|
|
if (m_aUserName.GetText() != m_aUserName.GetSavedValue())
|
|
{
|
|
_rSet.Put(SfxStringItem(DSID_USER, m_aUserName.GetText()));
|
|
_rSet.Put(SfxStringItem(DSID_PASSWORD, OUString()));
|
|
bChangedSomething = sal_True;
|
|
}
|
|
|
|
fillBool(_rSet,&m_aPasswordRequired,DSID_PASSWORDREQUIRED,bChangedSomething);
|
|
|
|
if ( m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC )
|
|
{
|
|
fillString(_rSet,&m_aJavaDriver, DSID_JDBCDRIVERCLASS, bChangedSomething);
|
|
}
|
|
|
|
fillString(_rSet,&m_aConnectionURL, DSID_CONNECTURL, bChangedSomething);
|
|
|
|
return bChangedSomething;
|
|
}
|
|
IMPL_LINK(OConnectionTabPage, OnTestJavaClickHdl, PushButton*, /*_pButton*/)
|
|
{
|
|
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
|
sal_Bool bSuccess = sal_False;
|
|
#if HAVE_FEATURE_JAVA
|
|
try
|
|
{
|
|
if ( !m_aJavaDriver.GetText().isEmpty() )
|
|
{
|
|
::rtl::Reference< jvmaccess::VirtualMachine > xJVM = ::connectivity::getJavaVM( m_pAdminDialog->getORB() );
|
|
bSuccess = ::connectivity::existsJavaClassByName(xJVM,m_aJavaDriver.GetText());
|
|
}
|
|
}
|
|
catch(Exception&)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
const sal_uInt16 nMessage = bSuccess ? STR_JDBCDRIVER_SUCCESS : STR_JDBCDRIVER_NO_SUCCESS;
|
|
const OSQLMessageBox::MessageType mt = bSuccess ? OSQLMessageBox::Info : OSQLMessageBox::Error;
|
|
OSQLMessageBox aMsg( this, OUString( ModuleRes( nMessage ) ), OUString(), WB_OK | WB_DEF_OK, mt );
|
|
aMsg.Execute();
|
|
return 0L;
|
|
}
|
|
bool OConnectionTabPage::checkTestConnection()
|
|
{
|
|
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
|
sal_Bool bEnableTestConnection = !m_aConnectionURL.IsVisible() || !m_aConnectionURL.GetTextNoPrefix().isEmpty();
|
|
if ( m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC )
|
|
bEnableTestConnection = bEnableTestConnection && (!m_aJavaDriver.GetText().isEmpty());
|
|
m_aTestConnection.Enable(bEnableTestConnection);
|
|
return true;
|
|
}
|
|
IMPL_LINK(OConnectionTabPage, OnEditModified, Edit*, _pEdit)
|
|
{
|
|
if ( _pEdit == &m_aJavaDriver )
|
|
m_aTestJavaDriver.Enable( !m_aJavaDriver.GetText().isEmpty() );
|
|
|
|
checkTestConnection();
|
|
// tell the listener we were modified
|
|
callModifiedHdl();
|
|
return 0L;
|
|
}
|
|
} // namespace dbaui
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|