os/persistentdata/persistentstorage/store/TSTOR/T_BMPermFileStore.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 CPermanentFileStore
    15 // The Store root stream serves as an example of persistent data structure
    16 // 
    17 //
    18 
    19 // The file name, extension and path for the file store
    20 _LIT(KPermFileStoreName,"Z:\\STOR-TST\\BMPermFileStores.dat");
    21 extern TFileName ThePermStoreFilePath;
    22 
    23 // Create a permanent file store and initialise its stream structure
    24 LOCAL_C void doPrepareStoreL(const TDesC& aName);
    25 
    26 // Use the store, preserving the stream structure
    27 LOCAL_C void doPermFileStoreL(const TDesC& aName);
    28 
    29 // Update the data in the store
    30 LOCAL_C void doUpdateStoreL(CPersistentStore& aStore);
    31 #define PFSTORERUNSIZE	1000
    32 
    33 typedef TBuf<100> TItem;
    34 
    35 // The main object's in-memory representation
    36 class CItemArray : public CBase
    37 	{
    38 public:
    39 	static TStreamId CreateL(CStreamStore& aStore);
    40 	~CItemArray();
    41 	static CItemArray* NewLC(CStreamStore& aStore,TStreamId anId);
    42 	void RestoreL();
    43 	void StoreL() const;
    44 	void ExternalizeL(RWriteStream& aStream) const;
    45 	//
    46 	void AddItemL(const TItem& anItem);
    47 	void RemoveItemL(TInt anIndex);
    48 	TInt Count() const;
    49 	void GetItemL(TItem& anItem,TInt anIndex) const;
    50 protected:
    51 	CItemArray(CStreamStore& aStore);
    52 	void ConstructL();
    53 	void InternalizeL(RReadStream& aStream);
    54 private:
    55 	CStreamStore& iStore;
    56 	TStreamId iMyId;
    57 	CArrayFixFlat<TStreamId>* iArray;
    58 	CArrayFixFlat<TElement>* nArray;
    59 	};
    60 
    61 /**
    62 @SYMTestCaseID          SYSLIB-STORE-PT-1371
    63 @SYMTestCaseDesc	CR MRLM-6A9DF7. Tests the impact of RFileBuf cache size on CPermanentFileStore performance. RFileBuf cache size must be set at a build time in EStor_Template.mmh file, DEFAULT_FILE_BUF_SIZE macro definition.
    64 @SYMTestPriority 	High
    65 @SYMTestActions  	The test creates a set of test objects, externalizes them PFSTORERUNSIZE times and prints the execution time. Then internalizes them PFSTORERUNSIZE times and prints the execution time. PFSTORERUNSIZE is a constant, defined in the source file.
    66 @SYMTestExpectedResults Test must show a performance improvement
    67 @SYMPREQ                PREQ1132
    68 @SYMREQ			REQ4883
    69 */
    70 LOCAL_C void doPermanentFileStoreL()
    71     {
    72     TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
    73 	TParse permFileStoreName;
    74 	permFileStoreName.Set(drive.Name(), &KPermFileStoreName, NULL);
    75 	ThePermStoreFilePath.Copy(permFileStoreName.FullName());
    76     
    77 	TheFs.MkDirAll(permFileStoreName.DriveAndPath());
    78 	doPrepareStoreL(ThePermStoreFilePath);
    79 	
    80 	TTime start;
    81 	start.HomeTime();
    82 	for(int i=0; i<PFSTORERUNSIZE; i++)
    83 		{
    84 		doPermFileStoreL(ThePermStoreFilePath);
    85 		}
    86 	TTime end;
    87 	end.HomeTime();
    88 	TTimeIntervalMicroSeconds us = end.MicroSecondsFrom(start);
    89 	TheTest.Printf(_L("CPermanentFileStore, %d 'write' tests. Time=%ld ms\r\n"), PFSTORERUNSIZE, us.Int64() / 1000);
    90 	}
    91 
    92 LOCAL_C void doPrepareStoreL(const TDesC& aName)
    93 	{
    94 				// construct file store object - the file to contain the
    95 				// the store replaces any existing file of the same name.
    96 	CFileStore* store = CPermanentFileStore::ReplaceLC(TheFs,aName,EFileRead|EFileWrite);
    97 				// Easy way to set the layout type
    98     store->SetTypeL(store->Layout());
    99 		
   100 				// create the required stream for CItemArray
   101 	TStreamId id=CItemArray::CreateL(*store);
   102 	store->SetRootL(id);
   103 	store->CommitL();
   104 	CleanupStack::PopAndDestroy();
   105 	}
   106 
   107 LOCAL_C void doPermFileStoreL(const TDesC& aName)
   108 	{
   109 				// construct file store object - specifying the file
   110 				// containing the store.
   111 				// Do not need to specify the file store type, this is
   112 				// specified by the file itself
   113 	CFileStore* store = CFileStore::OpenL(TheFs,aName,EFileRead|EFileWrite);
   114 
   115 				// The standard form for using permanent file stores:
   116 				// 1. The store object is not owned by the updating code
   117 				// 2  Failure at any point during update, including the
   118 				//    final commit, should result in Revert() being called
   119 				//    on the store (before destruction).
   120 	_LIT(KTxtErrorOccurred,"\n** Error %d occured during store update");
   121 
   122 	TRAPD(error,doUpdateStoreL(*store));
   123 	if (error!=KErrNone)
   124 		{
   125 		store->Revert();
   126 		TheTest.Printf(KTxtErrorOccurred);
   127 		}
   128 
   129 	// the store is not on the cleanup stack
   130 	delete store;
   131 	}
   132 
   133 
   134 LOCAL_C void doUpdateStoreL(CPersistentStore& aStore)
   135 	{
   136 				// get the root stream into memory
   137 	CItemArray* array=CItemArray::NewLC(aStore,aStore.Root());
   138 
   139 				// Add some items
   140 	_LIT(KTxtHello,"hello");
   141 	_LIT(KTxtWorld," world!");
   142 
   143 	TItem item;
   144 	item = KTxtHello;
   145 	array->AddItemL(item);
   146 	item = KTxtWorld;
   147 	array->AddItemL(item);
   148 				// Re-write the root stream with new data
   149 	array->StoreL();
   150 	aStore.CommitL();
   151 
   152 				// remove an item
   153 	array->RemoveItemL(1);		// " world!"
   154 				// Re-write the root stream with new data
   155 	array->StoreL();
   156 	aStore.CommitL();
   157 				// Add an item
   158 	_LIT(KTxtCapWorld," WORLD!");
   159 	item= KTxtCapWorld;
   160 	array->AddItemL(item);
   161 				// Re-write the root stream with new data
   162 	array->StoreL();
   163 				// Discard all changes since last store commit
   164 	aStore.Revert();
   165 				// array and aStore are not in snych after revert...
   166 				// restore in-memory version to match store version
   167 	array->RestoreL();
   168 					// Add the item again
   169 	array->AddItemL(item);
   170 				// Re-write the root stream with new data
   171 	array->StoreL();
   172 	aStore.CommitL();
   173 	CleanupStack::PopAndDestroy(); // array
   174 	}
   175 
   176 //***************************************************************
   177 CItemArray::~CItemArray()
   178 	{
   179 	delete iArray;
   180 	delete nArray;
   181 	}
   182 
   183 CItemArray::CItemArray(CStreamStore& aStore)
   184 	: iStore(aStore)
   185 	{}
   186 
   187 TStreamId CItemArray::CreateL(CStreamStore& aStore)
   188 // create the stream representation of the class
   189 	{
   190 				// use a temporary CItemArray
   191 	CItemArray* self=new(ELeave) CItemArray(aStore);
   192 	CleanupStack::PushL(self);
   193 				// construct object
   194 	self->ConstructL();
   195 				// create new stream
   196 	RStoreWriteStream outstream;
   197 	TStreamId id=outstream.CreateLC(aStore);
   198 				// write  external rep
   199 	self->ExternalizeL(outstream);
   200 				// commit stream
   201 	outstream.CommitL();
   202 				// cleanup stream and temporary self
   203 	CleanupStack::PopAndDestroy(2);
   204 	return id;
   205 	}
   206 
   207 CItemArray* CItemArray::NewLC(CStreamStore& aStore,TStreamId anId)
   208 // construct a CItemArray from persistent storage
   209 	{
   210 	CItemArray* self=new(ELeave) CItemArray(aStore);
   211 	CleanupStack::PushL(self);
   212 				// construct object
   213 	self->ConstructL();
   214 				// set the stream id for StoreL/RestoreL
   215 	self->iMyId=anId;
   216 				// restore the internal rep.
   217 	self->RestoreL();
   218 	return self;
   219 	}
   220 
   221 void CItemArray::StoreL() const
   222 // replace external rep. with internal one
   223 	{
   224 	RStoreWriteStream outstream;
   225 	outstream.ReplaceLC(iStore,iMyId);
   226 	ExternalizeL(outstream);
   227 	outstream.CommitL();
   228 	CleanupStack::PopAndDestroy();
   229 	}
   230 
   231 void CItemArray::RestoreL()
   232 // replace internal rep with external one
   233 	{
   234 	iArray->Reset();
   235 	nArray->Reset();
   236 	RStoreReadStream instream;
   237 	instream.OpenLC(iStore,iMyId);
   238 	InternalizeL(instream);
   239 	CleanupStack::PopAndDestroy();
   240 	}
   241 
   242 void CItemArray::AddItemL(const TItem& anItem)
   243 // add item to the collection
   244 	{
   245 				// write external rep of item
   246 	RStoreWriteStream outstream;
   247 	TStreamId id=outstream.CreateLC(iStore);
   248 	outstream<<anItem;
   249 	outstream.CommitL();
   250 	CleanupStack::PopAndDestroy();
   251 				// add new stream id to the internal array
   252 	iArray->AppendL(id);
   253 	}
   254 
   255 void CItemArray::RemoveItemL(TInt anIndex)
   256 // remove an item from the collection
   257 	{
   258 				// remove the stream from the store
   259 	iStore.DeleteL((*iArray)[anIndex]);
   260 				// remove the entry from the internal array
   261 	iArray->Delete(anIndex);
   262 	}
   263 
   264 TInt CItemArray::Count() const
   265 	{
   266 	return iArray->Count();
   267 	}
   268 
   269 void CItemArray::GetItemL(TItem& anItem,TInt anIndex) const
   270 	{
   271 				// retrieve an item from the store
   272 	RStoreReadStream instream;
   273 	instream.OpenLC(iStore,(*iArray)[anIndex]);
   274 	instream>>anItem;
   275 	CleanupStack::PopAndDestroy();
   276 	}
   277 
   278 void CItemArray::ConstructL()
   279 	{
   280 	iArray=new(ELeave) CArrayFixFlat<TStreamId>(8);
   281 	nArray = new (ELeave) CArrayFixFlat<TElement>(PFSTORERUNSIZE);
   282 	TElement theElement;
   283 	_LIT(KFormatTxt,"BenchMarkingPermanentFileStore%4u");
   284 	TBuf<256> str(KFormatTxt);
   285 
   286 	for (TInt index = 0; index < PFSTORERUNSIZE; index++)
   287 		{
   288 		theElement.iData.Format(KFormatTxt,index);
   289 		nArray->AppendL(theElement);
   290 		}
   291 	}
   292 
   293 void CItemArray::ExternalizeL(RWriteStream& aStream) const
   294 	{
   295 				// stream out the array
   296 	aStream<<*iArray;
   297 	TInt count = nArray->Count();
   298 	TElement theElement;
   299 	for (TInt index = 0; index < count; index++)
   300 		{
   301 		theElement =((*nArray)[index]);
   302 		aStream.WriteL(theElement.iData, 34);
   303 		}
   304 	}
   305 
   306 void CItemArray::InternalizeL(RReadStream& aStream)
   307 	{
   308 				// stream in the array
   309 	aStream>>*iArray;
   310 	
   311 	TElement theElement;
   312 	TInt count = nArray->Count();
   313 	nArray->Reset();
   314 	for (TInt index = 0; index < count; index++)
   315 		{
   316 		aStream.ReadL(theElement.iData, 34);
   317 		nArray->AppendL(theElement);
   318 		}
   319 	}