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.
27 class TDbStoreIndexStats;
28 class CDbStoreIndexDef;
32 class TClusterLinkCache;
36 class CDbStoreRecords;
40 class RDbStoreReadStream;
41 class RDbStoreWriteStream;
42 class MDbStreamFilter;
43 class CDbStoreCompression;
60 GLREF_C void Panic(TStorePanic aPanic);
65 GLREF_D const TDbDriver KBuiltinDriver;
70 const TUid KDbmsStoreDatabase={268435561};
75 const TInt KDbStoreMaxRecordLength=0x200A; // v5.10 32 nullable longtext columns
76 const TInt KClusterLimit=0x1000;
77 const TInt KMaxClustering=16;
78 const TInt KBlobRefSize=sizeof(TDbBlobId)+sizeof(TInt32);
79 const TInt KMinInlineLimit=16;
80 const TInt KMaxIndexKeySize=248;
85 class TDbStoreIndexStats
94 inline void Set(TReal64 aBound);
95 void Set(const TInt64& aBound);
96 void Set(const TText8* aPtr,TInt aLen,const TTextOps& aConv);
97 void Set(const TText16* aPtr,TInt aLen,const TTextOps& aConv);
98 void Set(const TDbLookupKey::SColumn& aBound,const TTextOps& aConv);
102 enum TType {EContinuous,EDiscrete};
104 inline TDbStoreIndexStats();
106 void InternalizeL(RReadStream& aStream);
107 void ExternalizeL(RWriteStream& aStream) const;
109 inline void Reset(TInt aCardinality=0);
112 inline void Refresh(TType aType);
114 inline TBool IsValid() const;
115 inline TBool NeedsRefresh() const;
116 inline TInt Cardinality() const;
117 TInt Span(TUint aInclusion,const TDbLookupKey* aLower,const TDbLookupKey* aUpper,const TTextOps& aConv) const;
120 TInt ReverseSpan(TUint aInclusion,const TDbLookupKey* aLower,const TDbLookupKey* aUpper,const TTextOps& aConv) const;
122 enum {ERefreshFactor=3};
123 enum {EInvalid=-1,ERefresh=0};
124 enum {ERefreshShift=2+ERefreshFactor,EFlagsMask=(1<<ERefreshShift)-1};
125 enum {EFlgDiscrete=0x1,EFlgClustering=0x2};
138 class CDbStoreIndexDef : public CDbTableIndexDef
141 static CDbStoreIndexDef* NewLC(const TDesC& aName,const CDbKey& aKey,const HDbColumnSet& aColumns);
142 static CDbStoreIndexDef* NewL(RReadStream& aStream);
143 void ExternalizeL(RWriteStream& aStream) const;
144 inline void SetTokenId(TStreamId anId);
145 inline TStreamId TokenId() const;
147 static TInt KeySize(const TDbKeyCol& aKeyCol,const TDbColumnDef& aColumn);
148 static void CheckSizeL(const CDbKey& aKey,const HDbColumnSet& aColSet);
151 static CDbStoreIndexDef* NewLC(const TDesC& aName);
155 __MUTABLE TDbStoreIndexStats iStats; // cache the statistics here
164 TBool Set(const HDbColumnSet& aColumns);
165 inline TInt Clustering() const;
166 inline TInt InlineLimit() const;
168 static void CheckSizeL(const HDbColumnSet& aColumns);
169 static TInt InlineLimit(const HDbColumnSet& aColumns);
171 static inline TInt FixedFieldSize(TDbColType aType);
176 static TUint8 const FieldSizes[];
182 NONSHARABLE_CLASS(CDbStoreDef) : public CDbTableDef
185 static CDbStoreDef* NewLC(const TDesC& aName,const CDbColSet& aColSet);
186 static CDbStoreDef* NewL(RReadStream& aStream);
187 void ExternalizeL(RWriteStream& aStream) const;
188 inline void SetTokenId(TStreamId anId);
189 inline TStreamId TokenId() const;
190 inline TInt Clustering() const;
191 inline TInt InlineLimit() const;
194 void AlteredColumnSetL(HDbColumnSet& aSet,const CDbColSet& aChange,const CDbColSet& aAdd);
198 static CDbStoreDef* NewLC(const TDesC& aName,TInt aColumnCount);
207 typedef TUint32 TClusterId;
212 const TClusterId KNullClusterId=0;
217 inline TClusterId ClusterId(TDbRecordId aRecordId);
218 inline TInt RecordIndex(TDbRecordId aRecordId);
219 inline TDbRecordId RecordId(TClusterId aId,TInt aIndex);
220 inline TClusterId ClusterId(TStreamId aStreamId);
228 enum {EGranularity=8};
233 TClusterId iPreviousId;
236 enum {ESeparation=16};
238 inline RClusterMap();
241 void ResetL(TClusterId aHeadCluster);
242 inline void BindL(TClusterId aPrevious,TClusterId aCluster);
243 void DropL(TClusterId aCluster,TClusterId aNext);
244 TBool At(TClusterId aCluster,TClusterId& aPrevious);
245 inline TClusterId LastBound() const;
246 inline void Complete(TClusterId aLastCluster);
247 inline TBool IsComplete() const;
249 void AddL(TClusterId aCluster);
250 void InsertL(TClusterId aCluster,TClusterId aPrevious);
251 TIdPair* At(TClusterId aCluster);
256 TClusterId iLastBound;
257 TClusterId iLastMapped;
265 class TClusterLinkCache
268 inline void Invalidate();
269 inline void Reset(TClusterId aBaseId);
270 inline void Bind(TClusterId aPrevious,TClusterId aCluster,RClusterMap& aMap);
271 void Add(const TClusterId* aFirst,const TClusterId* aLast);
272 void Drop(TClusterId aCluster,TClusterId aNext);
273 TBool Has(TClusterId aCluster) const;
274 TBool At(TClusterId aCluster,TClusterId& aPrevious) const;
276 void Add(TClusterId aCluster,RClusterMap& aMap);
278 TClusterId iMap[RClusterMap::ESeparation+1];
288 void InternalizeL(RReadStream& aStream);
289 void ExternalizeL(RWriteStream& aStream) const;
298 NONSHARABLE_CLASS(CCluster) : public CBase
300 friend class CClusterCache;
302 enum {EGranularity=0x200};
303 enum {EExpandBuffer=0x40};
308 NONSHARABLE_CLASS(MAlter)
311 virtual TInt RecordExpansion(const TUint8* aRec,TInt aLength);
312 virtual TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength) =0;
315 static CCluster* NewL(CDbStoreDatabase& aDatabase);
321 void Create(TClusterId aClusterId);
322 void ReadL(TClusterId aCluster);
323 void Relink(TClusterId aNextClusterId);
324 void AlterL(MAlter& anAlterer);
326 TPtrC8 RecordL(TInt aIndex);
327 TUint8* UpdateL(TInt aIndex,TInt aNewSize);
328 TBool DeleteL(TInt aIndex);
329 inline TBool IsFull() const;
331 inline TClusterId Id() const;
332 inline const TClusterDes& Des() const;
334 CCluster(CDbStoreDatabase& aDatabase);
336 TInt SetSizeL(TInt aSize);
337 void AdjustMap(TUint8** aMapEntry,TInt aAdjust);
338 void SetRecordL(TInt aIndex,TInt aNewSize);
339 void AdjustL(TUint8** aMapEntry,TInt aAdjust,TUint8* aData);
342 CDbStoreDatabase& iDatabase;
347 TUint8* iMap[KMaxClustering+1];
353 NONSHARABLE_CLASS(CClusterCache) : public CBase
355 #ifndef MAX_CLUSTER_CACHE_SIZE
356 #define MAX_CLUSTER_CACHE_SIZE 8
358 #if MAX_CLUSTER_CACHE_SIZE < 4
359 #error "MAX_CLUSTER_CACHE_SIZE macro value can't be less than 4"
362 enum {EMaxClusters=MAX_CLUSTER_CACHE_SIZE};
364 static CClusterCache* NewL(CDbStoreDatabase& aDatabase);
370 CCluster* Cluster(TClusterId aCluster);
371 CCluster& ClusterL(TClusterId aCluster);
372 CCluster& ClusterL();
374 inline CDbStoreDatabase& Database();
375 inline CStreamStore& Store();
377 inline CClusterCache(CDbStoreDatabase& aDatabase);
379 void Apply(void (*aFunc)(CCluster*));
380 CCluster& AddClusterL();
381 CCluster& NewClusterL();
382 CCluster& Touch(CCluster& aCluster);
384 CDbStoreDatabase& iDatabase;
385 TClusterId iCachePlus1;
386 TClusterId iCachePlus2;
387 TUint8 iFollowOnHits;
389 TDblQue<CCluster> iCache;
395 NONSHARABLE_CLASS(CDbStoreRecords) : public CDbRecordSpace
401 static TStreamId CreateL(CClusterCache& aCache);
402 static CDbStoreRecords* NewL(CClusterCache& aCache,const CDbStoreDef& aDef);
404 static TInt CardinalityL(CStreamStore& aStore,const CDbStoreDef& aDef);
406 TBool GotoL(TDbPosition aPosition,TIteratorC& anIterator);
407 TBool GotoL(TDbRecordId aRecordId,TIteratorC& anIterator);
408 TBool DeletedL(TDbPosition aPosition,TIteratorC& anIterator);
410 inline TClusterId Head() const;
411 inline TInt Count() const;
412 TInt DiscardL(TClusterId& aCluster);
413 TClusterId AlterL(TClusterId aCluster,CCluster::MAlter& anAlterer);
415 // providing for CDbRecordSpace
416 TBool ExistsL(TDbRecordId aRecordId);
417 TPtrC8 ReadL(TDbRecordId aRecordId) const;
418 TUint8* DoReplaceL(TDbRecordId aRecordId,TInt aRecordSize);
419 TUint AutoIncrementL();
420 TUint8* DoNewL(TInt aRecordSize);
421 TDbRecordId AppendL();
422 void DoEraseL(TDbRecordId aRecordId);
423 CDbRecordIter* IteratorL();
427 CDbStoreRecords(CClusterCache& aCache);
430 TUint8* UpdateRecordL(TDbRecordId aRecordId,TInt aNewSize);
431 void DesL(TClusterDes& aDes,TClusterId aCluster);
433 TClusterId NextClusterL(TClusterDes& aDes,TClusterId aCluster);
434 TClusterId PreviousClusterL(TClusterDes& aDes,TClusterId aCluster);
435 TBool LocateL(TClusterId aCluster);
440 void InternalizeL(RReadStream& aStream);
441 void ExternalizeL(RWriteStream& aStream) const;
446 TUint iAutoIncrement;
449 CClusterCache& iCache;
453 TClusterLinkCache iLinks;
460 NONSHARABLE_CLASS(CDbStoreBlobs) : public CDbBlobSpace
463 CDbStoreBlobs(CDbStoreDatabase& aDatabase,TInt aInlineLimit);
465 MStreamBuf* DoCreateL(TDbBlobId &aBlobId,TDbColType aType);
466 MStreamBuf* ReadL(TDbBlobId aBlobId,TDbColType aType) const;
467 void DoDeleteL(TDbBlobId aBlobId);
469 CDbStoreDatabase& iDatabase;
475 NONSHARABLE_CLASS(CDbStoreIndex) : public CDbRecordIndex
485 static CDbStoreIndex* NewL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef,const CDbTableDef& aTable);
488 static TStreamId CreateL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef);
489 static TBool IsDamagedL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef);
491 inline HKey& Key() const;
492 inline const TBtree& Tree() const;
493 inline TInt Count() const;
498 CDbStoreIndex(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef);
500 void RefreshStatsL();
501 // CDbTableIndex framework
502 TFind FindL(TDbRecordId aRecordId,const RDbTableRow& aRow);
503 TBool DoInsertL(TDbRecordId aRecordId,const RDbTableRow& aRow);
504 void DoDeleteL(TDbRecordId aRecordId,const RDbTableRow& aRow);
505 CDbRecordIter* IteratorL(TUint aInclusion,const TDbLookupKey* aLowerBound,const TDbLookupKey* aUpperBound);
507 void AboutToModifyL();
510 CDbStoreDatabase& iDatabase;
514 TBtreeInlineLeafOrg iLeafOrg;
515 TBtreeInlineIndexOrg iIndexOrg;
516 TDbStoreIndexStats& iStats;
522 NONSHARABLE_CLASS(CDbStoreIndex::CDiscarder) : public CDbTableDatabase::CStepper
527 TInt Open(CDbStoreIndex* anIndex);
529 TInt StepL(TInt aStep);
531 CDbStoreIndex* iIndex;
537 NONSHARABLE_CLASS(CDbStoreTable) : public CDbTable
543 friend class CDiscarder;
545 friend class CCompressor;
547 CDbStoreTable(CDbStoreDatabase& aDatabase,const CDbTableDef& aDef);
549 inline const CDbStoreDef& Def() const;
550 inline CDbStoreDatabase& Database();
551 inline CDbStoreRecords& StoreRecordsL();
553 TInt RowSize(const TUint8* aRec,TInt aLength);
554 const TUint8* CopyToRowL(TDbCell* aCell,TInt aSize,const TUint8* aRec);
555 TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength,TInt aInlineLimit);
556 // providing for CDbTable framework
557 TInt IndexSpanL(const CDbTableIndexDef& aIndex,TUint aInclusion,const TDbLookupKey* aLowerBound,const TDbLookupKey* aUpperBound);
558 CDbRecordSpace* RecordSpaceL();
559 CDbBlobSpace* BlobSpaceL();
560 CDbRecordIndex* RecordIndexL(const CDbTableIndexDef& anIndex);
561 void CopyToRowL(RDbRow& aRow,const TDesC8& aRecord);
562 TInt RecordLength(const RDbRow& aRow);
563 TInt OptimizedRowLength(const RDbRow& aRow);
564 void CopyFromRow(TUint8* aRecord,const RDbRow& aRow);
570 NONSHARABLE_CLASS(CDbStoreTable::CDiscarder) : public CDbTableDatabase::CStepper, public CCluster::MAlter
573 enum {EDiscardClusters=32,EBlobDiscardClusters=2};
577 TInt OpenL(CDbStoreTable* aTable);
579 TInt StepL(TInt aStep);
580 TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength);
582 CDbStoreTable* iTable;
583 CDbStoreRecords* iRecords;
591 NONSHARABLE_CLASS(CDbStoreTable::CAlter) : public CDbTableDatabase::CStepper, public CCluster::MAlter
596 void OpenL(CDbStoreTable* aTable,const HDbColumnSet& aNewSet);
598 TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength);
599 TInt RecordExpansion(const TUint8* aRec,TInt aLength);
600 TInt StepL(TInt aStep);
604 CDbStoreTable* iTable;
605 CDbStoreRecords* iRecords;
613 class RDbStoreReadStream : public RStoreReadStream
616 enum TType {EMixed,EBinary,EText};
618 inline RDbStoreReadStream(CDbStoreDatabase& aDatabase)
619 :iDatabase(aDatabase)
621 void FilterL(TType aType,TUint32 aInit);
623 CDbStoreDatabase& iDatabase;
629 class RDbStoreWriteStream : public RStoreWriteStream
632 enum TType {EMixed,EBinary,EText};
634 inline RDbStoreWriteStream(CDbStoreDatabase& aDatabase)
635 :iDatabase(aDatabase)
637 void FilterL(TType aType,TUint32 aInit);
639 CDbStoreDatabase& iDatabase;
645 class MDbStreamFilter
648 virtual MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreReadStream::TType aType) =0;
649 virtual MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreWriteStream::TType aType) =0;
656 NONSHARABLE_CLASS(CDbStoreCompression) : public CBase, public MDbStreamFilter
665 enum {ELiterals=256,ELengths=28,ESpecials=1,EDistances=44};
666 enum {ELitLens=ELiterals+ELengths+ESpecials};
667 enum {EEos=ELiterals+ELengths};
669 TUint32 iLitLen[ELitLens];
670 TUint32 iDistance[EDistances];
673 static CDbStoreCompression* NewL();
676 inline void Inflate();
677 void ExternalizeL(RWriteStream& aStream) const;
678 void InternalizeL(RReadStream& aStream);
679 // for MDbStreamFilter
680 MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreReadStream::TType aType);
681 MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreWriteStream::TType aType);
683 inline CDbStoreCompression();
685 enum TState {EAnalysis,EEncoding,EDecoding,EInflating};
688 TEncoding iEncoding[3];
691 #include "US_STD.INL"