os/persistentdata/persistentstorage/store/TSTOR/T_BMStreamStore.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 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
// T_StreamInStore.inl
sl@0
    15
// Demonstrates performance assesment of stream creation in non persistent store
sl@0
    16
// Create CStreamStoreA object and CStreamStoreB object, externalize them to
sl@0
    17
// a non-persistent store and then destroy the CStreamStoreA object
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
LOCAL_C void doStoreL(CStreamStore& aStore,TStreamId& anId);
sl@0
    22
sl@0
    23
// Create an "empty" CStreamStoreA and CStreamStoreB objects and
sl@0
    24
// restore them from the in-memory store
sl@0
    25
LOCAL_C void doRestoreL(CStreamStore& aStore,const TStreamId& anId);
sl@0
    26
sl@0
    27
#define STREAMSTORERUNSIZE	121
sl@0
    28
sl@0
    29
// Declare example class CStreamStoreA
sl@0
    30
class CStreamStoreA : public CBase
sl@0
    31
	{
sl@0
    32
public :
sl@0
    33
	static CStreamStoreA* NewLC();
sl@0
    34
	~CStreamStoreA();
sl@0
    35
	void     SetTextL(const TDesC& aData);
sl@0
    36
	void     ExternalizeL(RWriteStream& aStream) const;
sl@0
    37
	void     InternalizeL(RReadStream& aStream);
sl@0
    38
public :
sl@0
    39
	HBufC*   iVarBuffer;
sl@0
    40
	TInt     iIntValue;
sl@0
    41
	TUint    iUintValue;
sl@0
    42
	};
sl@0
    43
sl@0
    44
// Declare example class CStreamStoreB
sl@0
    45
class CStreamStoreB : public CBase
sl@0
    46
	{
sl@0
    47
public :
sl@0
    48
	static CStreamStoreB* NewLC();
sl@0
    49
	~CStreamStoreB();
sl@0
    50
	void ExternalizeL(RWriteStream& aStream) const;
sl@0
    51
	void InternalizeL(RReadStream& aStream);
sl@0
    52
private:
sl@0
    53
	void		ConstructL();
sl@0
    54
public :
sl@0
    55
	TBuf<32> iFixBuffer;
sl@0
    56
	TUint    iUintValue;
sl@0
    57
	TInt     iIntValue;
sl@0
    58
	TReal    iRealValue;
sl@0
    59
	CArrayFixFlat<TElement>* iArray;
sl@0
    60
	};
sl@0
    61
sl@0
    62
/**
sl@0
    63
@SYMTestCaseID          SYSLIB-STORE-PT-1370
sl@0
    64
@SYMTestCaseDesc	CR MRLM-6A9DF7. Tests the impact of RFileBuf cache size on CBufStore performance. RFileBuf cache size must be set at a build time in EStor_Template.mmh file, DEFAULT_FILE_BUF_SIZE macro definition.
sl@0
    65
@SYMTestPriority 	High
sl@0
    66
@SYMTestActions  	The test creates a set of test objects, externalizes them STREAMRUNSIZE times and prints the execution time. Then internalizes them STREAMSTORERUNSIZE times and prints the execution time. STREAMSTORERUNSIZE is a constant, defined in the source file.
sl@0
    67
@SYMTestExpectedResults Test must show a performance improvement
sl@0
    68
@SYMPREQ                PREQ1132
sl@0
    69
@SYMREQ			REQ4883
sl@0
    70
*/
sl@0
    71
LOCAL_C void doStoreStreamsL()
sl@0
    72
    {
sl@0
    73
	// Stream id, kept in memory and used to access the 
sl@0
    74
	// (one and only stream) in non-persistent store
sl@0
    75
	TStreamId theId;
sl@0
    76
sl@0
    77
	// construct a CBufStore, an in-memory non-persistent store.
sl@0
    78
	CStreamStore* store = CBufStore::NewLC(228 /*granularity*/);
sl@0
    79
	TTime start;
sl@0
    80
	start.HomeTime();
sl@0
    81
	for(int i=0; i < STREAMSTORERUNSIZE; i++)
sl@0
    82
		{
sl@0
    83
		doStoreL(*store,theId);
sl@0
    84
		}
sl@0
    85
	TTime end;
sl@0
    86
	end.HomeTime();
sl@0
    87
	TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
sl@0
    88
	TheTest.Printf(_L("CBufStore, %d 'write' tests. Time=%ld us\r\n"), STREAMSTORERUNSIZE, us.Int64());
sl@0
    89
sl@0
    90
	start.HomeTime();
sl@0
    91
	for(int i=0; i < STREAMSTORERUNSIZE; i++)
sl@0
    92
		{
sl@0
    93
		doRestoreL(*store,theId);
sl@0
    94
		}
sl@0
    95
	end.HomeTime();
sl@0
    96
	us = end.MicroSecondsFrom(start);
sl@0
    97
	TheTest.Printf(_L("CBufStore, %d 'read' tests.  Time=%ld us\r\n"), STREAMSTORERUNSIZE, us.Int64());
sl@0
    98
sl@0
    99
	// destroy the CBufStore object
sl@0
   100
	CleanupStack::PopAndDestroy();
sl@0
   101
	}
