2001-02-28 09:09:17 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* $RCSfile: RTableConnectionData.cxx,v $
|
|
|
|
* $Revision: 1.15 $
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
2008-04-10 15:31:23 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2001-02-28 09:09:17 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2006-09-17 06:27:51 +00:00
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
2001-02-28 09:09:17 +00:00
|
|
|
#ifndef DBAUI_RTABLECONNECTIONDATA_HXX
|
|
|
|
#include "RTableConnectionData.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_KEYRULE_HPP_
|
|
|
|
#include <com/sun/star/sdbc/KeyRule.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_KEYTYPE_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/KeyType.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XKEYSSUPPLIER_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XKeysSupplier.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XCOLUMNSSUPPLIER_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XDATADESCRIPTORFACTORY_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XAPPEND_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XAppend.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XDROP_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XDrop.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXACCESS_HPP_
|
|
|
|
#include <com/sun/star/container/XIndexAccess.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_TOOLS_HXX
|
|
|
|
#include "UITools.hxx"
|
|
|
|
#endif
|
|
|
|
using namespace dbaui;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::sdbcx;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
2001-06-28 13:26:45 +00:00
|
|
|
using namespace ::com::sun::star::lang;
|
2001-02-28 09:09:17 +00:00
|
|
|
|
2006-06-20 02:30:54 +00:00
|
|
|
DBG_NAME(ORelationTableConnectionData)
|
2001-02-28 09:09:17 +00:00
|
|
|
//========================================================================
|
|
|
|
// class ORelationTableConnectionData
|
|
|
|
//========================================================================
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
ORelationTableConnectionData::ORelationTableConnectionData()
|
|
|
|
:OTableConnectionData()
|
|
|
|
,m_nUpdateRules(KeyRule::NO_ACTION)
|
|
|
|
,m_nDeleteRules(KeyRule::NO_ACTION)
|
|
|
|
,m_nCardinality(CARDINAL_UNDEFINED)
|
|
|
|
{
|
|
|
|
DBG_CTOR(ORelationTableConnectionData,NULL);
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
2007-11-01 14:37:01 +00:00
|
|
|
ORelationTableConnectionData::ORelationTableConnectionData( const TTableWindowData::value_type& _pReferencingTable,
|
|
|
|
const TTableWindowData::value_type& _pReferencedTable,
|
2001-02-28 09:09:17 +00:00
|
|
|
const ::rtl::OUString& rConnName )
|
2007-11-01 14:37:01 +00:00
|
|
|
:OTableConnectionData( _pReferencingTable, _pReferencedTable )
|
2001-02-28 09:09:17 +00:00
|
|
|
,m_nUpdateRules(KeyRule::NO_ACTION)
|
|
|
|
,m_nDeleteRules(KeyRule::NO_ACTION)
|
|
|
|
,m_nCardinality(CARDINAL_UNDEFINED)
|
|
|
|
{
|
|
|
|
DBG_CTOR(ORelationTableConnectionData,NULL);
|
2007-11-01 14:37:01 +00:00
|
|
|
m_aConnName = rConnName;
|
2001-06-28 13:26:45 +00:00
|
|
|
|
2007-11-01 14:37:01 +00:00
|
|
|
if ( m_aConnName.Len() )
|
|
|
|
SetCardinality();
|
2001-02-28 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
ORelationTableConnectionData::ORelationTableConnectionData( const ORelationTableConnectionData& rConnData )
|
|
|
|
:OTableConnectionData( rConnData )
|
|
|
|
{
|
|
|
|
DBG_CTOR(ORelationTableConnectionData,NULL);
|
|
|
|
*this = rConnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
ORelationTableConnectionData::~ORelationTableConnectionData()
|
|
|
|
{
|
|
|
|
DBG_DTOR(ORelationTableConnectionData,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
BOOL ORelationTableConnectionData::DropRelation()
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(ORelationTableConnectionData,NULL);
|
2001-06-28 13:26:45 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-02-28 09:09:17 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Relation loeschen
|
2007-11-01 14:37:01 +00:00
|
|
|
Reference<XKeysSupplier> xSup(getReferencingTable()->getTable(),UNO_QUERY);
|
2001-02-28 09:09:17 +00:00
|
|
|
Reference< XIndexAccess> xKeys;
|
|
|
|
if(xSup.is() )
|
|
|
|
xKeys = xSup->getKeys();
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if( m_aConnName.Len() && xKeys.is() )
|
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
const sal_Int32 nCount = xKeys->getCount();
|
|
|
|
for(sal_Int32 i = 0;i < nCount;++i)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
Reference< XPropertySet> xKey(xKeys->getByIndex(i),UNO_QUERY);
|
2001-02-28 09:09:17 +00:00
|
|
|
OSL_ENSURE(xKey.is(),"Key is not valid!");
|
|
|
|
if(xKey.is())
|
|
|
|
{
|
|
|
|
::rtl::OUString sName;
|
|
|
|
xKey->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
if(String(sName) == m_aConnName)
|
|
|
|
{
|
|
|
|
Reference< XDrop> xDrop(xKeys,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xDrop.is(),"can't drop key because we haven't a drop interface!");
|
|
|
|
if(xDrop.is())
|
|
|
|
xDrop->dropByIndex(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
void ORelationTableConnectionData::ChangeOrientation()
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(ORelationTableConnectionData,NULL);
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Source- und DestFieldName der Linien austauschen
|
|
|
|
::rtl::OUString sTempString;
|
2001-10-08 06:32:36 +00:00
|
|
|
OConnectionLineDataVec::iterator aIter = m_vConnLineData.begin();
|
2001-02-28 09:09:17 +00:00
|
|
|
for(;aIter != m_vConnLineData.end();++aIter)
|
|
|
|
{
|
|
|
|
sTempString = (*aIter)->GetSourceFieldName();
|
|
|
|
(*aIter)->SetSourceFieldName( (*aIter)->GetDestFieldName() );
|
|
|
|
(*aIter)->SetDestFieldName( sTempString );
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Member anpassen
|
2007-11-01 14:37:01 +00:00
|
|
|
TTableWindowData::value_type pTemp = m_pReferencingTable;
|
|
|
|
m_pReferencingTable = m_pReferencedTable;
|
|
|
|
m_pReferencedTable = pTemp;
|
2001-02-28 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
void ORelationTableConnectionData::SetCardinality()
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(ORelationTableConnectionData,NULL);
|
2002-11-21 12:57:18 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-02-28 09:09:17 +00:00
|
|
|
m_nCardinality = CARDINAL_UNDEFINED;
|
|
|
|
|
|
|
|
if( IsSourcePrimKey() )
|
|
|
|
{
|
|
|
|
if( IsDestPrimKey() )
|
|
|
|
m_nCardinality = CARDINAL_ONE_ONE;
|
|
|
|
else
|
|
|
|
m_nCardinality = CARDINAL_ONE_MANY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( IsDestPrimKey() )
|
|
|
|
{
|
|
|
|
if( !IsSourcePrimKey() )
|
|
|
|
m_nCardinality = CARDINAL_MANY_ONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
BOOL ORelationTableConnectionData::checkPrimaryKey(const Reference< XPropertySet>& _xTable,EConnectionSide _eEConnectionSide) const
|
|
|
|
{
|
|
|
|
// check if Table has the primary key column dependig on _eEConnectionSide
|
|
|
|
USHORT nPrimKeysCount = 0,
|
|
|
|
nValidLinesCount = 0;
|
|
|
|
::std::vector<Reference<XNameAccess> > vKeyColumns = ::dbaui::getKeyColumns(_xTable,KeyType::PRIMARY);
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( vKeyColumns.size() == 1 )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2002-11-21 12:57:18 +00:00
|
|
|
// OSL_ENSURE(vKeyColumns.size()==1,"There can be only one primary key in a table!");
|
|
|
|
Sequence< ::rtl::OUString> aKeyColumns;
|
2001-02-28 09:09:17 +00:00
|
|
|
Reference<XNameAccess> xKeyColumns = *vKeyColumns.begin();
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xKeyColumns.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2002-11-21 12:57:18 +00:00
|
|
|
aKeyColumns = xKeyColumns->getElementNames();
|
|
|
|
const ::rtl::OUString* pKeyBegin = aKeyColumns.getConstArray();
|
|
|
|
const ::rtl::OUString* pKeyEnd = pKeyBegin + aKeyColumns.getLength();
|
|
|
|
|
|
|
|
for(;pKeyBegin != pKeyEnd;++pKeyBegin)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2002-11-21 12:57:18 +00:00
|
|
|
OConnectionLineDataVec::const_iterator aIter = m_vConnLineData.begin();
|
|
|
|
for(;aIter != m_vConnLineData.end();++aIter)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
++nValidLinesCount;
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( (*aIter)->GetFieldName(_eEConnectionSide) == *pKeyBegin )
|
|
|
|
{
|
|
|
|
++nPrimKeysCount;
|
|
|
|
break;
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-12 10:36:08 +00:00
|
|
|
if ( nPrimKeysCount != aKeyColumns.getLength() )
|
2001-02-28 09:09:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2002-11-12 10:36:08 +00:00
|
|
|
if ( !nPrimKeysCount || nPrimKeysCount != nValidLinesCount )
|
2001-02-28 09:09:17 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
BOOL ORelationTableConnectionData::IsConnectionPossible()
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(ORelationTableConnectionData,NULL);
|
2001-06-28 13:26:45 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
2001-02-28 09:09:17 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Wenn die SourceFelder ein PrimKey sind, ist nur die Orientierung falsch
|
2002-11-12 10:36:08 +00:00
|
|
|
if ( IsSourcePrimKey() && !IsDestPrimKey() )
|
2001-02-28 09:09:17 +00:00
|
|
|
ChangeOrientation();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2001-10-08 06:32:36 +00:00
|
|
|
OConnectionLineDataRef ORelationTableConnectionData::CreateLineDataObj()
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
return new OConnectionLineData();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2001-10-08 06:32:36 +00:00
|
|
|
OConnectionLineDataRef ORelationTableConnectionData::CreateLineDataObj( const OConnectionLineData& rConnLineData )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
return new OConnectionLineData( rConnLineData );
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
void ORelationTableConnectionData::CopyFrom(const OTableConnectionData& rSource)
|
|
|
|
{
|
|
|
|
// wie in der Basisklasse zurueckziehen auf das (nicht-virtuelle) operator=
|
|
|
|
*this = *static_cast<const ORelationTableConnectionData*>(&rSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
ORelationTableConnectionData& ORelationTableConnectionData::operator=( const ORelationTableConnectionData& rConnData )
|
|
|
|
{
|
|
|
|
if (&rConnData == this)
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
OTableConnectionData::operator=( rConnData );
|
|
|
|
m_nUpdateRules = rConnData.GetUpdateRules();
|
|
|
|
m_nDeleteRules = rConnData.GetDeleteRules();
|
|
|
|
m_nCardinality = rConnData.GetCardinality();
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
2007-09-26 13:53:09 +00:00
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool operator==(const ORelationTableConnectionData& lhs, const ORelationTableConnectionData& rhs)
|
|
|
|
{
|
|
|
|
bool bEqual = (lhs.m_nUpdateRules == rhs.m_nUpdateRules)
|
|
|
|
&& (lhs.m_nDeleteRules == rhs.m_nDeleteRules)
|
|
|
|
&& (lhs.m_nCardinality == rhs.m_nCardinality)
|
2007-11-01 14:37:01 +00:00
|
|
|
&& (lhs.getReferencingTable() == rhs.getReferencingTable())
|
|
|
|
&& (lhs.getReferencedTable() == rhs.getReferencedTable())
|
2007-09-26 13:53:09 +00:00
|
|
|
&& (lhs.m_aConnName == rhs.m_aConnName)
|
|
|
|
&& (lhs.m_vConnLineData.size() == rhs.m_vConnLineData.size());
|
|
|
|
|
|
|
|
if ( bEqual )
|
|
|
|
{
|
|
|
|
std::vector< OConnectionLineDataRef >::const_iterator aIter = lhs.m_vConnLineData.begin();
|
|
|
|
std::vector< OConnectionLineDataRef >::const_iterator aEnd = lhs.m_vConnLineData.end();
|
|
|
|
for (sal_Int32 i = 0; aIter != aEnd; ++aIter,++i)
|
|
|
|
{
|
|
|
|
if ( *(rhs.m_vConnLineData[i]) != **aIter )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bEqual = aIter == aEnd;
|
|
|
|
}
|
|
|
|
return bEqual;
|
|
|
|
}
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
BOOL ORelationTableConnectionData::Update()
|
|
|
|
{
|
2001-06-28 13:26:45 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-02-28 09:09:17 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Alte Relation loeschen
|
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
Reference<XKeysSupplier> xSup(getReferencingTable()->getTable(),UNO_QUERY);
|
2001-05-21 11:57:05 +00:00
|
|
|
Reference< XIndexAccess> xKeys;
|
2002-11-07 13:06:21 +00:00
|
|
|
if ( xSup.is() )
|
2001-05-21 11:57:05 +00:00
|
|
|
xKeys = xSup->getKeys();
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
|
2002-11-21 12:57:18 +00:00
|
|
|
DropRelation();
|
2001-05-21 11:57:05 +00:00
|
|
|
if( !IsConnectionPossible() )
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
|
2001-05-21 11:57:05 +00:00
|
|
|
// reassign the keys because the orientaion could be changed
|
2007-11-01 14:37:01 +00:00
|
|
|
Reference<XKeysSupplier> xSup(getReferencingTable()->getTable(),UNO_QUERY);
|
2001-05-21 11:57:05 +00:00
|
|
|
Reference< XIndexAccess> xKeys;
|
2002-11-07 13:06:21 +00:00
|
|
|
if ( xSup.is() )
|
2001-05-21 11:57:05 +00:00
|
|
|
xKeys = xSup->getKeys();
|
2002-11-21 12:57:18 +00:00
|
|
|
|
|
|
|
if ( !xKeys.is() )
|
|
|
|
return FALSE;
|
2001-02-28 09:09:17 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Neue Relation erzeugen
|
|
|
|
Reference<XDataDescriptorFactory> xKeyFactory(xKeys,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xKeyFactory.is(),"No XDataDescriptorFactory Interface!");
|
|
|
|
Reference<XAppend> xAppend(xKeyFactory,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xAppend.is(),"No XAppend Interface!");
|
|
|
|
|
|
|
|
Reference<XPropertySet> xKey = xKeyFactory->createDataDescriptor();
|
|
|
|
OSL_ENSURE(xKey.is(),"Key is null!");
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xKey.is() )
|
|
|
|
{
|
|
|
|
// build a foreign key name
|
|
|
|
::rtl::OUString sSourceName;
|
2007-11-01 14:37:01 +00:00
|
|
|
Reference<XPropertySet> xProp(xSup,UNO_QUERY_THROW);
|
|
|
|
xProp->getPropertyValue(PROPERTY_NAME) >>= sSourceName;
|
2002-11-21 12:57:18 +00:00
|
|
|
::rtl::OUString sKeyName = sSourceName;
|
2007-11-01 14:37:01 +00:00
|
|
|
sKeyName += getReferencedTable()->GetTableName();
|
2002-11-21 12:57:18 +00:00
|
|
|
|
|
|
|
xKey->setPropertyValue(PROPERTY_NAME,makeAny(sKeyName));
|
|
|
|
xKey->setPropertyValue(PROPERTY_TYPE,makeAny(KeyType::FOREIGN));
|
2007-11-01 14:37:01 +00:00
|
|
|
xKey->setPropertyValue(PROPERTY_REFERENCEDTABLE,makeAny(::rtl::OUString(getReferencedTable()->GetTableName())));
|
2002-11-21 12:57:18 +00:00
|
|
|
xKey->setPropertyValue(PROPERTY_UPDATERULE, makeAny(GetUpdateRules()));
|
|
|
|
xKey->setPropertyValue(PROPERTY_DELETERULE, makeAny(GetDeleteRules()));
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
|
|
|
|
Reference<XColumnsSupplier> xColSup(xKey,UNO_QUERY);
|
2002-11-07 13:06:21 +00:00
|
|
|
if ( xColSup.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
|
|
|
Reference<XDataDescriptorFactory> xColumnFactory(xColumns,UNO_QUERY);
|
|
|
|
Reference<XAppend> xColumnAppend(xColumns,UNO_QUERY);
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xColumnFactory.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2002-11-21 12:57:18 +00:00
|
|
|
OConnectionLineDataVec::iterator aIter = m_vConnLineData.begin();
|
|
|
|
for(;aIter != m_vConnLineData.end();++aIter)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2002-11-21 12:57:18 +00:00
|
|
|
if((*aIter)->GetSourceFieldName().getLength() && (*aIter)->GetDestFieldName().getLength())
|
|
|
|
{
|
|
|
|
Reference<XPropertySet> xColumn;
|
|
|
|
xColumn = xColumnFactory->createDataDescriptor();
|
|
|
|
if ( xColumn.is() )
|
|
|
|
{
|
|
|
|
xColumn->setPropertyValue(PROPERTY_NAME,makeAny((*aIter)->GetSourceFieldName()));
|
|
|
|
xColumn->setPropertyValue(PROPERTY_RELATEDCOLUMN,makeAny((*aIter)->GetDestFieldName()));
|
|
|
|
xColumnAppend->appendByDescriptor(xColumn);
|
|
|
|
}
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xColumns->hasElements() )
|
|
|
|
xAppend->appendByDescriptor(xKey);
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
// to get the key we have to reget it because after append it is no longer valid
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the name of foreign key // search for columns
|
|
|
|
m_aConnName = ::rtl::OUString();
|
|
|
|
xKey = NULL;
|
|
|
|
for(sal_Int32 i=0;i<xKeys->getCount();++i)
|
|
|
|
{
|
|
|
|
xKeys->getByIndex(i) >>= xKey;
|
|
|
|
OSL_ENSURE(xKey.is(),"Key is not valid!");
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xKey.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
sal_Int32 nType = 0;
|
|
|
|
xKey->getPropertyValue(PROPERTY_TYPE) >>= nType;
|
2007-11-01 14:37:01 +00:00
|
|
|
::rtl::OUString sReferencedTable;
|
|
|
|
xKey->getPropertyValue(PROPERTY_REFERENCEDTABLE) >>= sReferencedTable;
|
|
|
|
if ( sReferencedTable == ::rtl::OUString(getReferencedTable()->GetTableName()) )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
xColSup.set(xKey,UNO_QUERY_THROW);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
|
|
|
Sequence< ::rtl::OUString> aNames = xColumns->getElementNames();
|
|
|
|
const ::rtl::OUString* pIter = aNames.getConstArray();
|
|
|
|
const ::rtl::OUString* pEnd = pIter + aNames.getLength();
|
|
|
|
|
|
|
|
Reference<XPropertySet> xColumn;
|
|
|
|
::rtl::OUString sName,sRelatedColumn;
|
|
|
|
for ( ; pIter != pEnd ; ++pIter )
|
|
|
|
{
|
|
|
|
xColumn.set(xColumns->getByName(*pIter),UNO_QUERY_THROW);
|
|
|
|
xColumn->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_RELATEDCOLUMN) >>= sRelatedColumn;
|
|
|
|
|
|
|
|
OConnectionLineDataVec::iterator aIter = m_vConnLineData.begin();
|
|
|
|
for(;aIter != m_vConnLineData.end();++aIter)
|
|
|
|
{
|
|
|
|
if( (*aIter)->GetSourceFieldName() == sName
|
|
|
|
&& (*aIter)->GetDestFieldName() == sRelatedColumn )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( aIter == m_vConnLineData.end() )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( pIter == pEnd )
|
|
|
|
{
|
|
|
|
xKey->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
m_aConnName = sName;
|
|
|
|
//here we already know our column structure so we don't have to recreate the table connection data
|
|
|
|
xColSup.clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xKey = NULL;
|
|
|
|
}
|
|
|
|
|
2002-11-21 12:57:18 +00:00
|
|
|
// OSL_ENSURE(xKey.is(),"No key found have insertion!");
|
2001-02-28 09:09:17 +00:00
|
|
|
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xColSup.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
// The fields the relation marks may not be the same as our LineDatas mark after the relation has been updated
|
2001-10-08 06:32:36 +00:00
|
|
|
OConnectionLineDataVec().swap(m_vConnLineData);
|
2001-02-28 09:09:17 +00:00
|
|
|
|
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
|
|
|
Sequence< ::rtl::OUString> aNames = xColumns->getElementNames();
|
2007-11-01 14:37:01 +00:00
|
|
|
const ::rtl::OUString* pIter = aNames.getConstArray();
|
|
|
|
const ::rtl::OUString* pEnd = pIter + aNames.getLength();
|
2002-11-21 12:57:18 +00:00
|
|
|
|
|
|
|
m_vConnLineData.reserve( aNames.getLength() );
|
|
|
|
Reference<XPropertySet> xColumn;
|
|
|
|
::rtl::OUString sName,sRelatedColumn;
|
|
|
|
|
2007-11-01 14:37:01 +00:00
|
|
|
for(;pIter != pEnd;++pIter)
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2007-11-01 14:37:01 +00:00
|
|
|
xColumns->getByName(*pIter) >>= xColumn;
|
2002-11-21 12:57:18 +00:00
|
|
|
if ( xColumn.is() )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
2001-10-08 06:32:36 +00:00
|
|
|
OConnectionLineDataRef pNewData = CreateLineDataObj();
|
2001-02-28 09:09:17 +00:00
|
|
|
|
|
|
|
xColumn->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_RELATEDCOLUMN) >>= sRelatedColumn;
|
|
|
|
|
|
|
|
pNewData->SetSourceFieldName(sName);
|
|
|
|
pNewData->SetDestFieldName(sRelatedColumn);
|
|
|
|
m_vConnLineData.push_back(pNewData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// NOTE : the caller is resposible for updating any other objects referencing the old LineDatas (for instance a ConnLine)
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Kardinalitaet bestimmen
|
|
|
|
SetCardinality();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|