Update contrib.
1 // Copyright (c) 2008-2010 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 // This is the file name, extension and path specification for the file store
15 // and should not be used as is
19 _LIT(KStreamsName, "Z:\\STOR-TST\\BMStreams.dat");
20 extern TFileName TheStreamsFilePath;
22 // Construct CCompound object and externalize it to a single stream
23 LOCAL_C void doExternalizeL(const TDesC& aName);
25 // Internalize CCompound object from the stream
26 LOCAL_C void doInternalizeL(const TDesC& aName);
28 #define STREAMRUNSIZE 500
29 // Declare a class used by the example
33 void ExternalizeL(RWriteStream& aStream) const;
34 void InternalizeL(RReadStream& aStream);
44 void ExternalizeL(RWriteStream& aStream) const;
45 void InternalizeL(RReadStream& aStream);
50 class CCompound : public CBase
54 static CCompound* NewLC();
55 static CCompound* NewLC(CStreamStore& aStore,TStreamId anId);
56 static CCompound* NewL(CStreamStore& aStore,TStreamId anId);
57 TStreamId StoreL(CStreamStore& store);
58 void RestoreL(CStreamStore& aStore,TStreamId anId);
59 void InternalizeL(RReadStream& aStream);
60 void ExternalizeL(RWriteStream& aStream) const;
63 void ConstructL(CStreamStore& aStore,TStreamId anId);
67 CArrayFixFlat<TElement>* iArray;
72 @SYMTestCaseID SYSLIB-STORE-PT-1369
73 @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.
75 @SYMTestActions The test creates a set of test objects, externalizes them STREAMRUNSIZE times and prints the execution time. Then internalizes them STREAMRUNSIZE times and prints the execution time.
76 STREAMRUNSIZE is a constant, defined in the source file.
77 @SYMTestExpectedResults Test must show a performance improvement
81 LOCAL_C void doStreamingL()
83 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
85 streamsName.Set(drive.Name(), &KStreamsName, NULL);
86 TheStreamsFilePath.Copy(streamsName.FullName());
88 // make sure directory exists
89 TheFs.MkDirAll(streamsName.DriveAndPath());
92 for(int i=0; i<STREAMRUNSIZE;i++)
94 doExternalizeL(TheStreamsFilePath);
98 TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
99 TheTest.Printf(_L("CDirectFileStore, externalise %d streams. Time=%ld ms\r\n"), STREAMRUNSIZE, us.Int64() / 1000);
102 for(int j=0; j<STREAMRUNSIZE;j++)
104 doInternalizeL(TheStreamsFilePath);
107 us = end.MicroSecondsFrom(start);
108 TheTest.Printf(_L("CDirectFileStore, internalise %d streams. Time=%ld ms\r\n"), STREAMRUNSIZE, us.Int64() / 1000);
111 LOCAL_C void doExternalizeL(const TDesC& aName)
113 // construct file store object - the file to contain the store
114 CFileStore* store = CDirectFileStore::ReplaceLC(TheFs,aName,EFileWrite);
116 // Must say what kind of file store
117 store->SetTypeL(KDirectFileStoreLayoutUid);
119 // Construct an object of type CCompound and prepare some data into it
120 CCompound* thecompound = CCompound::NewLC();
122 _LIT(KTxtClassAText,"CStreamA text");
124 thecompound->iCa->iBufferA = KTxtClassAText;
125 thecompound->iCa->iXA = -1;
126 thecompound->iCa->iYA = 2;
127 thecompound->iTc.iZC = 3.456;
130 _LIT(KFormatTxt,"BenchMarkingTheStream%4u");
131 TBuf<256> str(KFormatTxt);
133 for (TInt index = 0; index < STREAMRUNSIZE; index++)
135 theElement.iData.Format(KFormatTxt,index);
136 thecompound->iArray->AppendL(theElement);
139 // Store the compound object to a single stream and save the stream id as the root id
140 TStreamId id = thecompound->StoreL(*store);
142 // Set the stream id as the root
145 // Commit changes to the store
148 CleanupStack::PopAndDestroy(2); // store
151 LOCAL_C void doInternalizeL(const TDesC& aName)
153 //Create file store object - specifying the file containing the store.
154 CFileStore* store = CDirectFileStore::OpenLC(TheFs,aName,EFileRead);
156 // Construct a CCompound object from the root stream created earlier.
157 CCompound* thecompound = CCompound::NewL(*store,store->Root());
159 // destroy the store object (this also closes the file containing the store)
160 CleanupStack::PopAndDestroy();
161 // Now destroy the CCompound object
165 //***************************************************************
167 // The CCompound destructor
168 CCompound::~CCompound()
174 CCompound* CCompound::NewLC()
176 CCompound* self=new (ELeave) CCompound;
177 CleanupStack::PushL(self);
182 void CCompound::ConstructL()
184 iCa = new (ELeave) CStreamA;
185 iArray = new (ELeave) CArrayFixFlat<TElement>(10);
188 // Construct a new CCompound object from the input stream.
189 CCompound* CCompound::NewL(CStreamStore& aStore,TStreamId anId)
191 CCompound* self=CCompound::NewLC(aStore,anId);
196 // Construct CCompound object from the root stream of the store
197 CCompound* CCompound::NewLC(CStreamStore& aStore,TStreamId anId)
199 CCompound* self=new (ELeave) CCompound;
200 CleanupStack::PushL(self);
201 self->ConstructL(aStore,anId);
205 void CCompound::ConstructL(CStreamStore& aStore,TStreamId anId)
207 iCa = new (ELeave) CStreamA;
208 // Restore here at construction
209 RestoreL(aStore,anId);
212 void CCompound::RestoreL(CStreamStore& aStore,TStreamId anId)
214 RStoreReadStream instream;
215 instream.OpenLC(aStore,anId);
216 InternalizeL(instream);
217 // Cleanup the stream object
218 CleanupStack::PopAndDestroy();
221 // Read the components and data members of the CCompound object from stream
222 void CCompound::InternalizeL(RReadStream& aStream)
228 iArray = new (ELeave) CArrayFixFlat<TElement>(STREAMRUNSIZE);
231 for (TInt index = 0; index < STREAMRUNSIZE ; index++)
233 aStream.ReadL(theElement.iData, 25);
234 iArray->AppendL(theElement);
238 TStreamId CCompound::StoreL(CStreamStore& aStore)
240 RStoreWriteStream outstream;
241 TStreamId id = outstream.CreateLC(aStore);
242 // Stream out this CCompound object
243 ExternalizeL(outstream);
244 // Commit changes to the stream
246 // Cleanup the stream object.
247 CleanupStack::PopAndDestroy();
251 // Write the components and data members of the CCompound object to stream
252 void CCompound::ExternalizeL(RWriteStream& aStream) const
258 TInt count = iArray->Count();
259 for (TInt index = 0; index < count; index++)
261 theElement =((*iArray)[index]);
262 aStream.WriteL(theElement.iData, 25);
266 //***************************************************************
268 // Read the data members of the CStreamA object from the stream.
269 void CStreamA::InternalizeL(RReadStream& aStream)
272 iXA = aStream.ReadInt32L();
273 iYA = aStream.ReadUint32L();
275 // Write the data members of the CStreamA object to the stream
276 void CStreamA::ExternalizeL(RWriteStream& aStream)const
279 aStream.WriteInt32L(iXA);
280 aStream.WriteUint32L(iYA);
283 //***************************************************************
285 // Write the data member(s) of the TStream object to the stream
286 void TStream::ExternalizeL(RWriteStream& aStream) const
288 aStream.WriteReal64L(iZC);
291 // Read the data member(s) of the TStream object from the stream.
292 void TStream::InternalizeL(RReadStream& aStream)
294 iZC = aStream.ReadReal64L();