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.
14 // The file-store database which provides the default format
21 EXPORT_C CDbFileStoreDatabase::CDbFileStoreDatabase(RFs& aFs)
25 EXPORT_C CDbFileStoreDatabase::~CDbFileStoreDatabase()
29 delete iStore; // must be destroyed before the file is deleted
32 // If a debug build - record error
33 TInt fileDeleteErr=iFs.Delete(*iName);
35 if (fileDeleteErr != KErrNone)
37 RDebug::Print(_L("CDbFileStoreDatabase::~CDbFileStoreDatabase - Failed to delete file. Error = %d"), fileDeleteErr);
44 CDbFileStoreDatabase* CDbFileStoreDatabase::NewLC(RFs& aFs)
46 CDbFileStoreDatabase* self=new(ELeave) CDbFileStoreDatabase(aFs);
47 CleanupStack::PushL(self);
52 // over-ride the store database and just mark the file for deletion
54 EXPORT_C void CDbFileStoreDatabase::DestroyL()
60 // Provide the "size" and "usage" properties
62 EXPORT_C TInt CDbFileStoreDatabase::Property(CDbDatabase::TProperty aProperty)
66 case CDbDatabase::EUpdateStats:
68 case CDbDatabase::ESize:
69 case CDbDatabase::EUsage:
72 TInt r=STATIC_CAST(CFileStore&,Store()).File().Size(size);
75 if (aProperty==CDbDatabase::ESize)
80 return 100-(r*100)/size; // usage in %
83 return CDbStoreDatabase::Property(aProperty);
88 //SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
89 EXPORT_C void CDbFileStoreDatabase::CreateL(const TDesC& aName, TDbFormat::TCreate aMode,
90 const TUidType& aType)
92 __ASSERT(!iName); // check construction phase
99 __LEAVE(KErrNotSupported);
100 case TDbFormat::ECreate:
101 store=CPermanentFileStore::CreateL(iFs,aName,EFileRead|EFileWrite);
103 case TDbFormat::EReplace:
104 store=CPermanentFileStore::ReplaceL(iFs,aName,EFileRead|EFileWrite);
108 iDelete=ETrue; // cleanup fully in case of failure
109 store->SetTypeL(aType);
110 store->SetRootL(CreateRootL(CDbStoreDatabase::ConstructL()));
112 iDelete=EFalse; // file is now good
115 // SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
116 // Create the standard file database. The database is the root stream
118 EXPORT_C CDbDatabase* CDbFileStoreDatabase::CreateL(RFs& aFs, const TDesC& aName,
119 TDbFormat::TCreate aMode, const TUidType& aType)
121 CDbFileStoreDatabase* self=NewLC(aFs);
122 self->CreateL(aName,aMode,aType);
123 CDbDatabase* db=self->InterfaceL();
124 CleanupStack::Pop(self);
130 // default implementation. Database _is_ the root
132 EXPORT_C TStreamId CDbFileStoreDatabase::CreateRootL(TStreamId aDatabaseId)
139 // open the file-store and return the root stream id
141 EXPORT_C void CDbFileStoreDatabase::OpenL(const TDesC& aName,TDbFormat::TOpen aMode)
143 __ASSERT(!iName); // check construction phase
145 iName=aName.AllocL();
146 TUint mode=aMode==TDbFormat::EReadOnly ? EFileShareReadersOnly : EFileWrite;
147 CFileStore* store=CPermanentFileStore::OpenL(iFs,*iName,mode);
149 CDbStoreDatabase::RestoreL(DatabaseIdL(store->Root()));
153 // default implementation. Database _is_ the root
155 EXPORT_C TStreamId CDbFileStoreDatabase::DatabaseIdL(TStreamId aRootId)
161 // Create the standard file database. The database is the root stream
163 EXPORT_C CDbSource* CDbFileStoreDatabase::OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode)
165 CDbFileStoreDatabase* self=NewLC(aFs);
166 self->OpenL(aName,aMode);
167 CDbSource* src=self->SourceL();
168 CleanupStack::Pop(); // self
172 const TDbFormat KBuiltinFormat=
174 _S("epoc"),&CDbFileStoreDatabase::CreateL,&CDbFileStoreDatabase::OpenL,
175 {KPermanentFileStoreLayoutUidValue,KDbmsFileDatabaseUidValue}
178 GLDEF_D const TDbDriver KBuiltinDriver={1,&KBuiltinFormat};