Files
libreoffice/dbaccess/source/ui/relationdesign/RelationTableView.cxx

417 lines
15 KiB
C++
Raw Normal View History

/* -*- 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 .
*/
2001-02-28 09:09:17 +00:00
#include "RelationTableView.hxx"
#include "JoinExchange.hxx"
#include <comphelper/extract.hxx>
2001-02-28 09:09:17 +00:00
#include "browserids.hxx"
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>
#include <com/sun/star/sdbcx/XKeysSupplier.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/KeyType.hpp>
#include <com/sun/star/container/XIndexAccess.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include "dbustrings.hrc"
#include <connectivity/dbtools.hxx>
#include <comphelper/sequence.hxx>
#include <tools/debug.hxx>
#include "dbaccess_helpid.hrc"
#include "RelationDesignView.hxx"
#include "JoinController.hxx"
#include "TableWindow.hxx"
#include "TableWindowData.hxx"
#include "RTableConnection.hxx"
#include "RTableConnectionData.hxx"
#include "RelationDlg.hxx"
#include "sqlmessage.hxx"
2002-08-19 07:01:32 +00:00
#include "dbu_rel.hrc"
2001-02-28 09:09:17 +00:00
#include "UITools.hxx"
#include <connectivity/dbexception.hxx>
#include "RTableWindow.hxx"
2002-11-26 06:46:13 +00:00
#include "JAccess.hxx"
#include <svl/undo.hxx>
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
2001-10-11 07:38:14 +00:00
2001-02-28 09:09:17 +00:00
using namespace dbaui;
using namespace ::dbtools;
2008-10-01 12:28:29 +00:00
using namespace ::com::sun::star;
2001-02-28 09:09:17 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::accessibility;
2001-02-28 09:09:17 +00:00
// class ORelationTableView
ORelationTableView::ORelationTableView( vcl::Window* pParent, ORelationDesignView* pView )
2008-10-01 12:28:29 +00:00
:OJoinTableView( pParent, pView )
, ::comphelper::OContainerListener(m_aMutex)
,m_pExistingConnection(NULL)
2008-10-01 12:28:29 +00:00
,m_bInRemove(false)
2001-02-28 09:09:17 +00:00
{
SetHelpId(HID_CTL_RELATIONTAB);
}
ORelationTableView::~ORelationTableView()
{
dispose();
}
void ORelationTableView::dispose()
2001-02-28 09:09:17 +00:00
{
2008-10-01 12:28:29 +00:00
if ( m_pContainerListener.is() )
m_pContainerListener->dispose();
OJoinTableView::dispose();
2001-02-28 09:09:17 +00:00
}
void ORelationTableView::ReSync()
{
2008-10-01 12:28:29 +00:00
if ( !m_pContainerListener.is() )
{
Reference< XConnection> xConnection = m_pView->getController().getConnection();
Reference< XTablesSupplier > xTableSupp( xConnection, UNO_QUERY_THROW );
Reference< XNameAccess > xTables = xTableSupp->getTables();
Reference< XContainer> xContainer(xTables,uno::UNO_QUERY);
if ( xContainer.is() )
m_pContainerListener = new ::comphelper::OContainerListenerAdapter(this,xContainer);
}
// Tables could have been hidden in the database, which are part of a relation. Or a table was in layout
// (quite often without a relation) and does not exist anymore. In both cases creation of TabWins will fail
// and all TabWinDatas and related ConnDates should be deleted.
::std::vector< OUString> arrInvalidTables;
2001-02-28 09:09:17 +00:00
// create and insert windows
TTableWindowData& rTabWinDataList = m_pView->getController().getTableWindowData();
TTableWindowData::reverse_iterator aIter = rTabWinDataList.rbegin();
for(;aIter != rTabWinDataList.rend();++aIter)
2001-02-28 09:09:17 +00:00
{
TTableWindowData::value_type pData = *aIter;
OTableWindow* pTabWin = createWindow(pData);
2001-02-28 09:09:17 +00:00
if (!pTabWin->Init())
{
// initialisation failed, which means this TabWin is not available, therefore,
// it should be cleaned up, including its data in the document
pTabWin->clearListBox();
2001-02-28 09:09:17 +00:00
delete pTabWin;
arrInvalidTables.push_back(pData->GetTableName());
rTabWinDataList.erase( ::std::remove(rTabWinDataList.begin(), rTabWinDataList.end(), *aIter), rTabWinDataList.end());
2001-02-28 09:09:17 +00:00
continue;
}
GetTabWinMap()[pData->GetComposedName()] = pTabWin; // insert at the beginning, as the Datalist is walked through backward
// if there's no position or size contained in the data -> Default
2001-02-28 09:09:17 +00:00
if (!pData->HasPosition() && !pData->HasSize())
SetDefaultTabWinPosSize(pTabWin);
pTabWin->Show();
}
// insert connection
TTableConnectionData& rTabConnDataList = m_pView->getController().getTableConnectionData();
TTableConnectionData::reverse_iterator aConIter = rTabConnDataList.rbegin();
2001-02-28 09:09:17 +00:00
for(;aConIter != rTabConnDataList.rend();++aConIter)
2001-02-28 09:09:17 +00:00
{
ORelationTableConnectionData* pTabConnData = static_cast<ORelationTableConnectionData*>(aConIter->get());
if ( !arrInvalidTables.empty() )
{
// do the tables to the connection exist?
OUString strTabExistenceTest = pTabConnData->getReferencingTable()->GetTableName();
bool bInvalid = ::std::find(arrInvalidTables.begin(),arrInvalidTables.end(),strTabExistenceTest) != arrInvalidTables.end();
strTabExistenceTest = pTabConnData->getReferencedTable()->GetTableName();
bInvalid = bInvalid || ::std::find(arrInvalidTables.begin(),arrInvalidTables.end(),strTabExistenceTest) != arrInvalidTables.end();
2001-02-28 09:09:17 +00:00
if (bInvalid)
{
// no -> bad luck, the connection is gone
rTabConnDataList.erase( ::std::remove(rTabConnDataList.begin(), rTabConnDataList.end(), *aConIter), rTabConnDataList.end() );
continue;
}
2010-11-23 23:41:49 +00:00
}
2001-02-28 09:09:17 +00:00
addConnection( new ORelationTableConnection(this, *aConIter), false ); // don't add the data again
2001-02-28 09:09:17 +00:00
}
2001-10-26 06:49:36 +00:00
if ( !GetTabWinMap().empty() )
GetTabWinMap().begin()->second->GrabFocus();
2001-02-28 09:09:17 +00:00
}
bool ORelationTableView::IsAddAllowed()
2001-02-28 09:09:17 +00:00
{
return !m_pView->getController().isReadOnly();
2001-02-28 09:09:17 +00:00
}
2001-02-28 09:09:17 +00:00
void ORelationTableView::AddConnection(const OJoinExchangeData& jxdSource, const OJoinExchangeData& jxdDest)
{
// Set LineDataObject based on selected fieldname
2001-02-28 09:09:17 +00:00
// check if relation already exists
OTableWindow* pSourceWin = jxdSource.pListBox->GetTabWin();
OTableWindow* pDestWin = jxdDest.pListBox->GetTabWin();
2001-02-28 09:09:17 +00:00
::std::vector<OTableConnection*>::const_iterator aIter = getTableConnections().begin();
::std::vector<OTableConnection*>::const_iterator aEnd = getTableConnections().end();
CWS-TOOLING: integrate CWS dbaperf2 2009-06-22 11:04:36 +0200 msc r273202 : #100000# fix to run this test 2009-06-22 09:41:04 +0200 msc r273200 : #100000# correct case 2009-06-22 09:02:42 +0200 msc r273199 : new SRB 2009-06-22 08:53:26 +0200 msc r273198 : #100000 2009-06-15 12:36:32 +0200 oj r272976 : test 2009-06-12 14:23:23 +0200 msc r272918 : #101587# unused feature was removed 2009-06-12 06:45:17 +0200 oj r272903 : use GUI instead of OS 2009-06-11 09:12:30 +0200 oj r272845 : remove unused dep 2009-06-11 09:11:09 +0200 oj r272844 : ColumnAliasInOrderBy not supported 2009-06-11 08:27:00 +0200 oj r272843 : CWS-TOOLING: rebase CWS dbaperf2 to trunk@272827 (milestone: DEV300:m50) 2009-06-10 15:30:17 +0200 msc r272822 : #100000 2009-06-10 15:27:40 +0200 msc r272820 : #102515# new function for the database type list 2009-06-10 15:26:09 +0200 msc r272818 : move file to dbaccess/tools/dbcreatetools.inc 2009-06-10 15:20:10 +0200 msc r272816 : #102515# new function for the database type list 2009-06-10 12:34:46 +0200 oj r272803 : #i101587# check extension 2009-06-10 11:53:45 +0200 oj r272800 : remove unused code 2009-06-09 09:57:25 +0200 oj r272752 : #i101587# EscapeDateTime moved into features section 2009-06-09 09:56:26 +0200 oj r272751 : enable finish 2009-06-08 11:50:37 +0200 oj r272726 : #i102588# move convert tzo saveDataSource 2009-06-05 11:54:20 +0200 jsk r272676 : #i102515# - NEW: Functions to retrieve Database names from API 2009-06-05 10:52:22 +0200 jsk r272671 : NEW: Functions to retrieve Database names from API 2009-06-05 09:36:54 +0200 oj r272666 : handle win and unx differently 2009-06-05 09:36:28 +0200 oj r272665 : handle win and unx differently 2009-06-04 13:41:56 +0200 oj r272625 : #i101268# make use of stringbuffer instead of oustring 2009-06-04 10:18:14 +0200 oj r272612 : add SAL_DLLPUBLIC_EXPORT 2009-05-28 10:56:33 +0200 oj r272381 : #i101587# create langpacks 2009-05-28 10:41:59 +0200 oj r272380 : #i101587# create langpacks 2009-05-28 10:29:30 +0200 oj r272379 : #i101587# create langpacks 2009-05-07 10:11:46 +0200 oj r271635 : fix compile warnings 2009-05-07 07:01:31 +0200 oj r271619 : change type from int32 to PathID 2009-05-07 06:53:19 +0200 oj r271618 : add all 2009-05-06 14:57:02 +0200 oj r271595 : add missing lib 2009-05-06 14:56:54 +0200 oj r271594 : no used anymore 2009-05-06 14:56:08 +0200 oj r271593 : no used anymore 2009-05-06 14:54:25 +0200 oj r271592 : no used anymore 2009-05-06 14:45:59 +0200 oj r271591 : add missing lib 2009-05-06 14:41:54 +0200 oj r271590 : change wnt 2009-05-06 14:22:21 +0200 oj r271589 : #i101587# use config for the drivers 2009-05-06 14:21:39 +0200 oj r271588 : #i101587# add new set for metadata and config data for driver 2009-05-06 14:19:36 +0200 oj r271587 : #i101587# handle metadata and props of driver 2009-05-06 10:11:11 +0200 oj r271570 : #i101587# correct wrong use of reference 2009-05-06 09:24:33 +0200 oj r271567 : #i101587# add new set for metadata 2009-05-06 08:52:06 +0200 oj r271563 : #i101587# add driver configuration 2009-05-06 08:51:04 +0200 oj r271562 : #i101587# add driver configuration 2009-05-04 10:24:41 +0200 oj r271442 : CWS-TOOLING: rebase CWS dbaperf2 to trunk@271427 (milestone: DEV300:m47) 2009-04-28 07:06:22 +0200 oj r271303 : compile error 2009-04-27 14:12:48 +0200 oj r271270 : #i101268# make use of stringbuffer instead of oustring 2009-04-27 14:12:27 +0200 oj r271269 : #i101268# make use of stringbuffer instead of oustring 2009-04-27 09:30:10 +0200 oj r271255 : use string buffer when possible 2009-04-24 11:56:01 +0200 oj r271207 : #i101268# remove end() call from loop 2009-04-23 14:24:03 +0200 oj r271171 : add dep 2009-04-23 13:25:25 +0200 oj r271164 : #i101268# add config entries for database drivers 2009-04-23 13:07:13 +0200 oj r271161 : #i101268# add config entries for database drivers 2009-04-23 13:06:33 +0200 oj r271160 : #i101268# add parent url pattern entry for driver node 2009-04-23 13:05:39 +0200 oj r271159 : #i101268# add config entry for driver node 2009-04-23 13:04:09 +0200 oj r271157 : #i101268# add config entry for driver node 2009-04-23 06:41:32 +0200 oj r271142 : #i101268# add new configuration file Drivers 2009-04-22 13:49:19 +0200 oj r271103 : convert EOL 2009-04-22 13:29:17 +0200 oj r271101 : #i101268# use of driver configuration entries for features and properties 2009-04-22 13:28:08 +0200 oj r271100 : #i101268# use of driver configuration entries for features and properties 2009-04-22 13:15:26 +0200 oj r271098 : #i101268# add new configuration file Drivers 2009-04-22 13:14:43 +0200 oj r271097 : #i101268# use of driver configuration entries for features and properties
2009-07-03 12:24:35 +00:00
for(;aIter != aEnd;++aIter)
2001-02-28 09:09:17 +00:00
{
OTableConnection* pFirst = *aIter;
if((pFirst->GetSourceWin() == pSourceWin && pFirst->GetDestWin() == pDestWin) ||
(pFirst->GetSourceWin() == pDestWin && pFirst->GetDestWin() == pSourceWin))
{
m_pExistingConnection = pFirst;
break;
2001-02-28 09:09:17 +00:00
}
}
// insert table connection into view
TTableConnectionData::value_type pTabConnData(new ORelationTableConnectionData(pSourceWin->GetData(),
pDestWin->GetData()));
2001-02-28 09:09:17 +00:00
// the names of the affected fields
OUString sSourceFieldName = jxdSource.pListBox->GetEntryText(jxdSource.pEntry);
OUString sDestFieldName = jxdDest.pListBox->GetEntryText(jxdDest.pEntry);
2001-02-28 09:09:17 +00:00
// the number of PKey-Fields in the source
const Reference< XNameAccess> xPrimaryKeyColumns = getPrimaryKeyColumns_throw(pSourceWin->GetData()->getTable());
bool bAskUser = xPrimaryKeyColumns.is() && Reference< XIndexAccess>(xPrimaryKeyColumns,UNO_QUERY)->getCount() > 1;
2001-02-28 09:09:17 +00:00
pTabConnData->SetConnLine( 0, sSourceFieldName, sDestFieldName );
if ( bAskUser || m_pExistingConnection )
m_pCurrentlyTabConnData = pTabConnData; // this implies that we ask the user what to do
2001-02-28 09:09:17 +00:00
else
{
try
2001-02-28 09:09:17 +00:00
{
// hand over data to the database
if( pTabConnData->Update() )
{
// enter UI-object into ConnList
2002-02-08 08:24:02 +00:00
addConnection( new ORelationTableConnection( this, pTabConnData ) );
}
2001-02-28 09:09:17 +00:00
}
catch(const SQLException&)
{
throw;
}
catch(const Exception&)
{
OSL_FAIL("ORelationTableView::AddConnection: Exception oocured!");
}
2001-02-28 09:09:17 +00:00
}
}
void ORelationTableView::ConnDoubleClicked( OTableConnection* pConnection )
{
VclPtr<ORelationDialog> aRelDlg(new ORelationDialog( this, pConnection->GetData() ));
switch (aRelDlg->Execute())
2001-02-28 09:09:17 +00:00
{
case RET_OK:
// successfully updated
pConnection->UpdateLineList();
// The connection references 1 ConnData and n ConnLines, each ConnData references n LineDatas, each Line exactly 1 LineData
// As the Dialog and the ConnData->Update may have changed the LineDatas we have to restore the consistent state
break;
case RET_NO:
// tried at least one update, but did not succeed -> the original connection is lost
RemoveConnection( pConnection ,true);
break;
case RET_CANCEL:
// no break, as nothing happened and we don't need the code below
return;
2001-02-28 09:09:17 +00:00
}
Invalidate(INVALIDATE_NOCHILDREN);
2001-02-28 09:09:17 +00:00
}
void ORelationTableView::AddNewRelation()
{
TTableConnectionData::value_type pNewConnData( new ORelationTableConnectionData() );
VclPtr<ORelationDialog> aRelDlg(new ORelationDialog(this, pNewConnData, true));
2001-02-28 09:09:17 +00:00
bool bSuccess = (aRelDlg->Execute() == RET_OK);
if (bSuccess)
{
// already updated by the dialog
// announce it to the document
addConnection( new ORelationTableConnection(this, pNewConnData) );
2001-02-28 09:09:17 +00:00
}
}
bool ORelationTableView::RemoveConnection( OTableConnection* pConn ,bool /*_bDelete*/)
2001-02-28 09:09:17 +00:00
{
ORelationTableConnectionData* pTabConnData = static_cast<ORelationTableConnectionData*>(pConn->GetData().get());
2001-02-28 09:09:17 +00:00
try
{
2008-10-01 12:28:29 +00:00
if ( m_bInRemove || pTabConnData->DropRelation())
return OJoinTableView::RemoveConnection( pConn ,true);
2001-02-28 09:09:17 +00:00
}
catch(SQLException& e)
{
getDesignView()->getController().showError(SQLExceptionInfo(e));
2001-02-28 09:09:17 +00:00
}
catch(Exception&)
{
OSL_FAIL("ORelationTableView::RemoveConnection: Something other than SQLException occurred!");
2001-02-28 09:09:17 +00:00
}
return false;
2001-02-28 09:09:17 +00:00
}
void ORelationTableView::AddTabWin(const OUString& _rComposedName, const OUString& rWinName, bool /*bNewTable*/)
2001-02-28 09:09:17 +00:00
{
OSL_ENSURE(!_rComposedName.isEmpty(),"There must be a table name supplied!");
OJoinTableView::OTableWindowMap::iterator aIter = GetTabWinMap().find(_rComposedName);
2001-02-28 09:09:17 +00:00
if(aIter != GetTabWinMap().end())
2001-02-28 09:09:17 +00:00
{
aIter->second->SetZOrder(NULL, WINDOW_ZORDER_FIRST);
aIter->second->GrabFocus();
EnsureVisible(aIter->second);
// no new one
return;
}
// enter the new data structure into DocShell
TTableWindowData::value_type pNewTabWinData(createTableWindowData( _rComposedName, rWinName,rWinName ));
pNewTabWinData->ShowAll(false);
2001-02-28 09:09:17 +00:00
// link new window into the window list
OTableWindow* pNewTabWin = createWindow( pNewTabWinData );
2001-02-28 09:09:17 +00:00
if(pNewTabWin->Init())
{
m_pView->getController().getTableWindowData().push_back( pNewTabWinData);
2001-02-28 09:09:17 +00:00
// when we already have a table with this name insert the full qualified one instead
GetTabWinMap()[_rComposedName] = pNewTabWin;
2001-02-28 09:09:17 +00:00
SetDefaultTabWinPosSize( pNewTabWin );
pNewTabWin->Show();
2002-11-26 06:46:13 +00:00
modified();
if ( m_pAccessible )
m_pAccessible->notifyAccessibleEvent( AccessibleEventId::CHILD,
2002-11-26 06:46:13 +00:00
Any(),
makeAny(pNewTabWin->GetAccessible()));
2001-02-28 09:09:17 +00:00
}
else
{
pNewTabWin->clearListBox();
2001-02-28 09:09:17 +00:00
delete pNewTabWin;
}
}
void ORelationTableView::RemoveTabWin( OTableWindow* pTabWin )
{
VclPtr<OSQLWarningBox> aDlg(new OSQLWarningBox( this, ModuleRes( STR_QUERY_REL_DELETE_WINDOW ), WB_YES_NO | WB_DEF_YES ));
if ( m_bInRemove || aDlg->Execute() == RET_YES )
{
m_pView->getController().ClearUndoManager();
OJoinTableView::RemoveTabWin( pTabWin );
m_pView->getController().InvalidateFeature(SID_RELATION_ADD_RELATION);
m_pView->getController().InvalidateFeature(ID_BROWSER_UNDO);
m_pView->getController().InvalidateFeature(ID_BROWSER_REDO);
}
}
void ORelationTableView::lookForUiActivities()
{
if(m_pExistingConnection)
{
OUString sTitle(ModuleRes(STR_RELATIONDESIGN));
sTitle = sTitle.copy(3);
VclPtr<OSQLMessageBox> aDlg(new OSQLMessageBox(this,ModuleRes(STR_QUERY_REL_EDIT_RELATION),OUString(),0));
aDlg->SetText(sTitle);
aDlg->RemoveButton(aDlg->GetButtonId(0));
aDlg->AddButton( ModuleRes(STR_QUERY_REL_EDIT), RET_OK, BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON);
aDlg->AddButton( ModuleRes(STR_QUERY_REL_CREATE), RET_YES, 0);
aDlg->AddButton( StandardButtonType::Cancel,RET_CANCEL,0);
sal_uInt16 nRet = aDlg->Execute();
if( nRet == RET_CANCEL)
{
m_pCurrentlyTabConnData.reset();
}
else if ( nRet == RET_OK ) // EDIT
{
ConnDoubleClicked(m_pExistingConnection);
m_pCurrentlyTabConnData.reset();
}
m_pExistingConnection = NULL;
}
if(m_pCurrentlyTabConnData)
{
VclPtr<ORelationDialog> aRelDlg(new ORelationDialog( this, m_pCurrentlyTabConnData ) );
if (aRelDlg->Execute() == RET_OK)
{
// already updated by the dialog
2002-02-08 08:24:02 +00:00
addConnection( new ORelationTableConnection( this, m_pCurrentlyTabConnData ) );
}
m_pCurrentlyTabConnData.reset();
}
}
OTableWindow* ORelationTableView::createWindow(const TTableWindowData::value_type& _pData)
{
return new ORelationTableWindow(this,_pData);
}
bool ORelationTableView::allowQueries() const
{
return false;
}
void ORelationTableView::_elementInserted( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
2008-10-01 12:28:29 +00:00
{
}
void ORelationTableView::_elementRemoved( const container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception)
2008-10-01 12:28:29 +00:00
{
m_bInRemove = true;
OUString sName;
2008-10-01 12:28:29 +00:00
if ( _rEvent.Accessor >>= sName )
{
OTableWindow* pTableWindow = GetTabWindow(sName);
if ( pTableWindow )
{
m_pView->getController().ClearUndoManager();
2008-10-01 12:28:29 +00:00
OJoinTableView::RemoveTabWin( pTableWindow );
m_pView->getController().InvalidateFeature(SID_RELATION_ADD_RELATION);
m_pView->getController().InvalidateFeature(ID_BROWSER_UNDO);
m_pView->getController().InvalidateFeature(ID_BROWSER_REDO);
}
2010-11-23 23:41:49 +00:00
}
2008-10-01 12:28:29 +00:00
m_bInRemove = false;
}
void ORelationTableView::_elementReplaced( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
2008-10-01 12:28:29 +00:00
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */