diff -r 000000000000 -r bde4ae8d615e os/persistentdata/persistentstorage/dbms/ustor/US_STD.H --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/persistentdata/persistentstorage/dbms/ustor/US_STD.H Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,691 @@ +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include "U32STD.H" +#include "D32REC.H" +#include "D32STOR.H" +#include +#include +#include +#include +#include +#include + +// classes defined +class TDbStoreIndexStats; +class CDbStoreIndexDef; +class TRecordSize; +class CDbStoreDef; +class RClusterMap; +class TClusterLinkCache; +struct TClusterDes; +class CCluster; +class CClusterCache; +class CDbStoreRecords; +class CDbStoreBlobs; +class CDbStoreIndex; +class CDbStoreTable; +class RDbStoreReadStream; +class RDbStoreWriteStream; +class MDbStreamFilter; +class CDbStoreCompression; + +/** +@internalComponent +*/ +enum TStorePanic + { + EDbUnimplemented, + EDbNoStore, + EDbCannotSeek, + EDbNotFixedFieldType, + EDbWrongType + }; + +/** +@internalComponent +*/ +GLREF_C void Panic(TStorePanic aPanic); + +/** +@internalComponent +*/ +GLREF_D const TDbDriver KBuiltinDriver; + +/** +@internalComponent +*/ +const TUid KDbmsStoreDatabase={268435561}; + +/** +@internalComponent +*/ +const TInt KDbStoreMaxRecordLength=0x200A; // v5.10 32 nullable longtext columns +const TInt KClusterLimit=0x1000; +const TInt KMaxClustering=16; +const TInt KBlobRefSize=sizeof(TDbBlobId)+sizeof(TInt32); +const TInt KMinInlineLimit=16; +const TInt KMaxIndexKeySize=248; + +/** +@internalComponent +*/ +class TDbStoreIndexStats + { +public: + /** + @internalComponent + */ + class TBound + { + public: + inline void Set(TReal64 aBound); + void Set(const TInt64& aBound); + void Set(const TText8* aPtr,TInt aLen,const TTextOps& aConv); + void Set(const TText16* aPtr,TInt aLen,const TTextOps& aConv); + void Set(const TDbLookupKey::SColumn& aBound,const TTextOps& aConv); + public: + TReal64 iValue; + }; + enum TType {EContinuous,EDiscrete}; +public: + inline TDbStoreIndexStats(); +// + void InternalizeL(RReadStream& aStream); + void ExternalizeL(RWriteStream& aStream) const; +// + inline void Reset(TInt aCardinality=0); + inline void Inc(); + inline void Dec(); + inline void Refresh(TType aType); +// + inline TBool IsValid() const; + inline TBool NeedsRefresh() const; + inline TInt Cardinality() const; + TInt Span(TUint aInclusion,const TDbLookupKey* aLower,const TDbLookupKey* aUpper,const TTextOps& aConv) const; +private: + inline void Touch(); + TInt ReverseSpan(TUint aInclusion,const TDbLookupKey* aLower,const TDbLookupKey* aUpper,const TTextOps& aConv) const; +private: + enum {ERefreshFactor=3}; + enum {EInvalid=-1,ERefresh=0}; + enum {ERefreshShift=2+ERefreshFactor,EFlagsMask=(1< iCache; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreRecords) : public CDbRecordSpace + { +public: + class TIteratorC; + class CIter; +public: + static TStreamId CreateL(CClusterCache& aCache); + static CDbStoreRecords* NewL(CClusterCache& aCache,const CDbStoreDef& aDef); +// + static TInt CardinalityL(CStreamStore& aStore,const CDbStoreDef& aDef); +// + TBool GotoL(TDbPosition aPosition,TIteratorC& anIterator); + TBool GotoL(TDbRecordId aRecordId,TIteratorC& anIterator); + TBool DeletedL(TDbPosition aPosition,TIteratorC& anIterator); +// + inline TClusterId Head() const; + inline TInt Count() const; + TInt DiscardL(TClusterId& aCluster); + TClusterId AlterL(TClusterId aCluster,CCluster::MAlter& anAlterer); + void DestroyL(); +// providing for CDbRecordSpace + TBool ExistsL(TDbRecordId aRecordId); + TPtrC8 ReadL(TDbRecordId aRecordId) const; + TUint8* DoReplaceL(TDbRecordId aRecordId,TInt aRecordSize); + TUint AutoIncrementL(); + TUint8* DoNewL(TInt aRecordSize); + TDbRecordId AppendL(); + void DoEraseL(TDbRecordId aRecordId); + CDbRecordIter* IteratorL(); + TBool RestoreL(); + void SynchL(); +private: + CDbStoreRecords(CClusterCache& aCache); + ~CDbStoreRecords(); +// + TUint8* UpdateRecordL(TDbRecordId aRecordId,TInt aNewSize); + void DesL(TClusterDes& aDes,TClusterId aCluster); + void CompleteMapL(); + TClusterId NextClusterL(TClusterDes& aDes,TClusterId aCluster); + TClusterId PreviousClusterL(TClusterDes& aDes,TClusterId aCluster); + TBool LocateL(TClusterId aCluster); +private: + class TToken + { + public: + void InternalizeL(RReadStream& aStream); + void ExternalizeL(RWriteStream& aStream) const; + public: + TClusterId iHead; + TDbRecordId iNext; + TInt iCount; + TUint iAutoIncrement; + }; +private: + CClusterCache& iCache; + TStreamId iTokenId; + TToken iToken; + TInt iClustering; + TClusterLinkCache iLinks; + RClusterMap iMap; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreBlobs) : public CDbBlobSpace + { +public: + CDbStoreBlobs(CDbStoreDatabase& aDatabase,TInt aInlineLimit); +// + MStreamBuf* DoCreateL(TDbBlobId &aBlobId,TDbColType aType); + MStreamBuf* ReadL(TDbBlobId aBlobId,TDbColType aType) const; + void DoDeleteL(TDbBlobId aBlobId); +private: + CDbStoreDatabase& iDatabase; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreIndex) : public CDbRecordIndex + { +public: + class HKey; + class HDupKey; + class CIter; + class CDiscarder; + class CRecover; + class CRepair; +public: + static CDbStoreIndex* NewL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef,const CDbTableDef& aTable); + ~CDbStoreIndex(); +// + static TStreamId CreateL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef); + static TBool IsDamagedL(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef); +// + inline HKey& Key() const; + inline const TBtree& Tree() const; + inline TInt Count() const; + void RepairL(); + void DiscardL(); + void DestroyL(); +private: + CDbStoreIndex(CDbStoreDatabase& aDatabase,const CDbStoreIndexDef& aDef); +// + void RefreshStatsL(); +// CDbTableIndex framework + TFind FindL(TDbRecordId aRecordId,const RDbTableRow& aRow); + TBool DoInsertL(TDbRecordId aRecordId,const RDbTableRow& aRow); + void DoDeleteL(TDbRecordId aRecordId,const RDbTableRow& aRow); + CDbRecordIter* IteratorL(TUint aInclusion,const TDbLookupKey* aLowerBound,const TDbLookupKey* aUpperBound); + TBool RestoreL(); + void AboutToModifyL(); + void SynchL(); +private: + CDbStoreDatabase& iDatabase; + TStreamId iTokenId; + TBtree iTree; + HKey* iKey; + TBtreeInlineLeafOrg iLeafOrg; + TBtreeInlineIndexOrg iIndexOrg; + TDbStoreIndexStats& iStats; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreIndex::CDiscarder) : public CDbTableDatabase::CStepper + { +public: + CDiscarder(); + ~CDiscarder(); + TInt Open(CDbStoreIndex* anIndex); +private: + TInt StepL(TInt aStep); +private: + CDbStoreIndex* iIndex; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreTable) : public CDbTable + { +public: + class CDiscarder; + class CAlter; + class CCompressor; + friend class CDiscarder; + friend class CAlter; + friend class CCompressor; +public: + CDbStoreTable(CDbStoreDatabase& aDatabase,const CDbTableDef& aDef); +private: + inline const CDbStoreDef& Def() const; + inline CDbStoreDatabase& Database(); + inline CDbStoreRecords& StoreRecordsL(); +// + TInt RowSize(const TUint8* aRec,TInt aLength); + const TUint8* CopyToRowL(TDbCell* aCell,TInt aSize,const TUint8* aRec); + TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength,TInt aInlineLimit); +// providing for CDbTable framework + TInt IndexSpanL(const CDbTableIndexDef& aIndex,TUint aInclusion,const TDbLookupKey* aLowerBound,const TDbLookupKey* aUpperBound); + CDbRecordSpace* RecordSpaceL(); + CDbBlobSpace* BlobSpaceL(); + CDbRecordIndex* RecordIndexL(const CDbTableIndexDef& anIndex); + void CopyToRowL(RDbRow& aRow,const TDesC8& aRecord); + TInt RecordLength(const RDbRow& aRow); + TInt OptimizedRowLength(const RDbRow& aRow); + void CopyFromRow(TUint8* aRecord,const RDbRow& aRow); + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreTable::CDiscarder) : public CDbTableDatabase::CStepper, public CCluster::MAlter + { +private: + enum {EDiscardClusters=32,EBlobDiscardClusters=2}; +public: + CDiscarder(); + ~CDiscarder(); + TInt OpenL(CDbStoreTable* aTable); +private: + TInt StepL(TInt aStep); + TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength); +private: + CDbStoreTable* iTable; + CDbStoreRecords* iRecords; + TClusterId iCluster; + RDbRow iRow; + }; + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreTable::CAlter) : public CDbTableDatabase::CStepper, public CCluster::MAlter + { +public: + CAlter(); + ~CAlter(); + void OpenL(CDbStoreTable* aTable,const HDbColumnSet& aNewSet); +private: + TUint8* AlterRecordL(TUint8* aWPtr,const TUint8* aRPtr,TInt aLength); + TInt RecordExpansion(const TUint8* aRec,TInt aLength); + TInt StepL(TInt aStep); +private: + TInt iExpansion; + TInt iInlineLimit; + CDbStoreTable* iTable; + CDbStoreRecords* iRecords; + TClusterId iCluster; + TInt iStep; + }; + +/** +@internalComponent +*/ +class RDbStoreReadStream : public RStoreReadStream + { +public: + enum TType {EMixed,EBinary,EText}; +public: + inline RDbStoreReadStream(CDbStoreDatabase& aDatabase) + :iDatabase(aDatabase) + {} + void FilterL(TType aType,TUint32 aInit); +private: + CDbStoreDatabase& iDatabase; + }; + +/** +@internalComponent +*/ +class RDbStoreWriteStream : public RStoreWriteStream + { +public: + enum TType {EMixed,EBinary,EText}; +public: + inline RDbStoreWriteStream(CDbStoreDatabase& aDatabase) + :iDatabase(aDatabase) + {} + void FilterL(TType aType,TUint32 aInit); +private: + CDbStoreDatabase& iDatabase; + }; + +/** +@internalComponent +*/ +class MDbStreamFilter + { +public: + virtual MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreReadStream::TType aType) =0; + virtual MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreWriteStream::TType aType) =0; + }; + + +/** +@internalComponent +*/ +NONSHARABLE_CLASS(CDbStoreCompression) : public CBase, public MDbStreamFilter + { +public: + /** + @internalComponent + */ + class TEncoding + { + public: + enum {ELiterals=256,ELengths=28,ESpecials=1,EDistances=44}; + enum {ELitLens=ELiterals+ELengths+ESpecials}; + enum {EEos=ELiterals+ELengths}; + public: + TUint32 iLitLen[ELitLens]; + TUint32 iDistance[EDistances]; + }; +public: + static CDbStoreCompression* NewL(); +// + void EncodeL(); + inline void Inflate(); + void ExternalizeL(RWriteStream& aStream) const; + void InternalizeL(RReadStream& aStream); +// for MDbStreamFilter + MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreReadStream::TType aType); + MStreamBuf* FilterL(MStreamBuf* aHost,TUint32 aInit,RDbStoreWriteStream::TType aType); +private: + inline CDbStoreCompression(); +private: + enum TState {EAnalysis,EEncoding,EDecoding,EInflating}; +private: + TState iState; + TEncoding iEncoding[3]; + }; + +#include "US_STD.INL"