os/persistentdata/persistentstorage/store/TSTOR/T_BMDirectFileStore.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Demonstrates performance assesment of direct file store..
    15 // The file name, extension and path for the file store
    16 // 
    17 //
    18 
    19 _LIT(KDirectFileStoreName,"Z:\\STOR-TST\\BMDirectFileStores.dat");
    20 extern TFileName TheDirectStoreFilePath;
    21 
    22 // Create objects externalizes them to a direct file store and then destroys the objects
    23 LOCAL_C void doStoreL(const TDesC& aName);
    24 
    25 // Constructs "empty" CDFileStoreA, ClassB and CDFileStoreC objects and restores them from the direct file store.
    26 LOCAL_C void doRestoreL(const TDesC& aName);
    27 
    28 #define DFSTORERUNSIZE	1000
    29 
    30 class CDFileStoreA : public CBase
    31 	{
    32 public :
    33 	static CDFileStoreA* NewLC();
    34 	~CDFileStoreA();
    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 class CDFileStoreB : public CBase
    45 	{
    46 public :
    47 	static CDFileStoreB* NewLC();
    48 	void ExternalizeL(RWriteStream& aStream) const;
    49 	void InternalizeL(RReadStream& aStream);
    50 public :
    51 	TBuf<32> iFixBuffer;
    52 	TUint    iUintValue;
    53 	TInt     iIntValue;
    54 	TReal    iRealValue;
    55 	};
    56 
    57 //#define KStdirectClassCGranularity 4
    58 
    59 class CDFileStoreC : public CBase
    60 	{
    61 public :
    62 	static CDFileStoreC* NewLC();
    63 	~CDFileStoreC();
    64 	void     ConstructL();
    65 	//void     AddNumberToArrayL(TInt aValue);
    66 	void     AddNumberToArrayL();
    67 	void     ExternalizeL(RWriteStream& aStream) const;
    68 	void     InternalizeL(RReadStream& aStream);
    69 public :
    70 	TBuf<32> iFixBuffer;
    71 	CArrayFixFlat<TInt>* iArray;
    72 	CArrayFixFlat<TElement>* nArray;
    73 	};
    74 
    75 
    76 
    77 /**
    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.
    80 @SYMTestPriority 	High
    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
    83 @SYMPREQ                PREQ1132
    84 @SYMREQ			REQ4883
    85 */
    86 LOCAL_C void doDirectFileStoresL()
    87     {
    88     TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
    89 	TParse directFileStoreName;
    90 	directFileStoreName.Set(drive.Name(), &KDirectFileStoreName, NULL);
    91 	TheDirectStoreFilePath.Copy(directFileStoreName.FullName());
    92     
    93     // make sure directory exists
    94 	TheFs.MkDirAll(directFileStoreName.DriveAndPath());
    95 	
    96 	TTime start;
    97 	start.HomeTime();
    98 	for(int i=0; i<DFSTORERUNSIZE; i++)
    99 		{
   100 		doStoreL(TheDirectStoreFilePath);	
   101 		}
   102 	TTime end;
   103 	end.HomeTime();
   104 	TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
   105 	TheTest.Printf(_L("CDirectFileStore, %d 'write' tests. Time=%ld ms\r\n"), DFSTORERUNSIZE, us.Int64() / 1000);
   106 
   107 	start.HomeTime();
   108 	for(int j=0; j<DFSTORERUNSIZE;j++)
   109 		{
   110 		doRestoreL(TheDirectStoreFilePath);
   111 		}
   112 	end.HomeTime();
   113 	us = end.MicroSecondsFrom(start);
   114 	TheTest.Printf(_L("CDirectFileStore, %d 'read' tests.  Time=%ld ms\r\n"), DFSTORERUNSIZE, us.Int64() / 1000);
   115 	}
   116 
   117 LOCAL_C void doStoreL(const TDesC& aName)
   118 	{
   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;
   125 
   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;
   133 
   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);
   141 
   142 	// Must say what kind of file store.
   143 	store->SetTypeL(KDirectFileStoreLayoutUid);
   144     	
   145 	// Construct the output stream.
   146 	RStoreWriteStream outstream;
   147 	TStreamId id = outstream.CreateLC(*store);
   148 
   149 	// Stream out the CDFileStoreA, CDFileStoreB, and the CDFileStoreC object
   150 	outstream  << *theA << *theB << *theC; 
   151 
   152 	// Commit changes to the stream
   153 	outstream.CommitL();
   154 
   155     // Cleanup the stream object
   156     CleanupStack::PopAndDestroy();
   157 
   158 	// Set this stream id as the root
   159 	store->SetRootL(id);
   160 
   161 	// Commit changes to the store
   162 	store->CommitL();
   163 									// store
   164 									// theC
   165 									// theB
   166 	CleanupStack::PopAndDestroy(4); // theA
   167 	}
   168 
   169 LOCAL_C void doRestoreL(const TDesC& aName)
   170 	{
   171 	CDFileStoreA* theA = CDFileStoreA::NewLC();
   172 	CDFileStoreB* theB = CDFileStoreB::NewLC();
   173 	CDFileStoreC* theC = CDFileStoreC::NewLC();
   174 					
   175 	// Open the direct file store
   176 	CFileStore* store = CDirectFileStore::OpenLC(TheFs,aName,EFileRead);
   177 
   178 	// Construct and open the root stream which contains the representation of our objects.
   179 	RStoreReadStream instream;
   180 	instream.OpenLC(*store,store->Root());
   181 	
   182 	// Stream in the CDFileStoreA object, the CDFileStoreB object and the CDFileStoreC object
   183 	instream  >> *theA >> *theB >> *theC; 
   184 
   185 	CleanupStack::PopAndDestroy();
   186 	CleanupStack::PopAndDestroy(4);
   187 	}
   188 
   189 //***************************************************************
   190 CDFileStoreA* CDFileStoreA::NewLC()
   191 	{
   192 	CDFileStoreA* self = new (ELeave) CDFileStoreA;
   193 	CleanupStack::PushL(self);
   194 	return self;
   195 	}
   196 	
   197 CDFileStoreA::~CDFileStoreA()
   198 	{
   199 	delete iVarBuffer;
   200 	}
   201 
   202 void CDFileStoreA::SetTextL(const TDesC& aData)
   203 	{
   204 	iVarBuffer = aData.AllocL();	
   205 	}
   206 
   207 void CDFileStoreA::ExternalizeL(RWriteStream& aStream) const
   208 	{
   209 	aStream.WriteInt32L(iVarBuffer->Des().MaxLength());
   210 	aStream << *iVarBuffer;
   211 	aStream.WriteInt32L(iIntValue);
   212 	aStream.WriteUint32L(iUintValue);
   213 	}  
   214  
   215 void CDFileStoreA::InternalizeL(RReadStream& aStream)
   216 	{
   217 	TInt maxlen;
   218 	maxlen     = aStream.ReadInt32L();
   219 	iVarBuffer = HBufC::NewL(aStream,maxlen);
   220 	iIntValue  = aStream.ReadInt32L();
   221 	iUintValue = aStream.ReadUint32L();
   222 	}  
   223 
   224 //***************************************************************
   225 CDFileStoreB* CDFileStoreB::NewLC()
   226 	{
   227 	CDFileStoreB* self = new (ELeave) CDFileStoreB;
   228 	CleanupStack::PushL(self);
   229 	return self;
   230 	}
   231 
   232 void CDFileStoreB::ExternalizeL(RWriteStream& aStream) const
   233 	{
   234 	aStream << iFixBuffer;
   235 	aStream.WriteInt32L(iIntValue);
   236 	aStream.WriteUint32L(iUintValue);
   237 	aStream.WriteReal64L(iRealValue);
   238 	}  
   239  
   240 void CDFileStoreB::InternalizeL(RReadStream& aStream)
   241 	{
   242 	aStream >> iFixBuffer;
   243 	iIntValue  = aStream.ReadInt32L();
   244 	iUintValue = aStream.ReadUint32L();
   245 	iRealValue = aStream.ReadReal64L();
   246 	}  
   247 
   248 //***************************************************************
   249 CDFileStoreC* CDFileStoreC::NewLC()
   250 	{
   251 	CDFileStoreC* self = new (ELeave) CDFileStoreC;
   252 	CleanupStack::PushL(self);
   253 	self->ConstructL();
   254 	return self;
   255 	}
   256 	
   257 void CDFileStoreC::ConstructL()
   258 	{
   259 	iArray = new (ELeave) CArrayFixFlat<TInt>(DFSTORERUNSIZE);
   260 	nArray = new (ELeave) CArrayFixFlat<TElement>(DFSTORERUNSIZE);
   261 	}
   262 
   263 void CDFileStoreC::AddNumberToArrayL(/*TInt aValue*/)
   264 	{
   265 	TElement theElement;
   266 	_LIT(KFormatTxt,"BenchMarkingDirectFileStore%4u");
   267 	TBuf<256> str(KFormatTxt);
   268 		
   269 	for (TInt index = 0; index < DFSTORERUNSIZE; index++)
   270 		{
   271 		iArray->AppendL((index+99999));
   272 		theElement.iData.Format(KFormatTxt,index);
   273 		nArray->AppendL(theElement);
   274 		}
   275 	}
   276 
   277 CDFileStoreC::~CDFileStoreC()
   278 	{
   279 	delete iArray;
   280 	delete nArray;
   281 	}
   282 
   283 void CDFileStoreC::ExternalizeL(RWriteStream& aStream) const
   284 	{
   285 	aStream << iFixBuffer;
   286 
   287 	TInt count = iArray->Count();
   288 	aStream.WriteInt32L(count);
   289 	TElement theElement;
   290 	for (TInt index = 0; index < count; index++)
   291 		{
   292 		aStream.WriteInt32L((*iArray)[index]);
   293 		theElement =((*nArray)[index]);
   294 		aStream.WriteL(theElement.iData, 31);
   295 		}
   296 	}  
   297  
   298 void CDFileStoreC::InternalizeL(RReadStream& aStream)
   299 	{
   300 	aStream >> iFixBuffer;
   301 
   302 	TInt count;
   303 	count  = aStream.ReadInt32L();
   304 	TElement theElement;
   305 	//nArray = new (ELeave) CArrayFixFlat<TElement>(10);
   306 	nArray->Reset();
   307 	for (TInt index = 0; index < count; index++)
   308 		{
   309 		iArray->AppendL(aStream.ReadInt32L());
   310 		aStream.ReadL(theElement.iData, 31);
   311 		nArray->AppendL(theElement);
   312 		}
   313 	}