First public contribution.
1 // Copyright (c) 2008-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 // Demonstrates performance assesment of direct file store..
15 // The file name, extension and path for the file store
19 _LIT(KDirectFileStoreName,"Z:\\STOR-TST\\BMDirectFileStores.dat");
20 extern TFileName TheDirectStoreFilePath;
22 // Create objects externalizes them to a direct file store and then destroys the objects
23 LOCAL_C void doStoreL(const TDesC& aName);
25 // Constructs "empty" CDFileStoreA, ClassB and CDFileStoreC objects and restores them from the direct file store.
26 LOCAL_C void doRestoreL(const TDesC& aName);
28 #define DFSTORERUNSIZE 1000
30 class CDFileStoreA : public CBase
33 static CDFileStoreA* NewLC();
35 void SetTextL(const TDesC& aData);
36 void ExternalizeL(RWriteStream& aStream) const;
37 void InternalizeL(RReadStream& aStream);
44 class CDFileStoreB : public CBase
47 static CDFileStoreB* NewLC();
48 void ExternalizeL(RWriteStream& aStream) const;
49 void InternalizeL(RReadStream& aStream);
57 //#define KStdirectClassCGranularity 4
59 class CDFileStoreC : public CBase
62 static CDFileStoreC* NewLC();
65 //void AddNumberToArrayL(TInt aValue);
66 void AddNumberToArrayL();
67 void ExternalizeL(RWriteStream& aStream) const;
68 void InternalizeL(RReadStream& aStream);
71 CArrayFixFlat<TInt>* iArray;
72 CArrayFixFlat<TElement>* nArray;
78 @SYMTestCaseID SYSLIB-STORE-PT-1362
79 @SYMTestCaseDesc CR MRLM-6A9DF7. Tests the impact of RFileBuf cache size on CDirectFileStore performance. RFileBuf cache size must be set at a build time in EStor_Template.mmh file, DEFAULT_FILE_BUF_SIZE macro definition.
81 @SYMTestActions The test creates a set of test objects, externalizes them DFSTORERUNSIZE times and prints the execution time. Then internalizes them DFSTORERUNSIZE times and prints the execution time. DFSTORERUNSIZE is a constant, defined in the source file.
82 @SYMTestExpectedResults Test must show a performance improvement
86 LOCAL_C void doDirectFileStoresL()
88 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
89 TParse directFileStoreName;
90 directFileStoreName.Set(drive.Name(), &KDirectFileStoreName, NULL);
91 TheDirectStoreFilePath.Copy(directFileStoreName.FullName());
93 // make sure directory exists
94 TheFs.MkDirAll(directFileStoreName.DriveAndPath());
98 for(int i=0; i<DFSTORERUNSIZE; i++)
100 doStoreL(TheDirectStoreFilePath);
104 TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
105 TheTest.Printf(_L("CDirectFileStore, %d 'write' tests. Time=%ld ms\r\n"), DFSTORERUNSIZE, us.Int64() / 1000);
108 for(int j=0; j<DFSTORERUNSIZE;j++)
110 doRestoreL(TheDirectStoreFilePath);
113 us = end.MicroSecondsFrom(start);
114 TheTest.Printf(_L("CDirectFileStore, %d 'read' tests. Time=%ld ms\r\n"), DFSTORERUNSIZE, us.Int64() / 1000);
117 LOCAL_C void doStoreL(const TDesC& aName)
119 // Construct an object of type CDFileStoreA and put some data into it
120 _LIT(KTxtForClassA,"Text for CDFileStoreA");
121 CDFileStoreA* theA = CDFileStoreA::NewLC();
122 theA->SetTextL(KTxtForClassA);
123 theA->iIntValue = -1;
124 theA->iUintValue = 2;
126 // Construct an object of type CDFileStoreB and put some data into it
127 _LIT(KTxtForClassB,"Text for CDFileStoreB");
128 CDFileStoreB* theB = CDFileStoreB::NewLC();
129 theB->iFixBuffer = KTxtForClassB;
130 theB->iIntValue = -3;
131 theB->iUintValue = 4;
132 theB->iRealValue = 5.6;
134 // Construct an object of type CDFileStoreC and put some data into it
135 _LIT(KTxtForClassC,"Text for CDFileStoreC");
136 CDFileStoreC* theC = CDFileStoreC::NewLC();
137 theC->iFixBuffer = KTxtForClassC;
138 theC->AddNumberToArrayL();
139 // Create (replace) the direct file store
140 CFileStore* store = CDirectFileStore::ReplaceLC(TheFs,aName,EFileWrite);
142 // Must say what kind of file store.
143 store->SetTypeL(KDirectFileStoreLayoutUid);
145 // Construct the output stream.
146 RStoreWriteStream outstream;
147 TStreamId id = outstream.CreateLC(*store);
149 // Stream out the CDFileStoreA, CDFileStoreB, and the CDFileStoreC object
150 outstream << *theA << *theB << *theC;
152 // Commit changes to the stream
155 // Cleanup the stream object
156 CleanupStack::PopAndDestroy();
158 // Set this stream id as the root
161 // Commit changes to the store
166 CleanupStack::PopAndDestroy(4); // theA
169 LOCAL_C void doRestoreL(const TDesC& aName)
171 CDFileStoreA* theA = CDFileStoreA::NewLC();
172 CDFileStoreB* theB = CDFileStoreB::NewLC();
173 CDFileStoreC* theC = CDFileStoreC::NewLC();
175 // Open the direct file store
176 CFileStore* store = CDirectFileStore::OpenLC(TheFs,aName,EFileRead);
178 // Construct and open the root stream which contains the representation of our objects.
179 RStoreReadStream instream;
180 instream.OpenLC(*store,store->Root());
182 // Stream in the CDFileStoreA object, the CDFileStoreB object and the CDFileStoreC object
183 instream >> *theA >> *theB >> *theC;
185 CleanupStack::PopAndDestroy();
186 CleanupStack::PopAndDestroy(4);
189 //***************************************************************
190 CDFileStoreA* CDFileStoreA::NewLC()
192 CDFileStoreA* self = new (ELeave) CDFileStoreA;
193 CleanupStack::PushL(self);
197 CDFileStoreA::~CDFileStoreA()
202 void CDFileStoreA::SetTextL(const TDesC& aData)
204 iVarBuffer = aData.AllocL();
207 void CDFileStoreA::ExternalizeL(RWriteStream& aStream) const
209 aStream.WriteInt32L(iVarBuffer->Des().MaxLength());
210 aStream << *iVarBuffer;
211 aStream.WriteInt32L(iIntValue);
212 aStream.WriteUint32L(iUintValue);
215 void CDFileStoreA::InternalizeL(RReadStream& aStream)
218 maxlen = aStream.ReadInt32L();
219 iVarBuffer = HBufC::NewL(aStream,maxlen);
220 iIntValue = aStream.ReadInt32L();
221 iUintValue = aStream.ReadUint32L();
224 //***************************************************************
225 CDFileStoreB* CDFileStoreB::NewLC()
227 CDFileStoreB* self = new (ELeave) CDFileStoreB;
228 CleanupStack::PushL(self);
232 void CDFileStoreB::ExternalizeL(RWriteStream& aStream) const
234 aStream << iFixBuffer;
235 aStream.WriteInt32L(iIntValue);
236 aStream.WriteUint32L(iUintValue);
237 aStream.WriteReal64L(iRealValue);
240 void CDFileStoreB::InternalizeL(RReadStream& aStream)
242 aStream >> iFixBuffer;
243 iIntValue = aStream.ReadInt32L();
244 iUintValue = aStream.ReadUint32L();
245 iRealValue = aStream.ReadReal64L();
248 //***************************************************************
249 CDFileStoreC* CDFileStoreC::NewLC()
251 CDFileStoreC* self = new (ELeave) CDFileStoreC;
252 CleanupStack::PushL(self);
257 void CDFileStoreC::ConstructL()
259 iArray = new (ELeave) CArrayFixFlat<TInt>(DFSTORERUNSIZE);
260 nArray = new (ELeave) CArrayFixFlat<TElement>(DFSTORERUNSIZE);
263 void CDFileStoreC::AddNumberToArrayL(/*TInt aValue*/)
266 _LIT(KFormatTxt,"BenchMarkingDirectFileStore%4u");
267 TBuf<256> str(KFormatTxt);
269 for (TInt index = 0; index < DFSTORERUNSIZE; index++)
271 iArray->AppendL((index+99999));
272 theElement.iData.Format(KFormatTxt,index);
273 nArray->AppendL(theElement);
277 CDFileStoreC::~CDFileStoreC()
283 void CDFileStoreC::ExternalizeL(RWriteStream& aStream) const
285 aStream << iFixBuffer;
287 TInt count = iArray->Count();
288 aStream.WriteInt32L(count);
290 for (TInt index = 0; index < count; index++)
292 aStream.WriteInt32L((*iArray)[index]);
293 theElement =((*nArray)[index]);
294 aStream.WriteL(theElement.iData, 31);
298 void CDFileStoreC::InternalizeL(RReadStream& aStream)
300 aStream >> iFixBuffer;
303 count = aStream.ReadInt32L();
305 //nArray = new (ELeave) CArrayFixFlat<TElement>(10);
307 for (TInt index = 0; index < count; index++)
309 iArray->AppendL(aStream.ReadInt32L());
310 aStream.ReadL(theElement.iData, 31);
311 nArray->AppendL(theElement);