os/persistentdata/persistentstorage/store/UBTREE/UB_STD.INL
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
inline TBtreeToken::TBtreeToken(TPageRef aFirst,TPageRef aRoot,TBtreeHeight aHeight)
sl@0
    17
	: iFirst(aFirst),iRoot(aRoot),iHeight(aHeight)
sl@0
    18
	{
sl@0
    19
	__ASSERT_DEBUG(aHeight<=KMaxBtreeHeight,User::Invariant());
sl@0
    20
	}
sl@0
    21
sl@0
    22
inline void TBtree::MarkIntact()
sl@0
    23
	{iStatus&=~EBroken;}
sl@0
    24
inline TBool TBtree::IsRoot(const TBtreePath& aPath) const
sl@0
    25
	{return aPath.End()+1==iHeight;}
sl@0
    26
inline const MBtreeNodeOrg* TBtree::NodeOrg(TBool aLeaf) const
sl@0
    27
	{if (aLeaf) return iLeafOrg; else return iIndexOrg;}
sl@0
    28
sl@0
    29
inline const TBtreeInlineLeafOrg::SNode* TBtreeInlineLeafOrg::Node(const TAny* aNode)
sl@0
    30
	{return (const SNode*)aNode;}
sl@0
    31
inline TBtreeInlineLeafOrg::SNode* TBtreeInlineLeafOrg::Node(TAny* aNode)
sl@0
    32
	{return (SNode*)aNode;}
sl@0
    33
inline const TUint8* TBtreeInlineLeafOrg::Entry(const SNode* aNode,TInt anEntry) const
sl@0
    34
	{return &aNode->iEntries[anEntry*iEntrySize];}
sl@0
    35
inline TUint8* TBtreeInlineLeafOrg::Entry(SNode* aNode,TInt anEntry) const
sl@0
    36
	{return &aNode->iEntries[anEntry*iEntrySize];}
sl@0
    37
sl@0
    38
inline const TBtreeInlineIndexOrg::SNode* TBtreeInlineIndexOrg::Node(const TAny* aNode)
sl@0
    39
	{return (const SNode*)aNode;}
sl@0
    40
inline TBtreeInlineIndexOrg::SNode* TBtreeInlineIndexOrg::Node(TAny* aNode)
sl@0
    41
	{return (SNode*)aNode;}
sl@0
    42
inline const TBtreeInlineIndexOrg::SEntry* TBtreeInlineIndexOrg::Entry(const SNode* aNode,TInt anEntry) const
sl@0
    43
	{return (const SEntry*)&aNode->iEntries[anEntry*iEntrySize];}
sl@0
    44
inline TBtreeInlineIndexOrg::SEntry* TBtreeInlineIndexOrg::Entry(SNode* aNode,TInt anEntry) const
sl@0
    45
	{return (SEntry*)&aNode->iEntries[anEntry*iEntrySize];}
sl@0
    46
inline TInt TBtreeInlineIndexOrg::KeySize() const
sl@0
    47
	{return iEntrySize-sizeof(TPageRef);}
sl@0
    48