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

1071 lines
37 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* $RCSfile: RowSetBase.cxx,v $
*
* $Revision: 1.37 $
2000-09-18 23:16:46 +00:00
*
* last change: $Author: oj $ $Date: 2001-07-12 07:56:32 $
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): _______________________________________
*
*
************************************************************************/
2000-10-25 06:32:52 +00:00
#ifndef DBACCESS_CORE_API_ROWSETBASE_HXX
2000-09-18 23:16:46 +00:00
#include "RowSetBase.hxx"
2000-10-25 06:32:52 +00:00
#endif
2000-09-18 23:16:46 +00:00
#ifndef DBACCESS_CORE_API_CROWSETDATACOLUMN_HXX
#include "CRowSetDataColumn.hxx"
#endif
#ifndef _CONNECTIVITY_SDBCX_COLLECTION_HXX_
#include <connectivity/sdbcx/VCollection.hxx>
#endif
#ifndef DBACCESS_CORE_API_ROWSETCACHE_HXX
#include "RowSetCache.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 _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_
#include <com/sun/star/lang/DisposedException.hpp>
#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-01-22 06:38:24 +00:00
#ifndef _COM_SUN_STAR_SDBCX_COMPAREBOOKMARK_HPP_
#include <com/sun/star/sdbcx/CompareBookmark.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_RESULTSETCONCURRENCY_HPP_
#include <com/sun/star/sdbc/ResultSetConcurrency.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_LOCALE_HPP_
#include <com/sun/star/lang/Locale.hpp>
#endif
#ifndef _COM_SUN_STAR_UTIL_NUMBERFORMAT_HPP_
#include <com/sun/star/util/NumberFormat.hpp>
#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 _COMPHELPER_EXTRACT_HXX_
#include <comphelper/extract.hxx>
2000-09-18 23:16:46 +00:00
#endif
2000-10-11 10:21:40 +00:00
#ifndef _COMPHELPER_SEQSTREAM_HXX
#include <comphelper/seqstream.hxx>
2000-09-29 14:23:36 +00:00
#endif
2000-10-25 06:32:52 +00:00
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
2000-10-24 12:17:01 +00:00
#endif
#ifndef _CONNECTIVITY_EMPTYMETADATA_HXX_
#include <connectivity/emptymetadata.hxx>
#endif
2000-10-24 12:17:01 +00:00
2000-09-18 23:16:46 +00:00
using namespace dbaccess;
using namespace connectivity;
2000-11-29 09:23:32 +00:00
using namespace connectivity::sdbcx;
using namespace comphelper;
2000-10-25 06:32:52 +00:00
using namespace dbtools;
2000-09-18 23:16:46 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::util;
2000-09-18 23:16:46 +00:00
using namespace ::cppu;
using namespace ::osl;
namespace dbaccess
{
// =========================================================================
// = OEmptyCollection
// =========================================================================
2000-09-18 23:16:46 +00:00
// -------------------------------------------------------------------------
class OEmptyCollection : public sdbcx::OCollection
{
protected:
virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException)
{
}
virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNamed > createObject(const ::rtl::OUString& _rName)
{
return ::com::sun::star::uno::Reference< ::com::sun::star::container::XNamed >();
}
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createEmptyObject()
{
return ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >();
}
public:
OEmptyCollection(::cppu::OWeakObject& _rParent,::osl::Mutex& _rMutex) : OCollection(_rParent,sal_True,_rMutex,::std::vector< ::rtl::OUString>()){}
};
// =========================================================================
// = ORowSetBase
// =========================================================================
2000-09-18 23:16:46 +00:00
// -------------------------------------------------------------------------
ORowSetBase::ORowSetBase(::cppu::OBroadcastHelper &_rBHelper,::osl::Mutex& _rMutex)
: OPropertyContainer(_rBHelper)
, m_rMutex(_rMutex)
2000-09-18 23:16:46 +00:00
, m_rBHelper(_rBHelper)
, m_aListeners(m_rMutex)
, m_aApproveListeners(m_rMutex)
2000-09-18 23:16:46 +00:00
, m_pCache(NULL)
, m_pColumns(NULL)
, m_nRowCount(0)
2000-09-29 14:23:36 +00:00
, m_bBeforeFirst(sal_True) // changed from sal_False
2000-09-18 23:16:46 +00:00
, m_bAfterLast(sal_False)
, m_bRowCountFinal(sal_False)
, m_bClone(sal_False)
, m_nPosition(-1)
2001-02-23 14:22:32 +00:00
, m_bIgnoreResult(sal_False)
2000-09-18 23:16:46 +00:00
{
sal_Int32 nRBT = PropertyAttribute::READONLY | PropertyAttribute::BOUND | PropertyAttribute::TRANSIENT;
registerProperty(PROPERTY_ROWCOUNT, PROPERTY_ID_ROWCOUNT, nRBT, &m_nRowCount, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL)));
registerProperty(PROPERTY_ISROWCOUNTFINAL, PROPERTY_ID_ISROWCOUNTFINAL, nRBT, &m_bRowCountFinal, ::getBooleanCppuType());
}
2001-04-20 10:44:05 +00:00
// -----------------------------------------------------------------------------
ORowSetBase::~ORowSetBase()
{
if(m_pColumns)
{
delete m_pColumns;
m_pColumns = NULL;
}
}
2000-09-18 23:16:46 +00:00
// com::sun::star::lang::XTypeProvider
//--------------------------------------------------------------------------
Sequence< Type > ORowSetBase::getTypes() throw (RuntimeException)
{
2000-10-11 10:21:40 +00:00
return ::comphelper::concatSequences(ORowSetBase_BASE::getTypes(),OPropertyContainer::getTypes());
2000-09-18 23:16:46 +00:00
}
// com::sun::star::uno::XInterface
//--------------------------------------------------------------------------
Any ORowSetBase::queryInterface( const Type & rType ) throw (RuntimeException)
{
Any aRet = OPropertyContainer::queryInterface(rType);
2000-09-18 23:16:46 +00:00
if(!aRet.hasValue())
aRet = ORowSetBase_BASE::queryInterface(rType);
return aRet;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::getFastPropertyValue(Any& rValue,sal_Int32 nHandle) const
{
if(m_pCache)
{
switch(nHandle)
{
case PROPERTY_ID_ROWCOUNT:
rValue <<= m_pCache->m_nRowCount;
break;
case PROPERTY_ID_ISROWCOUNTFINAL:
rValue.setValue(&m_pCache->m_bRowCountFinal,::getCppuBooleanType());
break;
default:
OPropertyContainer::getFastPropertyValue(rValue,nHandle);
2000-09-18 23:16:46 +00:00
};
}
else
OPropertyContainer::getFastPropertyValue(rValue,nHandle);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// OComponentHelper
void SAL_CALL ORowSetBase::disposing(void)
{
MutexGuard aGuard(m_rMutex);
2000-09-18 23:16:46 +00:00
if(m_pColumns)
m_pColumns->disposing();
2001-05-28 12:03:37 +00:00
m_xEmptyCollection = NULL;
m_pCache = NULL;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
2000-10-11 10:21:40 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
::cppu::IPropertyArrayHelper* ORowSetBase::createArrayHelper( ) const
{
Sequence< Property > aProps;
describeProperties(aProps);
return new ::cppu::OPropertyArrayHelper(aProps);
}
// -------------------------------------------------------------------------
// cppu::OPropertySetHelper
::cppu::IPropertyArrayHelper& SAL_CALL ORowSetBase::getInfoHelper()
{
return *const_cast<ORowSetBase*>(this)->getArrayHelper();
}
// -------------------------------------------------------------------------
// XRow
sal_Bool SAL_CALL ORowSetBase::wasNull( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-29 14:23:36 +00:00
return (m_aCurrentRow && m_aCurrentRow != m_pCache->getEnd()) ? (*(*m_aCurrentRow))[m_nLastColumnIndex].isNull() : sal_True;
2000-09-18 23:16:46 +00:00
}
// -----------------------------------------------------------------------------
ORowSetValue ORowSetBase::getValue(sal_Int32 columnIndex)
2000-09-18 23:16:46 +00:00
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
OSL_ENSURE(!(m_bBeforeFirst || m_bAfterLast),"Illegal call here!");
2000-09-18 23:16:46 +00:00
ORowSetValue aRet;
if(m_aCurrentRow && m_aCurrentRow != m_pCache->getEnd())
aRet = (*(*m_aCurrentRow))[m_nLastColumnIndex = columnIndex];
else
{
#ifdef DBG_UTIL
if(m_aCurrentRow)
OSL_ENSURE(0,"ORowSetBase::getValue: we don't stand on a valid row! Row is equal to end of matrix");
else
{
positionCache();
m_aCurrentRow = m_pCache->m_aMatrixIter;
OSL_ENSURE(m_aCurrentRow,"ORowSetBase::getValue: we don't stand on a valid row! Row is null.");
return getValue(columnIndex);
}
#endif
}
2000-09-29 14:23:36 +00:00
return aRet;
}
// -------------------------------------------------------------------------
::rtl::OUString SAL_CALL ORowSetBase::getString( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::getBoolean( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Int8 SAL_CALL ORowSetBase::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Int16 SAL_CALL ORowSetBase::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetBase::getInt( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Int64 SAL_CALL ORowSetBase::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
float SAL_CALL ORowSetBase::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
double SAL_CALL ORowSetBase::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Sequence< sal_Int8 > SAL_CALL ORowSetBase::getBytes( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
::com::sun::star::util::Date SAL_CALL ORowSetBase::getDate( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
::com::sun::star::util::Time SAL_CALL ORowSetBase::getTime( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
::com::sun::star::util::DateTime SAL_CALL ORowSetBase::getTimestamp( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getValue(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< ::com::sun::star::io::XInputStream > SAL_CALL ORowSetBase::getBinaryStream( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-29 14:23:36 +00:00
if(m_aCurrentRow && m_aCurrentRow != m_pCache->getEnd())
return new ::comphelper::SequenceInputStream((*(*m_aCurrentRow))[m_nLastColumnIndex = columnIndex].getSequence());
else
{
#ifdef DBG_UTIL
if(m_aCurrentRow)
OSL_ENSURE(0,"ORowSetBase::getValue: we don't stand on a valid row! Row is equal to end of matrix");
else
OSL_ENSURE(0,"ORowSetBase::getValue: we don't stand on a valid row! Row i null.");
#endif
}
2000-09-29 14:23:36 +00:00
return Reference< ::com::sun::star::io::XInputStream >();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< ::com::sun::star::io::XInputStream > SAL_CALL ORowSetBase::getCharacterStream( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
return getBinaryStream(columnIndex);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Any SAL_CALL ORowSetBase::getObject( sal_Int32 columnIndex, const Reference< XNameAccess >& typeMap ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
return Any();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< XRef > SAL_CALL ORowSetBase::getRef( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
return Reference< XRef >();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< XBlob > SAL_CALL ORowSetBase::getBlob( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
return Reference< XBlob >();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< XClob > SAL_CALL ORowSetBase::getClob( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-29 14:23:36 +00:00
return Reference< XClob >();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< XArray > SAL_CALL ORowSetBase::getArray( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-29 14:23:36 +00:00
return Reference< XArray >();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// ::com::sun::star::sdbcx::XRowLocate
Any SAL_CALL ORowSetBase::getBookmark( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
if(!m_pCache || m_bBeforeFirst || m_bAfterLast)
{
OSL_ENSURE(0,"Ask for bookmark but we stand on invalid row.");
throwFunctionSequenceException(*m_pMySelf);
}
2000-09-18 23:16:46 +00:00
2001-01-24 08:52:19 +00:00
OSL_ENSURE(m_aBookmark.hasValue(),"Bookmark has no value!");
2000-09-29 14:23:36 +00:00
return m_aBookmark;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
{
2001-01-22 06:38:24 +00:00
OSL_ENSURE(bookmark.hasValue(),"ORowSetBase::moveToBookmark bookmark has no value!");
::osl::MutexGuard aGuard( m_rMutex );
if(!bookmark.hasValue() || m_nResultSetType == ResultSetType::FORWARD_ONLY)
{
if(bookmark.hasValue())
OSL_ENSURE(0,"MoveToBookmark is not possible when we are only forward");
else
OSL_ENSURE(0,"Bookmark is not valid");
throwFunctionSequenceException(*m_pMySelf);
}
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
checkCache();
2000-09-29 14:23:36 +00:00
sal_Bool bRet;
if(bRet = notifyAllListenersCursorBeforeMove())
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
2000-09-29 14:23:36 +00:00
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
2000-09-18 23:16:46 +00:00
bRet = m_pCache->moveToBookmark(bookmark);
if(bRet)
{
setCurrentRow(sal_True,aOldValues);
}
else
{
OSL_ENSURE(0,"MoveToBookmark doesn't work!");
movementFailed();
}
2000-09-29 14:23:36 +00:00
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-29 14:23:36 +00:00
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
2000-09-29 14:23:36 +00:00
checkPositioningAllowed();
2000-09-29 14:23:36 +00:00
sal_Bool bRet;
if(bRet = notifyAllListenersCursorBeforeMove())
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
2000-09-29 14:23:36 +00:00
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
2000-09-18 23:16:46 +00:00
bRet = m_pCache->moveRelativeToBookmark(bookmark,rows);
if(bRet)
2001-01-24 08:52:19 +00:00
{
setCurrentRow(sal_True,aOldValues);
2001-01-24 08:52:19 +00:00
}
else
movementFailed();
2000-09-29 14:23:36 +00:00
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetBase::compareBookmarks( const Any& first, const Any& second ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->compareBookmarks(first,second);
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::hasOrderedBookmarks( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->hasOrderedBookmarks();
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetBase::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->hashBookmark(bookmark);
}
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
// XResultSetMetaDataSupplier
Reference< XResultSetMetaData > SAL_CALL ORowSetBase::getMetaData( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
return m_pCache ? m_pCache->getMetaData() : new OEmptyMetaData();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// XColumnLocate
sal_Int32 SAL_CALL ORowSetBase::findColumn( const ::rtl::OUString& columnName ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
::osl::MutexGuard aGuard( m_aColumnsMutex );
// it is possible to save some time her when we remember the names - position relation in a map
2001-03-27 05:42:16 +00:00
return m_pColumns ? m_pColumns->findColumn(columnName) : sal_Int32(0);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// ::com::sun::star::sdbcx::XColumnsSupplier
Reference< XNameAccess > SAL_CALL ORowSetBase::getColumns( ) throw(RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-10-17 09:19:03 +00:00
if(!m_pColumns)
2001-05-28 12:03:37 +00:00
{
if(!m_xEmptyCollection.is())
m_xEmptyCollection = new OEmptyCollection(*m_pMySelf,m_aColumnsMutex);
return m_xEmptyCollection;
}
2000-09-18 23:16:46 +00:00
return m_pColumns;
}
// -------------------------------------------------------------------------
// XResultSet
sal_Bool SAL_CALL ORowSetBase::next( ) throw(SQLException, RuntimeException)
{
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
sal_Bool bRet;
if(bRet = notifyAllListenersCursorBeforeMove())
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
{
aOldValues = &m_aOldRow; // remember the old values
}
bRet = m_pCache->next();
if(bRet)
{
setCurrentRow(sal_True,aOldValues);
OSL_ENSURE(!m_bBeforeFirst,"BeforeFirst is true. I don't know why?");
}
else
{
// moved after the last row
movementFailed();
OSL_ENSURE(m_bAfterLast,"AfterLast is false. I don't know why?");
}
fireRowcount();
2000-11-10 15:05:41 +00:00
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::isBeforeFirst( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
return m_bBeforeFirst;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::isAfterLast( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
2001-01-24 08:52:19 +00:00
return m_bAfterLast;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::isFirst( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
sal_Bool bIsFirst = !(m_bBeforeFirst || m_bAfterLast);
if(bIsFirst)
{
positionCache();
bIsFirst = m_pCache->isFirst();
}
2000-09-18 23:16:46 +00:00
return bIsFirst;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::isLast( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
sal_Bool bIsLast = !(m_bBeforeFirst || m_bAfterLast);
if(bIsLast) // so we can't be on the last
{
positionCache();
bIsLast = m_pCache->isLast();
}
return bIsLast;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::beforeFirst( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
2000-09-29 14:23:36 +00:00
checkPositioningAllowed();
if(notifyAllListenersCursorBeforeMove())
2000-09-18 23:16:46 +00:00
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
if(!m_bBeforeFirst)
{ // we have to move
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
m_pCache->beforeFirst();
m_aBookmark = Any();
m_aCurrentRow = m_pCache->getEnd();
m_aCurrentRow.setBookmark(m_aBookmark);
m_bBeforeFirst = !(m_bAfterLast = sal_False);
notifyAllListenersCursorMoved();
firePropertyChange(aOldValues);
m_aOldRow = NULL;
}
2000-09-18 23:16:46 +00:00
}
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::afterLast( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
if(notifyAllListenersCursorBeforeMove())
2000-09-18 23:16:46 +00:00
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
if(!m_bAfterLast)
{
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
m_pCache->afterLast();
m_aBookmark = Any();
m_aCurrentRow = m_pCache->getEnd();
m_aCurrentRow.setBookmark(m_aBookmark);
m_bAfterLast = !(m_bBeforeFirst = sal_False);
notifyAllListenersCursorMoved();
fireRowcount();
firePropertyChange(aOldValues);
m_aOldRow = NULL;
}
2000-09-18 23:16:46 +00:00
}
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::first( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-29 14:23:36 +00:00
sal_Bool bRet;
if(bRet = notifyAllListenersCursorBeforeMove())
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
2000-09-29 14:23:36 +00:00
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
2000-09-18 23:16:46 +00:00
sal_Bool bMoved = sal_False;
if(!isFirst() || bWasNew)
bMoved = sal_True;
2000-09-18 23:16:46 +00:00
bRet = m_pCache->first();
if(bRet)
setCurrentRow(bMoved,aOldValues);
else
{// first goes wrong so there is no row
movementFailed();
}
fireRowcount();
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::last( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
sal_Bool bRet;
if(bRet = notifyAllListenersCursorBeforeMove())
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
2000-09-29 14:23:36 +00:00
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
2000-09-18 23:16:46 +00:00
sal_Bool bMoved = sal_False;
if(!isLast() || bWasNew)
bMoved = sal_True;
2000-09-18 23:16:46 +00:00
bRet = m_pCache->last();
if(bRet)
{
setCurrentRow(bMoved,aOldValues);
}
else
{ // last goes wrong so there is no row
movementFailed();
OSL_ENSURE(m_bAfterLast && m_bBeforeFirst,"Last failed so there is no row but AfterLast or BeforeFirst are wrong!");
}
fireRowcount();
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetBase::getRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-29 14:23:36 +00:00
sal_Int32 nPos = 0;
if(!(m_bAfterLast || m_bBeforeFirst)) // we are on no valid row
{
// check if we are inserting a row
if(!(!m_bClone && m_pCache->m_bInserted))
{
if(!m_aBookmark.hasValue()) // check if we are standing on a deleted row
nPos = m_nPosition;
else
{
if(m_pCache->m_bAfterLast || m_pCache->m_bBeforeFirst || m_pCache->compareBookmarks(m_aBookmark,m_pCache->getBookmark()) != CompareBookmark::EQUAL)
{
#ifdef DBG_UTIL
sal_Bool bRet = m_pCache->moveToBookmark(m_aBookmark);
OSL_ENSURE(bRet,"moveToBookamrk failed so the position isn't valid!");
#else
m_pCache->moveToBookmark(m_aBookmark);
#endif
}
nPos = m_pCache->getRow();
}
}
}
return nPos;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::absolute( sal_Int32 row ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
sal_Bool bRet = !(m_bAfterLast && row > 1); // m_bAfterLast && row > 1 we are already behind the last row
2000-09-18 23:16:46 +00:00
if(bRet && (bRet = notifyAllListenersCursorBeforeMove()))
2000-09-18 23:16:46 +00:00
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
bRet = m_pCache->absolute(row);
if(bRet)
{
setCurrentRow(sal_True,aOldValues);
}
else
{ // absolute movement goes wrong we stand left or right side of the rows
movementFailed();
}
fireRowcount();
2000-09-18 23:16:46 +00:00
}
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::relative( sal_Int32 rows ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
2000-09-18 23:16:46 +00:00
if(!rows)
return sal_True; // in this case do nothing
checkPositioningAllowed();
2000-09-18 23:16:46 +00:00
sal_Bool bRet =!((m_bAfterLast && rows > 1) || (m_bBeforeFirst && rows < 0)); // we are already behind the last row or before the first
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
if(bRet && (bRet = notifyAllListenersCursorBeforeMove()))
2000-09-18 23:16:46 +00:00
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
bRet = m_pCache->relative(rows);
if(bRet)
{
setCurrentRow(sal_True,aOldValues);
}
else
{
movementFailed();
}
2000-09-18 23:16:46 +00:00
fireRowcount();
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::previous( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
::osl::MutexGuard aGuard( m_rMutex );
2000-09-18 23:16:46 +00:00
checkPositioningAllowed();
2000-09-29 14:23:36 +00:00
sal_Bool bRet = !m_bBeforeFirst;
2000-09-29 14:23:36 +00:00
if(bRet && (bRet = notifyAllListenersCursorBeforeMove()))
2000-09-18 23:16:46 +00:00
{
// check if we are inserting a row
sal_Bool bWasNew = m_pCache->m_bInserted || m_pCache->m_bDeleted;
checkInsert();
ORowSetMatrix::iterator aOldValues = NULL;
if(!bWasNew && m_aOldRow.isValid())
aOldValues = &m_aOldRow; // remember the old values
bRet = m_pCache->previous();
// if(!(m_bBeforeFirst = m_pCache->isBeforeFirst()) && bRet) // TODO have a look at it
if(bRet)
{
setCurrentRow(sal_True,aOldValues);
}
else
{
movementFailed();
}
2000-11-10 15:05:41 +00:00
}
2000-09-18 23:16:46 +00:00
return bRet;
}
// -----------------------------------------------------------------------------
void ORowSetBase::setCurrentRow(sal_Bool _bMoved,const ORowSetMatrix::iterator& _rOldValues)
{
m_bBeforeFirst = m_pCache->isBeforeFirst();
m_bAfterLast = m_pCache->isAfterLast();
if(!(m_bBeforeFirst || m_bAfterLast))
{
m_aBookmark = m_pCache->getBookmark();
m_aCurrentRow = m_pCache->m_aMatrixIter;
m_aCurrentRow.setBookmark(m_aBookmark);
OSL_ENSURE(!m_aCurrentRow.isNull() && m_aCurrentRow != m_pCache->getEnd(),"Position of matrix iterator isn't valid!");
OSL_ENSURE(m_aCurrentRow->isValid(),"Currentrow isn't valid");
}
else
{
m_aOldRow = NULL;
m_aCurrentRow = m_pCache->getEnd();
m_aBookmark = Any();
m_aCurrentRow.setBookmark(m_aBookmark);
}
if(_bMoved)
notifyAllListenersCursorMoved();
firePropertyChange(_rOldValues);
if(!(m_bBeforeFirst || m_bAfterLast))
m_aOldRow = (*m_aCurrentRow);
}
// -----------------------------------------------------------------------------
void ORowSetBase::checkPositioningAllowed() throw( SQLException, RuntimeException )
{
if(!m_pCache || m_nResultSetType == ResultSetType::FORWARD_ONLY)
throwFunctionSequenceException(*m_pMySelf);
}
2000-09-18 23:16:46 +00:00
//------------------------------------------------------------------------------
Reference< XInterface > ORowSetBase::getStatement(void) throw( SQLException, RuntimeException )
{
return NULL;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::refreshRow( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkPositioningAllowed();
if(!(m_bBeforeFirst || m_bAfterLast))
{
positionCache();
m_pCache->refreshRow();
}
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::rowUpdated( ) throw(SQLException, RuntimeException)
{
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->rowUpdated();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::rowInserted( ) throw(SQLException, RuntimeException)
{
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->rowInserted();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetBase::rowDeleted( ) throw(SQLException, RuntimeException)
{
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
checkCache();
2000-09-18 23:16:46 +00:00
return m_pCache->rowDeleted();
}
// -------------------------------------------------------------------------
// XWarningsSupplier
Any SAL_CALL ORowSetBase::getWarnings( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
if(!m_pCache)
return Any();
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
2000-09-18 23:16:46 +00:00
return m_pCache->getWarnings();
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::clearWarnings( ) throw(SQLException, RuntimeException)
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
2000-09-18 23:16:46 +00:00
2001-01-22 06:38:24 +00:00
::osl::MutexGuard aGuard( m_rMutex );
2000-09-18 23:16:46 +00:00
if(m_pCache)
m_pCache->clearWarnings();
}
// -------------------------------------------------------------------------
void ORowSetBase::firePropertyChange(const ORowSetMatrix::iterator& _rOldRow)
{
Reference< ::com::sun::star::lang::XUnoTunnel> xTunnel;
ORowSetRow aRow;
2001-01-24 08:52:19 +00:00
if(_rOldRow && _rOldRow != m_pCache->m_pMatrix->end() && _rOldRow->isValid())
2000-09-18 23:16:46 +00:00
aRow = *_rOldRow;
OSL_ENSURE(m_pColumns,"Columns can not be NULL here!");
2000-10-17 09:19:03 +00:00
sal_Int32 i=0;
try
2000-09-18 23:16:46 +00:00
{
2000-10-17 09:19:03 +00:00
for(;i<m_pColumns->getCount();++i)
2000-09-18 23:16:46 +00:00
{
2001-02-14 12:18:24 +00:00
if(::cppu::extractInterface(xTunnel,m_pColumns->getByIndex(i)) && xTunnel.is())
2000-10-17 09:19:03 +00:00
{
OColumn* pColumn = (OColumn*)xTunnel->getSomething(OColumn::getUnoTunnelImplementationId());
if(pColumn)
2001-03-01 12:42:39 +00:00
{
OSL_ENSURE(!aRow.isValid() || (i+1) < sal_Int32(aRow->size()),"Index is greater than vector size!");
2000-10-17 09:19:03 +00:00
pColumn->fireValueChange(aRow.isValid() ? (*aRow)[i+1].makeAny() : Any());
2001-03-01 12:42:39 +00:00
}
2000-10-17 09:19:03 +00:00
}
2000-09-18 23:16:46 +00:00
}
}
2000-11-15 14:57:40 +00:00
catch(Exception&)
2000-10-17 09:19:03 +00:00
{
2001-01-22 06:38:24 +00:00
OSL_ENSURE(0,"firePropertyChange: Exception");
2000-10-17 09:19:03 +00:00
}
2000-09-18 23:16:46 +00:00
}
// -----------------------------------------------------------------------------
void ORowSetBase::positionCache()
{
if(m_aBookmark.hasValue())
{
sal_Bool bOK = m_pCache->moveToBookmark(m_aBookmark);
OSL_ENSURE(bOK ,"ORowSetBase::positionCache: positioning cache fails!");
}
else
OSL_ENSURE(0,"ORowSetBase::positionCache: no bookmark set!");
}
// -----------------------------------------------------------------------------
void ORowSetBase::checkCache()
{
::connectivity::checkDisposed(m_rBHelper.bDisposed);
if(!m_pCache)
throwFunctionSequenceException(*m_pMySelf);
}
// -----------------------------------------------------------------------------
void ORowSetBase::movementFailed()
{
m_aOldRow = NULL;
m_aCurrentRow = m_pCache->getEnd();
m_bBeforeFirst = m_pCache->isBeforeFirst();
m_bAfterLast = m_pCache->isAfterLast();
m_aBookmark = Any();
m_aCurrentRow.setBookmark(m_aBookmark);
}
// -----------------------------------------------------------------------------
} // namespace dbaccess