sl@0
   102
sl@0
   103
LOCAL_C void doStoreL(CStreamStore& aStore,TStreamId& anId)
sl@0
   104
	{
sl@0
   105
	// Create CStreamStoreA and put some data into it
sl@0
   106
	_LIT(KTxtForClassA,"Text for CStreamStoreA");
sl@0
   107
	CStreamStoreA* theA = CStreamStoreA::NewLC();
sl@0
   108
	theA->SetTextL(KTxtForClassA);
sl@0
   109
	theA->iIntValue  = -1;
sl@0
   110
	theA->iUintValue = 2;
sl@0
   111
sl@0
   112
	// Create CStreamStoreB and put some data into it
sl@0
   113
	_LIT(KTxtForClassB,"Text for CStreamStoreB");
sl@0
   114
	CStreamStoreB* theB = CStreamStoreB::NewLC();
sl@0
   115
	theB->iFixBuffer = KTxtForClassB;
sl@0
   116
	theB->iIntValue  = -3;
sl@0
   117
	theB->iUintValue = 4; 
sl@0
   118
	theB->iRealValue = 5.6;
sl@0
   119
sl@0
   120
	TElement theElement;
sl@0
   121
	_LIT(KFormatTxt,"BenchMarkingStreamStore%4u");
sl@0
   122
	TBuf<256> str(KFormatTxt);
sl@0
   123
	
sl@0
   124
	for (TInt index = 0; index < STREAMSTORERUNSIZE; index++)
sl@0
   125
		{
sl@0
   126
		theElement.iData.Format(KFormatTxt,index);
sl@0
   127
		theB->iArray->AppendL(theElement);
sl@0
   128
		}
sl@0
   129
sl@0
   130
	// Create the output stream. Stream id (the only one) is kept in memory.
sl@0
   131
	RStoreWriteStream outstream;
sl@0
   132
	anId = outstream.CreateLC(aStore);
sl@0
   133
sl@0
   134
	outstream  << *theA; 
sl@0
   135
	outstream  << *theB;
sl@0
   136
	outstream.CommitL();
sl@0
   137
						//outstream
sl@0
   138
						//theB
sl@0
   139
						//theA
sl@0
   140
	CleanupStack::PopAndDestroy(3);
sl@0
   141
	}
sl@0
   142
sl@0
   143
LOCAL_C void doRestoreL(CStreamStore& aStore,const TStreamId& anId)
sl@0
   144
	{
sl@0
   145
	__UHEAP_MARK;
sl@0
   146
	// Create  an "empty" CStreamStoreA and CStreamStoreB objects
sl@0
   147
	CStreamStoreA* theA = CStreamStoreA::NewLC();
sl@0
   148
	CStreamStoreB* theB = CStreamStoreB::NewLC();
sl@0
   149
		
sl@0
   150
	// Create/open the input stream. Access the one and only stream from in-memory store.
sl@0
   151
	RStoreReadStream instream;
sl@0
   152
	instream.OpenLC(aStore,anId);
sl@0
   153
sl@0
   154
	// Stream in CStreamStoreA object first and then stream in the CStreamStoreB object. 
sl@0
   155
	// This is the order in which the objects were streamed out.
sl@0
   156
	instream >> *theA;
sl@0
   157
	instream >> *theB;
sl@0
   158
									// instream
sl@0
   159
									// theB
sl@0
   160
	CleanupStack::PopAndDestroy(3); // theA 
sl@0
   161
	__UHEAP_MARKEND;
sl@0
   162
	}
sl@0
   163
									
