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.
20 void RClusterMap::InsertL( TClusterId aCluster, TClusterId aPrevious )
22 // insert the entry into the map
26 if ( iEntries == iAlloc )
27 { // ensure there is space
28 TInt size = iAlloc + EGranularity;
29 iMap = map = ( TIdPair* )User::ReAllocL( map, size * sizeof( TIdPair ) );
36 TInt m = ( l + r ) >> 1;
37 TClusterId id = map[ m ].iId;
38 __ASSERT( aCluster != id ); // not already present
45 TIdPair* e = map + iEntries++;
46 Mem::Move( p + 1, p, ( TUint8* )e - ( TUint8* )p );
48 p->iPreviousId = aPrevious;
51 RClusterMap::TIdPair* RClusterMap::At( TClusterId aCluster )
57 TInt m = ( l + r ) >> 1;
58 TClusterId id = iMap[ m ].iId;
61 else if ( aCluster > id )
69 void RClusterMap::ResetL( TClusterId aHeadCluster )
73 InsertL( aHeadCluster, KNullClusterId );
74 iLastMapped = iLastBound = aHeadCluster;
75 iSkipped = ESeparation - 1;
78 TBool RClusterMap::At( TClusterId aCluster, TClusterId& aPreviousCluster )
80 TIdPair* p = At( aCluster );
82 aPreviousCluster = p->iPreviousId;
83 else if ( aCluster == iLastBound )
84 aPreviousCluster = iLastMapped;
90 void RClusterMap::AddL( TClusterId aCluster )
92 __ASSERT( aCluster != KNullClusterId );
95 InsertL( aCluster, iLastMapped );
96 iLastMapped = aCluster;
97 iSkipped = ESeparation - 1;
99 iLastBound = aCluster;
102 void RClusterMap::DropL( TClusterId aCluster, TClusterId aNext )
104 // Cluster has been deleted, modify entry to contain the next cluster
105 // last cluster in table is never deleted
108 if ( aCluster == iLastBound )
110 TIdPair* entry = At( aCluster );
112 return; // not in the sparse map
113 // remove entry for cluster->prev
114 TClusterId prev = entry->iPreviousId;
115 Mem::Move( entry, entry + 1, ( TUint8* )( iMap + --iEntries ) - ( TUint8* )entry );
117 if ( aCluster == iLastMapped )
120 { // find the referring entry next->cluster
121 TIdPair* pnext = iMap;
122 while ( pnext->iPreviousId != aCluster )
125 __ASSERT( pnext < iMap + iEntries );
127 if ( pnext->iId == aNext )
128 { // referring entry is the next one => drop a link
129 pnext->iPreviousId = prev;
133 pnext->iPreviousId = aNext;
135 // add in new link to replace deleted one
136 InsertL( aNext, prev ); // will not fail allocation as space available
139 // Class TClusterLinkCache
141 void TClusterLinkCache::Add( TClusterId aCluster, RClusterMap& aMap )
143 // Add an entry to the cache
146 __ASSERT( iEnd != NULL );
148 __ASSERT( aMap.At( iMap[0], id ) );
150 TClusterId* p = iEnd;
151 if ( p == &iMap[ RClusterMap::ESeparation ] )
152 { // full, requires a shift down
153 for ( ; !aMap.At( *p, id ); --p )
155 __ASSERT( p > iMap );
157 __ASSERT( p > iMap );
158 __ASSERT( Has( id ) );
160 TClusterId* c = iMap;
170 void TClusterLinkCache::Add( const TClusterId* aFirst, const TClusterId* aLast )
172 // Add several linked TClusterIds
175 __ASSERT( iEnd != NULL );
177 TClusterId* p = iEnd;
178 while ( aFirst < aLast && p < &iMap[ RClusterMap::ESeparation ] )
183 void TClusterLinkCache::Drop( TClusterId aCluster, TClusterId aNext )
185 // Drop the item if it is in the cache
188 TClusterId* p = iEnd;
191 if ( *p == aCluster )
200 } while ( *--p != aCluster );
201 __ASSERT( *( p + 1 ) == aNext );
202 for ( ; p < iEnd; ++p )
207 TBool TClusterLinkCache::Has( TClusterId aCluster ) const
209 // Check if the cluster id is in the cache
210 // iEnd==0 is a valid state (empty cache)
213 for ( const TClusterId* p = iEnd; p >= iMap; )
215 if ( *p-- == aCluster )
221 TBool TClusterLinkCache::At( TClusterId aCluster, TClusterId& aPrevious ) const
223 // If aCluster is in the cache, return the previous cluster in aPrevious
224 // iEnd==0 is a valid state (empty cache)
227 for ( const TClusterId* p = iEnd; p > iMap; )
229 if ( *p-- == aCluster )
240 void TClusterDes::InternalizeL(RReadStream& aStream)
243 iMembership=aStream.ReadUint16L();
246 void TClusterDes::ExternalizeL(RWriteStream& aStream) const
249 aStream.WriteUint16L(iMembership);
253 // Class CClusterCache
255 inline CClusterCache::CClusterCache(CDbStoreDatabase& aDatabase)
256 : iDatabase(aDatabase),iCache(_FOFF(CCluster,iLink))
259 CClusterCache* CClusterCache::NewL(CDbStoreDatabase& aDatabase)
261 CClusterCache* self=new(ELeave) CClusterCache(aDatabase);
262 CleanupStack::PushL(self);
263 // Add the initial clusters
264 for(TInt i=0;i<(EMaxClusters/2);++i)
272 LOCAL_C void DeleteCluster(CCluster* aCluster)
274 // helper function which matches the Apply() prototype
280 CClusterCache::~CClusterCache()
282 Apply(DeleteCluster);
285 LOCAL_C void DiscardCluster(CCluster* aCluster)
287 // helper function which matches the Apply() prototype
293 void CClusterCache::Discard()
295 // discard the current changes in all clusters
298 Apply(DiscardCluster);
301 LOCAL_C void FlushClusterL(CCluster* aCluster)
303 // helper function which matches the Apply() prototype
309 void CClusterCache::FlushL()
311 // Flush all the clusters in the cache
314 Apply(FlushClusterL);
317 CCluster* CClusterCache::Cluster(TClusterId aCluster)
319 // Look for a cluster in the cache
322 TDblQueIter<CCluster> iter(iCache);
323 for (CCluster* cluster;(cluster=iter++)!=0;)
325 if (cluster->Id()==aCluster)
331 CCluster& CClusterCache::ClusterL(TClusterId aCluster)
333 // Get a cluster from the cache or store and move it to the top of the cache
334 // Track hits to the two clusters which most recently dropped out of the cache
337 CCluster* cluster=Cluster(aCluster); // check if it is cached
340 { // get an empty cluster and read it
341 if (aCluster==iCachePlus1)
342 { // the cluster has recently been discarded
343 iCachePlus1=iCachePlus2; // re-sequence the cache follow-on
346 else if (aCluster==iCachePlus2)
347 iFollowOnHits|=0x2; // the cluster has recently been discarded
348 cluster=&NewClusterL();
349 cluster->ReadL(aCluster);
351 return Touch(*cluster);
354 CCluster& CClusterCache::ClusterL()
356 // Get a new (empty) cluster from the cache and move it to the top
359 return Touch(NewClusterL());
362 CCluster& CClusterCache::Touch(CCluster& aCluster)
364 // Move a cluster to the top of the LRU list
367 aCluster.iLink.Deque();
368 iCache.AddFirst(aCluster);
372 CCluster& CClusterCache::AddClusterL()
374 // Add a new cluster to the cache
377 __ASSERT(iClusters<EMaxClusters);
378 CCluster& cluster=*CCluster::NewL(Database());
379 iCache.AddLast(cluster);
381 // move +2 hits into +1 zone and clear +1 hits
382 iFollowOnHits=TUint8((TUint(iFollowOnHits)>>1)&0x55);
386 CCluster& CClusterCache::NewClusterL()
388 // Get an empty cluster from the cache, but do not touch it
389 // If the hit detector has registered enough near-misses the cache is expanded
390 // by adding another cluster object
393 CCluster* cluster=Cluster(KNullClusterId); // look for a discarded cluster first
396 // check for cache expansion
397 TUint detected=iFollowOnHits;
398 if ((detected&(detected-1))!=0 && iClusters<EMaxClusters)
399 return AddClusterL();
400 // retire the last cache entry
401 cluster=iCache.Last();
403 iCachePlus2=iCachePlus1;
404 iCachePlus1=cluster->Id();
408 void CClusterCache::Apply(void (*aFunc)(CCluster*))
410 // Apply the function paramater to all clusters in the cache
411 // This function may leave <==> the parameter function may leave
414 TDblQueIter<CCluster> iter(iCache);
415 for (CCluster* cluster;(cluster=iter++)!=0;)
421 CCluster* CCluster::NewL(CDbStoreDatabase& aDatabase)
423 return new(ELeave) CCluster(aDatabase);
426 CCluster::~CCluster()
431 void CCluster::AdjustMap(TUint8** aMapEntry,TInt aAdjust)
433 // Adjust all map entries after aMapEntry
436 do *aMapEntry+=aAdjust; while (++aMapEntry<=&iMap[KMaxClustering]);
439 TInt CCluster::SetSizeL(TInt aSize)
441 // Set the minimum size for the cluster buffer
442 // Return the offset between the new and old cells
448 aSize+=EGranularity-1; // round to granularity
449 aSize&=~(EGranularity-1);
450 TUint8* base=iMap[0];
451 TInt offset=(TUint8*)User::ReAllocL(base,aSize)-base;
454 AdjustMap(&iMap[0],offset);
458 void CCluster::Discard()
460 // discard the current changes
463 iCluster=KNullClusterId;
467 void CCluster::Create(TClusterId aClusterId)
469 // Create a new cluster
472 __ASSERT(!iModified);
475 iDes.iNext=KNullClusterId;
477 TUint8* base=iMap[0];
478 for (TUint8** ptr=&iMap[1];ptr<=&iMap[KMaxClustering];++ptr)
483 void CCluster::Relink(TClusterId aNextClusterId)
485 // Update the cluster to link to a different cluster
488 iDes.iNext=aNextClusterId;
492 void CCluster::AlterL(MAlter& aAlterer)
494 // alter all records in the cluster
497 TUint members=iDes.iMembership;
498 TUint8* wptr=iMap[0];
500 for (TUint8** map=&iMap[0];map<&iMap[KMaxClustering];members>>=1,++map)
504 TInt size=map[1]-rptr;
505 TInt expand=wptr-rptr+aAlterer.RecordExpansion(rptr,size);
507 { // requires more space for alteration
508 AdjustL(map,expand+EExpandBuffer,rptr);
509 wptr=map[0]; // compensate for possible moving cache
510 rptr=map[1]-size; // record data is at end of this entry
512 wptr=aAlterer.AlterRecordL(wptr,rptr,size);
514 __ASSERT(wptr<=rptr);
518 __ASSERT(map[1]==rptr);
525 TPtrC8 CCluster::RecordL(TInt aIndex)
527 // Read the cluster and return the record data
530 if (!((iDes.iMembership>>aIndex)&1))
531 __LEAVE(KErrNotFound);
532 return TPtrC8(iMap[aIndex],iMap[aIndex+1]-iMap[aIndex]);
535 TUint8* CCluster::UpdateL(TInt aIndex,TInt aNewSize)
537 // read the cluster and return a writable descriptor over the new record data
540 SetRecordL(aIndex,aNewSize);
541 iDes.iMembership|=(1<<aIndex);
545 TBool CCluster::DeleteL(TInt aIndex)
547 // return whether the cluster is empty or not
550 SetRecordL(aIndex,0);
551 iDes.iMembership&=~(1<<aIndex);
552 return iDes.iMembership;
555 void CCluster::FlushL()
558 { // Externalize the cluster
559 RDbStoreWriteStream cluster(iDatabase);
560 cluster.ReplaceLC(iDatabase.Store(),iCluster);
562 TUint8** map=&iMap[0];
565 for (TUint members=iDes.iMembership;members!=0;members>>=1)
571 cluster << TCardinality(end-ptr);
579 cluster.FilterL(cluster.EMixed,iCluster);
580 cluster.WriteL(base,ptr-base);
582 CleanupStack::PopAndDestroy();
587 void CCluster::ReadL(TClusterId aCluster)
589 // Internalize the cluster
592 __ASSERT(iCluster!=aCluster);
593 __ASSERT(!iModified);
595 iCluster=KNullClusterId;
596 RDbStoreReadStream cluster(iDatabase);
597 cluster.OpenLC(iDatabase.Store(),aCluster);
599 TUint8** map=&iMap[0];
602 for (TUint members=iDes.iMembership;members!=0;members>>=1)
609 if (size>KDbStoreMaxRecordLength)
610 __LEAVE(KErrCorrupt);
615 while (map<&iMap[KMaxClustering])
619 cluster.FilterL(cluster.EMixed,aCluster);
620 cluster.ReadL(base,len);
621 CleanupStack::PopAndDestroy();
625 void CCluster::SetRecordL(TInt aIndex,TInt aNewSize)
627 AdjustL(&iMap[aIndex],iMap[aIndex]+aNewSize-iMap[aIndex+1],iMap[aIndex+1]);
631 void CCluster::AdjustL(TUint8** aMapEntry,TInt aAdjust,TUint8* aData)
633 // Adjust the record at map entry by aAdjust bytes
634 // Move that entry data as well as the ones following for AlterCluster
640 __ASSERT(aAdjust+aMapEntry[1]>=aMapEntry[0]); // record cannot go -ve size
641 __ASSERT(aData>=aMapEntry[0]); // must not save data before this record
643 aData+=SetSizeL(iMap[KMaxClustering]-iMap[0]+aAdjust);
644 Mem::Copy(aData+aAdjust,aData,iMap[KMaxClustering]-aData);
645 AdjustMap(aMapEntry+1,aAdjust);
648 // class CCluster::MAlter
650 TInt CCluster::MAlter::RecordExpansion(const TUint8*,TInt)
652 // default to no expansion