Files
libreoffice/dbaccess/source/ui/misc/WCPage.cxx

403 lines
15 KiB
C++
Raw Normal View History

2001-02-23 14:07:41 +00:00
/*************************************************************************
*
* $RCSfile: WCPage.cxx,v $
*
* $Revision: 1.11 $
2001-02-23 14:07:41 +00:00
*
* last change: $Author: oj $ $Date: 2001-12-07 13:12:28 $
2001-02-23 14:07:41 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an AS IS basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef DBAUI_WIZARD_CPAGE_HXX
#include "WCPage.hxx"
#endif
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
#ifndef _DBAUI_MODULE_DBU_HXX_
#include "moduledbu.hxx"
#endif
#ifndef _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif
#ifndef _DBU_RESOURCE_HRC_
#include "dbu_resource.hrc"
#endif
#ifndef DBAUI_WIZARD_PAGES_HRC
#include "WizardPages.hrc"
#endif
#ifndef _COM_SUN_STAR_SDBC_XRESULTSET_HPP_
#include <com/sun/star/sdbc/XResultSet.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XROW_HPP_
#include <com/sun/star/sdbc/XRow.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XTABLESSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XVIEWSSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XViewsSupplier.hpp>
#endif
2001-02-23 14:07:41 +00:00
#ifndef _SV_MSGBOX_HXX
#include <vcl/msgbox.hxx>
#endif
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
#endif
#ifndef DBAUI_TOOLS_HXX
#include "UITools.hxx"
#endif
2001-02-23 14:07:41 +00:00
using namespace ::dbaui;
using namespace ::dbtools;
2001-02-23 14:07:41 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
//========================================================================
// Klasse OCopyTable
//========================================================================
DBG_NAME(OCopyTable);
//------------------------------------------------------------------------
OCopyTable::OCopyTable( Window * pParent, EImportMode atWhat, sal_Bool bIsQuery, OCopyTableWizard::Wizard_Create_Style nLastAction )
: OWizardPage( pParent, ModuleRes(TAB_WIZ_COPYTABLE) ),
m_ftTableName( this, ResId( FT_TABLENAME ) ),
m_edTableName( this, ResId( ET_TABLENAME ) ),
2001-06-21 14:26:43 +00:00
m_aFL_Options( this, ResId( FL_OPTIONS ) ),
2001-02-23 14:07:41 +00:00
m_aRB_DefData( this, ResId( RB_DEFDATA ) ),
m_aRB_Def( this, ResId( RB_DEF ) ),
m_aRB_View( this, ResId( RB_VIEW ) ),
m_aRB_AppendData( this, ResId( RB_APPENDDATA ) ),
m_aCB_PrimaryColumn( this, ResId( CB_PRIMARY_COLUMN ) ),
m_aFT_KeyName( this, ResId( FT_KEYNAME ) ),
m_edKeyName( this, ResId( ET_KEYNAME ) ),
m_pPage2(NULL),
m_pPage3(NULL),
m_bIsViewAllowed(bIsQuery)
{
DBG_CTOR(OCopyTable,NULL);
2001-07-02 09:31:49 +00:00
if(m_pParent->m_xConnection.is())
2001-02-23 14:07:41 +00:00
{
// first we have to determine if we support views
2001-07-02 09:31:49 +00:00
Reference< XDatabaseMetaData > xMetaData(m_pParent->m_xConnection->getMetaData());
Reference< XViewsSupplier > xViewSups(m_pParent->m_xConnection,UNO_QUERY);
if(!(m_bIsViewAllowed = xViewSups.is()))
2001-02-23 14:07:41 +00:00
{
try
2001-02-23 14:07:41 +00:00
{
static ::rtl::OUString sVIEW = ::rtl::OUString::createFromAscii("VIEW");
Reference<XResultSet> xRs = xMetaData->getTableTypes();
if(xRs.is())
2001-02-23 14:07:41 +00:00
{
Reference<XRow> xRow(xRs,UNO_QUERY);
while(xRs->next())
2001-07-02 09:31:49 +00:00
{
::rtl::OUString sValue = xRow->getString(1);
if(!xRow->wasNull() && sValue.equalsIgnoreAsciiCase(sVIEW))
{
m_bIsViewAllowed = m_bIsViewAllowed || sal_True;
break;
}
2001-07-02 09:31:49 +00:00
}
2001-02-23 14:07:41 +00:00
}
}
catch(const SQLException& e)
{
::dbaui::showError(SQLExceptionInfo(e),pParent->GetParent(),m_pParent->m_xFactory);
}
2001-07-02 09:31:49 +00:00
}
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
if(!m_bIsViewAllowed)
m_aRB_View.Disable();
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
//////////////////////////////////////////////////////////////////////
// do we support pkeys
2001-07-02 09:31:49 +00:00
m_bPKeyAllowed = xMetaData->supportsCoreSQLGrammar();
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
m_aCB_PrimaryColumn.Enable(m_bPKeyAllowed);
2001-02-23 14:07:41 +00:00
// reselect the last action before
2001-07-02 09:31:49 +00:00
switch(nLastAction)
{
case OCopyTableWizard::WIZARD_DEF_DATA:
2001-02-23 14:07:41 +00:00
m_aRB_DefData.Check(sal_True);
2001-07-02 09:31:49 +00:00
break;
case OCopyTableWizard::WIZARD_DEF:
m_aRB_Def.Check(sal_True);
break;
case OCopyTableWizard::WIZARD_APPEND_DATA:
m_aRB_AppendData.Check(sal_True);
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,sal_False);
break;
case OCopyTableWizard::WIZARD_DEF_VIEW:
if(m_bIsViewAllowed)
{
m_aRB_View.Check(sal_True);
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,sal_False);
}
else
m_aRB_DefData.Check(sal_True);
}
m_aRB_AppendData.SetClickHdl( LINK( this, OCopyTable, AppendDataClickHdl ) );
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
m_aRB_DefData.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
m_aRB_Def.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
m_aRB_View.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
m_aCB_PrimaryColumn.SetClickHdl( LINK( this, OCopyTable, KeyClickHdl ) );
2001-02-23 14:07:41 +00:00
2001-07-02 09:31:49 +00:00
m_aFT_KeyName.Enable(sal_False);
m_edKeyName.Enable(sal_False);
m_edKeyName.SetText(String::CreateFromAscii("ID"));
sal_Int32 nMaxLen = m_pParent->getMaxColumnNameLength();
2001-07-02 09:31:49 +00:00
m_edKeyName.SetMaxTextLen(nMaxLen ? (xub_StrLen)nMaxLen : EDIT_NOLIMIT);
}
2001-02-23 14:07:41 +00:00
FreeResource();
if (MOVE != atWhat)
SetText(String(ModuleRes(STR_COPYTABLE_TITLE_COPY)));
else
{
SetText(String(ModuleRes(STR_COPYTABLE_TITLE_MOVE)));
m_aRB_Def.Disable();
// beim Verschieben ist der Punkt "nur Definition" nicht zulaessig
}
}
//------------------------------------------------------------------------
OCopyTable::~OCopyTable()
{
DBG_DTOR(OCopyTable,NULL);
}
//------------------------------------------------------------------------
IMPL_LINK( OCopyTable, AppendDataClickHdl, Button*, pButton )
{
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,sal_True);
m_aFT_KeyName.Enable(sal_False);
m_aCB_PrimaryColumn.Enable(sal_False);
m_edKeyName.Enable(sal_False);
m_pParent->setCreateStyle(OCopyTableWizard::WIZARD_APPEND_DATA);
2001-02-23 14:07:41 +00:00
return 0;
}
//------------------------------------------------------------------------
IMPL_LINK( OCopyTable, RadioChangeHdl, Button*, pButton )
{
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,pButton != &m_aRB_View);
sal_Bool bKey = m_bPKeyAllowed && pButton != &m_aRB_View;
m_aFT_KeyName.Enable(bKey && m_aCB_PrimaryColumn.IsChecked());
m_edKeyName.Enable(bKey && m_aCB_PrimaryColumn.IsChecked());
m_aCB_PrimaryColumn.Enable(bKey);
// set typ what to do
if( IsOptionDefData() )
m_pParent->setCreateStyle(OCopyTableWizard::WIZARD_DEF_DATA);
2001-02-23 14:07:41 +00:00
else if( IsOptionDef() )
m_pParent->setCreateStyle(OCopyTableWizard::WIZARD_DEF);
2001-02-23 14:07:41 +00:00
else if( IsOptionView() )
m_pParent->setCreateStyle(OCopyTableWizard::WIZARD_DEF_VIEW);
2001-02-23 14:07:41 +00:00
return 0;
}
//------------------------------------------------------------------------
IMPL_LINK( OCopyTable, KeyClickHdl, Button*, pButton )
{
m_edKeyName.Enable(m_aCB_PrimaryColumn.IsChecked());
m_aFT_KeyName.Enable(m_aCB_PrimaryColumn.IsChecked());
return 0;
}
//------------------------------------------------------------------------
sal_Bool OCopyTable::LeavePage()
{
m_pParent->m_bCreatePrimaryColumn = (m_bPKeyAllowed && m_aCB_PrimaryColumn.IsEnabled()) ? m_aCB_PrimaryColumn.IsChecked() : sal_False;
m_pParent->m_aKeyName = m_edKeyName.GetText();
// first check if the table already exists in the database
if( m_pParent->getCreateStyle() != OCopyTableWizard::WIZARD_APPEND_DATA )
2001-02-23 14:07:41 +00:00
{
Reference<XTablesSupplier > xSup(m_pParent->m_xConnection,UNO_QUERY);
Reference<XNameAccess> xTables;
if(xSup.is())
xTables = xSup->getTables();
if(xTables.is() && xTables->hasByName(m_edTableName.GetText()))
{
String aInfoString( ModuleRes(STR_ERR_DUPL_TABLENAME) );
aInfoString.SearchAndReplaceAscii("$name$",m_edTableName.GetText());
InfoBox aNameInfoBox( this, aInfoString );
aNameInfoBox.Execute();
return sal_False;
}
}
if(!m_edTableName.GetSavedValue().Equals(m_edTableName.GetText()))
{ // table exists and name has changed
if(m_pParent->getCreateStyle() == OCopyTableWizard::WIZARD_APPEND_DATA)
2001-02-23 14:07:41 +00:00
{
if(!checkAppendData())
2001-02-23 14:07:41 +00:00
return sal_False;
}
else if(m_eOldStyle == OCopyTableWizard::WIZARD_APPEND_DATA)
{
m_pParent->m_xDestObject = NULL;
m_edTableName.SaveValue();
2001-02-23 14:07:41 +00:00
return LeavePage();
}
}
else
{ // table exist and is not new or doesn't exist and so on
switch(m_pParent->getCreateStyle())
2001-02-23 14:07:41 +00:00
{
case OCopyTableWizard::WIZARD_APPEND_DATA:
{
if(!checkAppendData())
2001-02-23 14:07:41 +00:00
return sal_False;
break;
}
case OCopyTableWizard::WIZARD_DEF_DATA:
case OCopyTableWizard::WIZARD_DEF:
{
//////////////////////////////////////////////////////////////////////////
// Immer neue Tabelle erzeugen
}
}
}
m_pParent->m_sName = m_edTableName.GetText();
m_edTableName.SaveValue();
if(!m_pParent->m_sName.getLength())
{
ErrorBox(this, ModuleRes(ERROR_INVALID_TABLE_NAME)).Execute();
return sal_False;
}
return sal_True;
}
//------------------------------------------------------------------------
void OCopyTable::ActivatePage()
{
m_eOldStyle = m_pParent->getCreateStyle();
2001-02-23 14:07:41 +00:00
//////////////////////////////////////////////////////////////////////////
// set max name length
sal_Int32 nLen = 0;
if(m_pParent->m_xConnection.is())
nLen = m_pParent->m_xConnection->getMetaData()->getMaxTableNameLength();
2001-03-30 07:47:18 +00:00
m_edTableName.SetMaxTextLen(nLen ? (xub_StrLen)nLen : EDIT_NOLIMIT);
m_edTableName.GrabFocus();
2001-02-23 14:07:41 +00:00
}
//------------------------------------------------------------------------
String OCopyTable::GetTitle() const { return String(ModuleRes(STR_WIZ_TABLE_COPY)); }
//------------------------------------------------------------------------
void OCopyTable::Reset()
{
m_bFirstTime = sal_False;
2001-07-02 09:31:49 +00:00
sal_Int32 nLen = 0;
if(m_pParent->m_xConnection.is())
nLen = m_pParent->m_xConnection->getMetaData()->getMaxTableNameLength();
2001-02-23 14:07:41 +00:00
2001-03-30 07:47:18 +00:00
m_edTableName.SetMaxTextLen(nLen ? (xub_StrLen)nLen : EDIT_NOLIMIT);
2001-02-23 14:07:41 +00:00
String aTableName = m_pParent->m_sName;
if(nLen && nLen < aTableName.Len())
{
aTableName.Erase(aTableName.Len()-2);
aTableName += String::CreateFromInt32(1);
}
m_edTableName.SetText(aTableName);
m_edTableName.SaveValue();
}
//------------------------------------------------------------------------
sal_Bool OCopyTable::checkAppendData()
{
m_pParent->clearDestColumns();
m_pParent->m_xDestObject = NULL;
Reference<XTablesSupplier > xSup(m_pParent->m_xConnection,UNO_QUERY);
Reference<XNameAccess> xTables;
if(xSup.is())
xTables = xSup->getTables();
if(xTables.is() && xTables->hasByName(m_edTableName.GetText()))
{
// set new destination
xTables->getByName(m_edTableName.GetText()) >>= m_pParent->m_xDestObject;
m_pParent->loadData(m_pParent->m_xDestObject,m_pParent->m_vDestColumns,m_pParent->m_aDestVec);
// #90027#
const ODatabaseExport::TColumnVector* pDestColumns = m_pParent->getDestVector();
ODatabaseExport::TColumnVector::const_iterator aDestIter = pDestColumns->begin();
m_pParent->m_vColumnPos.reserve(pDestColumns->size()+1);
m_pParent->m_vColumnTypes.reserve(pDestColumns->size()+1);
for(sal_Int32 nPos = 1;aDestIter != pDestColumns->end();++aDestIter,++nPos)
{
m_pParent->m_vColumnPos.push_back(nPos);
const OTypeInfo* pTypeInfo = m_pParent->convertType((*aDestIter)->second->getTypeInfo());
if(pTypeInfo)
m_pParent->m_vColumnTypes.push_back(pTypeInfo->nType);
else
m_pParent->m_vColumnTypes.push_back(DataType::VARCHAR);
}
}
if(!m_pParent->m_xDestObject.is())
{
ErrorBox(this, ModuleRes(ERROR_INVALID_TABLE_NAME)).Execute();
return sal_False;
}
return sal_True;
}
// -----------------------------------------------------------------------------