Files
libreoffice/dbaccess/source/core/api/querydescriptor.cxx

465 lines
17 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* $RCSfile: querydescriptor.cxx,v $
*
* $Revision: 1.20 $
2000-09-18 23:16:46 +00:00
*
* last change: $Author: hr $ $Date: 2001-11-01 15:27:20 $
2000-09-18 23:16:46 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _DBA_COREAPI_QUERYDESCRIPTOR_HXX_
#include "querydescriptor.hxx"
#endif
#ifndef _DBASHARED_APITOOLS_HXX_
#include "apitools.hxx"
#endif
2000-10-25 06:32:52 +00:00
#ifndef DBACCESS_SHARED_DBASTRINGS_HRC
#include "dbastrings.hrc"
2000-09-18 23:16:46 +00:00
#endif
#ifndef _UNOTOOLS_CONFIGNODE_HXX_
#include <unotools/confignode.hxx>
#endif
2000-09-18 23:16:46 +00:00
2000-10-11 10:21:40 +00:00
#ifndef _COMPHELPER_PROPERTY_HXX_
#include <comphelper/property.hxx>
2000-09-18 23:16:46 +00:00
#endif
2000-10-11 10:21:40 +00:00
#ifndef _COMPHELPER_SEQUENCE_HXX_
#include <comphelper/sequence.hxx>
2000-09-18 23:16:46 +00:00
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
#include <cppuhelper/typeprovider.hxx>
#endif
2000-10-25 06:32:52 +00:00
#ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_
#include <com/sun/star/beans/PropertyAttribute.hpp>
#endif
2001-02-23 14:22:32 +00:00
#ifndef _DBACORE_DEFINITIONCOLUMN_HXX_
#include "definitioncolumn.hxx"
#endif
2001-08-15 12:05:15 +00:00
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
2000-09-18 23:16:46 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
2001-08-30 07:07:36 +00:00
using namespace ::com::sun::star::util;
2000-10-11 10:21:40 +00:00
using namespace ::comphelper;
2000-09-18 23:16:46 +00:00
using namespace ::osl;
using namespace ::cppu;
using namespace ::utl;
2000-09-18 23:16:46 +00:00
//........................................................................
namespace dbaccess
{
//........................................................................
2000-09-18 23:16:46 +00:00
//==========================================================================
//= OQueryDescriptor
//==========================================================================
//--------------------------------------------------------------------------
void OQueryDescriptor::registerProperties()
{
// the properties which OCommandBase supplies (it has no own registration, as it's not derived from
// a OPropertyContainer)
registerProperty(PROPERTY_NAME, PROPERTY_ID_NAME, PropertyAttribute::BOUND|PropertyAttribute::CONSTRAINED,
2000-09-18 23:16:46 +00:00
&m_sElementName, ::getCppuType(&m_sElementName));
registerProperty(PROPERTY_COMMAND, PROPERTY_ID_COMMAND, PropertyAttribute::BOUND,
&m_sCommand, ::getCppuType(&m_sCommand));
registerProperty(PROPERTY_USE_ESCAPE_PROCESSING, PROPERTY_ID_USE_ESCAPE_PROCESSING, PropertyAttribute::BOUND,
&m_bEscapeProcessing, ::getBooleanCppuType());
registerProperty(PROPERTY_UPDATE_TABLENAME, PROPERTY_ID_UPDATE_TABLENAME, PropertyAttribute::BOUND,
&m_sUpdateTableName, ::getCppuType(&m_sUpdateTableName));
registerProperty(PROPERTY_UPDATE_SCHEMANAME, PROPERTY_ID_UPDATE_SCHEMANAME, PropertyAttribute::BOUND,
&m_sUpdateSchemaName, ::getCppuType(&m_sUpdateSchemaName));
registerProperty(PROPERTY_UPDATE_CATALOGNAME, PROPERTY_ID_UPDATE_CATALOGNAME, PropertyAttribute::BOUND,
&m_sUpdateCatalogName, ::getCppuType(&m_sUpdateCatalogName));
2001-02-05 07:58:23 +00:00
registerProperty(PROPERTY_LAYOUTINFORMATION, PROPERTY_ID_LAYOUTINFORMATION, 0,
&m_aLayoutInformation, ::getCppuType(&m_aLayoutInformation));
2000-09-18 23:16:46 +00:00
}
2001-08-15 12:05:15 +00:00
DBG_NAME(OQueryDescriptor);
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
OQueryDescriptor::OQueryDescriptor()
:ODataSettings(m_aBHelper)
2001-08-30 07:07:36 +00:00
,m_bColumnsOutOfDate(sal_True)
2000-09-18 23:16:46 +00:00
{
2001-08-15 12:05:15 +00:00
DBG_CTOR(OQueryDescriptor,NULL);
2001-08-30 07:07:36 +00:00
m_pColumns = new OColumns(*this, m_aMutex, sal_True,::std::vector< ::rtl::OUString>(), this,this);
2000-09-18 23:16:46 +00:00
registerProperties();
}
//--------------------------------------------------------------------------
2001-03-02 09:24:52 +00:00
OQueryDescriptor::OQueryDescriptor(const ::com::sun::star::uno::Reference< XPropertySet >& _rxCommandDefinition)
2000-09-18 23:16:46 +00:00
:ODataSettings(m_aBHelper)
2001-08-30 07:07:36 +00:00
,m_bColumnsOutOfDate(sal_True)
2000-09-18 23:16:46 +00:00
{
2001-08-15 12:05:15 +00:00
DBG_CTOR(OQueryDescriptor,NULL);
2001-08-30 07:07:36 +00:00
m_pColumns = new OColumns(*this, m_aMutex, sal_True,::std::vector< ::rtl::OUString>(), this,this);
registerProperties();
2001-03-02 09:24:52 +00:00
2001-03-23 12:33:59 +00:00
OSL_ENSURE(_rxCommandDefinition.is(), "OQueryDescriptor::OQueryDescriptor : invalid source property set !");
2000-09-18 23:16:46 +00:00
try
{
2001-03-02 09:24:52 +00:00
_rxCommandDefinition->getPropertyValue(PROPERTY_NAME) >>= m_sElementName;
_rxCommandDefinition->getPropertyValue(PROPERTY_COMMAND) >>= m_sCommand;
_rxCommandDefinition->getPropertyValue(PROPERTY_UPDATE_TABLENAME) >>= m_sUpdateTableName;
_rxCommandDefinition->getPropertyValue(PROPERTY_UPDATE_SCHEMANAME) >>= m_sUpdateSchemaName;
_rxCommandDefinition->getPropertyValue(PROPERTY_UPDATE_CATALOGNAME) >>= m_sUpdateCatalogName;
_rxCommandDefinition->getPropertyValue(PROPERTY_LAYOUTINFORMATION) >>= m_aLayoutInformation;
m_bEscapeProcessing = ::cppu::any2bool(_rxCommandDefinition->getPropertyValue(PROPERTY_USE_ESCAPE_PROCESSING));
}
catch(Exception&)
{
2001-04-03 13:16:03 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::OQueryDescriptor: caught an exception!");
2000-09-18 23:16:46 +00:00
}
}
//--------------------------------------------------------------------------
OQueryDescriptor::OQueryDescriptor(const OQueryDescriptor& _rSource)
:ODataSettings(_rSource, m_aBHelper)
2001-08-30 07:07:36 +00:00
,m_bColumnsOutOfDate(sal_True)
2000-09-18 23:16:46 +00:00
{
2001-08-15 12:05:15 +00:00
DBG_CTOR(OQueryDescriptor,NULL);
2001-08-30 07:07:36 +00:00
m_pColumns = new OColumns(*this, m_aMutex, sal_True,::std::vector< ::rtl::OUString>(), this,this);
2000-09-18 23:16:46 +00:00
registerProperties();
m_sCommand = _rSource.m_sCommand;
m_bEscapeProcessing = _rSource.m_bEscapeProcessing;
m_sUpdateTableName = _rSource.m_sUpdateTableName;
m_sUpdateSchemaName = _rSource.m_sUpdateSchemaName;
m_sUpdateCatalogName = _rSource.m_sUpdateCatalogName;
2001-02-05 07:58:23 +00:00
m_aLayoutInformation = _rSource.m_aLayoutInformation;
2000-09-18 23:16:46 +00:00
// immediately read the UI of the columns : we may live much longer than _rSource and it's column's config node,
// so we can't just remember this node and read when needed, we have to do it here and now
2001-05-21 08:21:15 +00:00
// OConfigurationNode aColumnUINode = _rSource.m_pColumns.getUILocation();
// if (aColumnUINode.isValid())
2001-08-30 07:07:36 +00:00
// m_pColumns.loadSettings(aColumnUINode);
// TODO: cloning of the column information. Since a column container does not know anything about it's columns
// config location anymore, we probably need to clone the columns explicitly (instead of re-reading them)
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
OQueryDescriptor::~OQueryDescriptor()
{
2001-08-15 12:05:15 +00:00
osl_incrementInterlockedCount( &m_refCount ); // jsut to ensure that we won't be destroyed twice
dispose();
2001-05-21 08:21:15 +00:00
delete m_pColumns;
2001-08-15 12:05:15 +00:00
DBG_DTOR(OQueryDescriptor,NULL);
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
Sequence< Type > SAL_CALL OQueryDescriptor::getTypes() throw (RuntimeException)
{
2000-10-11 10:21:40 +00:00
return ::comphelper::concatSequences(OQueryDescriptor_Base::getTypes(), ODataSettings::getTypes());
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
sal_Int64 SAL_CALL OQueryDescriptor::getSomething( const Sequence< sal_Int8 >& _rIdentifier ) throw(RuntimeException)
{
if (_rIdentifier.getLength() != 16)
return NULL;
if (0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), _rIdentifier.getConstArray(), 16 ) )
return reinterpret_cast<sal_Int64>(this);
return NULL;
}
//--------------------------------------------------------------------------
Sequence< sal_Int8 > OQueryDescriptor::getUnoTunnelImplementationId()
{
static OImplementationId * pId = 0;
if (! pId)
{
MutexGuard aGuard( Mutex::getGlobalMutex() );
if (! pId)
{
static OImplementationId aId;
pId = &aId;
}
}
return pId->getImplementationId();
}
2001-08-30 07:07:36 +00:00
//--------------------------------------------------------------------------
void SAL_CALL OQueryDescriptor::acquire( ) throw()
2001-08-30 07:07:36 +00:00
{
OQueryDescriptor_Base::acquire();
}
//--------------------------------------------------------------------------
void SAL_CALL OQueryDescriptor::release( ) throw()
2001-08-30 07:07:36 +00:00
{
OQueryDescriptor_Base::release();
}
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
Any SAL_CALL OQueryDescriptor::queryInterface( const Type& _rType ) throw(RuntimeException)
{
Any aReturn = ::cppu::queryInterface(_rType,
static_cast< XPropertySet* >(this),
static_cast< XFastPropertySet* >(this),
static_cast< XMultiPropertySet* >(this)
);
if (!aReturn.hasValue())
aReturn = OQueryDescriptor_Base::queryInterface(_rType);
return aReturn;
}
2001-08-30 07:07:36 +00:00
//--------------------------------------------------------------------------
OConfigurationNode OQueryDescriptor::getObjectLocation() const
{
return OConfigurationNode();
}
//--------------------------------------------------------------------------
void OQueryDescriptor::setColumnsOutOfDate( sal_Bool _bOutOfDate )
{
m_bColumnsOutOfDate = _bOutOfDate;
if ( !m_bColumnsOutOfDate )
m_pColumns->setInitialized();
}
//--------------------------------------------------------------------------
void OQueryDescriptor::implAppendColumn( const ::rtl::OUString& _rName, OColumn* _pColumn )
{
m_pColumns->append( _rName, _pColumn );
}
//--------------------------------------------------------------------------
void OQueryDescriptor::clearColumns( )
{
m_pColumns->clearColumns();
setColumnsOutOfDate();
}
2000-09-18 23:16:46 +00:00
//--------------------------------------------------------------------------
Reference< XNameAccess > SAL_CALL OQueryDescriptor::getColumns( ) throw (RuntimeException)
{
MutexGuard aGuard(m_aMutex);
2001-08-30 07:07:36 +00:00
if ( isColumnsOutOfDate() )
{
// load the columns
refreshColumns();
setColumnsOutOfDate( sal_False );
m_pColumns->setInitialized();
}
2001-05-21 08:21:15 +00:00
return m_pColumns;
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
::rtl::OUString SAL_CALL OQueryDescriptor::getImplementationName( ) throw(RuntimeException)
{
return ::rtl::OUString::createFromAscii("com.sun.star.sdb.OQueryDescriptor");
}
//--------------------------------------------------------------------------
sal_Bool SAL_CALL OQueryDescriptor::supportsService( const ::rtl::OUString& _rServiceName ) throw(RuntimeException)
{
2000-10-11 10:21:40 +00:00
return ::comphelper::findValue(getSupportedServiceNames(), _rServiceName, sal_True).getLength() != 0;
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
Sequence< ::rtl::OUString > SAL_CALL OQueryDescriptor::getSupportedServiceNames( ) throw(RuntimeException)
{
Sequence< ::rtl::OUString > aSupported(2);
aSupported.getArray()[0] = SERVICE_SDB_DATASETTINGS;
aSupported.getArray()[1] = SERVICE_SDB_QUERYDESCRIPTOR;
return aSupported;
}
//--------------------------------------------------------------------------
Reference< XPropertySetInfo > SAL_CALL OQueryDescriptor::getPropertySetInfo( ) throw(RuntimeException)
{
return createPropertySetInfo( getInfoHelper() ) ;
}
//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& OQueryDescriptor::getInfoHelper()
{
return *getArrayHelper();
}
//--------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* OQueryDescriptor::createArrayHelper( ) const
{
Sequence< Property > aProps;
describeProperties(aProps);
return new ::cppu::OPropertyArrayHelper(aProps);
}
//--------------------------------------------------------------------------
void SAL_CALL OQueryDescriptor::dispose()
{
MutexGuard aGuard(m_aMutex);
2001-05-21 08:21:15 +00:00
m_pColumns->disposing();
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
2001-08-30 07:07:36 +00:00
void OQueryDescriptor::storeTo( const OConfigurationNode& _rConfigLocation, const Reference< XNumberFormatsSupplier >& _rxFormats )
2000-09-18 23:16:46 +00:00
{
MutexGuard aGuard(m_aMutex);
if (!_rConfigLocation.isValid() || _rConfigLocation.isReadonly())
2000-09-18 23:16:46 +00:00
{
2001-03-23 12:33:59 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::storeTo : invalid config key (NULL or readonly) !");
return;
2000-09-18 23:16:46 +00:00
}
// -----------------
// the data settings
2001-01-04 13:27:50 +00:00
OConfigurationNode aSettingsNode = _rConfigLocation.openNode(CONFIGKEY_SETTINGS);
if (!aSettingsNode.isValid())
2000-09-18 23:16:46 +00:00
{
2001-03-23 12:33:59 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::storeTo: could not open the sub key for the data settings!");
return;
2000-09-18 23:16:46 +00:00
}
2001-08-30 07:07:36 +00:00
ODataSettings::storeTo( aSettingsNode );
// ---------------------
// the command base stuff
2001-08-30 07:07:36 +00:00
OCommandBase::storeTo( _rConfigLocation );
// --------------------------
// the columns UI information
2001-08-30 07:07:36 +00:00
OConfigurationNode aColumnsNode = _rConfigLocation.openNode( CONFIGKEY_QRYDESCR_COLUMNS );
if (aColumnsNode.isValid())
2000-12-12 11:20:31 +00:00
{
2001-08-30 07:07:36 +00:00
m_pColumns->storeSettings( aColumnsNode, _rxFormats );
2000-12-12 11:20:31 +00:00
}
else
2001-03-23 12:33:59 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::storeTo : could not open the node for the columns UI information !");
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
2001-08-30 07:07:36 +00:00
void OQueryDescriptor::loadFrom( const OConfigurationNode& _rConfigLocation, const Reference< XNumberFormatsSupplier >& _rxFormats )
2000-09-18 23:16:46 +00:00
{
MutexGuard aGuard(m_aMutex);
if (!_rConfigLocation.isValid())
2000-09-18 23:16:46 +00:00
{
2001-08-30 07:07:36 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::loadFrom: invalid config key (NULL or readonly) !");
return;
2000-09-18 23:16:46 +00:00
}
// -----------------
// the data settings
2001-01-04 13:27:50 +00:00
OConfigurationNode aSettingsNode = _rConfigLocation.openNode(CONFIGKEY_SETTINGS);
if (!aSettingsNode.isValid())
2000-09-18 23:16:46 +00:00
{
2001-08-30 07:07:36 +00:00
OSL_ENSURE(sal_False, "OQueryDescriptor::loadFrom: could not open the sub key for the data settings!");
return;
2000-09-18 23:16:46 +00:00
}
ODataSettings::loadFrom(aSettingsNode);
// ---------------------
// the command base stuff
2001-08-30 07:07:36 +00:00
OCommandBase::loadFrom( _rConfigLocation );
// --------------------------
// the columns UI information
2001-05-21 08:21:15 +00:00
m_pColumns->clearColumns();
2001-08-30 07:07:36 +00:00
OConfigurationNode aColumnsNode = _rConfigLocation.openNode( CONFIGKEY_QRYDESCR_COLUMNS );
if ( aColumnsNode.isValid() )
m_pColumns->loadSettings( aColumnsNode, _rxFormats );
2000-09-18 23:16:46 +00:00
}
2001-08-30 07:07:36 +00:00
2001-08-15 12:05:15 +00:00
// -----------------------------------------------------------------------------
2001-08-30 07:07:36 +00:00
Reference< XPropertySet > OQueryDescriptor::createEmptyObject()
2001-08-15 12:05:15 +00:00
{
2001-08-30 07:07:36 +00:00
return NULL;
2001-08-15 12:05:15 +00:00
}
2000-09-18 23:16:46 +00:00
2001-08-30 07:07:36 +00:00
// -----------------------------------------------------------------------------
void OQueryDescriptor::rebuildColumns( )
2000-09-18 23:16:46 +00:00
{
}
2001-08-30 07:07:36 +00:00
// -----------------------------------------------------------------------------
void OQueryDescriptor::refreshColumns()
2000-09-18 23:16:46 +00:00
{
2001-08-30 07:07:36 +00:00
MutexGuard aGuard(m_aMutex);
2000-09-18 23:16:46 +00:00
2001-08-30 07:07:36 +00:00
// clear the current columns
clearColumns();
2000-09-18 23:16:46 +00:00
2001-08-30 07:07:36 +00:00
// do the real rebuild
rebuildColumns();
2000-09-18 23:16:46 +00:00
}
//------------------------------------------------------------------------------
2001-08-30 07:07:36 +00:00
OColumn* OQueryDescriptor::createColumn(const ::rtl::OUString& _rName) const
2000-09-18 23:16:46 +00:00
{
2001-08-30 07:07:36 +00:00
return new OTableColumn(_rName);
2000-09-18 23:16:46 +00:00
}
2001-08-30 07:07:36 +00:00
// -----------------------------------------------------------------------------
//........................................................................
} // namespace dbaccess
//........................................................................
2000-09-18 23:16:46 +00:00