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