sl@0
   164
//***************************************************************
sl@0
   165
CStreamStoreA* CStreamStoreA::NewLC()
sl@0
   166
	{
sl@0
   167
	CStreamStoreA* self = new (ELeave) CStreamStoreA;
sl@0
   168
	CleanupStack::PushL(self);
sl@0
   169
	return self;
sl@0
   170
	}
sl@0
   171
	
sl@0
   172
CStreamStoreA::~CStreamStoreA()
sl@0
   173
	{
sl@0
   174
	delete iVarBuffer;
sl@0
   175
	}
sl@0
   176
sl@0
   177
void CStreamStoreA::SetTextL(const TDesC& aData)
sl@0
   178
	{
sl@0
   179
	iVarBuffer = aData.AllocL();	
sl@0
   180
	}
sl@0
   181
sl@0
   182
void CStreamStoreA::ExternalizeL(RWriteStream& aStream) const
sl@0
   183
	{
sl@0
   184
	aStream.WriteInt32L(iVarBuffer->Des().MaxLength());
sl@0
   185
	aStream << *iVarBuffer;
sl@0
   186
	aStream.WriteInt32L(iIntValue);
sl@0
   187
	aStream.WriteUint32L(iUintValue);
sl@0
   188
	}
sl@0
   189
 
sl@0
   190
void CStreamStoreA::InternalizeL(RReadStream& aStream)
sl@0
   191
	{
sl@0
   192
	TInt maxlen;
sl@0
   193
	maxlen     = aStream.ReadInt32L();
sl@0
   194
	iVarBuffer = HBufC::NewL(aStream,maxlen);
sl@0
   195
	iIntValue  = aStream.ReadInt32L();
sl@0
   196
	iUintValue = aStream.ReadUint32L();
sl@0
   197
	}
sl@0
   198
	 	
sl@0
   199
//***************************************************************
sl@0
   200
CStreamStoreB* CStreamStoreB::NewLC()
sl@0
   201
	{
sl@0
   202
	CStreamStoreB* self = new (ELeave) CStreamStoreB;
sl@0
   203
	CleanupStack::PushL(self);
sl@0
   204
	self->ConstructL();
sl@0
   205
	return self;
sl@0
   206
	}
sl@0
   207
sl@0
   208
CStreamStoreB::~CStreamStoreB()
sl@0
   209
	{
sl@0
   210
	delete iArray;
sl@0
   211
	}
sl@0
   212
sl@0
   213
void CStreamStoreB::ConstructL()
sl@0
   214
	{
sl@0
   215
	iArray = new (ELeave) CArrayFixFlat<TElement> (STREAMSTORERUNSIZE);
sl@0
   216
	}
sl@0
   217
sl@0
   218
void CStreamStoreB::ExternalizeL(RWriteStream& aStream) const
sl@0
   219
	{
sl@0
   220
	aStream << iFixBuffer;
sl@0
   221
	aStream.WriteInt32L(iIntValue);
sl@0
   222
	aStream.WriteUint32L(iUintValue);
sl@0
   223
	aStream.WriteReal64L(iRealValue);
sl@0
   224
	
sl@0
   225
	TElement theElement;
sl@0
   226
	TInt count = iArray->Count();
sl@0
   227
	for (TInt index = 0; index < count; index++)
sl@0
   228
		{
sl@0
   229
		theElement =((*iArray)[index]);
sl@0
   230
		aStream.WriteL(theElement.iData, 27);
sl@0
   231
		}
sl@0
   232
	}
sl@0
   233
	 
sl@0
   234
void CStreamStoreB::InternalizeL(RReadStream& aStream)
sl@0
   235
	{
sl@0
   236
	aStream >> iFixBuffer;
sl@0
   237
	iIntValue  = aStream.ReadInt32L();
sl@0
   238
	iUintValue = aStream.ReadUint32L();
sl@0
   239
	iRealValue = aStream.ReadReal64L();
sl@0
   240
sl@0
   241
	TElement theElement;
sl@0
   242
	iArray->Reset();
sl@0
   243
	for (TInt index = 0; index <STREAMSTORERUNSIZE; index++)
sl@0
   244
		{
sl@0
   245
		aStream.ReadL(theElement.iData, 27);
sl@0
   246
		iArray->AppendL(theElement);
sl@0
   247
		}
sl@0
   248
	}
sl@0
   249
	
sl@0
   250