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

1618 lines
58 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* $RCSfile: RowSetCache.cxx,v $
*
2000-12-14 10:41:19 +00:00
* $Revision: 1.18 $
2000-09-18 23:16:46 +00:00
*
2000-12-14 10:41:19 +00:00
* last change: $Author: oj $ $Date: 2000-12-14 11:41:19 $
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): _________ Ocke Janssen____________
2000-09-18 23:16:46 +00:00
*
*
************************************************************************/
#ifndef _CONNECTIVITY_COMMONTOOLS_HXX_
#include "RowSetCache.hxx"
#endif
2000-10-11 10:21:40 +00:00
#ifndef _COMPHELPER_SEQSTREAM_HXX
#include <comphelper/seqstream.hxx>
2000-09-18 23:16:46 +00:00
#endif
#ifndef _COMPHELPER_UNO3_HXX_
#include <comphelper/uno3.hxx>
#endif
2000-09-18 23:16:46 +00:00
#ifndef DBACCESS_CORE_API_BOOKMARKSET_HXX
#include "BookmarkSet.hxx"
#endif
#ifndef DBACCESS_CORE_API_STATICSET_HXX
#include "StaticSet.hxx"
#endif
#ifndef DBACCESS_CORE_API_KEYSET_HXX
#include "KeySet.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 _CPPUHELPER_EXTRACT_HXX_
#include <cppuhelper/extract.hxx>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XKEYSSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XKeysSupplier.hpp>
#endif
2000-10-17 09:19:03 +00:00
#ifndef _COM_SUN_STAR_SDBCX_XTABLESSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#endif
2000-11-10 13:17:54 +00:00
#ifndef _COM_SUN_STAR_SDBCX_KEYTYPE_HPP_
#include <com/sun/star/sdbcx/KeyType.hpp>
#endif
2000-09-18 23:16:46 +00:00
#ifndef _COM_SUN_STAR_SDBCX_PRIVILEGE_HPP_
#include <com/sun/star/sdbcx/Privilege.hpp>
#endif
#ifndef _DBACORE_DATACOLUMN_HXX_
#include "CRowSetDataColumn.hxx"
#endif
#ifndef DBACCESS_CORE_API_CROWSETCOLUMN_HXX
#include "CRowSetColumn.hxx"
#endif
2000-10-25 06:32:52 +00:00
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
#endif
2000-11-15 14:57:40 +00:00
#ifndef _COMPHELPER_PROPERTY_HXX_
#include <comphelper/property.hxx>
#endif
2000-09-18 23:16:46 +00:00
using namespace dbaccess;
2000-10-25 06:32:52 +00:00
using namespace dbtools;
2000-09-18 23:16:46 +00:00
using namespace connectivity;
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 ::cppu;
using namespace ::osl;
// -------------------------------------------------------------------------
ORowSetCache::ORowSetCache(const Reference< XResultSet >& _xRs,
2000-10-17 09:19:03 +00:00
const Reference< XSQLQueryComposer >& _xComposer,
const ::rtl::OUString& _rUpdateTableName,
sal_Bool& _bModified,
sal_Bool& _bNew)
2000-09-18 23:16:46 +00:00
: m_xSet(_xRs)
,m_nStartPos(0)
,m_nEndPos(0)
,m_nPosition(0)
,m_nRowCount(0)
,m_bBeforeFirst(sal_True)
,m_bAfterLast(sal_False)
,m_bFirst(sal_False)
,m_bLast(sal_False)
,m_bRowCountFinal(sal_False)
,m_bInserted(sal_False)
,m_bDeleted(sal_False)
,m_bUpdated(sal_False)
,m_xMetaData(Reference< XResultSetMetaDataSupplier >(_xRs,UNO_QUERY)->getMetaData())
,m_nFetchSize(50)
2000-10-17 09:19:03 +00:00
,m_bNew(_bNew)
,m_bModified(_bModified)
2000-09-18 23:16:46 +00:00
,m_pMatrix(NULL)
2000-09-29 14:23:36 +00:00
,m_pInsertMatrix(NULL)
2000-09-18 23:16:46 +00:00
{
// check if all keys of the updateable table are fetched
sal_Bool bAllKeysFound = sal_False;
2000-10-17 09:19:03 +00:00
Reference<XTablesSupplier> xTabSup(_xComposer,UNO_QUERY);
OSL_ENSHURE(xTabSup.is(),"ORowSet::execute composer isn't a tablesupplier!");
Reference<XNameAccess> xTables = xTabSup->getTables();
2000-09-18 23:16:46 +00:00
if(_rUpdateTableName.getLength())
2000-10-17 09:19:03 +00:00
xTables->getByName(_rUpdateTableName) >>= m_aUpdateTable;
2000-09-18 23:16:46 +00:00
else
2000-10-17 09:19:03 +00:00
xTables->getByName(xTables->getElementNames()[0]) >>= m_aUpdateTable;
2000-09-18 23:16:46 +00:00
2000-10-17 09:19:03 +00:00
if(m_aUpdateTable.is())
2000-09-18 23:16:46 +00:00
{
2000-10-17 09:19:03 +00:00
Reference<XKeysSupplier> xKeys(m_aUpdateTable,UNO_QUERY);
2000-09-18 23:16:46 +00:00
if(xKeys.is())
{
Reference< XIndexAccess> xKeyIndex = xKeys->getKeys();
2000-11-10 13:17:54 +00:00
Reference<XColumnsSupplier> xColumnsSupplier;
// search the one and only primary key
for(sal_Int32 i=0;i< xKeyIndex->getCount();++i)
{
Reference<XPropertySet> xProp;
xKeyIndex->getByIndex(i) >>= xProp;
sal_Int32 nKeyType = 0;
xProp->getPropertyValue(PROPERTY_TYPE) >>= nKeyType;
if(KeyType::PRIMARY == nKeyType)
{
xColumnsSupplier = Reference<XColumnsSupplier>(xProp,UNO_QUERY);
break;
}
}
if(xColumnsSupplier.is())
2000-09-18 23:16:46 +00:00
{
Reference<XNameAccess> xColumns = xColumnsSupplier->getColumns();
Sequence< ::rtl::OUString> aNames(xColumns->getElementNames());
const ::rtl::OUString* pBegin = aNames.getConstArray();
const ::rtl::OUString* pEnd = pBegin + aNames.getLength();
2000-10-17 09:19:03 +00:00
Reference<XColumnsSupplier> xColSup(_xComposer,UNO_QUERY);
Reference<XNameAccess> xSelColumns = xColSup->getColumns();
2000-09-18 23:16:46 +00:00
for(;pBegin != pEnd ;++pBegin)
{
2000-10-17 09:19:03 +00:00
if(bAllKeysFound = xSelColumns->hasByName(*pBegin)) // found a column which is not refetched
2000-09-18 23:16:46 +00:00
break;
}
}
}
}
Reference< XPropertySet> xProp(_xRs,UNO_QUERY);
// first check if resultset is bookmarkable
if(xProp->getPropertySetInfo()->hasPropertyByName(PROPERTY_ISBOOKMARKABLE) && any2bool(xProp->getPropertyValue(PROPERTY_ISBOOKMARKABLE)))
{
2000-10-17 09:19:03 +00:00
m_pCacheSet = new OBookmarkSet(_xRs);
2000-10-05 13:52:16 +00:00
// check privileges
m_nPrivileges = Privilege::SELECT;
if(Reference<XResultSetUpdate>(_xRs,UNO_QUERY).is()) // this interface is optional so we have to check it
{
Reference<XPropertySet> xTable(m_aUpdateTable,UNO_QUERY);
if(xTable.is() && xTable->getPropertySetInfo()->hasPropertyByName(PROPERTY_PRIVILEGES))
{
m_nPrivileges = 0;
xTable->getPropertyValue(PROPERTY_PRIVILEGES) >>= m_nPrivileges;
if(!m_nPrivileges)
m_nPrivileges = Privilege::SELECT;
}
}
2000-09-18 23:16:46 +00:00
}
else
{
if(!bAllKeysFound || (xProp->getPropertySetInfo()->hasPropertyByName(PROPERTY_RESULTSETTYPE) &&
2000-11-15 14:57:40 +00:00
comphelper::getINT32(xProp->getPropertyValue(PROPERTY_RESULTSETTYPE)) == ResultSetType::FORWARD_ONLY) ||
!(comphelper::hasProperty(PROPERTY_CANUPDATEINSERTEDROWS,xProp) && any2bool(xProp->getPropertyValue(PROPERTY_CANUPDATEINSERTEDROWS))))
2000-09-18 23:16:46 +00:00
{
2000-10-17 09:19:03 +00:00
m_pCacheSet = new OStaticSet(_xRs);
2000-11-15 14:57:40 +00:00
if(bAllKeysFound)
m_nPrivileges = Privilege::INSERT | Privilege::DELETE | Privilege::UPDATE;
2000-11-15 14:57:40 +00:00
else
m_nPrivileges = Privilege::SELECT;
2000-09-18 23:16:46 +00:00
}
else
{
2000-10-17 09:19:03 +00:00
m_pCacheSet = new OKeySet(_xRs);
2000-10-05 13:52:16 +00:00
// check privileges
m_nPrivileges = Privilege::SELECT;
if(Reference<XResultSetUpdate>(_xRs,UNO_QUERY).is()) // this interface is optional so we have to check it
{
Reference<XPropertySet> xTable(m_aUpdateTable,UNO_QUERY);
if(xTable.is() && xTable->getPropertySetInfo()->hasPropertyByName(PROPERTY_PRIVILEGES))
{
m_nPrivileges = 0;
xTable->getPropertyValue(PROPERTY_PRIVILEGES) >>= m_nPrivileges;
if(!m_nPrivileges)
m_nPrivileges = Privilege::SELECT;
}
}
2000-09-18 23:16:46 +00:00
}
}
setMaxRowSize(m_nFetchSize);
}
// -------------------------------------------------------------------------
ORowSetCache::~ORowSetCache()
{
2000-09-29 14:23:36 +00:00
delete m_pCacheSet;
2000-12-12 11:20:31 +00:00
m_pCacheSet = NULL;
2000-09-18 23:16:46 +00:00
if(m_pMatrix)
{
m_pMatrix->clear();
delete m_pMatrix;
}
2000-09-29 14:23:36 +00:00
if(m_pInsertMatrix)
{
m_pInsertMatrix->clear();
delete m_pInsertMatrix;
}
2000-11-03 13:42:50 +00:00
m_xStatement = NULL;
m_xSet = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XResultSet>();
m_xMetaData = NULL;
m_aUpdateTable = NULL;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void ORowSetCache::setMaxRowSize(sal_Int32 _nSize)
{
m_nFetchSize = _nSize;
if(!m_pMatrix)
m_pMatrix = new ORowSetMatrix(_nSize);
else
{
m_pMatrix->clear();
m_pMatrix->resize(_nSize);
}
m_aMatrixIter = m_pMatrix->end();
m_aMatrixEnd = m_pMatrix->end();
2000-09-29 14:23:36 +00:00
m_pInsertMatrix = new ORowSetMatrix(1); // a little bit overkill but ??? :-)
m_aInsertRow = m_pInsertMatrix->end();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// OComponentHelper
void SAL_CALL ORowSetCache::disposing(void)
{
}
// -------------------------------------------------------------------------
// ::com::sun::star::lang::XEventListener
void SAL_CALL ORowSetCache::disposing( const ::com::sun::star::lang::EventObject& Source ) throw(RuntimeException)
{
}
// -------------------------------------------------------------------------
// XCloseable
void SAL_CALL ORowSetCache::close( ) throw(SQLException, RuntimeException)
{
}
// -------------------------------------------------------------------------
// XResultSetMetaDataSupplier
Reference< XResultSetMetaData > SAL_CALL ORowSetCache::getMetaData( ) throw(SQLException, RuntimeException)
{
return m_xMetaData;
}
// -------------------------------------------------------------------------
// ::com::sun::star::sdbcx::XColumnsSupplier
Reference< ::com::sun::star::container::XNameAccess > SAL_CALL ORowSetCache::getColumns( ) throw(RuntimeException)
{
return Reference< ::com::sun::star::container::XNameAccess >();
}
// -------------------------------------------------------------------------
// XRow
sal_Bool SAL_CALL ORowSetCache::wasNull( ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
return (*(*m_aMatrixIter))[m_nLastColumnIndex].isNull();
}
// -------------------------------------------------------------------------
::rtl::OUString SAL_CALL ORowSetCache::getString( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
::rtl::OUString aRet;
2000-09-29 14:23:36 +00:00
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::getBoolean( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
sal_Int8 SAL_CALL ORowSetCache::getByte( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
sal_Int16 SAL_CALL ORowSetCache::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetCache::getInt( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
sal_Int64 SAL_CALL ORowSetCache::getLong( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
float SAL_CALL ORowSetCache::getFloat( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
double SAL_CALL ORowSetCache::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
Sequence< sal_Int8 > SAL_CALL ORowSetCache::getBytes( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
::com::sun::star::util::Date SAL_CALL ORowSetCache::getDate( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
::com::sun::star::util::Time SAL_CALL ORowSetCache::getTime( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
::com::sun::star::util::DateTime SAL_CALL ORowSetCache::getTimestamp( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
return (*(*m_aMatrixIter))[m_nLastColumnIndex];
}
// -------------------------------------------------------------------------
Reference< ::com::sun::star::io::XInputStream > SAL_CALL ORowSetCache::getBinaryStream( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
2000-10-11 10:21:40 +00:00
return new ::comphelper::SequenceInputStream((*(*m_aMatrixIter))[m_nLastColumnIndex].getSequence());
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< ::com::sun::star::io::XInputStream > SAL_CALL ORowSetCache::getCharacterStream( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"Iterator is equal end()");
m_nLastColumnIndex = columnIndex;
2000-10-11 10:21:40 +00:00
return new ::comphelper::SequenceInputStream((*(*m_aMatrixIter))[m_nLastColumnIndex].getSequence());
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Any SAL_CALL ORowSetCache::getObject( sal_Int32 columnIndex, const Reference< ::com::sun::star::container::XNameAccess >& typeMap ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
return Any();
}
// -------------------------------------------------------------------------
Reference< XRef > SAL_CALL ORowSetCache::getRef( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
return Reference< XRef >();
}
// -------------------------------------------------------------------------
Reference< XBlob > SAL_CALL ORowSetCache::getBlob( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
return Reference< XBlob >();
}
// -------------------------------------------------------------------------
Reference< XClob > SAL_CALL ORowSetCache::getClob( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
return Reference< XClob >();
}
// -------------------------------------------------------------------------
Reference< XArray > SAL_CALL ORowSetCache::getArray( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
return Reference< XArray >();
}
// -------------------------------------------------------------------------
// ::com::sun::star::sdbcx::XRowLocate
Any SAL_CALL ORowSetCache::getBookmark( ) throw(SQLException, RuntimeException)
{
if(m_bAfterLast)
throw FunctionSequenceException(m_xSet.get());
OSL_ENSHURE((*m_aMatrixIter).isValid(),"ORowSetCache::getBookmark: Row not valid!");
switch((*(*m_aMatrixIter))[0].getTypeKind())
{
case DataType::TINYINT:
case DataType::SMALLINT:
case DataType::INTEGER:
return makeAny((sal_Int32)(*(*m_aMatrixIter))[0]);
break;
default:
if((*(*m_aMatrixIter))[0].isNull())
(*(*m_aMatrixIter))[0] = m_pCacheSet->getBookmark(*m_aMatrixIter);
return (*(*m_aMatrixIter))[0].getAny();
}
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
if(m_pCacheSet->moveToBookmark(bookmark))
{
m_bDeleted = m_bBeforeFirst = sal_False;
2000-09-18 23:16:46 +00:00
m_nPosition = m_pCacheSet->getRow();
if(m_bRowCountFinal)
{
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
if(m_bAfterLast)
m_nPosition = 0;//m_nRowCount;
}
if(!m_bAfterLast)
{
moveWindow();
if(m_bRowCountFinal) // check again
{
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
if(m_bAfterLast)
m_nPosition = 0;//m_nRowCount;
}
if(!m_bAfterLast)
m_aMatrixIter = m_pMatrix->begin() + (m_nPosition - m_nStartPos) - 1; // must be -1
else
m_aMatrixIter = m_pMatrix->end();
}
else
m_aMatrixIter = m_pMatrix->end();
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
2000-09-29 14:23:36 +00:00
2000-09-18 23:16:46 +00:00
return m_aMatrixIter != m_pMatrix->end() && (*m_aMatrixIter).isValid();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(SQLException, RuntimeException)
{
sal_Bool bRet;
if(bRet = moveToBookmark(bookmark))
{
m_nPosition = m_pCacheSet->getRow() + rows;
absolute(m_nPosition);
// for(sal_Int32 i=0;i<rows && m_aMatrixIter != m_pMatrix->end();++i,++m_aMatrixIter) ;
bRet = m_aMatrixIter != m_pMatrix->end() && (*m_aMatrixIter).isValid();
}
2000-09-29 14:23:36 +00:00
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetCache::compareBookmarks( const Any& first, const Any& second ) throw(SQLException, RuntimeException)
{
return m_pCacheSet->compareBookmarks(first,second);
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::hasOrderedBookmarks( ) throw(SQLException, RuntimeException)
{
return m_pCacheSet->hasOrderedBookmarks();
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetCache::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeException)
{
ORowSetValueCompare aCmp(bookmark);
return ::std::count_if(m_pMatrix->begin(),m_pMatrix->end(),aCmp);
}
// -------------------------------------------------------------------------
// XRowUpdate
void SAL_CALL ORowSetCache::updateNull( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex].setNull();
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = (sal_Int32)x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = (sal_Int32)x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex].setFromDouble(x,m_xMetaData->getColumnType(columnIndex));
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateBytes( sal_Int32 columnIndex, const Sequence< sal_Int8 >& x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateTimestamp( sal_Int32 columnIndex, const ::com::sun::star::util::DateTime& x ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
if(m_bAfterLast || columnIndex >= (*m_aInsertRow)->size())
2000-09-18 23:16:46 +00:00
throw FunctionSequenceException(m_xSet.get());
::osl::MutexGuard aGuard( m_aColumnsMutex );
2000-09-29 14:23:36 +00:00
(*(*m_aInsertRow))[columnIndex].setBound(sal_True);
(*(*m_aInsertRow))[columnIndex] = x;
(*(*m_aInsertRow))[columnIndex].setModified();
2000-09-18 23:16:46 +00:00
m_bModified = sal_True;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateBinaryStream( sal_Int32 columnIndex, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(SQLException, RuntimeException)
{
// (*(*m_aMatrixIter))[columnIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateCharacterStream( sal_Int32 columnIndex, const Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ) throw(SQLException, RuntimeException)
{
// (*(*m_aMatrixIter))[columnIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateObject( sal_Int32 columnIndex, const Any& x ) throw(SQLException, RuntimeException)
{
// (*(*m_aMatrixIter))[columnIndex] = x;
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateNumericObject( sal_Int32 columnIndex, const Any& x, sal_Int32 scale ) throw(SQLException, RuntimeException)
{
// (*(*m_aMatrixIter))[columnIndex] = x;
}
// -------------------------------------------------------------------------
2000-11-07 12:19:27 +00:00
//void ORowSetCache::readForward()
//{
// // we have to read one row before to enshure that we know when we are on last row
// ++m_nPosition;
// moveWindow();
// --m_nPosition;
// moveWindow();
//}
// -----------------------------------------------------------------------------
2000-09-18 23:16:46 +00:00
// XResultSet
sal_Bool SAL_CALL ORowSetCache::next( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(isAfterLast())
return sal_False;
m_bBeforeFirst = sal_False;
++m_nPosition;
moveWindow();
2000-11-07 12:19:27 +00:00
// readForward();
2000-09-18 23:16:46 +00:00
m_aMatrixIter = m_pMatrix->begin() + m_nPosition - m_nStartPos -1; // -1 because rows start at zero
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
if(m_bRowCountFinal)
{
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
if(m_bAfterLast)
m_nPosition = 0;//m_nRowCount;
}
return !m_bAfterLast;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::isBeforeFirst( ) throw(SQLException, RuntimeException)
{
// return !m_nPosition;
return m_bBeforeFirst;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::isAfterLast( ) throw(SQLException, RuntimeException)
{
// return m_pCacheSet->isAfterLast();
return m_bRowCountFinal ? m_bAfterLast : m_pCacheSet->isAfterLast();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::isFirst( ) throw(SQLException, RuntimeException)
{
return m_nPosition == 1; // ask resultset for
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::isLast( ) throw(SQLException, RuntimeException)
{
2000-11-15 14:57:40 +00:00
return m_bRowCountFinal ? (m_nPosition==m_nRowCount) : m_pCacheSet->isLast();
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::beforeFirst( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
m_bAfterLast = m_bLast = sal_False;
m_nPosition = 0;
m_bBeforeFirst = sal_True;
2000-09-18 23:16:46 +00:00
m_pCacheSet->beforeFirst();
moveWindow();
m_aMatrixIter = m_pMatrix->end();
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::afterLast( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
m_bBeforeFirst = m_bLast = sal_False;
m_bAfterLast = sal_True;
m_pCacheSet->last();
if(!m_bRowCountFinal)
{
m_bRowCountFinal = sal_True;
m_nRowCount = m_pCacheSet->getRow();// + 1 removed
}
m_pCacheSet->afterLast();
m_nPosition = 0;
m_aMatrixIter = m_pMatrix->end();
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool ORowSetCache::fillMatrix(sal_Int32 _nNewStartPos,sal_Int32 _nNewEndPos)
{
2000-11-07 12:19:27 +00:00
// fill the whole window with new data
2000-09-18 23:16:46 +00:00
ORowSetMatrix::iterator aIter = m_pMatrix->begin();
2000-11-07 12:19:27 +00:00
sal_Bool bCheck = m_pCacheSet->absolute(_nNewStartPos); // -1 no need to
2000-09-18 23:16:46 +00:00
for(sal_Int32 i=_nNewStartPos;i<_nNewEndPos;++i,++aIter)
{
if(bCheck)
{
if(!aIter->isValid())
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
2000-12-14 10:41:19 +00:00
m_pCacheSet->fillValueRow(*aIter,i);
2000-09-18 23:16:46 +00:00
}
else
{ // there are no more rows found so we can fetch some before start
if(!m_bRowCountFinal)
{
m_nRowCount = m_pCacheSet->getRow(); // here we have the row count
m_bRowCountFinal = sal_True;
}
ORowSetMatrix::iterator aEnd = aIter;
_nNewStartPos -= _nNewEndPos - i;
bCheck = m_pCacheSet->absolute(_nNewStartPos--);
sal_Int32 nPos = _nNewStartPos+1;
2000-09-18 23:16:46 +00:00
for(;bCheck && aIter != m_pMatrix->end();++aIter)
{
if(bCheck)
{
if(!aIter->isValid())
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
m_pCacheSet->fillValueRow(*aIter,nPos++);
2000-09-18 23:16:46 +00:00
}
bCheck = m_pCacheSet->next();
}
::std::rotate(m_pMatrix->begin(),aEnd,m_pMatrix->end());
break;
}
bCheck = m_pCacheSet->next();
}
m_nStartPos = _nNewStartPos;
2000-11-07 12:19:27 +00:00
// we have to read one row forward to enshure that we know when we are on last row
// but only when we don't know it already
if(!m_bRowCountFinal)
{
if(!m_pCacheSet->next())
{
if(m_pCacheSet->previous()) // because we stand after the last row
m_nRowCount = m_pCacheSet->getRow(); // here we have the row count
m_bRowCountFinal = sal_True;
}
}
2000-09-18 23:16:46 +00:00
return bCheck;
}
// -------------------------------------------------------------------------
sal_Bool ORowSetCache::moveWindow()
{
sal_Bool bRet = sal_True;
sal_Int32 nNewStartPos = (m_nPosition-m_nFetchSize*0.5);
// sal_Int32 nNewEndPos = (m_nPosition+m_nFetchSize*0.5);
sal_Int32 nNewEndPos = nNewStartPos + m_nFetchSize;
if(m_nPosition <= m_nStartPos)
{ // the window is behind the new start pos
if(!m_nStartPos)
return sal_False;
// the new position should be the nPos - nFetchSize/2
if(nNewEndPos >= m_nStartPos)
{ // but the two regions are overlapping
// fill the rows behind the new end
ORowSetMatrix::iterator aEnd; // the iterator we need for rotate
ORowSetMatrix::iterator aIter; // the iterator we fill with new values
sal_Bool bCheck = sal_True;
if(nNewStartPos < 1)
{
bCheck = m_pCacheSet->first();
2000-12-14 10:41:19 +00:00
// aEnd = m_pMatrix->begin() + (sal_Int32)(m_nFetchSize*0.5);
aEnd = m_pMatrix->begin() + nNewEndPos - m_nStartPos - nNewStartPos;
2000-09-18 23:16:46 +00:00
aIter = aEnd;
2000-12-14 10:41:19 +00:00
m_nStartPos = 0;
2000-09-18 23:16:46 +00:00
}
else
{
aEnd = m_pMatrix->begin() + (nNewEndPos - m_nStartPos);
aIter = m_pMatrix->begin() + (nNewEndPos - m_nStartPos);
bCheck = m_pCacheSet->absolute(nNewStartPos+1);
m_nStartPos = nNewStartPos;
}
if(bCheck)
{
sal_Int32 nPos = m_nStartPos+1;
2000-09-18 23:16:46 +00:00
for(; aIter != m_pMatrix->end() && bCheck;)
{
if(!aIter->isValid())
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
m_pCacheSet->fillValueRow(*aIter++,nPos++);
2000-09-18 23:16:46 +00:00
bCheck = m_pCacheSet->next();
}
::std::rotate(m_pMatrix->begin(),aEnd,m_pMatrix->end());
}
else
{ // normaly this should never happen
return sal_False;
}
}
else
{// no rows can be reused so fill again
if(nNewStartPos < 1) // special case
{
m_nStartPos = 0;
2000-12-14 10:41:19 +00:00
m_pCacheSet->beforeFirst();
2000-09-18 23:16:46 +00:00
sal_Bool bCheck;
ORowSetMatrix::iterator aIter = m_pMatrix->begin();
for(sal_Int32 i=0;i<m_nFetchSize;++i,++aIter)
{
if(bCheck = m_pCacheSet->next())
{
if(!aIter->isValid())
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
2000-12-14 10:41:19 +00:00
m_pCacheSet->fillValueRow(*aIter,i+1);
2000-09-18 23:16:46 +00:00
}
else
*aIter = NULL;
}
}
else
bRet = fillMatrix(nNewStartPos,nNewEndPos);
}
}
else if(m_nPosition > m_nStartPos)
2000-11-07 12:19:27 +00:00
{ // the new start pos is above the startpos of the window
2000-09-18 23:16:46 +00:00
if(m_nPosition <= (m_nStartPos+m_nFetchSize))
{ // position in window
m_aMatrixIter = m_pMatrix->begin() + m_nPosition - m_nStartPos -1;
if(!m_aMatrixIter->isValid())
{
2000-11-07 12:19:27 +00:00
sal_Bool bOk;
if(bOk = m_pCacheSet->absolute(m_nPosition))
2000-09-18 23:16:46 +00:00
{
*m_aMatrixIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
m_pCacheSet->fillValueRow(*m_aMatrixIter,m_nPosition);
2000-11-07 12:19:27 +00:00
// we have to read one row forward to enshure that we know when we are on last row
// but only when we don't know it already
if(!m_bRowCountFinal && (bOk = m_pCacheSet->absolute(m_nPosition+1)))
m_nRowCount = max(sal_Int32(m_nPosition+1),m_nRowCount);
2000-09-18 23:16:46 +00:00
}
2000-11-07 12:19:27 +00:00
if(!bOk)
2000-09-18 23:16:46 +00:00
{
if(!m_bRowCountFinal)
{
2000-10-05 13:52:16 +00:00
if(m_pCacheSet->previous()) // because we stand after the last row
m_nRowCount = m_pCacheSet->getRow();// + 1 removed
else
m_nRowCount = 0;
2000-09-18 23:16:46 +00:00
m_bRowCountFinal = sal_True;
}
}
}
}
else if(nNewStartPos < (m_nStartPos+m_nFetchSize))
{ // position behind window but the region is overlapping
// the rows from begin() to (begin + nNewStartPos - m_nStartPos) can be refilled with the new rows
// the rows behind this can be reused
ORowSetMatrix::iterator aIter = m_pMatrix->begin();
ORowSetMatrix::iterator aEnd = m_pMatrix->begin() + nNewStartPos - m_nStartPos -1;
2000-10-25 06:32:52 +00:00
sal_Bool bCheck = m_pCacheSet->absolute(m_nStartPos+m_nFetchSize);
sal_Int32 nPos = m_nStartPos+m_nFetchSize;
2000-09-18 23:16:46 +00:00
for(; bCheck && aIter != aEnd;)
{
if(bCheck = m_pCacheSet->next()) // resultset stands on right position
{
if(!aIter->isValid())
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
m_pCacheSet->fillValueRow(*aIter++,++nPos);
2000-09-18 23:16:46 +00:00
}
}
2000-11-07 12:19:27 +00:00
// we have to read one row forward to enshure that we know when we are on last row
// but only when we don't know it already
sal_Bool bOk = sal_True;
if(bCheck && !m_bRowCountFinal)
bOk = m_pCacheSet->next();
2000-09-18 23:16:46 +00:00
// bind end to front
if(bCheck)
{ // rotate the end to the front
::std::rotate(m_pMatrix->begin(),aIter,m_pMatrix->end());
m_nStartPos = nNewStartPos - 1; // must be -1
2000-11-07 12:19:27 +00:00
// now I can say how many rows we have
if(!bOk)
{
m_pCacheSet->previous(); // because we stand after the last row
m_nRowCount = nPos; // here we have the row count
2000-11-07 12:19:27 +00:00
m_bRowCountFinal = sal_True;
}
2000-09-18 23:16:46 +00:00
}
else
{ // the end was reached before end() so we can set the start before nNewStartPos
2000-10-25 06:32:52 +00:00
m_nStartPos += (aIter - m_pMatrix->begin());
2000-09-18 23:16:46 +00:00
::std::rotate(m_pMatrix->begin(),aIter,m_pMatrix->end());
if(!m_bRowCountFinal)
{
m_pCacheSet->previous(); // because we stand after the last row
m_nRowCount = max(m_nRowCount,m_pCacheSet->getRow()); // here we have the row count
2000-09-18 23:16:46 +00:00
m_bRowCountFinal = sal_True;
}
// TODO check
2000-10-25 06:32:52 +00:00
// m_nStartPos = (nNewStartPos+m_nRowCount) - m_nFetchSize ;
if(m_nStartPos < 0)
m_nStartPos = 0;
2000-09-18 23:16:46 +00:00
}
2000-10-25 06:32:52 +00:00
// here we need only to check if the begining row is valid. If not we have to fetch it.
2000-09-18 23:16:46 +00:00
if(!m_pMatrix->begin()->isValid())
{
aIter = m_pMatrix->begin();
nPos = m_nStartPos;
bCheck = m_pCacheSet->absolute(m_nStartPos);
2000-09-18 23:16:46 +00:00
for(; !aIter->isValid() && bCheck;++aIter)
{
if(bCheck = m_pCacheSet->next()) // resultset stands on right position
{
*aIter = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
m_pCacheSet->fillValueRow(*aIter,++nPos);
2000-09-18 23:16:46 +00:00
}
}
}
}
else // no rows can be reused so fill again
bRet = fillMatrix(nNewStartPos,nNewEndPos);
}
if(!m_bRowCountFinal)
m_nRowCount = max(m_nPosition,m_nRowCount);
2000-10-25 06:32:52 +00:00
OSL_ENSHURE(m_nStartPos >= 0,"ORowSetCache::moveWindow: m_nStartPos is less than 0!");
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::first( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
// first move to the first row
// then check if the cache window is at the begining
// when not postionize the window and fill it with data
// smart moving of the window -> clear only the rows whom are out of range
sal_Bool bRet = m_pCacheSet->first();
if(bRet)
{
m_bBeforeFirst = m_bAfterLast = m_bLast = sal_False;
m_nPosition = 1;
2000-09-18 23:16:46 +00:00
moveWindow();
m_aMatrixIter = m_pMatrix->begin();
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
else
m_aMatrixIter = m_pMatrix->end();
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::last( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
sal_Bool bRet = m_pCacheSet->last();
if(bRet)
{
m_bBeforeFirst = m_bAfterLast = sal_False;
if(!m_bRowCountFinal)
{
m_bRowCountFinal = sal_True;
m_nRowCount = m_nPosition = m_pCacheSet->getRow(); // not + 1
}
m_bLast = sal_True;
2000-10-05 13:52:16 +00:00
m_nPosition = m_pCacheSet->getRow();
2000-09-18 23:16:46 +00:00
moveWindow();
// we have to repositioning because moveWindow can modify the cache
m_pCacheSet->last();
if(m_nPosition > m_nFetchSize)
m_aMatrixIter = m_pMatrix->end() -1;
else
m_aMatrixIter = m_pMatrix->begin() + m_nPosition - 1;
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
else
m_aMatrixIter = m_pMatrix->end();
2000-09-18 23:16:46 +00:00
#ifdef DEBUG
if(bRet)
{
OSL_ENSHURE((*m_aMatrixIter).isValid(),"ORowSetCache::last: Row not valid!");
}
#endif
2000-09-29 14:23:36 +00:00
2000-09-18 23:16:46 +00:00
return bRet;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL ORowSetCache::getRow( ) throw(SQLException, RuntimeException)
{
if(isBeforeFirst() || isAfterLast())
return 0;
return m_nPosition;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::absolute( sal_Int32 row ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(!row )
throw SQLException();
if(row < 0)
{
if(m_bRowCountFinal || last())
{
m_nPosition = m_nRowCount + row; // + row because row is negative
if(m_nPosition < 1)
{
m_bBeforeFirst = sal_True;
m_bAfterLast = m_bFirst = m_bLast = sal_False;
m_aMatrixIter = m_pMatrix->end();
}
else
{
m_bBeforeFirst = sal_False;
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
moveWindow();
m_aMatrixIter = m_pMatrix->begin() + (m_nPosition - m_nStartPos) - 1; // if row == -1 that means it stands on the last
}
}
else
m_aMatrixIter = m_pMatrix->end();
}
else
{
m_nPosition = row;
// the position flags
m_bBeforeFirst = sal_False;
if(m_bRowCountFinal)
{
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
if(m_bAfterLast)
m_nPosition = 0;//m_nRowCount;
}
if(!m_bAfterLast)
{
moveWindow();
if(m_bRowCountFinal) // check again
{
m_bAfterLast = m_nPosition > m_nRowCount;
m_bLast = m_nPosition == m_nRowCount;
if(m_bAfterLast)
m_nPosition = 0;//m_nRowCount;
}
2000-10-25 06:32:52 +00:00
if(!m_bAfterLast)
m_aMatrixIter = m_pMatrix->begin() + (m_nPosition - m_nStartPos) - 1; // must be -1
else
m_aMatrixIter = m_pMatrix->end();
2000-09-18 23:16:46 +00:00
}
else
m_aMatrixIter = m_pMatrix->end();
}
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
return !(m_bAfterLast || m_bBeforeFirst);
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::relative( sal_Int32 rows ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(!rows)
return sal_True;
if(m_bBeforeFirst || (m_bRowCountFinal && m_bAfterLast))
throw SQLException();
if(!(m_nPosition + rows))
return !(m_bBeforeFirst = sal_True);
sal_Bool bErg = absolute(m_nPosition + rows);
2000-09-29 14:23:36 +00:00
2000-09-18 23:16:46 +00:00
return bErg && !isAfterLast() && !isBeforeFirst();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::previous( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(isBeforeFirst())
return sal_False;
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// m_bInserted = sal_False;
2000-09-18 23:16:46 +00:00
if(m_bAfterLast)
return last();
m_bAfterLast = sal_False;
--m_nPosition;
moveWindow();
m_aMatrixIter = m_pMatrix->begin() + m_nPosition - m_nStartPos -1; // must be -1
if(m_bRowCountFinal)
{
m_bLast = m_nRowCount == m_nPosition;
m_bAfterLast = m_nPosition > m_nRowCount;
}
if(!m_nPosition)
{
m_bBeforeFirst = sal_True;
m_aMatrixIter = m_pMatrix->end();
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
return sal_False;
}
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
return (*m_aMatrixIter).isValid();
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::refreshRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(isAfterLast())
throw SQLException();
2000-09-29 14:23:36 +00:00
OSL_ENSHURE(m_aMatrixIter != m_pMatrix->end(),"refreshRow() called for invalid row!");
m_pCacheSet->fillValueRow(*m_aMatrixIter,m_nPosition);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::rowUpdated( ) throw(SQLException, RuntimeException)
{
return m_pCacheSet->rowUpdated();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::rowInserted( ) throw(SQLException, RuntimeException)
{
return m_pCacheSet->rowInserted();
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ORowSetCache::rowDeleted( ) throw(SQLException, RuntimeException)
{
// return m_pCacheSet->rowDeleted();
return m_bDeleted;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
Reference< XInterface > SAL_CALL ORowSetCache::getStatement( ) throw(SQLException, RuntimeException)
{
return m_pCacheSet->getStatement();
}
// -------------------------------------------------------------------------
// XResultSetUpdate
void SAL_CALL ORowSetCache::insertRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
if(!m_bInserted || !m_aInsertRow->isValid())
2000-09-18 23:16:46 +00:00
throw SQLException();
2000-09-29 14:23:36 +00:00
m_pCacheSet->insertRow(*m_aInsertRow,m_aUpdateTable);
2000-09-29 14:23:36 +00:00
if(rowInserted())
{
++m_nRowCount;
moveToBookmark((*(*m_aInsertRow))[0].makeAny());
m_bAfterLast = m_bBeforeFirst = sal_False;
2000-09-29 14:23:36 +00:00
}
m_bNew = sal_False;
m_bModified = sal_False;
m_bInserted = sal_False;
2000-09-29 14:23:36 +00:00
}
// -------------------------------------------------------------------------
void ORowSetCache::cancelInsert()
{
m_bNew = sal_False;
m_bModified = sal_False;
m_bInserted = sal_False;
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::updateRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(isAfterLast() || isBeforeFirst())
throw SQLException();
2000-09-29 14:23:36 +00:00
m_pCacheSet->updateRow(*m_aInsertRow,*m_aMatrixIter,m_aUpdateTable);
// if(m_pCacheSet->rowUpdated())
// *m_aMatrixIter = m_aInsertRow;
2000-09-18 23:16:46 +00:00
m_bModified = sal_False;
2000-09-29 14:23:36 +00:00
refreshRow( );
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::deleteRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(isAfterLast() || isBeforeFirst())
throw SQLException();
// m_pCacheSet->absolute(m_nPosition);
m_pCacheSet->deleteRow(*m_aMatrixIter,m_aUpdateTable);
if(m_bDeleted = m_pCacheSet->rowDeleted())
2000-09-18 23:16:46 +00:00
{
2000-09-29 14:23:36 +00:00
--m_nRowCount;
ORowSetMatrix::iterator aPos = m_pMatrix->begin() + m_nPosition - m_nStartPos - 1;
(*aPos) = NULL;
// (*m_pMatrix)[(m_nPosition - m_nStartPos)] = NULL; // set the deleted row to NULL
for(++aPos;aPos->isValid() && aPos != m_pMatrix->end();++aPos)
{
*(aPos-1) = *aPos;
(*aPos) = NULL;
}
m_aMatrixIter = m_pMatrix->end();
2000-09-18 23:16:46 +00:00
--m_nPosition;
2000-09-29 14:23:36 +00:00
if(!m_bNew)
m_aInsertRow = m_aMatrixIter;
2000-09-18 23:16:46 +00:00
}
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::cancelRowUpdates( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
m_pCacheSet->absolute(m_nPosition);
m_pCacheSet->fillValueRow(*m_aMatrixIter,m_nPosition);
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::moveToInsertRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
if(m_bInserted)
throw SQLException();
m_bNew = sal_True;
m_bInserted = sal_True;
m_bUpdated = m_bDeleted = m_bAfterLast = sal_False;
2000-09-29 14:23:36 +00:00
m_aInsertRow = m_pInsertMatrix->begin();
if(!m_aInsertRow->isValid())
*m_aInsertRow = new connectivity::ORowVector< ORowSetValue >(m_xMetaData->getColumnCount());
// we don't unbound the bookmark column
connectivity::ORowVector< ORowSetValue >::iterator aIter = (*m_aInsertRow)->begin()+1;
for(;aIter != (*m_aInsertRow)->end();++aIter)
{
aIter->setBound(sal_False);
aIter->setModified(sal_False);
2000-09-29 14:23:36 +00:00
aIter->setNull();
}
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::moveToCurrentRow( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aRowCountMutex );
2000-09-29 14:23:36 +00:00
// if(m_bInserted)
// {
// m_pCacheSet->moveToCurrentRow();
// m_bInserted = sal_False;
// }
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// XRowSet
void SAL_CALL ORowSetCache::execute( ) throw(SQLException, RuntimeException)
{
}
// -------------------------------------------------------------------------
// ::com::sun::star::util::XCancellable
void SAL_CALL ORowSetCache::cancel( ) throw(RuntimeException)
{
}
// -------------------------------------------------------------------------
// ::com::sun::star::sdbcx::XDeleteRows
Sequence< sal_Int32 > SAL_CALL ORowSetCache::deleteRows( const Sequence< Any >& rows ) throw(SQLException, RuntimeException)
{
2000-09-29 14:23:36 +00:00
// TODO impl. a better version which is faster than tis one
::osl::MutexGuard aGuard( m_aRowCountMutex );
Sequence< sal_Int32 > aRet(rows.getLength());
sal_Int32 *pRet = aRet.getArray();
const Any *pBegin = rows.getConstArray();
const Any *pEnd = pBegin + rows.getLength();
sal_Int32 nOldPosition;
for(;pBegin != pEnd;++pBegin,++pRet)
{
if(moveToBookmark(*pBegin))
{
nOldPosition = m_nPosition;
deleteRow();
*pRet = (nOldPosition != m_nPosition) ? 1 : 0;
nOldPosition = m_nPosition;
}
}
return aRet;
2000-09-18 23:16:46 +00:00
}
// -------------------------------------------------------------------------
// XWarningsSupplier
Any SAL_CALL ORowSetCache::getWarnings( ) throw(SQLException, RuntimeException)
{
return Any ();
}
// -------------------------------------------------------------------------
void SAL_CALL ORowSetCache::clearWarnings( ) throw(SQLException, RuntimeException)
{
}
// -------------------------------------------------------------------------
/*------------------------------------------------------------------------
$Log: not supported by cvs2svn $
2000-12-14 10:41:19 +00:00
Revision 1.17 2000/12/12 12:19:01 oj
#80933# change flush of attributes
2000-12-12 11:20:31 +00:00
Revision 1.16 2000/12/06 09:55:44 oj
#80219# correted deleterow(s) and remeber position
Revision 1.15 2000/11/22 14:56:33 oj
#80276# resolve some trouble with positioning
Revision 1.14 2000/11/15 15:57:40 oj
change for rowset
2000-11-15 14:57:40 +00:00
Revision 1.13 2000/11/14 13:28:20 oj
change for rowset when getRow returns 0
Revision 1.12 2000/11/10 16:05:41 oj
check for afterlast and before first
2000-11-10 15:05:41 +00:00
Revision 1.11 2000/11/10 14:17:54 oj
search for primarykey not only keys
2000-11-10 13:17:54 +00:00
Revision 1.10 2000/11/10 11:05:43 oj
bookmark error corrected
2000-11-10 10:05:43 +00:00
Revision 1.9 2000/11/07 13:19:27 oj
read one row forward because of isLast
2000-11-07 12:19:27 +00:00
Revision 1.8 2000/11/03 14:40:45 oj
some problems with refcount resolved
2000-11-03 13:42:50 +00:00
Revision 1.7 2000/10/25 07:30:24 oj
make strings unique for lib's
2000-10-25 06:32:52 +00:00
Revision 1.6 2000/10/17 10:18:12 oj
some changes for the rowset
2000-10-17 09:19:03 +00:00
Revision 1.5 2000/10/11 11:18:11 fs
replace unotools with comphelper
2000-10-11 10:21:40 +00:00
Revision 1.4 2000/10/05 14:52:16 oj
last changed
2000-10-05 13:52:16 +00:00
Revision 1.3 2000/10/04 13:34:40 oj
some changes for deleteRow and updateRow
Revision 1.2 2000/09/29 15:20:51 oj
rowset impl
2000-09-29 14:23:36 +00:00
Revision 1.1.1.1 2000/09/19 00:15:38 hr
initial import
2000-09-18 23:16:46 +00:00
Revision 1.2 2000/09/18 14:52:47 willem.vandorp
OpenOffice header added.
Revision 1.1 2000/09/01 15:21:04 oj
rowset addons
Revision 1.0 26.07.2000 12:37:41 oj
------------------------------------------------------------------------*/