Files
libreoffice/connectivity/source/drivers/dbase/DIndexIter.cxx
Oliver Bolte 1693734354 INTEGRATION: CWS pchfix02 (1.7.60); FILE MERGED
2006/09/01 17:22:03 kaib 1.7.60.1: #i68856# Added header markers and pch files
2006-09-17 01:22:28 +00:00

328 lines
10 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: DIndexIter.cxx,v $
*
* $Revision: 1.8 $
*
* last change: $Author: obo $ $Date: 2006-09-17 02:22:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 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
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_connectivity.hxx"
#ifndef _CONNECTIVITY_DBASE_INDEXITER_HXX_
#include "dbase/DIndexIter.hxx"
#endif
#ifndef _COM_SUN_STAR_SDB_SQLFILTEROPERATOR_HPP_
#include <com/sun/star/sdb/SQLFilterOperator.hpp>
#endif
using namespace ::com::sun::star::sdb;
using namespace connectivity;
using namespace connectivity::dbase;
using namespace connectivity::file;
using namespace ::com::sun::star::sdb;
//==================================================================
// OIndexIterator
//==================================================================
//------------------------------------------------------------------
OIndexIterator::~OIndexIterator()
{
// m_pIndex->UnLock();
m_pIndex->release();
}
//------------------------------------------------------------------
ULONG OIndexIterator::First()
{
return Find(TRUE);
}
//------------------------------------------------------------------
ULONG OIndexIterator::Next()
{
return Find(FALSE);
}
//------------------------------------------------------------------
ULONG OIndexIterator::Find(BOOL bFirst)
{
// ONDXIndex* m_pIndex = GetNDXIndex();
ULONG nRes = STRING_NOTFOUND;
// if (!m_pIndex->IsOpen())
// return nRes;
if (bFirst)
{
m_aRoot = m_pIndex->getRoot();
m_aCurLeaf = NULL;
}
if (!m_pOperator)
{
// Vorbereitung , auf kleinstes Element positionieren
if (bFirst)
{
ONDXPage* pPage = m_aRoot;
while (pPage && !pPage->IsLeaf())
pPage = pPage->GetChild(m_pIndex);
m_aCurLeaf = pPage;
m_nCurNode = NODE_NOTFOUND;
}
ONDXKey* pKey = GetNextKey();
nRes = pKey ? pKey->GetRecord() : STRING_NOTFOUND;
}
else if (m_pOperator->IsA(TYPE(OOp_ISNOTNULL)))
nRes = GetNotNull(bFirst);
else if (m_pOperator->IsA(TYPE(OOp_ISNULL)))
nRes = GetNull(bFirst);
else if (m_pOperator->IsA(TYPE(OOp_LIKE)))
nRes = GetLike(bFirst);
else if (m_pOperator->IsA(TYPE(OOp_COMPARE)))
nRes = GetCompare(bFirst);
return nRes;
}
//------------------------------------------------------------------
ONDXKey* OIndexIterator::GetFirstKey(ONDXPage* pPage, const OOperand& rKey)
{
// sucht den vorgegeben key
// Besonderheit: gelangt der Algorithmus ans Ende
// wird immer die aktuelle Seite und die Knotenposition vermerkt
// auf die die Bedingung <= zutrifft
// dieses findet beim Insert besondere Beachtung
// ONDXIndex* m_pIndex = GetNDXIndex();
OOp_COMPARE aTempOp(SQLFilterOperator::GREATER);
USHORT i = 0;
if (pPage->IsLeaf())
{
// im blatt wird die eigentliche Operation ausgefuehrt, sonst die temp. (>)
while (i < pPage->Count() && !m_pOperator->operate(&((*pPage)[i]).GetKey(),&rKey))
i++;
}
else
while (i < pPage->Count() && !aTempOp.operate(&((*pPage)[i]).GetKey(),&rKey))
i++;
ONDXKey* pFoundKey = NULL;
if (!pPage->IsLeaf())
{
// weiter absteigen
ONDXPagePtr aPage = (i==0) ? pPage->GetChild(m_pIndex)
: ((*pPage)[i-1]).GetChild(m_pIndex, pPage);
pFoundKey = aPage.Is() ? GetFirstKey(aPage, rKey) : NULL;
}
else if (i == pPage->Count())
{
pFoundKey = NULL;
}
else
{
pFoundKey = &(*pPage)[i].GetKey();
if (!m_pOperator->operate(pFoundKey,&rKey))
pFoundKey = NULL;
m_aCurLeaf = pPage;
m_nCurNode = pFoundKey ? i : i - 1;
}
return pFoundKey;
}
//------------------------------------------------------------------
ULONG OIndexIterator::GetCompare(BOOL bFirst)
{
ONDXKey* pKey = NULL;
// ONDXIndex* m_pIndex = GetNDXIndex();
sal_Int32 ePredicateType = PTR_CAST(file::OOp_COMPARE,m_pOperator)->getPredicateType();
if (bFirst)
{
// Vorbereitung , auf kleinstes Element positionieren
ONDXPage* pPage = m_aRoot;
switch (ePredicateType)
{
case SQLFilterOperator::NOT_EQUAL:
case SQLFilterOperator::LESS:
case SQLFilterOperator::LESS_EQUAL:
while (pPage && !pPage->IsLeaf())
pPage = pPage->GetChild(m_pIndex);
m_aCurLeaf = pPage;
m_nCurNode = NODE_NOTFOUND;
}
switch (ePredicateType)
{
case SQLFilterOperator::NOT_EQUAL:
while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand));
break;
case SQLFilterOperator::LESS:
while ( ( ( pKey = GetNextKey() ) != NULL ) && pKey->getValue().isNull());
break;
case SQLFilterOperator::LESS_EQUAL:
while ( ( pKey = GetNextKey() ) != NULL );
break;
case SQLFilterOperator::GREATER_EQUAL:
case SQLFilterOperator::EQUAL:
pKey = GetFirstKey(m_aRoot,*m_pOperand);
break;
case SQLFilterOperator::GREATER:
pKey = GetFirstKey(m_aRoot,*m_pOperand);
if ( !pKey )
while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand));
}
}
else
{
switch (ePredicateType)
{
case SQLFilterOperator::NOT_EQUAL:
while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand))
;
break;
case SQLFilterOperator::LESS:
case SQLFilterOperator::LESS_EQUAL:
case SQLFilterOperator::EQUAL:
if ( ( ( pKey = GetNextKey() ) == NULL ) || !m_pOperator->operate(pKey,m_pOperand))
{
pKey = NULL;
m_aCurLeaf = NULL;
}
break;
case SQLFilterOperator::GREATER_EQUAL:
case SQLFilterOperator::GREATER:
pKey = GetNextKey();
}
}
return pKey ? pKey->GetRecord() : STRING_NOTFOUND;
}
//------------------------------------------------------------------
ULONG OIndexIterator::GetLike(BOOL bFirst)
{
// ONDXIndex* m_pIndex = GetNDXIndex();
if (bFirst)
{
ONDXPage* pPage = m_aRoot;
while (pPage && !pPage->IsLeaf())
pPage = pPage->GetChild(m_pIndex);
m_aCurLeaf = pPage;
m_nCurNode = NODE_NOTFOUND;
}
ONDXKey* pKey;
while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand))
;
return pKey ? pKey->GetRecord() : STRING_NOTFOUND;
}
//------------------------------------------------------------------
ULONG OIndexIterator::GetNull(BOOL bFirst)
{
// ONDXIndex* m_pIndex = GetNDXIndex();
if (bFirst)
{
ONDXPage* pPage = m_aRoot;
while (pPage && !pPage->IsLeaf())
pPage = pPage->GetChild(m_pIndex);
m_aCurLeaf = pPage;
m_nCurNode = NODE_NOTFOUND;
}
ONDXKey* pKey;
if ( ( ( pKey = GetNextKey() ) == NULL ) || !pKey->getValue().isNull())
{
pKey = NULL;
m_aCurLeaf = NULL;
}
return pKey ? pKey->GetRecord() : STRING_NOTFOUND;
}
//------------------------------------------------------------------
ULONG OIndexIterator::GetNotNull(BOOL bFirst)
{
ONDXKey* pKey;
// ONDXIndex* m_pIndex = GetNDXIndex();
if (bFirst)
{
// erst alle NULL werte abklappern
for (ULONG nRec = GetNull(bFirst);
nRec != STRING_NOTFOUND;
nRec = GetNull(FALSE))
;
pKey = m_aCurLeaf.Is() ? &(*m_aCurLeaf)[m_nCurNode].GetKey() : NULL;
}
else
pKey = GetNextKey();
return pKey ? pKey->GetRecord() : STRING_NOTFOUND;
}
//------------------------------------------------------------------
ONDXKey* OIndexIterator::GetNextKey()
{
// ONDXIndex* m_pIndex = GetNDXIndex();
if (m_aCurLeaf.Is() && ((++m_nCurNode) >= m_aCurLeaf->Count()))
{
ONDXPage* pPage = m_aCurLeaf;
// naechste Seite suchen
while (pPage)
{
ONDXPage* pParentPage = pPage->GetParent();
if (pParentPage)
{
USHORT nPos = pParentPage->Search(pPage);
if (nPos != pParentPage->Count() - 1)
{ // Seite gefunden
pPage = (*pParentPage)[nPos+1].GetChild(m_pIndex,pParentPage);
break;
}
}
pPage = pParentPage;
}
// jetzt wieder zum Blatt
while (pPage && !pPage->IsLeaf())
pPage = pPage->GetChild(m_pIndex);
m_aCurLeaf = pPage;
m_nCurNode = 0;
}
return m_aCurLeaf.Is() ? &(*m_aCurLeaf)[m_nCurNode].GetKey() : NULL;
}