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 const TInt32 KTestUidValue=0x01234567u;
22 NONSHARABLE_CLASS(COplDatabase) : public CDbFileStoreDatabase
25 static CDbDatabase* CreateL(RFs& aFs,const TDesC& aName,TDbFormat::TCreate aMode,const TUidType& aType);
26 static CDbSource* OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode);
28 inline COplDatabase(RFs& aFs) :CDbFileStoreDatabase(aFs) {}
29 static COplDatabase* NewLC(RFs& aFs);
30 TStreamId CreateRootL(TStreamId aDatabaseId);
31 TStreamId DatabaseIdL(TStreamId aRootId); // override
34 const TInt32 KUidOplDocValue=268435573;
35 const TInt32 KUidExternalOplFileValue=268435594;
36 const TInt32 KUidOplInterpreterValue=268435816;
37 const TUid KUidOplInterpreter={KUidOplInterpreterValue};
40 // this supports the "opl" and "opl.doc" formats
42 COplDatabase* COplDatabase::NewLC(RFs& aFs)
44 COplDatabase* self=new(ELeave) COplDatabase(aFs);
45 CleanupStack::PushL(self);
49 CDbDatabase* COplDatabase::CreateL(RFs& aFs,const TDesC& aName,TDbFormat::TCreate aMode,const TUidType& aType)
51 COplDatabase* self=NewLC(aFs);
52 self->CDbFileStoreDatabase::CreateL(aName,aMode,aType);
53 CDbDatabase* db=self->InterfaceL();
54 CleanupStack::Pop(); // self
58 TStreamId COplDatabase::CreateRootL(TStreamId aDatabaseId)
60 RStoreWriteStream root;
61 TStreamId id=root.CreateLC(*iStore);
62 root<<KUidOplInterpreter<<aDatabaseId;
64 CleanupStack::PopAndDestroy(); // root
68 CDbSource* COplDatabase::OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode)
70 COplDatabase* self=NewLC(aFs);
71 self->CDbFileStoreDatabase::OpenL(aName,aMode);
72 CDbSource* src=self->SourceL();
73 CleanupStack::Pop(); // self
77 TStreamId COplDatabase::DatabaseIdL(TStreamId aRootId)
79 RStoreReadStream read;
80 read.OpenLC(*iStore,aRootId);
82 read>>ignore>>aRootId;
83 CleanupStack::PopAndDestroy(); // read
89 NONSHARABLE_CLASS(CDataDocument) : public CDbFileStoreDatabase
92 static CDbDatabase* CreateL(RFs& aFs,const TDesC& aName,TDbFormat::TCreate aMode,const TUidType& aType);
93 static CDbSource* OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode);
95 inline CDataDocument(RFs& aFs) :CDbFileStoreDatabase(aFs) {}
96 TStreamId DatabaseIdL(TStreamId aRootId); // override
99 const TInt32 KUidAppDllDocValue=0x1000006d;
100 const TInt32 KUidDataAppValue=0x10000086;
101 const TUid KUidDataHeadStream={0x1000012e};
103 // Class DataDocument
108 CDbDatabase* CDataDocument::CreateL(RFs&,const TDesC&,TDbFormat::TCreate,const TUidType&)
110 User::Leave(KErrNotSupported);
117 CDbSource* CDataDocument::OpenL(RFs& aFs,const TDesC& aName,TDbFormat::TOpen aMode)
119 if (aMode!=TDbFormat::EReadOnly)
120 User::Leave(KErrNotSupported);
121 CDataDocument* self=new(ELeave) CDataDocument(aFs);
122 CleanupStack::PushL(self);
123 self->CDbFileStoreDatabase::OpenL(aName,aMode);
124 CDbSource* src=self->SourceL();
125 CleanupStack::Pop(); // self
129 TStreamId CDataDocument::DatabaseIdL(TStreamId aRootId)
131 CStreamDictionary* dict=CStreamDictionary::NewLC();
132 RStoreReadStream read;
133 read.OpenLC(*iStore,aRootId);
135 CleanupStack::PopAndDestroy(); // read
136 TStreamId id=dict->At(KUidDataHeadStream);
137 CleanupStack::PopAndDestroy(); // dict
138 read.OpenLC(*iStore,id);
140 CleanupStack::PopAndDestroy(); // read
144 const TDbFormat KFormats[]=
147 _S("test"),&CDbFileStoreDatabase::CreateL,&CDbFileStoreDatabase::OpenL,
148 {KPermanentFileStoreLayoutUidValue,KTestUidValue}
151 _S("data"),&CDataDocument::CreateL,&CDataDocument::OpenL,
152 {KPermanentFileStoreLayoutUidValue,KUidAppDllDocValue,KUidDataAppValue}
155 _S("opl"),&COplDatabase::CreateL,&COplDatabase::OpenL,
156 {KPermanentFileStoreLayoutUidValue,KUidExternalOplFileValue}
159 _S("opl.doc"),&COplDatabase::CreateL,&COplDatabase::OpenL,
160 {KPermanentFileStoreLayoutUidValue,KUidOplDocValue}
164 const TDbDriver KDriver={4,KFormats};
166 EXPORT_C const TDbDriver& DbmsDriver()