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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Class CDbStoreDatabase
17 inline CStreamStore& CDbStoreDatabase::Store()
22 inline MDbStreamFilter* CDbStoreDatabase::Filter()
27 // Class TDbStoreIndexStats
28 inline TDbStoreIndexStats::TDbStoreIndexStats() :
34 inline TBool TDbStoreIndexStats::IsValid() const
36 return iRefresh>=ERefresh;
39 // Class CDbStoreIndexDef
40 inline void CDbStoreIndexDef::SetTokenId(TStreamId anId)
45 inline TStreamId CDbStoreIndexDef::TokenId() const
51 inline TInt TRecordSize::Clustering() const
56 inline TInt TRecordSize::InlineLimit() const
61 inline TInt TRecordSize::FixedFieldSize(TDbColType aType)
63 __ASSERT(aType>EDbColBit&&aType<EDbColText8);
64 return FieldSizes[aType];
68 inline void CDbStoreDef::SetTokenId(TStreamId anId)
73 inline TStreamId CDbStoreDef::TokenId() const
78 inline TInt CDbStoreDef::Clustering() const
80 return iInfo.Clustering();
83 inline TInt CDbStoreDef::InlineLimit() const
85 return iInfo.InlineLimit();
89 inline TClusterId ClusterId(TDbRecordId aRecordId)
91 return aRecordId.Value()>>4;
94 inline TInt RecordIndex(TDbRecordId aRecordId)
96 return aRecordId.Value()&0xfu;
99 inline TDbRecordId RecordId(TClusterId aId,TInt aIndex)
101 __ASSERT(TUint(aIndex)<16u);
102 return (aId<<4)+aIndex;
105 inline TClusterId ClusterId(TStreamId aStreamId)
107 return aStreamId.Value();
111 inline RClusterMap::RClusterMap()
113 __ASSERT(iMap==0 && iAlloc==0);
116 inline void RClusterMap::Close()
121 inline TClusterId RClusterMap::LastBound() const
126 inline void RClusterMap::Complete(TClusterId aLastCluster)
128 if (aLastCluster==iLastBound)
134 inline TBool RClusterMap::IsComplete() const
139 inline void RClusterMap::BindL(TClusterId aPrevious,TClusterId aCluster)
141 if (aPrevious==iLastBound)
147 // Class TClusterLinkCache
148 inline void TClusterLinkCache::Invalidate()
153 void TClusterLinkCache::Reset(TClusterId aBaseId)
155 *(iEnd=iMap)=aBaseId;
158 inline void TClusterLinkCache::Bind(TClusterId aPrevious,TClusterId aCluster,RClusterMap& aMap)
160 if (iEnd!=NULL && *iEnd==aPrevious)
167 inline CCluster::CCluster(CDbStoreDatabase& aDatabase) :
172 inline TBool CCluster::IsFull() const
174 return iMap[KMaxClustering]-iMap[0]>=KClusterLimit;
177 inline TClusterId CCluster::Id() const
182 inline const TClusterDes& CCluster::Des() const
187 // Class CClusterCache
188 inline CDbStoreDatabase& CClusterCache::Database()
193 inline CStreamStore& CClusterCache::Store()
195 return Database().Store();
198 // Class CDbStoreRecords
199 inline TClusterId CDbStoreRecords::Head() const
204 inline TInt CDbStoreRecords::Count() const
206 return iToken.iCount;
209 // Class CDbStoreTable
210 inline const CDbStoreDef& CDbStoreTable::Def() const
212 return STATIC_CAST(const CDbStoreDef&,CDbTable::Def());
215 inline CDbStoreDatabase& CDbStoreTable::Database()
217 return STATIC_CAST(CDbStoreDatabase&,CDbTable::Database());
220 inline CDbStoreRecords& CDbStoreTable::StoreRecordsL()
222 return STATIC_CAST(CDbStoreRecords&,CDbTable::RecordsL());
226 // Class CDbStoreCompression
227 inline void CDbStoreCompression::Inflate()
229 __ASSERT(iState==EDecoding);