sl@0
|
1 |
// Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This is the file name, extension and path specification for the file store
|
sl@0
|
15 |
// and should not be used as is
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
_LIT(KStreamsName, "Z:\\STOR-TST\\BMStreams.dat");
|
sl@0
|
20 |
extern TFileName TheStreamsFilePath;
|
sl@0
|
21 |
|
sl@0
|
22 |
// Construct CCompound object and externalize it to a single stream
|
sl@0
|
23 |
LOCAL_C void doExternalizeL(const TDesC& aName);
|
sl@0
|
24 |
|
sl@0
|
25 |
// Internalize CCompound object from the stream
|
sl@0
|
26 |
LOCAL_C void doInternalizeL(const TDesC& aName);
|
sl@0
|
27 |
|
sl@0
|
28 |
#define STREAMRUNSIZE 500
|
sl@0
|
29 |
// Declare a class used by the example
|
sl@0
|
30 |
class CStreamA
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public :
|
sl@0
|
33 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
34 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
35 |
public :
|
sl@0
|
36 |
TBuf<32> iBufferA;
|
sl@0
|
37 |
TInt iXA;
|
sl@0
|
38 |
TUint iYA;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
class TStream
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public :
|
sl@0
|
44 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
45 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
46 |
public :
|
sl@0
|
47 |
TReal iZC;
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
class CCompound : public CBase
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public :
|
sl@0
|
53 |
~CCompound();
|
sl@0
|
54 |
static CCompound* NewLC();
|
sl@0
|
55 |
static CCompound* NewLC(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
56 |
static CCompound* NewL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
57 |
TStreamId StoreL(CStreamStore& store);
|
sl@0
|
58 |
void RestoreL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
59 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
60 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
void ConstructL();
|
sl@0
|
63 |
void ConstructL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
64 |
public :
|
sl@0
|
65 |
CStreamA* iCa;
|
sl@0
|
66 |
TStream iTc;
|
sl@0
|
67 |
CArrayFixFlat<TElement>* iArray;
|
sl@0
|
68 |
};
|
sl@0
|
69 |
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
@SYMTestCaseID SYSLIB-STORE-PT-1369
|
sl@0
|
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.
|
sl@0
|
74 |
@SYMTestPriority High
|
sl@0
|
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.
|
sl@0
|
76 |
STREAMRUNSIZE is a constant, defined in the source file.
|
sl@0
|
77 |
@SYMTestExpectedResults Test must show a performance improvement
|
sl@0
|
78 |
@SYMPREQ PREQ1132
|
sl@0
|
79 |
@SYMREQ REQ4883
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
LOCAL_C void doStreamingL()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
84 |
TParse streamsName;
|
sl@0
|
85 |
streamsName.Set(drive.Name(), &KStreamsName, NULL);
|
sl@0
|
86 |
TheStreamsFilePath.Copy(streamsName.FullName());
|
sl@0
|
87 |
|
sl@0
|
88 |
// make sure directory exists
|
sl@0
|
89 |
TheFs.MkDirAll(streamsName.DriveAndPath());
|
sl@0
|
90 |
TTime start;
|
sl@0
|
91 |
start.HomeTime();
|
sl@0
|
92 |
for(int i=0; i<STREAMRUNSIZE;i++)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
doExternalizeL(TheStreamsFilePath);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
TTime end;
|
sl@0
|
97 |
end.HomeTime();
|
sl@0
|
98 |
TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
|
sl@0
|
99 |
TheTest.Printf(_L("CDirectFileStore, externalise %d streams. Time=%ld ms\r\n"), STREAMRUNSIZE, us.Int64() / 1000);
|
sl@0
|
100 |
|
sl@0
|
101 |
start.HomeTime();
|
sl@0
|
102 |
for(int j=0; j<STREAMRUNSIZE;j++)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
doInternalizeL(TheStreamsFilePath);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
end.HomeTime();
|
sl@0
|
107 |
us = end.MicroSecondsFrom(start);
|
sl@0
|
108 |
TheTest.Printf(_L("CDirectFileStore, internalise %d streams. Time=%ld ms\r\n"), STREAMRUNSIZE, us.Int64() / 1000);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
LOCAL_C void doExternalizeL(const TDesC& aName)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
// construct file store object - the file to contain the store
|
sl@0
|
114 |
CFileStore* store = CDirectFileStore::ReplaceLC(TheFs,aName,EFileWrite);
|
sl@0
|
115 |
|
sl@0
|
116 |
// Must say what kind of file store
|
sl@0
|
117 |
store->SetTypeL(KDirectFileStoreLayoutUid);
|
sl@0
|
118 |
|
sl@0
|
119 |
// Construct an object of type CCompound and prepare some data into it
|
sl@0
|
120 |
CCompound* thecompound = CCompound::NewLC();
|
sl@0
|
121 |
|
sl@0
|
122 |
_LIT(KTxtClassAText,"CStreamA text");
|
sl@0
|
123 |
|
sl@0
|
124 |
thecompound->iCa->iBufferA = KTxtClassAText;
|
sl@0
|
125 |
thecompound->iCa->iXA = -1;
|
sl@0
|
126 |
thecompound->iCa->iYA = 2;
|
sl@0
|
127 |
thecompound->iTc.iZC = 3.456;
|
sl@0
|
128 |
|
sl@0
|
129 |
TElement theElement;
|
sl@0
|
130 |
_LIT(KFormatTxt,"BenchMarkingTheStream%4u");
|
sl@0
|
131 |
TBuf<256> str(KFormatTxt);
|
sl@0
|
132 |
|
sl@0
|
133 |
for (TInt index = 0; index < STREAMRUNSIZE; index++)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
theElement.iData.Format(KFormatTxt,index);
|
sl@0
|
136 |
thecompound->iArray->AppendL(theElement);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
// Store the compound object to a single stream and save the stream id as the root id
|
sl@0
|
140 |
TStreamId id = thecompound->StoreL(*store);
|
sl@0
|
141 |
|
sl@0
|
142 |
// Set the stream id as the root
|
sl@0
|
143 |
store->SetRootL(id);
|
sl@0
|
144 |
|
sl@0
|
145 |
// Commit changes to the store
|
sl@0
|
146 |
store->CommitL();
|
sl@0
|
147 |
// thecompound
|
sl@0
|
148 |
CleanupStack::PopAndDestroy(2); // store
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
LOCAL_C void doInternalizeL(const TDesC& aName)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
//Create file store object - specifying the file containing the store.
|
sl@0
|
154 |
CFileStore* store = CDirectFileStore::OpenLC(TheFs,aName,EFileRead);
|
sl@0
|
155 |
|
sl@0
|
156 |
// Construct a CCompound object from the root stream created earlier.
|
sl@0
|
157 |
CCompound* thecompound = CCompound::NewL(*store,store->Root());
|
sl@0
|
158 |
|
sl@0
|
159 |
// destroy the store object (this also closes the file containing the store)
|
sl@0
|
160 |
CleanupStack::PopAndDestroy();
|
sl@0
|
161 |
// Now destroy the CCompound object
|
sl@0
|
162 |
delete thecompound;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
//***************************************************************
|
sl@0
|
166 |
|
sl@0
|
167 |
// The CCompound destructor
|
sl@0
|
168 |
CCompound::~CCompound()
|
sl@0
|
169 |
{
|
sl@0
|
170 |
delete iCa;
|
sl@0
|
171 |
delete iArray;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
CCompound* CCompound::NewLC()
|
sl@0
|
175 |
{
|
sl@0
|
176 |
CCompound* self=new (ELeave) CCompound;
|
sl@0
|
177 |
CleanupStack::PushL(self);
|
sl@0
|
178 |
self->ConstructL();
|
sl@0
|
179 |
return self;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
void CCompound::ConstructL()
|
sl@0
|
183 |
{
|
sl@0
|
184 |
iCa = new (ELeave) CStreamA;
|
sl@0
|
185 |
iArray = new (ELeave) CArrayFixFlat<TElement>(10);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
// Construct a new CCompound object from the input stream.
|
sl@0
|
189 |
CCompound* CCompound::NewL(CStreamStore& aStore,TStreamId anId)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
CCompound* self=CCompound::NewLC(aStore,anId);
|
sl@0
|
192 |
CleanupStack::Pop();
|
sl@0
|
193 |
return self;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
// Construct CCompound object from the root stream of the store
|
sl@0
|
197 |
CCompound* CCompound::NewLC(CStreamStore& aStore,TStreamId anId)
|
sl@0
|
198 |
{
|
sl@0
|
199 |
CCompound* self=new (ELeave) CCompound;
|
sl@0
|
200 |
CleanupStack::PushL(self);
|
sl@0
|
201 |
self->ConstructL(aStore,anId);
|
sl@0
|
202 |
return self;
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
void CCompound::ConstructL(CStreamStore& aStore,TStreamId anId)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
iCa = new (ELeave) CStreamA;
|
sl@0
|
208 |
// Restore here at construction
|
sl@0
|
209 |
RestoreL(aStore,anId);
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
void CCompound::RestoreL(CStreamStore& aStore,TStreamId anId)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
RStoreReadStream instream;
|
sl@0
|
215 |
instream.OpenLC(aStore,anId);
|
sl@0
|
216 |
InternalizeL(instream);
|
sl@0
|
217 |
// Cleanup the stream object
|
sl@0
|
218 |
CleanupStack::PopAndDestroy();
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
// Read the components and data members of the CCompound object from stream
|
sl@0
|
222 |
void CCompound::InternalizeL(RReadStream& aStream)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
aStream >> *iCa;
|
sl@0
|
225 |
aStream >> iTc;
|
sl@0
|
226 |
|
sl@0
|
227 |
TElement theElement;
|
sl@0
|
228 |
iArray = new (ELeave) CArrayFixFlat<TElement>(STREAMRUNSIZE);
|
sl@0
|
229 |
// iArray->Count();
|
sl@0
|
230 |
// iArray->Reset();
|
sl@0
|
231 |
for (TInt index = 0; index < STREAMRUNSIZE ; index++)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
aStream.ReadL(theElement.iData, 25);
|
sl@0
|
234 |
iArray->AppendL(theElement);
|
sl@0
|
235 |
}
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
TStreamId CCompound::StoreL(CStreamStore& aStore)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
RStoreWriteStream outstream;
|
sl@0
|
241 |
TStreamId id = outstream.CreateLC(aStore);
|
sl@0
|
242 |
// Stream out this CCompound object
|
sl@0
|
243 |
ExternalizeL(outstream);
|
sl@0
|
244 |
// Commit changes to the stream
|
sl@0
|
245 |
outstream.CommitL();
|
sl@0
|
246 |
// Cleanup the stream object.
|
sl@0
|
247 |
CleanupStack::PopAndDestroy();
|
sl@0
|
248 |
return id;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
// Write the components and data members of the CCompound object to stream
|
sl@0
|
252 |
void CCompound::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
253 |
{
|
sl@0
|
254 |
aStream << *iCa;
|
sl@0
|
255 |
aStream << iTc;
|
sl@0
|
256 |
|
sl@0
|
257 |
TElement theElement;
|
sl@0
|
258 |
TInt count = iArray->Count();
|
sl@0
|
259 |
for (TInt index = 0; index < count; index++)
|
sl@0
|
260 |
{
|
sl@0
|
261 |
theElement =((*iArray)[index]);
|
sl@0
|
262 |
aStream.WriteL(theElement.iData, 25);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
//***************************************************************
|
sl@0
|
267 |
|
sl@0
|
268 |
// Read the data members of the CStreamA object from the stream.
|
sl@0
|
269 |
void CStreamA::InternalizeL(RReadStream& aStream)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
aStream >> iBufferA;
|
sl@0
|
272 |
iXA = aStream.ReadInt32L();
|
sl@0
|
273 |
iYA = aStream.ReadUint32L();
|
sl@0
|
274 |
}
|
sl@0
|
275 |
// Write the data members of the CStreamA object to the stream
|
sl@0
|
276 |
void CStreamA::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
277 |
{
|
sl@0
|
278 |
aStream << iBufferA;
|
sl@0
|
279 |
aStream.WriteInt32L(iXA);
|
sl@0
|
280 |
aStream.WriteUint32L(iYA);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
//***************************************************************
|
sl@0
|
284 |
|
sl@0
|
285 |
// Write the data member(s) of the TStream object to the stream
|
sl@0
|
286 |
void TStream::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
287 |
{
|
sl@0
|
288 |
aStream.WriteReal64L(iZC);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
// Read the data member(s) of the TStream object from the stream.
|
sl@0
|
292 |
void TStream::InternalizeL(RReadStream& aStream)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
iZC = aStream.ReadReal64L();
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|