os/persistentdata/persistentstorage/store/UBTREE/UB_FIX.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "UB_STD.H"
    17 
    18 EXPORT_C TBtreeFixBase::TBtreeFixBase(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
    19 	: TBtree(aMode),iEntrySize(anEntrySize)
    20 	{
    21 	iLeafOrgFix.SetEntrySize(anEntrySize);
    22 	iIndexOrgFix.SetEntrySize(aKeySize);
    23 	}
    24 
    25 EXPORT_C TBtreeFixBase::TBtreeFixBase(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
    26 	: TBtree(aToken,aMode),iEntrySize(anEntrySize)
    27 	{
    28 	iLeafOrgFix.SetEntrySize(anEntrySize);
    29 	iIndexOrgFix.SetEntrySize(aKeySize);
    30 	}
    31 
    32 EXPORT_C void TBtreeFixBase::Connect(MPagePool *aPool,const MBtreeKey *aKey)
    33 /** Initalises the B-tree with a page pool and key handler.
    34 
    35 @param aPool Page pool to provide storage for the B-tree
    36 @param aKey Key handler for the B-tree */
    37 	{
    38 	TBtree::Connect(aPool,aKey,&iLeafOrgFix,&iIndexOrgFix);
    39 	}
    40 
    41 EXPORT_C TBool TBtreeFixBase::InsertL(TBtreePos& aPos,const TAny* anEntry,TAllowDuplicates aDup)
    42 /** Inserts an entry into the tree.
    43 
    44 @param aPos On return, the position of the entry inserted
    45 @param anEntry Pointer to the entry to insert
    46 @param aDup Flag to indicate whether duplicate entries are allowed in the tree
    47 @return True if successful, false if the entry was a duplicate and aDup was 
    48 set to ENoDuplicates */
    49 	{
    50 	return TBtree::InsertL(aPos,anEntry,iEntrySize,aDup);
    51 	}
    52 
    53 EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreePos& aPos,TAny* anEntry) const
    54 /** Gets the entry at the specified position.
    55 
    56 @param aPos Position of the entry to get
    57 @param anEntry Buffer into which to copy the entry. */
    58 	{
    59 	TBtree::ExtractAtL(aPos,anEntry,iEntrySize);
    60 	}
    61 
    62 EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreeMark& aMark,TAny* anEntry) const
    63 /** Gets the entry at the specified iterator position.
    64 
    65 @param aMark Position of the entry to get
    66 @param anEntry Buffer into which to copy the entry. */
    67 	{
    68 	TBtree::ExtractAtL(aMark,anEntry,iEntrySize);
    69 	}
    70