Files
libreoffice/dbaccess/source/ui/misc/WCPage.cxx
Caolán McNamara 86ff16b9c9 coverity#738616 Uninitialized scalar field
Change-Id: I8dd9daa06c86f14430ea0a8d1485daad93f63eee
2014-02-21 12:40:30 +00:00

357 lines
13 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 "WCPage.hxx"
#include "WCopyTable.hxx"
#include "defaultobjectnamecheck.hxx"
#include <tools/debug.hxx>
#include "dbaccess_helpid.hrc"
#include "dbu_misc.hrc"
#include "WizardPages.hrc"
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#include <com/sun/star/sdbcx/XViewsSupplier.hpp>
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
#include <vcl/msgbox.hxx>
#include <connectivity/dbexception.hxx>
#include <connectivity/dbtools.hxx>
#include "UITools.hxx"
#include "moduledbu.hxx"
#include <cppuhelper/exc_hlp.hxx>
using namespace ::dbaui;
using namespace ::dbtools;
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::sdb;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
namespace CopyTableOperation = ::com::sun::star::sdb::application::CopyTableOperation;
// Klasse OCopyTable
OCopyTable::OCopyTable( Window * pParent )
:OWizardPage( pParent, ModuleRes(TAB_WIZ_COPYTABLE) )
,m_ftTableName( this, ModuleRes( FT_TABLENAME ) )
,m_edTableName( this, ModuleRes( ET_TABLENAME ) )
,m_aFL_Options( this, ModuleRes( FL_OPTIONS ) )
,m_aRB_DefData( this, ModuleRes( RB_DEFDATA ) )
,m_aRB_Def( this, ModuleRes( RB_DEF ) )
,m_aRB_View( this, ModuleRes( RB_VIEW ) )
,m_aRB_AppendData( this, ModuleRes( RB_APPENDDATA ) )
,m_aCB_UseHeaderLine( this, ModuleRes( CB_USEHEADERLINE ) )
,m_aCB_PrimaryColumn( this, ModuleRes( CB_PRIMARY_COLUMN ) )
,m_aFT_KeyName( this, ModuleRes( FT_KEYNAME ) )
,m_edKeyName( this, ModuleRes( ET_KEYNAME ) )
,m_nOldOperation(0)
,m_pPage2(NULL)
,m_pPage3(NULL)
,m_bPKeyAllowed(false)
,m_bUseHeaderAllowed(sal_True)
{
m_edTableName.SetMaxTextLen(EDIT_NOLIMIT);
if ( m_pParent->m_xDestConnection.is() )
{
if ( !m_pParent->supportsViews() )
m_aRB_View.Disable();
m_aCB_UseHeaderLine.Check(true);
m_bPKeyAllowed = m_pParent->supportsPrimaryKey();
m_aCB_PrimaryColumn.Enable(m_bPKeyAllowed);
m_aRB_AppendData.SetClickHdl( LINK( this, OCopyTable, AppendDataClickHdl ) );
m_aRB_DefData.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
m_aRB_Def.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
m_aRB_View.SetClickHdl( LINK( this, OCopyTable, RadioChangeHdl ) );
m_aCB_PrimaryColumn.SetClickHdl(LINK( this, OCopyTable, KeyClickHdl ) );
m_aFT_KeyName.Enable(false);
m_edKeyName.Enable(false);
OUString sKeyName("ID");
sKeyName = m_pParent->createUniqueName(sKeyName);
m_edKeyName.SetText(sKeyName);
sal_Int32 nMaxLen = m_pParent->getMaxColumnNameLength();
m_edKeyName.SetMaxTextLen(nMaxLen ? nMaxLen : EDIT_NOLIMIT);
}
FreeResource();
SetText(ModuleRes(STR_COPYTABLE_TITLE_COPY));
}
OCopyTable::~OCopyTable()
{
}
IMPL_LINK( OCopyTable, AppendDataClickHdl, Button*, /*pButton*/ )
{
SetAppendDataRadio();
return 0;
}
void OCopyTable::SetAppendDataRadio()
{
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,sal_True);
m_aFT_KeyName.Enable(false);
m_aCB_PrimaryColumn.Enable(false);
m_edKeyName.Enable(false);
m_pParent->setOperation(CopyTableOperation::AppendData);
}
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);
m_aCB_UseHeaderLine.Enable(m_bUseHeaderAllowed && IsOptionDefData());
// set typ what to do
if( IsOptionDefData() )
m_pParent->setOperation( CopyTableOperation::CopyDefinitionAndData );
else if( IsOptionDef() )
m_pParent->setOperation( CopyTableOperation::CopyDefinitionOnly );
else if( IsOptionView() )
m_pParent->setOperation( CopyTableOperation::CreateAsView );
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_bCreatePrimaryKeyColumn = (m_bPKeyAllowed && m_aCB_PrimaryColumn.IsEnabled()) ? m_aCB_PrimaryColumn.IsChecked() : sal_False;
m_pParent->m_aKeyName = m_pParent->m_bCreatePrimaryKeyColumn ? m_edKeyName.GetText() : OUString();
m_pParent->setUseHeaderLine( m_aCB_UseHeaderLine.IsChecked() );
// first check if the table already exists in the database
if( m_pParent->getOperation() != CopyTableOperation::AppendData )
{
m_pParent->clearDestColumns();
DynamicTableOrQueryNameCheck aNameCheck( m_pParent->m_xDestConnection, CommandType::TABLE );
SQLExceptionInfo aErrorInfo;
if ( !aNameCheck.isNameValid( m_edTableName.GetText(), aErrorInfo ) )
{
aErrorInfo.append( SQLExceptionInfo::SQL_CONTEXT, ModuleRes( STR_SUGGEST_APPEND_TABLE_DATA ) );
m_pParent->showError(aErrorInfo.get());
return sal_False;
}
// have to check the length of the table name
Reference< XDatabaseMetaData > xMeta = m_pParent->m_xDestConnection->getMetaData();
OUString sCatalog;
OUString sSchema;
OUString sTable;
::dbtools::qualifiedNameComponents( xMeta,
m_edTableName.GetText(),
sCatalog,
sSchema,
sTable,
::dbtools::eInDataManipulation);
sal_Int32 nMaxLength = xMeta->getMaxTableNameLength();
if ( nMaxLength && sTable.getLength() > nMaxLength )
{
OUString sError(ModuleRes(STR_INVALID_TABLE_NAME_LENGTH));
m_pParent->showError(sError);
return sal_False;
}
// now we have to check if the name of the primary key already exists
if ( m_pParent->m_bCreatePrimaryKeyColumn
&& m_pParent->m_aKeyName != m_pParent->createUniqueName(m_pParent->m_aKeyName) )
{
OUString aInfoString( ModuleRes(STR_WIZ_PKEY_ALREADY_DEFINED) );
aInfoString += " ";
aInfoString += m_pParent->m_aKeyName;
m_pParent->showError(aInfoString);
return sal_False;
}
}
if ( m_edTableName.GetSavedValue() != m_edTableName.GetText() )
{ // table exists and name has changed
if ( m_pParent->getOperation() == CopyTableOperation::AppendData )
{
if(!checkAppendData())
return sal_False;
}
else if ( m_nOldOperation == CopyTableOperation::AppendData )
{
m_edTableName.SaveValue();
return LeavePage();
}
}
else
{ // table exist and is not new or doesn't exist and so on
if ( CopyTableOperation::AppendData == m_pParent->getOperation() )
{
if( !checkAppendData() )
return sal_False;
}
}
m_pParent->m_sName = m_edTableName.GetText();
m_edTableName.SaveValue();
if(m_pParent->m_sName.isEmpty())
{
OUString sError(ModuleRes(STR_INVALID_TABLE_NAME));
m_pParent->showError(sError);
return sal_False;
}
return sal_True;
}
void OCopyTable::ActivatePage()
{
m_pParent->GetOKButton().Enable( true );
m_nOldOperation = m_pParent->getOperation();
m_edTableName.GrabFocus();
m_aCB_UseHeaderLine.Check(m_pParent->UseHeaderLine());
}
OUString OCopyTable::GetTitle() const
{
return ModuleRes(STR_WIZ_TABLE_COPY);
}
void OCopyTable::Reset()
{
m_bFirstTime = sal_False;
m_edTableName.SetText( m_pParent->m_sName );
m_edTableName.SaveValue();
}
sal_Bool OCopyTable::checkAppendData()
{
m_pParent->clearDestColumns();
Reference< XPropertySet > xTable;
Reference< XTablesSupplier > xSup( m_pParent->m_xDestConnection, UNO_QUERY );
Reference<XNameAccess> xTables;
if(xSup.is())
xTables = xSup->getTables();
if(xTables.is() && xTables->hasByName(m_edTableName.GetText()))
{
const ODatabaseExport::TColumnVector* pSrcColumns = m_pParent->getSrcVector();
const sal_uInt32 nSrcSize = pSrcColumns->size();
m_pParent->m_vColumnPos.resize( nSrcSize, ODatabaseExport::TPositions::value_type( COLUMN_POSITION_NOT_FOUND, COLUMN_POSITION_NOT_FOUND ) );
m_pParent->m_vColumnTypes.resize( nSrcSize , COLUMN_POSITION_NOT_FOUND );
// set new destination
xTables->getByName( m_edTableName.GetText() ) >>= xTable;
ObjectCopySource aTableCopySource( m_pParent->m_xDestConnection, xTable );
m_pParent->loadData( aTableCopySource, m_pParent->m_vDestColumns, m_pParent->m_aDestVec );
const ODatabaseExport::TColumnVector* pDestColumns = m_pParent->getDestVector();
ODatabaseExport::TColumnVector::const_iterator aDestIter = pDestColumns->begin();
ODatabaseExport::TColumnVector::const_iterator aDestEnd = pDestColumns->end();
const sal_uInt32 nDestSize = pDestColumns->size();
sal_Bool bNotConvert;
sal_uInt32 i = 0;
for(sal_Int32 nPos = 1;aDestIter != aDestEnd && i < nDestSize && i < nSrcSize;++aDestIter,++nPos,++i)
{
bNotConvert = sal_True;
m_pParent->m_vColumnPos[i] = ODatabaseExport::TPositions::value_type(nPos,nPos);
TOTypeInfoSP pTypeInfo = m_pParent->convertType((*aDestIter)->second->getSpecialTypeInfo(),bNotConvert);
if ( !bNotConvert )
{
m_pParent->showColumnTypeNotSupported((*aDestIter)->first);
return sal_False;
}
if ( pTypeInfo.get() )
m_pParent->m_vColumnTypes[i] = pTypeInfo->nType;
else
m_pParent->m_vColumnTypes[i] = DataType::VARCHAR;
}
}
if ( !xTable.is() )
{
OUString sError(ModuleRes(STR_INVALID_TABLE_NAME));
m_pParent->showError(sError);
return sal_False;
}
return sal_True;
}
void OCopyTable::setCreatePrimaryKey( bool _bDoCreate, const OUString& _rSuggestedName )
{
bool bCreatePK = m_bPKeyAllowed && _bDoCreate;
m_aCB_PrimaryColumn.Check( bCreatePK );
m_edKeyName.SetText( _rSuggestedName );
m_aFT_KeyName.Enable( bCreatePK );
m_edKeyName.Enable( bCreatePK );
}
void OCopyTable::setCreateStyleAction()
{
// reselect the last action before
switch(m_pParent->getOperation())
{
case CopyTableOperation::CopyDefinitionAndData:
m_aRB_DefData.Check(true);
RadioChangeHdl(&m_aRB_DefData);
break;
case CopyTableOperation::CopyDefinitionOnly:
m_aRB_Def.Check(true);
RadioChangeHdl(&m_aRB_Def);
break;
case CopyTableOperation::AppendData:
m_aRB_AppendData.Check(true);
SetAppendDataRadio();
break;
case CopyTableOperation::CreateAsView:
if ( m_aRB_View.IsEnabled() )
{
m_aRB_View.Check(true);
RadioChangeHdl(&m_aRB_View);
}
else
{
m_aRB_DefData.Check(true);
RadioChangeHdl(&m_aRB_DefData);
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */