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 #ifndef __D32TABLE_H__
27 // other classes referenced
28 class MDbStreamFilter;
29 class CDbStoreCompression;
33 class CDbStoreDatabase;
34 class CDbFileStoreDatabase;
39 enum TDbStoreVersion { EDbStoreVersion2=3,EDbStoreSecure,EDbStoreCompressed };
44 class CDbStoreDatabase : public CDbTableDatabase
47 enum TZipType {EDeflate,EInflate};
50 #ifndef PAGE_CACHE_SIZE
51 #define PAGE_CACHE_SIZE 16
53 #if PAGE_CACHE_SIZE < 8
54 #error "PAGE_CACHE_SIZE macro value can't be less than 8"
57 enum {EPageCachePages=PAGE_CACHE_SIZE};
58 enum {EModified=0x1,EDamaged=0x2,ESharedStore=0x80000000};
62 // factory functions for pure StoreDatabase
63 static CDbDatabase* CreateL(CStreamStore* aStore,TStreamId& aStreamId);
64 static CDbSource* OpenL(CStreamStore* aStore,TStreamId aStreamId);
65 static void CompressL(CStreamStore* aStore,TStreamId aStreamId,TZipType aZip);
67 inline CStreamStore& Store();
68 inline MDbStreamFilter* Filter();
69 CClusterCache& ClusterCacheL();
70 MPagePool& PagePoolL();
71 // user-class's transaction protocol
73 void IndexRecoveredL();
76 IMPORT_C CDbStoreDatabase();
77 IMPORT_C ~CDbStoreDatabase();
79 IMPORT_C TStreamId ConstructL();
80 // framework: authentication
81 IMPORT_C void AuthenticateL();
82 IMPORT_C void RestoreL(TStreamId aStreamId);
83 // framework: pure delegated functions
84 IMPORT_C TInt Property(CDbDatabase::TProperty aProperty);
85 IMPORT_C void DestroyL();
86 // framework: transaction protocol
87 IMPORT_C void LoadSchemaL();
88 IMPORT_C void SynchL(TDbLockType aLock);
89 IMPORT_C void Revert(TDbLockType aLock);
91 // framework: object factory
92 IMPORT_C CDbTableDef* CreateTableL(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey);
93 IMPORT_C CDbTableIndexDef* CreateIndexL(const CDbTableDef& aTable,const TDesC& aName,const CDbKey& aKey);
94 IMPORT_C CDbTable* TableL(const CDbTableDef& aDef);
95 // framework: incremental factory
96 IMPORT_C CStepper* TableAlterL(CDbTableDef& aTable,const HDbColumnSet& aNewSet,TInt& aStep);
97 IMPORT_C CStepper* RecordDiscarderL(const CDbTableDef& aTable,TInt& aStep);
98 IMPORT_C CStepper* IndexDiscarderL(const CDbTableDef& aTable,const CDbTableIndexDef& anIndex,TInt& aStep);
99 IMPORT_C CStepper* UtilityL(CDbDatabase::TUtility aType,TInt& aStep);
102 // framework: reserved
103 IMPORT_C void Reserved_1();
104 IMPORT_C void Reserved_2();
105 // implementationp functions
106 static CDbStoreDatabase* NewLC(CStreamStore* aStore);
108 void CompressTablesL();
109 void CompressL(TStreamId aStreamId,TZipType aZip);
111 void ReadHeaderL(RReadStream& aStream);
112 void InitPagePoolL();
113 void ReplaceSchemaL();
114 void ReplaceTokenL(TUint aFlags);
115 void SynchStoreL(TDbLockType aLock);
116 CDbStoreCompression& CompressionL();
117 CStepper* RecoverL(TInt& aStep);
120 CStreamStore* iStore;
129 TStorePagePoolToken iPoolToken;
130 RStorePagePool* iPagePool;
131 CPageCache* iPageCache;
132 CClusterCache* iClusterCache;
133 MDbStreamFilter* iFilter;
134 CDbStoreCompression* iCompression;
139 The general file-store database class
142 const TInt32 KDbmsFileDatabaseUidValue=0x10000EBE;
143 const TUid KDbmsFileDatabaseUid={KDbmsFileDatabaseUidValue};
148 class CDbFileStoreDatabase : public CDbStoreDatabase
151 IMPORT_C static CDbDatabase* CreateL(RFs& aFs, const TDesC& aName, TDbFormat::TCreate aMode,
152 const TUidType& aType);
153 IMPORT_C static CDbSource* OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode);
156 IMPORT_C CDbFileStoreDatabase(RFs& aFs);
157 IMPORT_C ~CDbFileStoreDatabase();
159 IMPORT_C void CreateL(const TDesC& aName, TDbFormat::TCreate aMode, const TUidType& aType);
160 IMPORT_C virtual TStreamId CreateRootL(TStreamId aDatabaseId);
162 IMPORT_C void OpenL(const TDesC& aName,TDbFormat::TOpen aMode);
163 IMPORT_C virtual TStreamId DatabaseIdL(TStreamId aRootId);
164 // from CDbStoreDatabase
165 IMPORT_C TInt Property(CDbDatabase::TProperty aProperty);
166 IMPORT_C void DestroyL();
169 static CDbFileStoreDatabase* NewLC(RFs& aFs);