2001-02-14 13:28:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:40:26 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-02-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2001-02-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +00:00
|
|
|
* $RCSfile: TableController.cxx,v $
|
2008-05-05 15:09:55 +00:00
|
|
|
* $Revision: 1.120 $
|
2001-02-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-02-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +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-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +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-14 13:28:01 +00:00
|
|
|
*
|
2008-04-10 15:40:26 +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-14 13:28:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2006-09-17 06:29:30 +00:00
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
2001-02-14 13:28:01 +00:00
|
|
|
#ifndef DBUI_TABLECONTROLLER_HXX
|
|
|
|
#include "TableController.hxx"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _DBAU_REGHELPER_HXX_
|
|
|
|
#include "dbu_reghelper.hxx"
|
|
|
|
#endif
|
2002-04-02 05:27:11 +00:00
|
|
|
#ifndef _STRING_HXX
|
|
|
|
#include <tools/string.hxx>
|
|
|
|
#endif
|
2008-01-29 07:52:37 +00:00
|
|
|
#include <tools/diagnose_ex.h>
|
2001-02-14 13:28:01 +00:00
|
|
|
#ifndef _SFXSIDS_HRC
|
|
|
|
#include <sfx2/sfxsids.hrc>
|
|
|
|
#endif
|
2002-08-19 07:01:32 +00:00
|
|
|
#ifndef _DBU_TBL_HRC_
|
|
|
|
#include "dbu_tbl.hrc"
|
2001-02-14 13:28:01 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DBACCESS_UI_BROWSER_ID_HXX
|
|
|
|
#include "browserids.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_TYPES_HXX_
|
|
|
|
#include <comphelper/types.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#endif
|
2006-07-10 14:46:21 +00:00
|
|
|
#ifndef DBACCESS_SOURCE_UI_INC_DEFAULTOBJECTNAMECHECK_HXX
|
|
|
|
#include "defaultobjectnamecheck.hxx"
|
|
|
|
#endif
|
2001-02-14 13:28:01 +00:00
|
|
|
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_FRAME_FRAMESEARCHFLAG_HPP_
|
|
|
|
#include <com/sun/star/frame/FrameSearchFlag.hpp>
|
|
|
|
#endif
|
2001-03-16 15:27:06 +00:00
|
|
|
#ifndef _COMPHELPER_EXTRACT_HXX_
|
|
|
|
#include <comphelper/extract.hxx>
|
2001-02-14 13:28:01 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_DLGSAVE_HXX
|
|
|
|
#include "dlgsave.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XCHILD_HPP_
|
|
|
|
#include <com/sun/star/container/XChild.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XDATADESCRIPTORFACTORY_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XTABLESSUPPLIER_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_KEYTYPE_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/KeyType.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XDROP_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XDrop.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XALTERTABLE_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XAlterTable.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XAPPEND_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XAppend.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_SQLCONTEXT_HPP_
|
|
|
|
#include <com/sun/star/sdb/SQLContext.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_SQLWARNING_HPP_
|
|
|
|
#include <com/sun/star/sdbc/SQLWarning.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_COLUMNVALUE_HPP_
|
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDBC_XROW_HPP_
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#endif
|
2001-03-16 15:27:06 +00:00
|
|
|
#ifndef _COM_SUN_STAR_SDBCX_XINDEXESSUPPLIER_HPP_
|
|
|
|
#include <com/sun/star/sdbcx/XIndexesSupplier.hpp>
|
|
|
|
#endif
|
2001-02-14 13:28:01 +00:00
|
|
|
#ifndef _DBHELPER_DBEXCEPTION_HXX_
|
|
|
|
#include <connectivity/dbexception.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UI_XEXECUTABLEDIALOG_HPP_
|
2001-07-04 08:28:50 +00:00
|
|
|
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
|
2001-02-14 13:28:01 +00:00
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_STREAMSECTION_HXX_
|
|
|
|
#include <comphelper/streamsection.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_IO_XACTIVEDATASOURCE_HPP_
|
|
|
|
#include <com/sun/star/io/XActiveDataSource.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_IO_XACTIVEDATASINK_HPP_
|
|
|
|
#include <com/sun/star/io/XActiveDataSink.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_TABLEDESIGNVIEW_HXX
|
|
|
|
#include "TableDesignView.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
|
|
|
|
#include <com/sun/star/sdb/CommandType.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_FIELDDESCRIPTIONS_HXX
|
|
|
|
#include "FieldDescriptions.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_TABLEROW_HXX
|
|
|
|
#include "TableRow.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_TYPEINFO_HXX
|
|
|
|
#include "TypeInfo.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_TABLEEDITORCONTROL_HXX
|
|
|
|
#include "TEditControl.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _DBAUI_SQLMESSAGE_HXX_
|
|
|
|
#include "sqlmessage.hxx"
|
|
|
|
#endif
|
2001-03-16 15:27:06 +00:00
|
|
|
#ifndef _SV_MSGBOX_HXX
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DBAUI_INDEXDIALOG_HXX_
|
|
|
|
#include "indexdialog.hxx"
|
|
|
|
#endif
|
2001-05-22 10:00:46 +00:00
|
|
|
#ifndef DBAUI_TOOLS_HXX
|
|
|
|
#include "UITools.hxx"
|
|
|
|
#endif
|
2001-07-02 09:31:49 +00:00
|
|
|
#ifndef DBAUI_TOOLS_HXX
|
|
|
|
#include "UITools.hxx"
|
|
|
|
#endif
|
2006-05-04 07:50:19 +00:00
|
|
|
#include <boost/mem_fn.hpp>
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2006-08-15 09:57:26 +00:00
|
|
|
#ifndef _CPPUHELPER_EXC_HLP_HXX_
|
|
|
|
#include <cppuhelper/exc_hlp.hxx>
|
|
|
|
#endif
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
extern "C" void SAL_CALL createRegistryInfo_OTableControl()
|
|
|
|
{
|
|
|
|
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::OTableController > aAutoRegistration;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::io;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::frame;
|
|
|
|
using namespace ::com::sun::star::util;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::sdbcx;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::sdb;
|
|
|
|
using namespace ::com::sun::star::ui;
|
2001-04-17 08:15:33 +00:00
|
|
|
using namespace ::com::sun::star::util;
|
2001-02-14 13:28:01 +00:00
|
|
|
using namespace ::dbtools;
|
|
|
|
using namespace ::dbaui;
|
|
|
|
using namespace ::comphelper;
|
|
|
|
|
2002-03-21 11:55:36 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
void dropTable(const Reference<XNameAccess>& _rxTable,const ::rtl::OUString& _sTableName)
|
|
|
|
{
|
|
|
|
if ( _rxTable->hasByName(_sTableName) )
|
|
|
|
{
|
|
|
|
Reference<XDrop> xNameCont(_rxTable,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xNameCont.is(),"No drop interface for tables!");
|
|
|
|
if ( xNameCont.is() )
|
|
|
|
xNameCont->dropByName(_sTableName);
|
|
|
|
}
|
|
|
|
}
|
2005-01-05 11:37:44 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2006-05-04 07:50:19 +00:00
|
|
|
struct OTableRowCompare : public ::std::binary_function< ::boost::shared_ptr<OTableRow> , ::rtl::OUString, bool>
|
2005-01-05 11:37:44 +00:00
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
bool operator() (const ::boost::shared_ptr<OTableRow> lhs, const ::rtl::OUString& rhs) const
|
2005-01-05 11:37:44 +00:00
|
|
|
{
|
|
|
|
OFieldDescription* pField = lhs->GetActFieldDescr();
|
|
|
|
return pField && pField->GetName() == rhs;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2002-03-21 11:55:36 +00:00
|
|
|
}
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OTableController::getImplementationName() throw( RuntimeException )
|
|
|
|
{
|
|
|
|
return getImplementationName_Static();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString OTableController::getImplementationName_Static() throw( RuntimeException )
|
|
|
|
{
|
|
|
|
return ::rtl::OUString::createFromAscii("org.openoffice.comp.dbu.OTableDesign");
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
Sequence< ::rtl::OUString> OTableController::getSupportedServiceNames_Static(void) throw( RuntimeException )
|
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString> aSupported(1);
|
|
|
|
aSupported.getArray()[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdb.TableDesign");
|
|
|
|
return aSupported;
|
|
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
Sequence< ::rtl::OUString> SAL_CALL OTableController::getSupportedServiceNames() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
return getSupportedServiceNames_Static();
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
Reference< XInterface > SAL_CALL OTableController::Create(const Reference<XMultiServiceFactory >& _rxFactory)
|
|
|
|
{
|
|
|
|
return *(new OTableController(_rxFactory));
|
|
|
|
}
|
2001-08-14 11:08:52 +00:00
|
|
|
|
2005-09-23 11:45:53 +00:00
|
|
|
DBG_NAME(OTableController)
|
2001-02-14 13:28:01 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2001-08-14 11:08:52 +00:00
|
|
|
OTableController::OTableController(const Reference< XMultiServiceFactory >& _rM) : OTableController_BASE(_rM)
|
2001-02-14 13:28:01 +00:00
|
|
|
,m_sTypeNames(ModuleRes(STR_TABLEDESIGN_DBFIELDTYPES))
|
2004-11-26 17:20:08 +00:00
|
|
|
,m_pTypeInfo()
|
2002-07-25 06:03:59 +00:00
|
|
|
,m_bAllowAutoIncrementValue(sal_False)
|
2006-06-20 02:32:34 +00:00
|
|
|
,m_bNew(sal_True)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2005-09-23 11:45:53 +00:00
|
|
|
DBG_CTOR(OTableController,NULL);
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
InvalidateAll();
|
2003-03-19 16:57:12 +00:00
|
|
|
m_pTypeInfo = TOTypeInfoSP(new OTypeInfo());
|
2001-10-18 11:04:12 +00:00
|
|
|
m_pTypeInfo->aUIName = m_sTypeNames.GetToken(TYPE_OTHER);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
OTableController::~OTableController()
|
|
|
|
{
|
2001-07-02 09:31:49 +00:00
|
|
|
m_aTypeInfoIndex.clear();
|
2001-02-14 13:28:01 +00:00
|
|
|
m_aTypeInfo.clear();
|
2005-09-23 11:45:53 +00:00
|
|
|
|
|
|
|
DBG_DTOR(OTableController,NULL);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-03-16 15:27:06 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::startTableListening()
|
|
|
|
{
|
|
|
|
Reference< XComponent > xComponent(m_xTable, UNO_QUERY);
|
|
|
|
if (xComponent.is())
|
2001-06-21 16:47:38 +00:00
|
|
|
xComponent->addEventListener(static_cast<XModifyListener*>(this));
|
2001-03-16 15:27:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::stopTableListening()
|
|
|
|
{
|
|
|
|
Reference< XComponent > xComponent(m_xTable, UNO_QUERY);
|
|
|
|
if (xComponent.is())
|
2001-06-21 16:47:38 +00:00
|
|
|
xComponent->removeEventListener(static_cast<XModifyListener*>(this));
|
2001-03-16 15:27:06 +00:00
|
|
|
}
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2001-03-01 14:17:55 +00:00
|
|
|
void OTableController::disposing()
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-08-14 11:08:52 +00:00
|
|
|
OTableController_BASE::disposing();
|
2001-02-14 13:28:01 +00:00
|
|
|
m_pView = NULL;
|
|
|
|
|
2006-05-04 07:50:19 +00:00
|
|
|
m_vRowList.clear();
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2002-04-03 12:21:15 +00:00
|
|
|
FeatureState OTableController::GetState(sal_uInt16 _nId) const
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
FeatureState aReturn;
|
2001-04-24 13:32:28 +00:00
|
|
|
// (disabled automatically)
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
switch (_nId)
|
|
|
|
{
|
2002-11-08 12:20:09 +00:00
|
|
|
case ID_BROWSER_CLOSE:
|
2001-04-24 13:32:28 +00:00
|
|
|
aReturn.bEnabled = sal_True;
|
|
|
|
break;
|
2001-02-14 13:28:01 +00:00
|
|
|
case ID_BROWSER_EDITDOC:
|
2006-07-10 14:46:21 +00:00
|
|
|
aReturn.bChecked = isEditable();
|
2004-08-02 15:18:21 +00:00
|
|
|
aReturn.bEnabled = m_bNew || isEditable();// the editable flag is set through this one -> || isAddAllowed() || isDropAllowed() || isAlterAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
case ID_BROWSER_SAVEDOC:
|
2002-08-19 07:01:32 +00:00
|
|
|
aReturn.bEnabled = isModified();
|
2002-03-21 12:30:44 +00:00
|
|
|
if ( aReturn.bEnabled )
|
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = ::std::find_if(m_vRowList.begin(),m_vRowList.end(),
|
|
|
|
::boost::mem_fn(&OTableRow::isValid));
|
2002-03-21 12:30:44 +00:00
|
|
|
aReturn.bEnabled = aIter != m_vRowList.end();
|
|
|
|
}
|
|
|
|
break;
|
2002-03-21 11:55:36 +00:00
|
|
|
case ID_BROWSER_SAVEASDOC:
|
2004-08-02 15:18:21 +00:00
|
|
|
aReturn.bEnabled = isConnected() && isEditable();
|
2002-03-21 11:55:36 +00:00
|
|
|
if ( aReturn.bEnabled )
|
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = ::std::find_if(m_vRowList.begin(),m_vRowList.end(),
|
|
|
|
::boost::mem_fn(&OTableRow::isValid));
|
2002-03-21 11:55:36 +00:00
|
|
|
aReturn.bEnabled = aIter != m_vRowList.end();
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
2002-03-21 11:55:36 +00:00
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
case ID_BROWSER_CUT:
|
2008-03-06 17:30:39 +00:00
|
|
|
aReturn.bEnabled = isEditable() && m_aCurrentFrame.isActive() && getView() && static_cast<OTableDesignView*>(getView())->isCutAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
case ID_BROWSER_COPY:
|
2008-03-06 17:30:39 +00:00
|
|
|
aReturn.bEnabled = m_aCurrentFrame.isActive() && getView() && static_cast<OTableDesignView*>(getView())->isCopyAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
case ID_BROWSER_PASTE:
|
2008-03-06 17:30:39 +00:00
|
|
|
aReturn.bEnabled = isEditable() && m_aCurrentFrame.isActive() && getView() && static_cast<OTableDesignView*>(getView())->isPasteAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
2001-03-16 15:27:06 +00:00
|
|
|
case SID_INDEXDESIGN:
|
2001-04-03 07:45:36 +00:00
|
|
|
aReturn.bEnabled =
|
2002-08-19 07:01:32 +00:00
|
|
|
( ( ((!m_bNew && isModified()) || isModified())
|
2001-04-03 07:45:36 +00:00
|
|
|
|| Reference< XIndexesSupplier >(m_xTable, UNO_QUERY).is()
|
|
|
|
)
|
2001-08-14 11:08:52 +00:00
|
|
|
&& isConnected()
|
2001-04-03 07:45:36 +00:00
|
|
|
);
|
2002-07-22 12:18:08 +00:00
|
|
|
if ( aReturn.bEnabled )
|
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = ::std::find_if(m_vRowList.begin(),m_vRowList.end(),
|
|
|
|
::boost::mem_fn(&OTableRow::isValid));
|
2002-07-22 12:18:08 +00:00
|
|
|
aReturn.bEnabled = aIter != m_vRowList.end();
|
|
|
|
}
|
2001-03-16 15:27:06 +00:00
|
|
|
break;
|
2002-08-19 07:01:32 +00:00
|
|
|
default:
|
|
|
|
aReturn = OTableController_BASE::GetState(_nId);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
return aReturn;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2004-09-09 08:51:05 +00:00
|
|
|
void OTableController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue >& aArgs)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
switch(_nId)
|
|
|
|
{
|
|
|
|
case ID_BROWSER_EDITDOC:
|
2002-08-19 07:01:32 +00:00
|
|
|
setEditable(!isEditable());
|
|
|
|
static_cast<OTableDesignView*>(getView())->setReadOnly(!isEditable());
|
2001-02-14 13:28:01 +00:00
|
|
|
InvalidateFeature(ID_BROWSER_PASTE);
|
2004-09-09 08:51:05 +00:00
|
|
|
InvalidateFeature(SID_BROWSER_CLEAR_QUERY);
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
case ID_BROWSER_SAVEASDOC:
|
2001-03-19 05:04:03 +00:00
|
|
|
doSaveDoc(sal_True);
|
|
|
|
break;
|
2001-02-14 13:28:01 +00:00
|
|
|
case ID_BROWSER_SAVEDOC:
|
2001-05-04 09:04:23 +00:00
|
|
|
static_cast<OTableDesignView*>(getView())->GetEditorCtrl()->SaveCurRow();
|
2001-03-19 05:04:03 +00:00
|
|
|
doSaveDoc(sal_False);
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
case ID_BROWSER_CUT:
|
|
|
|
static_cast<OTableDesignView*>(getView())->cut();
|
|
|
|
break;
|
|
|
|
case ID_BROWSER_COPY:
|
|
|
|
static_cast<OTableDesignView*>(getView())->copy();
|
|
|
|
break;
|
|
|
|
case ID_BROWSER_PASTE:
|
|
|
|
static_cast<OTableDesignView*>(getView())->paste();
|
|
|
|
break;
|
2001-03-16 15:27:06 +00:00
|
|
|
case SID_INDEXDESIGN:
|
|
|
|
doEditIndexes();
|
|
|
|
break;
|
2002-08-19 07:01:32 +00:00
|
|
|
default:
|
2004-09-09 08:51:05 +00:00
|
|
|
OTableController_BASE::Execute(_nId,aArgs);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
InvalidateFeature(_nId);
|
|
|
|
}
|
2001-03-16 15:27:06 +00:00
|
|
|
|
2001-03-19 05:04:03 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool OTableController::doSaveDoc(sal_Bool _bSaveAs)
|
|
|
|
{
|
2001-08-14 11:08:52 +00:00
|
|
|
if (!isConnected())
|
|
|
|
reconnect(sal_True); // ask the user for a new connection
|
|
|
|
Reference<XTablesSupplier> xTablesSup(getConnection(),UNO_QUERY);
|
2001-03-19 05:04:03 +00:00
|
|
|
|
|
|
|
if (!xTablesSup.is())
|
|
|
|
{
|
|
|
|
String aMessage(ModuleRes(STR_TABLEDESIGN_CONNECTION_MISSING));
|
|
|
|
String sTitle(ModuleRes(STR_STAT_WARNING));
|
|
|
|
OSQLMessageBox aMsg(getView(),sTitle,aMessage);
|
|
|
|
aMsg.Execute();
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
2002-02-06 07:31:04 +00:00
|
|
|
// check if a column exists
|
|
|
|
// TODO
|
|
|
|
|
2001-03-19 05:04:03 +00:00
|
|
|
Reference<XNameAccess> xTables;
|
|
|
|
::rtl::OUString sCatalog, sSchema;
|
|
|
|
|
|
|
|
sal_Bool bNew = (0 == m_sName.getLength());
|
|
|
|
bNew = bNew || m_bNew || _bSaveAs;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
xTables = xTablesSup->getTables();
|
2001-09-25 12:28:23 +00:00
|
|
|
OSL_ENSURE(xTables.is(),"The tables can't be null!");
|
|
|
|
bNew = bNew || (xTables.is() && !xTables->hasByName(m_sName));
|
2001-03-19 05:04:03 +00:00
|
|
|
|
|
|
|
// first we need a name for our query so ask the user
|
|
|
|
if(bNew)
|
|
|
|
{
|
|
|
|
String aDefaultName;
|
|
|
|
if (_bSaveAs && !bNew)
|
|
|
|
aDefaultName = String(m_sName);
|
|
|
|
else
|
2008-04-04 13:04:07 +00:00
|
|
|
aDefaultName = getPrivateTitle();
|
2001-03-19 05:04:03 +00:00
|
|
|
|
2006-07-10 14:46:21 +00:00
|
|
|
DynamicTableOrQueryNameCheck aNameChecker( getConnection(), CommandType::TABLE );
|
|
|
|
OSaveAsDlg aDlg( getView(), CommandType::TABLE, getORB(), getConnection(), aDefaultName, aNameChecker );
|
|
|
|
if ( aDlg.Execute() != RET_OK )
|
2001-07-24 05:54:43 +00:00
|
|
|
return sal_False;
|
2006-07-10 14:46:21 +00:00
|
|
|
|
|
|
|
m_sName = aDlg.getName();
|
|
|
|
sCatalog = aDlg.getCatalog();
|
|
|
|
sSchema = aDlg.getSchema();
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// did we get a name
|
|
|
|
if(!m_sName.getLength())
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(sal_False, "OTableController::doSaveDoc: nothing is expected to happen here!");
|
|
|
|
}
|
|
|
|
|
2001-07-06 07:16:05 +00:00
|
|
|
sal_Bool bAlter = sal_False;
|
2002-04-02 05:27:11 +00:00
|
|
|
sal_Bool bError = sal_False;
|
2001-03-19 05:04:03 +00:00
|
|
|
SQLExceptionInfo aInfo;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// check the columns for double names
|
2001-05-08 13:03:32 +00:00
|
|
|
if(!checkColumns(bNew || !xTables->hasByName(m_sName)))
|
|
|
|
{
|
2002-11-21 13:39:11 +00:00
|
|
|
// #105323# OJ
|
2001-05-08 13:03:32 +00:00
|
|
|
return sal_False;
|
|
|
|
}
|
2001-03-19 05:04:03 +00:00
|
|
|
|
|
|
|
Reference<XPropertySet> xTable;
|
|
|
|
if(bNew || !xTables->hasByName(m_sName)) // just to make sure the table already exists
|
|
|
|
{
|
2002-03-21 11:55:36 +00:00
|
|
|
dropTable(xTables,m_sName);
|
2001-03-19 05:04:03 +00:00
|
|
|
|
|
|
|
Reference<XDataDescriptorFactory> xFact(xTables,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xFact.is(),"OTableController::doSaveDoc: No XDataDescriptorFactory available!");
|
|
|
|
xTable = xFact->createDataDescriptor();
|
|
|
|
OSL_ENSURE(xTable.is(),"OTableController::doSaveDoc: Create query failed!");
|
|
|
|
// to set the name is only allowed when the wuery is new
|
|
|
|
xTable->setPropertyValue(PROPERTY_CATALOGNAME,makeAny(sCatalog));
|
|
|
|
xTable->setPropertyValue(PROPERTY_SCHEMANAME,makeAny(sSchema));
|
|
|
|
xTable->setPropertyValue(PROPERTY_NAME,makeAny(m_sName));
|
|
|
|
|
|
|
|
// now append the columns
|
|
|
|
Reference<XColumnsSupplier> xColSup(xTable,UNO_QUERY);
|
2002-09-20 10:06:11 +00:00
|
|
|
appendColumns(xColSup,bNew);
|
2001-03-19 05:04:03 +00:00
|
|
|
// now append the primary key
|
|
|
|
Reference<XKeysSupplier> xKeySup(xTable,UNO_QUERY);
|
2002-09-20 10:06:11 +00:00
|
|
|
appendPrimaryKey(xKeySup,bNew);
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
// now set the properties
|
|
|
|
if(bNew)
|
|
|
|
{
|
|
|
|
Reference<XAppend> xAppend(xTables,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xAppend.is(),"OTableController::doSaveDoc: No XAppend Interface!");
|
|
|
|
xAppend->appendByDescriptor(xTable);
|
|
|
|
|
|
|
|
assignTable();
|
|
|
|
if(!m_xTable.is()) // correct name and try again
|
|
|
|
{
|
|
|
|
// it can be that someone inserted new data for us
|
2006-07-10 14:46:21 +00:00
|
|
|
m_sName = ::dbtools::composeTableName( getConnection()->getMetaData(), xTable, ::dbtools::eInDataManipulation, false, false, false );
|
2001-03-19 05:04:03 +00:00
|
|
|
assignTable();
|
|
|
|
}
|
2001-04-17 08:15:33 +00:00
|
|
|
// now check if our datasource has set a tablefilter and if append the new table name to it
|
2001-11-12 09:33:47 +00:00
|
|
|
::dbaui::appendToFilter(getConnection(),m_sName,getORB(),getView()); // we are not interessted in the return value
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
else if(m_xTable.is())
|
|
|
|
{
|
2001-07-06 07:16:05 +00:00
|
|
|
bAlter = sal_True;
|
2001-03-19 05:04:03 +00:00
|
|
|
alterColumns();
|
|
|
|
}
|
2001-03-22 06:54:07 +00:00
|
|
|
reSyncRows();
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
2002-04-02 05:27:11 +00:00
|
|
|
catch(const SQLContext& e)
|
2001-03-19 05:04:03 +00:00
|
|
|
{
|
|
|
|
aInfo = SQLExceptionInfo(e);
|
|
|
|
}
|
2002-04-02 05:27:11 +00:00
|
|
|
catch(const SQLWarning& e)
|
2001-03-19 05:04:03 +00:00
|
|
|
{
|
|
|
|
aInfo = SQLExceptionInfo(e);
|
|
|
|
}
|
2002-04-02 05:27:11 +00:00
|
|
|
catch(const SQLException& e)
|
2001-03-19 05:04:03 +00:00
|
|
|
{
|
|
|
|
aInfo = SQLExceptionInfo(e);
|
|
|
|
}
|
2002-04-02 05:27:11 +00:00
|
|
|
catch(const ElementExistException& )
|
|
|
|
{
|
2006-07-10 14:46:21 +00:00
|
|
|
String sText( ModuleRes( STR_NAME_ALREADY_EXISTS ) );
|
2002-04-02 05:27:11 +00:00
|
|
|
sText.SearchAndReplaceAscii( "#" , m_sName);
|
2006-07-10 14:46:21 +00:00
|
|
|
OSQLMessageBox aDlg( getView(), String( ModuleRes( STR_ERROR_DURING_CREATION ) ), sText, WB_OK, OSQLMessageBox::Error );
|
2002-04-02 05:27:11 +00:00
|
|
|
|
|
|
|
aDlg.Execute();
|
|
|
|
bError = sal_True;
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2001-03-19 05:04:03 +00:00
|
|
|
{
|
2002-04-02 05:27:11 +00:00
|
|
|
bError = sal_True;
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
|
2006-08-15 09:57:26 +00:00
|
|
|
if ( aInfo.isValid() )
|
|
|
|
aInfo.prepend( String( ModuleRes( STR_TABLEDESIGN_SAVE_ERROR ) ) );
|
2001-03-19 05:04:03 +00:00
|
|
|
showError(aInfo);
|
2006-08-15 09:57:26 +00:00
|
|
|
|
2002-04-02 05:27:11 +00:00
|
|
|
if (aInfo.isValid() || bError)
|
2001-07-06 07:16:05 +00:00
|
|
|
{
|
2002-04-02 05:27:11 +00:00
|
|
|
if(!bAlter || bNew)
|
2001-07-06 07:16:05 +00:00
|
|
|
{
|
|
|
|
m_sName = ::rtl::OUString();
|
|
|
|
stopTableListening();
|
|
|
|
m_xTable = NULL;
|
|
|
|
}
|
2001-08-24 05:40:35 +00:00
|
|
|
// reload(); // a error occured so we have to reload
|
2001-07-06 07:16:05 +00:00
|
|
|
}
|
2002-04-02 05:27:11 +00:00
|
|
|
return ! (aInfo.isValid() || bError);
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
|
2001-03-16 15:27:06 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::doEditIndexes()
|
|
|
|
{
|
2001-03-19 05:04:03 +00:00
|
|
|
// table needs to be saved before editing indexes
|
2002-08-19 07:01:32 +00:00
|
|
|
if (m_bNew || isModified())
|
2001-03-19 05:04:03 +00:00
|
|
|
{
|
|
|
|
QueryBox aAsk(getView(), ModuleRes(QUERY_SAVE_TABLE_EDIT_INDEXES));
|
|
|
|
if (RET_YES != aAsk.Execute())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!doSaveDoc(sal_False))
|
|
|
|
return;
|
|
|
|
|
2002-08-19 07:01:32 +00:00
|
|
|
OSL_ENSURE(!m_bNew && !isModified(), "OTableController::doEditIndexes: what the hell did doSaveDoc do?");
|
2001-03-19 05:04:03 +00:00
|
|
|
}
|
|
|
|
|
2001-03-16 15:27:06 +00:00
|
|
|
Reference< XNameAccess > xIndexes; // will be the keys of the table
|
|
|
|
Sequence< ::rtl::OUString > aFieldNames; // will be the column names of the table
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// get the keys
|
|
|
|
Reference< XIndexesSupplier > xIndexesSupp(m_xTable, UNO_QUERY);
|
|
|
|
if (xIndexesSupp.is())
|
|
|
|
{
|
|
|
|
xIndexes = xIndexesSupp->getIndexes();
|
|
|
|
OSL_ENSURE(xIndexes.is(), "OTableController::doEditIndexes: no keys got from the indexes supplier!");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
OSL_ENSURE(sal_False, "OTableController::doEditIndexes: should never have reached this (no indexes supplier)!");
|
|
|
|
|
|
|
|
// get the field names
|
|
|
|
Reference< XColumnsSupplier > xColSupp(m_xTable, UNO_QUERY);
|
|
|
|
OSL_ENSURE(xColSupp.is(), "OTableController::doEditIndexes: no columns supplier!");
|
|
|
|
if (xColSupp.is())
|
|
|
|
{
|
|
|
|
Reference< XNameAccess > xCols = xColSupp->getColumns();
|
|
|
|
OSL_ENSURE(xCols.is(), "OTableController::doEditIndexes: no columns!");
|
|
|
|
if (xCols.is())
|
|
|
|
aFieldNames = xCols->getElementNames();
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2001-03-16 15:27:06 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2001-03-16 15:27:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!xIndexes.is())
|
|
|
|
return;
|
|
|
|
|
2003-12-01 09:39:30 +00:00
|
|
|
DbaIndexDialog aDialog(getView(), aFieldNames, xIndexes, getConnection(),getORB(),isConnected() ? getConnection()->getMetaData().is() && getConnection()->getMetaData()->getMaxColumnsInIndex() : sal_Int32(0));
|
2001-03-16 15:27:06 +00:00
|
|
|
if (RET_OK != aDialog.Execute())
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2006-07-10 14:46:21 +00:00
|
|
|
void OTableController::impl_initialize()
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2006-07-10 14:46:21 +00:00
|
|
|
OTableController_BASE::impl_initialize();
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2006-07-10 14:46:21 +00:00
|
|
|
const NamedValueCollection& rArguments( getInitParams() );
|
|
|
|
|
2007-01-15 13:37:28 +00:00
|
|
|
rArguments.get_ensureType( (::rtl::OUString)PROPERTY_CURRENTTABLE, m_sName );
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2004-08-02 15:18:21 +00:00
|
|
|
// read autoincrement value set in the datasource
|
|
|
|
::dbaui::fillAutoIncrementValue(getDataSource(),m_bAllowAutoIncrementValue,m_sAutoIncrementValue);
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2001-03-12 13:06:25 +00:00
|
|
|
assignTable();
|
2002-11-19 10:47:08 +00:00
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2002-11-19 10:47:08 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2002-11-19 10:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2001-07-02 09:31:49 +00:00
|
|
|
::dbaui::fillTypeInfo(getConnection(),m_sTypeNames,m_aTypeInfo,m_aTypeInfoIndex); // fill the needed type information
|
2002-11-19 10:47:08 +00:00
|
|
|
}
|
|
|
|
catch(const SQLException&)
|
|
|
|
{
|
|
|
|
OSQLMessageBox aErr(getView(),ModuleRes(STR_STAT_WARNING),ModuleRes(STR_NO_TYPE_INFO_AVAILABLE));
|
|
|
|
aErr.Execute();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
2001-02-14 13:28:01 +00:00
|
|
|
loadData(); // fill the column information form the table
|
|
|
|
getView()->initialize(); // show the windows and fill with our informations
|
|
|
|
getUndoMgr()->Clear(); // clear all undo redo things
|
|
|
|
setModified(sal_False); // and we are not modified yet
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool OTableController::Construct(Window* pParent)
|
|
|
|
{
|
2007-07-06 07:43:02 +00:00
|
|
|
m_pView = new OTableDesignView(pParent,getORB(),this);
|
2001-08-14 11:08:52 +00:00
|
|
|
OTableController_BASE::Construct(pParent);
|
2001-08-23 13:46:27 +00:00
|
|
|
// m_pView->Construct();
|
|
|
|
// m_pView->Show();
|
2001-02-14 13:28:01 +00:00
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2006-06-20 02:32:34 +00:00
|
|
|
sal_Bool SAL_CALL OTableController::suspend(sal_Bool /*_bSuspend*/) throw( RuntimeException )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2004-08-02 15:18:21 +00:00
|
|
|
if ( getBroadcastHelper().bInDispose || getBroadcastHelper().bDisposed )
|
|
|
|
return sal_True;
|
|
|
|
|
|
|
|
vos::OGuard aSolarGuard( Application::GetSolarMutex() );
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2006-04-19 12:24:38 +00:00
|
|
|
if ( getView() && getView()->IsInModalMode() )
|
|
|
|
return sal_False;
|
2002-07-02 07:05:32 +00:00
|
|
|
sal_Bool bCheck = sal_True;
|
2002-03-21 11:55:36 +00:00
|
|
|
if ( isModified() )
|
2001-02-23 14:11:40 +00:00
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = ::std::find_if(m_vRowList.begin(),m_vRowList.end(),
|
|
|
|
::boost::mem_fn(&OTableRow::isValid));
|
2002-03-21 11:55:36 +00:00
|
|
|
if ( aIter != m_vRowList.end() )
|
2001-02-23 14:11:40 +00:00
|
|
|
{
|
2002-03-21 11:55:36 +00:00
|
|
|
QueryBox aQry(getView(), ModuleRes(TABLE_DESIGN_SAVEMODIFIED));
|
|
|
|
switch (aQry.Execute())
|
|
|
|
{
|
|
|
|
case RET_YES:
|
2004-09-09 08:51:05 +00:00
|
|
|
Execute(ID_BROWSER_SAVEDOC,Sequence<PropertyValue>());
|
2002-03-21 11:55:36 +00:00
|
|
|
if ( isModified() )
|
2002-07-02 07:05:32 +00:00
|
|
|
bCheck = sal_False; // when we save the table this must be false else some press cancel
|
2002-03-21 11:55:36 +00:00
|
|
|
break;
|
|
|
|
case RET_CANCEL:
|
2002-07-02 07:05:32 +00:00
|
|
|
bCheck = sal_False;
|
2002-03-21 11:55:36 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( !m_bNew )
|
|
|
|
{
|
|
|
|
QueryBox aQry(getView(), ModuleRes(TABLE_DESIGN_ALL_ROWS_DELETED));
|
|
|
|
switch (aQry.Execute())
|
|
|
|
{
|
|
|
|
case RET_YES:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XTablesSupplier> xTablesSup(getConnection(),UNO_QUERY);
|
|
|
|
Reference<XNameAccess> xTables = xTablesSup->getTables();
|
|
|
|
dropTable(xTables,m_sName);
|
|
|
|
}
|
|
|
|
catch(const Exception&)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(sal_False, "OTableController::suspend: nothing is expected to happen here!");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RET_CANCEL:
|
2002-07-02 07:05:32 +00:00
|
|
|
bCheck = sal_False;
|
2002-03-21 11:55:36 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2001-02-23 14:11:40 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-02 13:17:06 +00:00
|
|
|
/*
|
2002-07-02 07:05:32 +00:00
|
|
|
if ( bCheck )
|
|
|
|
OSingleDocumentController::suspend(_bSuspend);
|
2002-07-02 13:17:06 +00:00
|
|
|
*/
|
2002-07-02 07:05:32 +00:00
|
|
|
return bCheck;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2004-11-16 13:33:15 +00:00
|
|
|
void OTableController::describeSupportedFeatures()
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2004-11-16 13:33:15 +00:00
|
|
|
OSingleDocumentController::describeSupportedFeatures();
|
|
|
|
|
|
|
|
implDescribeSupportedFeature( ".uno:Redo", ID_BROWSER_REDO, CommandGroup::EDIT );
|
|
|
|
implDescribeSupportedFeature( ".uno:Save", ID_BROWSER_SAVEDOC, CommandGroup::EDIT );
|
|
|
|
implDescribeSupportedFeature( ".uno:Undo", ID_BROWSER_UNDO, CommandGroup::EDIT );
|
|
|
|
implDescribeSupportedFeature( ".uno:HelpMenu", SID_HELPMENU, CommandGroup::APPLICATION );
|
|
|
|
implDescribeSupportedFeature( ".uno:NewDoc", SID_NEWDOC, CommandGroup::DOCUMENT );
|
|
|
|
implDescribeSupportedFeature( ".uno:SaveAs", ID_BROWSER_SAVEASDOC, CommandGroup::DOCUMENT );
|
|
|
|
implDescribeSupportedFeature( ".uno:DBIndexDesign", SID_INDEXDESIGN, CommandGroup::APPLICATION );
|
|
|
|
implDescribeSupportedFeature( ".uno:EditDoc", ID_BROWSER_EDITDOC, CommandGroup::EDIT );
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
SfxUndoManager* OTableController::getUndoMgr()
|
|
|
|
{
|
|
|
|
return &m_aUndoManager;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::setModified(sal_Bool _bModified)
|
|
|
|
{
|
2002-08-19 07:01:32 +00:00
|
|
|
OSingleDocumentController::setModified(_bModified);
|
2001-03-19 05:04:03 +00:00
|
|
|
InvalidateFeature(SID_INDEXDESIGN);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-08-14 11:08:52 +00:00
|
|
|
void SAL_CALL OTableController::disposing( const EventObject& _rSource ) throw(RuntimeException)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-08-14 11:08:52 +00:00
|
|
|
if ( _rSource.Source == m_xTable )
|
2001-03-12 13:06:25 +00:00
|
|
|
{ // some deleted our table so we have a new one
|
2001-03-16 15:27:06 +00:00
|
|
|
stopTableListening();
|
2001-03-12 13:06:25 +00:00
|
|
|
m_xTable = NULL;
|
|
|
|
m_bNew = sal_True;
|
|
|
|
setModified(sal_True);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-08-14 11:08:52 +00:00
|
|
|
else
|
|
|
|
OTableController_BASE::disposing( _rSource );
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::Save(const Reference< XObjectOutputStream>& _rxOut)
|
|
|
|
{
|
|
|
|
OStreamSection aSection(_rxOut.get());
|
|
|
|
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::Load(const Reference< XObjectInputStream>& _rxIn)
|
|
|
|
{
|
|
|
|
OStreamSection aSection(_rxIn.get());
|
|
|
|
}
|
2001-08-14 11:08:52 +00:00
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2001-08-14 11:08:52 +00:00
|
|
|
void OTableController::losingConnection( )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-08-14 11:08:52 +00:00
|
|
|
// let the base class do it's reconnect
|
|
|
|
OTableController_BASE::losingConnection( );
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2001-08-14 11:08:52 +00:00
|
|
|
// remove from the table
|
|
|
|
Reference< XComponent > xComponent(m_xTable, UNO_QUERY);
|
|
|
|
if (xComponent.is())
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-09-20 11:59:25 +00:00
|
|
|
Reference<XEventListener> xEvtL( static_cast< ::cppu::OWeakObject*>(this), UNO_QUERY);
|
2001-08-14 11:08:52 +00:00
|
|
|
xComponent->removeEventListener(xEvtL);
|
|
|
|
}
|
|
|
|
stopTableListening();
|
|
|
|
m_xTable = NULL;
|
|
|
|
assignTable();
|
|
|
|
if(!m_xTable.is())
|
|
|
|
{
|
|
|
|
m_bNew = sal_True;
|
|
|
|
setModified(sal_True);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-08-14 11:08:52 +00:00
|
|
|
InvalidateAll();
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2003-03-19 16:57:12 +00:00
|
|
|
TOTypeInfoSP OTableController::getTypeInfoByType(sal_Int32 _nDataType) const
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2002-11-14 06:58:31 +00:00
|
|
|
return queryTypeInfoByType(_nDataType,m_aTypeInfo);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2002-09-20 10:06:11 +00:00
|
|
|
void OTableController::appendColumns(Reference<XColumnsSupplier>& _rxColSup,sal_Bool _bNew,sal_Bool _bKeyColumns)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// now append the columns
|
|
|
|
OSL_ENSURE(_rxColSup.is(),"No columns supplier");
|
|
|
|
if(!_rxColSup.is())
|
|
|
|
return;
|
|
|
|
Reference<XNameAccess> xColumns = _rxColSup->getColumns();
|
|
|
|
OSL_ENSURE(xColumns.is(),"No columns");
|
|
|
|
Reference<XDataDescriptorFactory> xColumnFactory(xColumns,UNO_QUERY);
|
|
|
|
|
|
|
|
Reference<XAppend> xAppend(xColumns,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xAppend.is(),"No XAppend Interface!");
|
|
|
|
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_vRowList.begin();
|
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aEnd = m_vRowList.end();
|
2002-06-27 06:49:38 +00:00
|
|
|
for(;aIter != aEnd;++aIter)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
OSL_ENSURE(*aIter,"OTableRow is null!");
|
|
|
|
OFieldDescription* pField = (*aIter)->GetActFieldDescr();
|
2002-11-12 12:20:11 +00:00
|
|
|
if ( !pField || (!_bNew && (*aIter)->IsReadOnly() && !_bKeyColumns) )
|
2001-02-14 13:28:01 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
Reference<XPropertySet> xColumn;
|
|
|
|
if(pField->IsPrimaryKey() || !_bKeyColumns)
|
|
|
|
xColumn = xColumnFactory->createDataDescriptor();
|
|
|
|
if(xColumn.is())
|
|
|
|
{
|
|
|
|
if(!_bKeyColumns)
|
2001-07-02 09:31:49 +00:00
|
|
|
::dbaui::setColumnProperties(xColumn,pField);
|
2001-02-14 13:28:01 +00:00
|
|
|
else
|
|
|
|
xColumn->setPropertyValue(PROPERTY_NAME,makeAny(pField->GetName()));
|
|
|
|
|
|
|
|
xAppend->appendByDescriptor(xColumn);
|
|
|
|
xColumn = NULL;
|
|
|
|
// now only the settings are missing
|
|
|
|
if(xColumns->hasByName(pField->GetName()))
|
|
|
|
{
|
|
|
|
xColumns->getByName(pField->GetName()) >>= xColumn;
|
|
|
|
if(xColumn.is())
|
2006-08-15 09:57:26 +00:00
|
|
|
pField->copyColumnSettingsTo(xColumn);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-03 13:16:03 +00:00
|
|
|
OSL_ENSURE(sal_False, "OTableController::appendColumns: invalid field name!");
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch(const SQLException& )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
showError( SQLExceptionInfo( ::cppu::getCaughtException() ) );
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2002-09-20 10:06:11 +00:00
|
|
|
void OTableController::appendPrimaryKey(Reference<XKeysSupplier>& _rxSup,sal_Bool _bNew)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
if(!_rxSup.is())
|
|
|
|
return; // the database doesn't support keys
|
|
|
|
|
2001-11-09 05:22:19 +00:00
|
|
|
OSL_ENSURE(_rxSup.is(),"No XKeysSupplier!");
|
|
|
|
Reference<XDataDescriptorFactory> xKeyFactory(_rxSup->getKeys(),UNO_QUERY);
|
|
|
|
OSL_ENSURE(xKeyFactory.is(),"No XDataDescriptorFactory Interface!");
|
2003-07-21 11:28:21 +00:00
|
|
|
if ( !xKeyFactory.is() )
|
|
|
|
return;
|
2001-11-09 05:22:19 +00:00
|
|
|
Reference<XAppend> xAppend(xKeyFactory,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xAppend.is(),"No XAppend Interface!");
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2001-11-09 05:22:19 +00:00
|
|
|
Reference<XPropertySet> xKey = xKeyFactory->createDataDescriptor();
|
|
|
|
OSL_ENSURE(xKey.is(),"Key is null!");
|
|
|
|
xKey->setPropertyValue(PROPERTY_TYPE,makeAny(KeyType::PRIMARY));
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2001-11-09 05:22:19 +00:00
|
|
|
Reference<XColumnsSupplier> xColSup(xKey,UNO_QUERY);
|
|
|
|
if(xColSup.is())
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2002-09-20 10:06:11 +00:00
|
|
|
appendColumns(xColSup,_bNew,sal_True);
|
2001-11-09 05:22:19 +00:00
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
|
|
|
if(xColumns->hasElements())
|
|
|
|
xAppend->appendByDescriptor(xKey);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::loadData()
|
|
|
|
{
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Wenn Datenstruktur bereits vorhanden, Struktur leeren
|
|
|
|
m_vRowList.clear();
|
|
|
|
|
2006-05-04 07:50:19 +00:00
|
|
|
::boost::shared_ptr<OTableRow> pTabEdRow;
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference< XDatabaseMetaData> xMetaData = getMetaData( );
|
2001-02-14 13:28:01 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Datenstruktur mit Daten aus DatenDefinitionsObjekt fuellen
|
2001-03-14 09:35:11 +00:00
|
|
|
if(m_xTable.is() && xMetaData.is())
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
Reference<XColumnsSupplier> xColSup(m_xTable,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xColSup.is(),"No XColumnsSupplier!");
|
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
|
|
|
OFieldDescription* pActFieldDescr = NULL;
|
|
|
|
String aType;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// ReadOnly-Flag
|
|
|
|
// Bei Drop darf keine Zeile editierbar sein.
|
|
|
|
// Bei Add duerfen nur die leeren Zeilen editierbar sein.
|
|
|
|
// Bei Add und Drop koennen alle Zeilen editiert werden.
|
2001-03-22 06:54:07 +00:00
|
|
|
// sal_Bool bReadOldRow = xMetaData->supportsAlterTableWithAddColumn() && xMetaData->supportsAlterTableWithDropColumn();
|
|
|
|
sal_Bool bIsAlterAllowed = isAlterAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
Sequence< ::rtl::OUString> aColumns = xColumns->getElementNames();
|
2005-09-23 11:45:53 +00:00
|
|
|
const ::rtl::OUString* pIter = aColumns.getConstArray();
|
|
|
|
const ::rtl::OUString* pEnd = pIter + aColumns.getLength();
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2005-09-23 11:45:53 +00:00
|
|
|
for(;pIter != pEnd;++pIter)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
Reference<XPropertySet> xColumn;
|
2005-09-23 11:45:53 +00:00
|
|
|
xColumns->getByName(*pIter) >>= xColumn;
|
2001-02-14 13:28:01 +00:00
|
|
|
sal_Int32 nType = 0;
|
|
|
|
sal_Int32 nScale = 0;
|
|
|
|
sal_Int32 nPrecision = 0;
|
|
|
|
sal_Int32 nNullable = 0;
|
|
|
|
sal_Int32 nFormatKey = 0;
|
|
|
|
sal_Int32 nAlign = 0;
|
|
|
|
|
2006-07-19 15:08:00 +00:00
|
|
|
sal_Bool bIsAutoIncrement = false, bIsCurrency = false;
|
2002-09-24 08:19:07 +00:00
|
|
|
::rtl::OUString sName,sDescription,sTypeName;
|
|
|
|
Any aControlDefault;
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
// get the properties from the column
|
|
|
|
xColumn->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_TYPENAME) >>= sTypeName;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_ISNULLABLE) >>= nNullable;
|
2003-03-19 16:57:12 +00:00
|
|
|
xColumn->getPropertyValue(PROPERTY_ISAUTOINCREMENT) >>= bIsAutoIncrement;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_ISCURRENCY) >>= bIsCurrency;
|
2001-02-14 13:28:01 +00:00
|
|
|
xColumn->getPropertyValue(PROPERTY_TYPE) >>= nType;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_SCALE) >>= nScale;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_PRECISION) >>= nPrecision;
|
|
|
|
|
|
|
|
|
2001-09-20 11:59:25 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_HELPTEXT))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_HELPTEXT) >>= sDescription;
|
2001-10-19 11:46:24 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_CONTROLDEFAULT))
|
2002-09-24 08:19:07 +00:00
|
|
|
aControlDefault = xColumn->getPropertyValue(PROPERTY_CONTROLDEFAULT);
|
2001-02-14 13:28:01 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_FORMATKEY))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_FORMATKEY) >>= nFormatKey;
|
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_ALIGN))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_ALIGN) >>= nAlign;
|
|
|
|
|
2006-05-04 07:50:19 +00:00
|
|
|
pTabEdRow.reset(new OTableRow());
|
2001-03-22 06:54:07 +00:00
|
|
|
pTabEdRow->SetReadOnly(!bIsAlterAllowed);
|
2001-02-14 13:28:01 +00:00
|
|
|
// search for type
|
2001-06-29 10:56:58 +00:00
|
|
|
sal_Bool bForce;
|
2004-08-02 15:18:21 +00:00
|
|
|
::rtl::OUString sCreate(RTL_CONSTASCII_USTRINGPARAM("x"));
|
|
|
|
TOTypeInfoSP pTypeInfo = ::dbaui::getTypeInfoFromType(m_aTypeInfo,nType,sTypeName,sCreate,nPrecision,nScale,bIsAutoIncrement,bForce);
|
2003-03-19 16:57:12 +00:00
|
|
|
if ( !pTypeInfo.get() )
|
2001-10-18 11:04:12 +00:00
|
|
|
pTypeInfo = m_pTypeInfo;
|
2001-06-29 10:56:58 +00:00
|
|
|
pTabEdRow->SetFieldType( pTypeInfo, bForce );
|
2001-06-12 09:00:27 +00:00
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
pActFieldDescr = pTabEdRow->GetActFieldDescr();
|
2001-06-12 09:00:27 +00:00
|
|
|
OSL_ENSURE(pActFieldDescr, "OTableController::loadData: invalid field description generated by the table row!");
|
2002-07-25 06:03:59 +00:00
|
|
|
if ( pActFieldDescr )
|
2001-10-18 11:04:12 +00:00
|
|
|
{
|
|
|
|
pActFieldDescr->SetName(sName);
|
|
|
|
pActFieldDescr->SetFormatKey(nFormatKey);
|
|
|
|
// pActFieldDescr->SetPrimaryKey(pPrimary->GetValue());
|
|
|
|
pActFieldDescr->SetDescription(sDescription);
|
|
|
|
pActFieldDescr->SetAutoIncrement(bIsAutoIncrement);
|
2002-09-24 08:48:22 +00:00
|
|
|
pActFieldDescr->SetHorJustify(dbaui::mapTextJustify(nAlign));
|
2001-10-18 11:04:12 +00:00
|
|
|
pActFieldDescr->SetCurrency(bIsCurrency);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Spezielle Daten
|
|
|
|
pActFieldDescr->SetIsNullable(nNullable);
|
2002-09-24 08:19:07 +00:00
|
|
|
pActFieldDescr->SetControlDefault(aControlDefault);
|
2001-10-18 11:04:12 +00:00
|
|
|
pActFieldDescr->SetPrecision(nPrecision);
|
|
|
|
pActFieldDescr->SetScale(nScale);
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
m_vRowList.push_back( pTabEdRow);
|
|
|
|
}
|
|
|
|
// fill the primary key information
|
|
|
|
Reference<XNameAccess> xKeyColumns = getKeyColumns();
|
|
|
|
if(xKeyColumns.is())
|
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString> aKeyColumns = xKeyColumns->getElementNames();
|
|
|
|
const ::rtl::OUString* pKeyBegin = aKeyColumns.getConstArray();
|
|
|
|
const ::rtl::OUString* pKeyEnd = pKeyBegin + aKeyColumns.getLength();
|
|
|
|
|
|
|
|
for(;pKeyBegin != pKeyEnd;++pKeyBegin)
|
|
|
|
{
|
2006-06-20 02:32:34 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator rowIter = m_vRowList.begin();
|
|
|
|
for(;rowIter != m_vRowList.end();++rowIter)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2006-06-20 02:32:34 +00:00
|
|
|
if((*rowIter)->GetActFieldDescr()->GetName() == *pKeyBegin)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2006-06-20 02:32:34 +00:00
|
|
|
(*rowIter)->SetPrimaryKey(sal_True);
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Leere Zeilen fuellen
|
|
|
|
|
|
|
|
OTypeInfoMap::iterator aTypeIter = m_aTypeInfo.find(DataType::VARCHAR);
|
|
|
|
if(aTypeIter == m_aTypeInfo.end())
|
|
|
|
aTypeIter = m_aTypeInfo.begin();
|
|
|
|
|
|
|
|
OSL_ENSURE(aTypeIter != m_aTypeInfo.end(),"We have no type infomation!");
|
|
|
|
|
2002-06-27 06:49:38 +00:00
|
|
|
bool bReadRow = !isAddAllowed();
|
2001-02-14 13:28:01 +00:00
|
|
|
for(sal_Int32 i=m_vRowList.size(); i<128; i++ )
|
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
pTabEdRow.reset(new OTableRow());
|
2001-02-14 13:28:01 +00:00
|
|
|
pTabEdRow->SetReadOnly(bReadRow);
|
|
|
|
m_vRowList.push_back( pTabEdRow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference<XNameAccess> OTableController::getKeyColumns() const
|
|
|
|
{
|
|
|
|
// use keys and indexes for excat postioning
|
|
|
|
// first the keys
|
|
|
|
Reference<XKeysSupplier> xKeySup(m_xTable,UNO_QUERY);
|
|
|
|
Reference<XIndexAccess> xKeys;
|
|
|
|
if(xKeySup.is())
|
|
|
|
xKeys = xKeySup->getKeys();
|
|
|
|
|
|
|
|
Reference<XColumnsSupplier> xKeyColsSup;
|
|
|
|
Reference<XNameAccess> xKeyColumns;
|
|
|
|
if(xKeys.is())
|
|
|
|
{
|
|
|
|
Reference<XPropertySet> xProp;
|
2002-06-27 06:49:38 +00:00
|
|
|
sal_Int32 nCount = xKeys->getCount();
|
|
|
|
for(sal_Int32 i=0;i< nCount;++i)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
xKeys->getByIndex(i) >>= xProp;
|
2002-06-27 06:49:38 +00:00
|
|
|
OSL_ENSURE(xProp.is(),"Key is invalid: NULL!");
|
|
|
|
if ( xProp.is() )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2002-06-27 06:49:38 +00:00
|
|
|
sal_Int32 nKeyType = 0;
|
|
|
|
xProp->getPropertyValue(PROPERTY_TYPE) >>= nKeyType;
|
|
|
|
if(KeyType::PRIMARY == nKeyType)
|
|
|
|
{
|
2004-08-02 15:18:21 +00:00
|
|
|
xKeyColsSup.set(xProp,UNO_QUERY);
|
2002-06-27 06:49:38 +00:00
|
|
|
OSL_ENSURE(xKeyColsSup.is(),"Columnsupplier is null!");
|
|
|
|
xKeyColumns = xKeyColsSup->getColumns();
|
|
|
|
break;
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return xKeyColumns;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-05-08 13:03:32 +00:00
|
|
|
sal_Bool OTableController::checkColumns(sal_Bool _bNew) throw(::com::sun::star::sdbc::SQLException)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-05-08 13:03:32 +00:00
|
|
|
sal_Bool bOk = sal_True;
|
2001-04-11 10:36:03 +00:00
|
|
|
sal_Bool bFoundPKey = sal_False;
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference< XDatabaseMetaData> xMetaData = getMetaData( );
|
2001-03-14 09:35:11 +00:00
|
|
|
|
2006-01-19 14:45:13 +00:00
|
|
|
::comphelper::UStringMixEqual bCase(xMetaData.is() ? xMetaData->supportsMixedCaseQuotedIdentifiers() : sal_True);
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = m_vRowList.begin();
|
2001-02-14 13:28:01 +00:00
|
|
|
for(;aIter != m_vRowList.end();++aIter)
|
|
|
|
{
|
|
|
|
OFieldDescription* pFieldDesc = (*aIter)->GetActFieldDescr();
|
|
|
|
if (pFieldDesc && pFieldDesc->GetName().getLength())
|
|
|
|
{
|
2001-04-11 10:36:03 +00:00
|
|
|
bFoundPKey |= (*aIter)->IsPrimaryKey();
|
2001-02-14 13:28:01 +00:00
|
|
|
// first check for duplicate names
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter2 = aIter+1;
|
2001-02-14 13:28:01 +00:00
|
|
|
for(;aIter2 != m_vRowList.end();++aIter2)
|
|
|
|
{
|
|
|
|
OFieldDescription* pCompareDesc = (*aIter2)->GetActFieldDescr();
|
|
|
|
if (pCompareDesc && bCase(pCompareDesc->GetName(),pFieldDesc->GetName()))
|
|
|
|
{
|
|
|
|
String strMessage = String(ModuleRes(STR_TABLEDESIGN_DUPLICATE_NAME));
|
|
|
|
strMessage.SearchAndReplaceAscii("$column$", pFieldDesc->GetName());
|
2001-07-16 06:55:35 +00:00
|
|
|
String sTitle(ModuleRes(STR_STAT_WARNING));
|
|
|
|
OSQLMessageBox aMsg(getView(),sTitle,strMessage,WB_OK | WB_DEF_OK,OSQLMessageBox::Error);
|
|
|
|
aMsg.Execute();
|
|
|
|
return sal_False;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-04-11 10:36:03 +00:00
|
|
|
if(!bFoundPKey)
|
|
|
|
{
|
|
|
|
if(_bNew && xMetaData.is() && xMetaData->supportsCoreSQLGrammar())
|
|
|
|
{
|
|
|
|
String sTitle(ModuleRes(STR_TABLEDESIGN_NO_PRIM_KEY_HEAD));
|
|
|
|
String sMsg(ModuleRes(STR_TABLEDESIGN_NO_PRIM_KEY));
|
|
|
|
OSQLMessageBox aBox(getView(), sTitle,sMsg, WB_YES_NO_CANCEL | WB_DEF_YES);
|
|
|
|
|
|
|
|
INT16 nReturn = aBox.Execute();
|
|
|
|
|
|
|
|
if (nReturn == RET_YES)
|
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::boost::shared_ptr<OTableRow> pNewRow(new OTableRow());
|
2003-03-19 16:57:12 +00:00
|
|
|
TOTypeInfoSP pTypeInfo = ::dbaui::queryPrimaryKeyType(m_aTypeInfo);
|
2001-04-11 10:36:03 +00:00
|
|
|
|
2003-03-19 16:57:12 +00:00
|
|
|
if ( pTypeInfo.get() )
|
2001-04-27 10:39:14 +00:00
|
|
|
{
|
|
|
|
pNewRow->SetFieldType( pTypeInfo );
|
|
|
|
OFieldDescription* pActFieldDescr = pNewRow->GetActFieldDescr();
|
2001-04-11 10:36:03 +00:00
|
|
|
|
2002-06-27 06:49:38 +00:00
|
|
|
pActFieldDescr->SetAutoIncrement(sal_False); // #95927# pTypeInfo->bAutoIncrement
|
2001-04-27 10:39:14 +00:00
|
|
|
pActFieldDescr->SetIsNullable(ColumnValue::NO_NULLS);
|
2001-04-11 10:36:03 +00:00
|
|
|
|
|
|
|
|
2001-04-27 10:39:14 +00:00
|
|
|
pActFieldDescr->SetName( createUniqueName(::rtl::OUString::createFromAscii("ID") ));
|
|
|
|
pActFieldDescr->SetPrimaryKey( sal_True );
|
|
|
|
m_vRowList.insert(m_vRowList.begin(),pNewRow);
|
2001-04-11 10:36:03 +00:00
|
|
|
|
2001-04-27 10:39:14 +00:00
|
|
|
static_cast<OTableDesignView*>(getView())->GetEditorCtrl()->Invalidate();
|
2002-04-02 05:27:11 +00:00
|
|
|
// static_cast<OTableDesignView*>(getView())->GetEditorCtrl()->DisplayData(0);
|
|
|
|
static_cast<OTableDesignView*>(getView())->GetEditorCtrl()->RowInserted(0);
|
2001-04-27 10:39:14 +00:00
|
|
|
}
|
2001-04-11 10:36:03 +00:00
|
|
|
}
|
2001-05-10 07:48:02 +00:00
|
|
|
else if (nReturn == RET_CANCEL)
|
2001-05-08 13:03:32 +00:00
|
|
|
bOk = sal_False;
|
2001-04-11 10:36:03 +00:00
|
|
|
}
|
|
|
|
}
|
2001-05-08 13:03:32 +00:00
|
|
|
return bOk;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::alterColumns()
|
|
|
|
{
|
2006-04-19 12:24:38 +00:00
|
|
|
Reference<XColumnsSupplier> xColSup(m_xTable,UNO_QUERY_THROW);
|
2001-02-14 13:28:01 +00:00
|
|
|
OSL_ENSURE(xColSup.is(),"What happen here?!");
|
|
|
|
|
|
|
|
Reference<XNameAccess> xColumns = xColSup->getColumns();
|
2006-04-19 12:24:38 +00:00
|
|
|
Reference<XIndexAccess> xIdxColumns(xColumns,UNO_QUERY_THROW);
|
2001-02-14 13:28:01 +00:00
|
|
|
OSL_ENSURE(xColumns.is(),"No columns");
|
2006-04-19 12:24:38 +00:00
|
|
|
if ( !xColumns.is() )
|
|
|
|
return;
|
2001-03-22 06:54:07 +00:00
|
|
|
Reference<XAlterTable> xAlter(m_xTable,UNO_QUERY); // can be null
|
|
|
|
|
2006-04-19 12:24:38 +00:00
|
|
|
sal_Int32 nColumnCount = xIdxColumns->getCount();
|
2001-03-22 06:54:07 +00:00
|
|
|
Reference<XDrop> xDrop(xColumns,UNO_QUERY); // can be null
|
|
|
|
Reference<XAppend> xAppend(xColumns,UNO_QUERY); // can be null
|
|
|
|
Reference<XDataDescriptorFactory> xColumnFactory(xColumns,UNO_QUERY); // can be null
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
sal_Bool bReload = sal_False; // refresh the data
|
|
|
|
|
2001-03-22 06:54:07 +00:00
|
|
|
// contains all columns names which are already handled those which are not in the list will be deleted
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference< XDatabaseMetaData> xMetaData = getMetaData( );
|
2001-03-22 06:54:07 +00:00
|
|
|
|
2006-01-19 14:45:13 +00:00
|
|
|
::std::map< ::rtl::OUString,sal_Bool,::comphelper::UStringMixLess> aColumns(xMetaData.is() ? (xMetaData->supportsMixedCaseQuotedIdentifiers() ? true : false): sal_True);
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_vRowList.begin();
|
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aEnd = m_vRowList.end();
|
2001-07-06 07:16:05 +00:00
|
|
|
// first look for columns where something other than the name changed
|
2002-06-27 06:49:38 +00:00
|
|
|
for(sal_Int32 nPos = 0;aIter != aEnd;++aIter,++nPos)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
OSL_ENSURE(*aIter,"OTableRow is null!");
|
|
|
|
OFieldDescription* pField = (*aIter)->GetActFieldDescr();
|
2002-07-11 06:13:46 +00:00
|
|
|
if ( !pField )
|
|
|
|
continue;
|
|
|
|
if ( (*aIter)->IsReadOnly() )
|
|
|
|
{
|
|
|
|
aColumns[pField->GetName()] = sal_True;
|
2001-02-14 13:28:01 +00:00
|
|
|
continue;
|
2002-07-11 06:13:46 +00:00
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
Reference<XPropertySet> xColumn;
|
2002-06-27 06:49:38 +00:00
|
|
|
if ( xColumns->hasByName(pField->GetName()) )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
aColumns[pField->GetName()] = sal_True;
|
|
|
|
xColumns->getByName(pField->GetName()) >>= xColumn;
|
|
|
|
OSL_ENSURE(xColumn.is(),"Column is null!");
|
|
|
|
|
2006-11-21 16:17:16 +00:00
|
|
|
sal_Int32 nType=0,nPrecision=0,nScale=0,nNullable=0,nFormatKey=0,nAlignment=0;
|
2006-07-19 15:08:00 +00:00
|
|
|
sal_Bool bAutoIncrement = false;
|
2005-04-06 09:40:37 +00:00
|
|
|
::rtl::OUString sDescription, sTypeName;
|
2002-09-24 08:19:07 +00:00
|
|
|
Any aControlDefault;
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
xColumn->getPropertyValue(PROPERTY_TYPE) >>= nType;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_PRECISION) >>= nPrecision;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_SCALE) >>= nScale;
|
|
|
|
xColumn->getPropertyValue(PROPERTY_ISNULLABLE) >>= nNullable;
|
2003-03-19 16:57:12 +00:00
|
|
|
xColumn->getPropertyValue(PROPERTY_ISAUTOINCREMENT) >>= bAutoIncrement;
|
2005-04-06 09:40:37 +00:00
|
|
|
|
|
|
|
try { xColumn->getPropertyValue(PROPERTY_TYPENAME) >>= sTypeName; }
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( sal_False, "no TypeName property?!" );
|
|
|
|
// since this is a last minute fix for #i41785#, I want to be on the safe side,
|
|
|
|
// and catch errors here as early as possible (instead of the whole process of altering
|
|
|
|
// the columns failing)
|
|
|
|
// Normally, sdbcx::Column objects are expected to have a TypeName property
|
|
|
|
}
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
// xColumn->getPropertyValue(PROPERTY_ISCURRENCY,::cppu::bool2any(pField->IsCurrency()));
|
2001-09-20 11:59:25 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_HELPTEXT))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_HELPTEXT) >>= sDescription;
|
2001-10-19 11:46:24 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_CONTROLDEFAULT))
|
2002-09-24 08:19:07 +00:00
|
|
|
aControlDefault = xColumn->getPropertyValue(PROPERTY_CONTROLDEFAULT);
|
2001-02-14 13:28:01 +00:00
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_FORMATKEY))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_FORMATKEY) >>= nFormatKey;
|
|
|
|
if(xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_ALIGN))
|
|
|
|
xColumn->getPropertyValue(PROPERTY_ALIGN) >>= nAlignment;
|
|
|
|
|
|
|
|
// check if something changed
|
|
|
|
if((nType != pField->GetType() ||
|
2005-04-06 09:40:37 +00:00
|
|
|
sTypeName != pField->GetTypeName() ||
|
2001-02-14 13:28:01 +00:00
|
|
|
nPrecision != pField->GetPrecision() ||
|
|
|
|
nScale != pField->GetScale() ||
|
|
|
|
nNullable != pField->GetIsNullable() ||
|
2001-10-19 11:46:24 +00:00
|
|
|
bAutoIncrement != pField->IsAutoIncrement())&&
|
2001-02-14 13:28:01 +00:00
|
|
|
xColumnFactory.is())
|
|
|
|
{
|
|
|
|
Reference<XPropertySet> xNewColumn;
|
|
|
|
xNewColumn = xColumnFactory->createDataDescriptor();
|
2001-07-02 09:31:49 +00:00
|
|
|
::dbaui::setColumnProperties(xNewColumn,pField);
|
2001-02-14 13:28:01 +00:00
|
|
|
// first try to alter the column
|
|
|
|
sal_Bool bNotOk = sal_False;
|
|
|
|
try
|
|
|
|
{
|
2001-03-22 06:54:07 +00:00
|
|
|
// first try if we can alter the column
|
2001-02-14 13:28:01 +00:00
|
|
|
if(xAlter.is())
|
|
|
|
xAlter->alterColumnByName(pField->GetName(),xNewColumn);
|
|
|
|
}
|
2001-07-06 07:16:05 +00:00
|
|
|
catch(const SQLException&)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-07-06 07:16:05 +00:00
|
|
|
if(xDrop.is() && xAppend.is())
|
|
|
|
{
|
2007-05-10 09:41:47 +00:00
|
|
|
String aMessage( ModuleRes( STR_TABLEDESIGN_ALTER_ERROR ) );
|
|
|
|
aMessage.SearchAndReplaceAscii( "$column$", pField->GetName() );
|
|
|
|
String sTitle( ModuleRes( STR_STAT_WARNING ) );
|
|
|
|
|
|
|
|
SQLExceptionInfo aError( ::cppu::getCaughtException() );
|
|
|
|
OSQLMessageBox aMsg( getView(), sTitle, aMessage, WB_YES_NO | WB_DEF_YES , OSQLMessageBox::Warning, &aError );
|
2001-07-06 07:16:05 +00:00
|
|
|
bNotOk = aMsg.Execute() == RET_YES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-07-06 07:16:05 +00:00
|
|
|
// if something went wrong or we can't alter columns
|
2001-03-22 06:54:07 +00:00
|
|
|
// drop and append a new one
|
2001-02-14 13:28:01 +00:00
|
|
|
if((!xAlter.is() || bNotOk) && xDrop.is() && xAppend.is())
|
|
|
|
{
|
|
|
|
xDrop->dropByName(pField->GetName());
|
2001-07-06 07:16:05 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
xAppend->appendByDescriptor(xNewColumn);
|
|
|
|
}
|
|
|
|
catch(const SQLException&)
|
|
|
|
{ // an error occured so we try to reactivate the old one
|
|
|
|
xAppend->appendByDescriptor(xColumn);
|
|
|
|
throw;
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
// exceptions are caught outside
|
2001-02-14 13:28:01 +00:00
|
|
|
xNewColumn = NULL;
|
2001-11-09 05:22:19 +00:00
|
|
|
if(xColumns->hasByName(pField->GetName()))
|
|
|
|
xColumns->getByName(pField->GetName()) >>= xColumn;
|
2001-02-14 13:28:01 +00:00
|
|
|
bReload = sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nFormatKey != pField->GetFormatKey())
|
|
|
|
{
|
2001-11-09 05:22:19 +00:00
|
|
|
if(xColumn.is() && xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_FORMATKEY))
|
2001-02-14 13:28:01 +00:00
|
|
|
xColumn->setPropertyValue(PROPERTY_FORMATKEY,makeAny(pField->GetFormatKey()));
|
|
|
|
}
|
2001-09-20 11:59:25 +00:00
|
|
|
if(nAlignment != dbaui::mapTextAllign(pField->GetHorJustify()))
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-11-09 05:22:19 +00:00
|
|
|
if(xColumn.is() && xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_ALIGN))
|
2001-09-20 11:59:25 +00:00
|
|
|
xColumn->setPropertyValue(PROPERTY_ALIGN,makeAny(dbaui::mapTextAllign(pField->GetHorJustify())));
|
|
|
|
}
|
|
|
|
if(sDescription != pField->GetDescription())
|
|
|
|
{
|
2001-11-09 05:22:19 +00:00
|
|
|
if(xColumn.is() && xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_HELPTEXT))
|
2001-09-20 11:59:25 +00:00
|
|
|
xColumn->setPropertyValue(PROPERTY_HELPTEXT,makeAny(pField->GetDescription()));
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2002-09-24 08:19:07 +00:00
|
|
|
if ( aControlDefault != pField->GetControlDefault())
|
2001-10-19 11:46:24 +00:00
|
|
|
{
|
2001-11-09 05:22:19 +00:00
|
|
|
if(xColumn.is() && xColumn->getPropertySetInfo()->hasPropertyByName(PROPERTY_CONTROLDEFAULT))
|
2002-09-24 08:19:07 +00:00
|
|
|
xColumn->setPropertyValue(PROPERTY_CONTROLDEFAULT,pField->GetControlDefault());
|
2001-10-19 11:46:24 +00:00
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-03-22 06:54:07 +00:00
|
|
|
else if(xColumnFactory.is() && xAlter.is() && nPos < nColumnCount)
|
2001-07-06 07:16:05 +00:00
|
|
|
{ // we can't find the column so we could try it with the index before we drop and append a new column
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XPropertySet> xNewColumn;
|
|
|
|
xNewColumn = xColumnFactory->createDataDescriptor();
|
|
|
|
::dbaui::setColumnProperties(xNewColumn,pField);
|
|
|
|
xAlter->alterColumnByIndex(nPos,xNewColumn);
|
|
|
|
if(xColumns->hasByName(pField->GetName()))
|
|
|
|
{ // ask for the append by name
|
|
|
|
aColumns[pField->GetName()] = sal_True;
|
|
|
|
xColumns->getByName(pField->GetName()) >>= xColumn;
|
|
|
|
if(xColumn.is())
|
2006-08-15 09:57:26 +00:00
|
|
|
pField->copyColumnSettingsTo(xColumn);
|
2001-07-06 07:16:05 +00:00
|
|
|
}
|
|
|
|
else
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2001-07-06 07:16:05 +00:00
|
|
|
OSL_ENSURE(sal_False, "OTableController::alterColumns: invalid column (2)!");
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-06 07:16:05 +00:00
|
|
|
catch(const SQLException&)
|
|
|
|
{ // we couldn't alter the column so we have to add new columns
|
|
|
|
bReload = sal_True;
|
2006-01-19 14:45:13 +00:00
|
|
|
if(xDrop.is() && xAppend.is())
|
|
|
|
{
|
|
|
|
String aMessage(ModuleRes(STR_TABLEDESIGN_ALTER_ERROR));
|
|
|
|
aMessage.SearchAndReplaceAscii("$column$",pField->GetName());
|
|
|
|
String sTitle(ModuleRes(STR_STAT_WARNING));
|
|
|
|
OSQLMessageBox aMsg(getView(),sTitle,aMessage,WB_YES_NO|WB_DEF_YES,OSQLMessageBox::Warning);
|
|
|
|
if ( aMsg.Execute() != RET_YES )
|
|
|
|
{
|
2007-11-02 10:28:34 +00:00
|
|
|
Reference<XPropertySet> xNewColumn(xIdxColumns->getByIndex(nPos),UNO_QUERY_THROW);
|
|
|
|
::rtl::OUString sName;
|
|
|
|
xNewColumn->getPropertyValue(PROPERTY_NAME) >>= sName;
|
|
|
|
aColumns[sName] = sal_True;
|
|
|
|
aColumns[pField->GetName()] = sal_True;
|
2006-01-19 14:45:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
2001-03-22 06:54:07 +00:00
|
|
|
else
|
|
|
|
bReload = sal_True;
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
2001-07-06 07:16:05 +00:00
|
|
|
// second drop all columns which could be found by name
|
2001-02-14 13:28:01 +00:00
|
|
|
Reference<XNameAccess> xKeyColumns = getKeyColumns();
|
2001-07-06 07:16:05 +00:00
|
|
|
// now we have to look for the columns who could be deleted
|
2007-11-02 10:28:34 +00:00
|
|
|
if ( xDrop.is() )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString> aColumnNames = xColumns->getElementNames();
|
2005-09-23 11:45:53 +00:00
|
|
|
const ::rtl::OUString* pIter = aColumnNames.getConstArray();
|
|
|
|
const ::rtl::OUString* pEnd = pIter + aColumnNames.getLength();
|
|
|
|
for(;pIter != pEnd;++pIter)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2005-09-23 11:45:53 +00:00
|
|
|
if(aColumns.find(*pIter) == aColumns.end()) // found a column to delete
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2005-09-23 11:45:53 +00:00
|
|
|
if(xKeyColumns.is() && xKeyColumns->hasByName(*pIter)) // check if this column is a member of the primary key
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
String aMsgT(ModuleRes(STR_TBL_COLUMN_IS_KEYCOLUMN));
|
2005-09-23 11:45:53 +00:00
|
|
|
aMsgT.SearchAndReplaceAscii("$column$",*pIter);
|
2001-02-14 13:28:01 +00:00
|
|
|
String aTitle(ModuleRes(STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE));
|
|
|
|
OSQLMessageBox aMsg(getView(),aTitle,aMsgT,WB_YES_NO| WB_DEF_YES);
|
|
|
|
if(aMsg.Execute() == RET_YES)
|
|
|
|
{
|
|
|
|
xKeyColumns = NULL;
|
2002-09-13 14:16:02 +00:00
|
|
|
dropPrimaryKey();
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bReload = sal_True;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2006-08-15 09:57:26 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
xDrop->dropByName(*pIter);
|
|
|
|
}
|
|
|
|
catch (const SQLException&)
|
|
|
|
{
|
|
|
|
String sError( ModuleRes( STR_TABLEDESIGN_COULD_NOT_DROP_COL ) );
|
|
|
|
sError.SearchAndReplaceAscii( "$column$", *pIter );
|
|
|
|
|
|
|
|
SQLException aNewException;
|
|
|
|
aNewException.Message = sError;
|
|
|
|
aNewException.SQLState = ::rtl::OUString::createFromAscii( "S1000" );
|
|
|
|
aNewException.NextException = ::cppu::getCaughtException();
|
|
|
|
|
|
|
|
throw aNewException;
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-07-06 07:16:05 +00:00
|
|
|
|
|
|
|
// third append the new columns
|
|
|
|
aIter = m_vRowList.begin();
|
|
|
|
for(;aIter != m_vRowList.end();++aIter)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(*aIter,"OTableRow is null!");
|
|
|
|
OFieldDescription* pField = (*aIter)->GetActFieldDescr();
|
2007-11-02 10:28:34 +00:00
|
|
|
if ( !pField || (*aIter)->IsReadOnly() || aColumns.find(pField->GetName()) != aColumns.end() )
|
2001-07-06 07:16:05 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
Reference<XPropertySet> xColumn;
|
|
|
|
if(!xColumns->hasByName(pField->GetName()))
|
|
|
|
{
|
|
|
|
if(xColumnFactory.is() && xAppend.is())
|
|
|
|
{// column not found by its name so we assume it is new
|
|
|
|
// Column is new
|
|
|
|
xColumn = xColumnFactory->createDataDescriptor();
|
|
|
|
::dbaui::setColumnProperties(xColumn,pField);
|
|
|
|
xAppend->appendByDescriptor(xColumn);
|
|
|
|
if(xColumns->hasByName(pField->GetName()))
|
|
|
|
{ // ask for the append by name
|
|
|
|
aColumns[pField->GetName()] = sal_True;
|
|
|
|
xColumns->getByName(pField->GetName()) >>= xColumn;
|
|
|
|
if(xColumn.is())
|
2006-08-15 09:57:26 +00:00
|
|
|
pField->copyColumnSettingsTo(xColumn);
|
2001-07-06 07:16:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OSL_ENSURE(sal_False, "OTableController::alterColumns: invalid column!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
// check if we have to do something with the primary key
|
2002-09-13 14:16:02 +00:00
|
|
|
sal_Bool bNeedDropKey = sal_False;
|
|
|
|
sal_Bool bNeedAppendKey = sal_False;
|
2002-11-21 13:39:11 +00:00
|
|
|
if ( xKeyColumns.is() )
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
|
|
|
aIter = m_vRowList.begin();
|
|
|
|
for(;aIter != m_vRowList.end();++aIter)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(*aIter,"OTableRow is null!");
|
|
|
|
OFieldDescription* pField = (*aIter)->GetActFieldDescr();
|
2002-07-25 06:03:59 +00:00
|
|
|
if ( !pField )
|
2001-02-14 13:28:01 +00:00
|
|
|
continue;
|
2001-05-04 09:04:23 +00:00
|
|
|
|
2002-09-13 14:16:02 +00:00
|
|
|
if ( pField->IsPrimaryKey()
|
|
|
|
&& !xKeyColumns->hasByName( pField->GetName() )
|
|
|
|
)
|
|
|
|
{ // new primary key column inserted which isn't already in the columns selection
|
|
|
|
bNeedDropKey = bNeedAppendKey = sal_True;
|
2001-05-04 09:04:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-09-13 14:16:02 +00:00
|
|
|
else if ( !pField->IsPrimaryKey()
|
|
|
|
&& xKeyColumns->hasByName( pField->GetName() )
|
|
|
|
)
|
|
|
|
{ // found a column which currently is in the primary key, but is marked not to be anymore
|
|
|
|
bNeedDropKey = bNeedAppendKey = sal_True;
|
2001-02-14 13:28:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2002-09-13 14:16:02 +00:00
|
|
|
{ // no primary key available so we check if we should create one
|
|
|
|
bNeedAppendKey = sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( bNeedDropKey )
|
|
|
|
dropPrimaryKey();
|
|
|
|
|
|
|
|
if ( bNeedAppendKey )
|
|
|
|
{
|
|
|
|
Reference< XKeysSupplier > xKeySup( m_xTable, UNO_QUERY );
|
2002-09-20 10:06:11 +00:00
|
|
|
appendPrimaryKey( xKeySup ,sal_False);
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-22 06:54:07 +00:00
|
|
|
reSyncRows();
|
|
|
|
|
2002-11-21 13:39:11 +00:00
|
|
|
if ( bReload )
|
2001-07-06 07:16:05 +00:00
|
|
|
reload();
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2002-09-13 14:16:02 +00:00
|
|
|
void OTableController::dropPrimaryKey()
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2007-09-26 13:53:46 +00:00
|
|
|
try
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2007-09-26 13:53:46 +00:00
|
|
|
Reference<XKeysSupplier> xKeySup(m_xTable,UNO_QUERY);
|
|
|
|
Reference<XIndexAccess> xKeys;
|
|
|
|
if(xKeySup.is())
|
|
|
|
xKeys = xKeySup->getKeys();
|
|
|
|
|
|
|
|
if(xKeys.is())
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2007-09-26 13:53:46 +00:00
|
|
|
Reference<XPropertySet> xProp;
|
|
|
|
for(sal_Int32 i=0;i< xKeys->getCount();++i)
|
2001-02-14 13:28:01 +00:00
|
|
|
{
|
2007-09-26 13:53:46 +00:00
|
|
|
xProp.set(xKeys->getByIndex(i),UNO_QUERY);
|
|
|
|
sal_Int32 nKeyType = 0;
|
|
|
|
xProp->getPropertyValue(PROPERTY_TYPE) >>= nKeyType;
|
|
|
|
if(KeyType::PRIMARY == nKeyType)
|
2006-01-19 14:45:13 +00:00
|
|
|
{
|
2007-09-26 13:53:46 +00:00
|
|
|
Reference<XDrop> xDrop(xKeys,UNO_QUERY);
|
|
|
|
xDrop->dropByIndex(i); // delete the key
|
|
|
|
break;
|
2006-01-19 14:45:13 +00:00
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2007-09-26 13:53:46 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2007-09-26 13:53:46 +00:00
|
|
|
}
|
|
|
|
|
2001-02-14 13:28:01 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-03-12 13:06:25 +00:00
|
|
|
void OTableController::assignTable()
|
|
|
|
{
|
2001-05-22 10:00:46 +00:00
|
|
|
::rtl::OUString sComposedName;
|
2001-03-12 13:06:25 +00:00
|
|
|
// get the table
|
|
|
|
if(m_sName.getLength())
|
|
|
|
{
|
|
|
|
Reference<XNameAccess> xNameAccess;
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference<XTablesSupplier> xSup(getConnection(),UNO_QUERY);
|
2001-03-12 13:06:25 +00:00
|
|
|
if(xSup.is())
|
|
|
|
{
|
|
|
|
xNameAccess = xSup->getTables();
|
|
|
|
OSL_ENSURE(xNameAccess.is(),"no nameaccess for the queries!");
|
|
|
|
|
|
|
|
Reference<XPropertySet> xProp;
|
|
|
|
if(xNameAccess->hasByName(m_sName) && ::cppu::extractInterface(xProp,xNameAccess->getByName(m_sName)) && xProp.is())
|
|
|
|
{
|
|
|
|
m_xTable = xProp;
|
2001-03-16 15:27:06 +00:00
|
|
|
startTableListening();
|
|
|
|
|
2001-03-22 06:54:07 +00:00
|
|
|
// check if we set the table editable
|
2004-08-02 15:18:21 +00:00
|
|
|
Reference<XDatabaseMetaData> xMeta = getConnection()->getMetaData();
|
|
|
|
setEditable( xMeta.is() && !xMeta->isReadOnly() && (isAlterAllowed() || isDropAllowed() || isAddAllowed()) );
|
2002-08-19 07:01:32 +00:00
|
|
|
if(!isEditable())
|
2001-03-14 09:35:11 +00:00
|
|
|
{
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_vRowList.begin();
|
2001-03-14 09:35:11 +00:00
|
|
|
for(; aIter != m_vRowList.end(); ++aIter)
|
|
|
|
(*aIter)->SetReadOnly(sal_True);
|
|
|
|
}
|
2001-03-12 13:06:25 +00:00
|
|
|
m_bNew = sal_False;
|
|
|
|
// be notified when the table is in disposing
|
2001-03-14 09:35:11 +00:00
|
|
|
InvalidateAll();
|
2001-03-12 13:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-04 13:04:07 +00:00
|
|
|
//updateTitle();
|
2001-03-12 13:06:25 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-03-22 06:54:07 +00:00
|
|
|
sal_Bool OTableController::isAddAllowed() const
|
|
|
|
{
|
|
|
|
Reference<XColumnsSupplier> xColsSup(m_xTable,UNO_QUERY);
|
|
|
|
sal_Bool bAddAllowed = !m_xTable.is();
|
|
|
|
if(xColsSup.is())
|
|
|
|
bAddAllowed = Reference<XAppend>(xColsSup->getColumns(),UNO_QUERY).is();
|
|
|
|
|
2008-01-29 07:52:37 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference< XDatabaseMetaData > xMetaData = getMetaData( );
|
|
|
|
bAddAllowed = bAddAllowed || ( xMetaData.is() && xMetaData->supportsAlterTableWithAddColumn());
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
|
|
bAddAllowed = sal_False;
|
|
|
|
}
|
2001-03-22 06:54:07 +00:00
|
|
|
|
|
|
|
return bAddAllowed;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool OTableController::isDropAllowed() const
|
|
|
|
{
|
|
|
|
Reference<XColumnsSupplier> xColsSup(m_xTable,UNO_QUERY);
|
|
|
|
sal_Bool bDropAllowed = !m_xTable.is();
|
|
|
|
if(xColsSup.is())
|
2001-11-06 11:48:40 +00:00
|
|
|
{
|
|
|
|
Reference<XNameAccess> xNameAccess = xColsSup->getColumns();
|
|
|
|
bDropAllowed = Reference<XDrop>(xNameAccess,UNO_QUERY).is() && xNameAccess->hasElements();
|
|
|
|
}
|
2001-02-14 13:28:01 +00:00
|
|
|
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference< XDatabaseMetaData> xMetaData = getMetaData( );
|
2001-03-22 06:54:07 +00:00
|
|
|
bDropAllowed = bDropAllowed || ( xMetaData.is() && xMetaData->supportsAlterTableWithDropColumn());
|
|
|
|
|
|
|
|
return bDropAllowed;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool OTableController::isAlterAllowed() const
|
|
|
|
{
|
|
|
|
sal_Bool bAllowed(!m_xTable.is() || Reference<XAlterTable>(m_xTable,UNO_QUERY).is());
|
|
|
|
return bAllowed;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OTableController::reSyncRows()
|
|
|
|
{
|
|
|
|
sal_Bool bAlterAllowed = isAlterAllowed();
|
|
|
|
sal_Bool bAddAllowed = isAddAllowed();
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_vRowList.begin();
|
2001-03-22 06:54:07 +00:00
|
|
|
for(;aIter != m_vRowList.end();++aIter)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(*aIter,"OTableRow is null!");
|
|
|
|
OFieldDescription* pField = (*aIter)->GetActFieldDescr();
|
2002-07-25 06:03:59 +00:00
|
|
|
if ( pField )
|
2001-03-22 06:54:07 +00:00
|
|
|
(*aIter)->SetReadOnly(!bAlterAllowed);
|
|
|
|
else
|
|
|
|
(*aIter)->SetReadOnly(!bAddAllowed);
|
|
|
|
|
|
|
|
}
|
|
|
|
static_cast<OTableDesignView*>(getView())->reSync(); // show the windows and fill with our informations
|
2001-04-02 08:54:18 +00:00
|
|
|
|
2001-03-22 06:54:07 +00:00
|
|
|
getUndoMgr()->Clear(); // clear all undo redo things
|
|
|
|
setModified(sal_False); // and we are not modified yet
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-04-11 10:36:03 +00:00
|
|
|
::rtl::OUString OTableController::createUniqueName(const ::rtl::OUString& _rName)
|
|
|
|
{
|
|
|
|
::rtl::OUString sName = _rName;
|
2001-08-14 11:08:52 +00:00
|
|
|
Reference< XDatabaseMetaData> xMetaData = getMetaData( );
|
2001-04-11 10:36:03 +00:00
|
|
|
|
2006-01-19 14:45:13 +00:00
|
|
|
::comphelper::UStringMixEqual bCase(xMetaData.is() ? xMetaData->supportsMixedCaseQuotedIdentifiers() : sal_True);
|
2001-04-11 10:36:03 +00:00
|
|
|
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = m_vRowList.begin();
|
2001-04-11 10:36:03 +00:00
|
|
|
for(sal_Int32 i=0;aIter != m_vRowList.end();++aIter)
|
|
|
|
{
|
|
|
|
OFieldDescription* pFieldDesc = (*aIter)->GetActFieldDescr();
|
|
|
|
if (pFieldDesc && pFieldDesc->GetName().getLength() && bCase(sName,pFieldDesc->GetName()))
|
|
|
|
{ // found a second name of _rName so we need another
|
|
|
|
sName = _rName + ::rtl::OUString::valueOf(++i);
|
|
|
|
aIter = m_vRowList.begin(); // and retry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sName;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2008-04-04 13:04:07 +00:00
|
|
|
::rtl::OUString OTableController::getPrivateTitle() const
|
2001-04-24 13:32:28 +00:00
|
|
|
{
|
2008-04-04 13:04:07 +00:00
|
|
|
::rtl::OUString sTitle;
|
2004-08-02 15:18:21 +00:00
|
|
|
try
|
2001-05-22 10:00:46 +00:00
|
|
|
{
|
2004-08-02 15:18:21 +00:00
|
|
|
// get the table
|
|
|
|
if ( m_sName.getLength() && getConnection().is() )
|
|
|
|
{
|
|
|
|
if ( m_xTable.is() )
|
2006-07-10 14:46:21 +00:00
|
|
|
sTitle = ::dbtools::composeTableName( getConnection()->getMetaData(), m_xTable, ::dbtools::eInDataManipulation, false, false, false );
|
2004-08-02 15:18:21 +00:00
|
|
|
else
|
|
|
|
sTitle = m_sName;
|
|
|
|
}
|
2008-04-04 13:04:07 +00:00
|
|
|
if ( !sTitle.getLength() )
|
2004-08-02 15:18:21 +00:00
|
|
|
{
|
2008-04-04 13:04:07 +00:00
|
|
|
String aName = String(ModuleRes(STR_TBL_TITLE));
|
|
|
|
sTitle = aName.GetToken(0,' ');
|
|
|
|
sTitle += ::rtl::OUString::valueOf(getCurrentStartNumber());
|
2004-08-02 15:18:21 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-05 15:09:55 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 15:18:21 +00:00
|
|
|
{
|
2008-05-05 15:09:55 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2001-05-22 10:00:46 +00:00
|
|
|
}
|
2008-04-04 13:04:07 +00:00
|
|
|
return sTitle;
|
2001-05-22 10:00:46 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-07-06 07:16:05 +00:00
|
|
|
void OTableController::reload()
|
|
|
|
{
|
|
|
|
loadData(); // fill the column information form the table
|
|
|
|
static_cast<OTableDesignView*>(getView())->reSync(); // show the windows and fill with our informations
|
|
|
|
getUndoMgr()->Clear(); // clear all undo redo things
|
|
|
|
setModified(sal_False); // and we are not modified yet
|
|
|
|
static_cast<OTableDesignView*>(getView())->Invalidate();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2005-01-05 11:37:44 +00:00
|
|
|
sal_Int32 OTableController::getFirstEmptyRowPosition() const
|
|
|
|
{
|
|
|
|
sal_Int32 nRet = -1;
|
2006-05-04 07:50:19 +00:00
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = m_vRowList.begin();
|
|
|
|
::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aEnd = m_vRowList.end();
|
2005-01-05 11:37:44 +00:00
|
|
|
for(;aIter != aEnd;++aIter)
|
|
|
|
{
|
|
|
|
if ( !*aIter || !(*aIter)->GetActFieldDescr() || !(*aIter)->GetActFieldDescr()->GetName().getLength() )
|
|
|
|
{
|
|
|
|
nRet = aIter - m_vRowList.begin();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2001-02-14 13:28:01 +00:00
|
|
|
|
|
|
|
|