os/persistentdata/persistentstorage/store/TFILE/t_storfrecl.cpp
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) 1998-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 //
    15 
    16 #include <s32file.h>
    17 #include <e32test.h>
    18 #include <e32math.h>
    19 #include <hal.h>
    20 
    21 // This is a path specification and should not be used as is
    22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FRECL.DAT");
    23 const TPtrC KTestText=_L("Reclamation testing in progress...");
    24 const TInt 	KTestStreams=1000;
    25 const TInt 	KTestReplicas=5000;
    26 
    27 TFileName TheFileName; 
    28 
    29 RTest 	TheTest(_L("t_storfrecl"));
    30 RFs 	TheFs;
    31 TInt64 	TheSeed;
    32 
    33 ///////////////////////////////////////////////////////////////////////////////////////
    34 
    35 void DeleteDataFile(const TDesC& aFullName)
    36 	{
    37 	RFs fsSession;
    38 	TInt err = fsSession.Connect();
    39 	if(err == KErrNone)
    40 		{
    41 		TEntry entry;
    42 		if(fsSession.Entry(aFullName, entry) == KErrNone)
    43 			{
    44 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
    45 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
    46 			if(err != KErrNone)
    47 				{
    48 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
    49 				}
    50 			err = fsSession.Delete(aFullName);
    51 			if(err != KErrNone)
    52 				{
    53 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
    54 				}
    55 			}
    56 		fsSession.Close();
    57 		}
    58 	else
    59 		{
    60 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
    61 		}
    62 	}
    63 
    64 ///////////////////////////////////////////////////////////////////////////////////////
    65 //Test macros and functions
    66 void Check(TInt aValue, TInt aLine)
    67 	{
    68 	if(!aValue)
    69 		{
    70 		TheTest.Printf(_L("*** Boolean expression evaluated to false\r\n"));
    71 		DeleteDataFile(TheFileName);
    72 		TheTest(EFalse, aLine);
    73 		}
    74 	}
    75 void Check(TInt aValue, TInt aExpected, TInt aLine)
    76 	{
    77 	if(aValue != aExpected)
    78 		{
    79 		DeleteDataFile(TheFileName);
    80 		TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    81 		TheTest(EFalse, aLine);
    82 		}
    83 	}
    84 #define TEST(arg) ::Check((arg), __LINE__)
    85 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    86 
    87 ///////////////////////////////////////////////////////////////////////////////////////
    88 
    89 static TInt TheCounterFreq = -10000000;
    90 const TInt KMicroSecIn1Sec = 1000000;
    91 
    92 TUint32 CalcTickDiff(TUint32 aStartTicks, TUint32 aEndTicks)
    93 	{
    94 	TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
    95 	if(diffTicks < 0)
    96 		{
    97 		diffTicks = KMaxTUint32 + diffTicks + 1;
    98 		}
    99 	return (TUint32)diffTicks;
   100 	}
   101 
   102 //Prints aFastCount parameter (converted to us) and the bytes count
   103 void PrintFcDiffAsUs2(const TDesC& aFormatStr, TInt aBytes, TUint32 aFastCount)
   104 	{
   105 	if(TheCounterFreq <= 0)
   106 		{
   107 		TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
   108 		TheTest.Printf(_L("Counter frequency=%d Hz\r\n"), TheCounterFreq);
   109 		}
   110 	double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
   111 	TInt v2 = (TInt)v;
   112 	TheTest.Printf(aFormatStr, aBytes, v2);
   113 	}
   114 
   115 ///////////////////////////////////////////////////////////////////////////////////////
   116 
   117 TInt ReclaimL(CStreamStore& aStore)
   118 	{
   119 	TUint32 fc = User::FastCounter();
   120 	TInt total = aStore.ReclaimL();
   121 	TUint32 time = CalcTickDiff(fc, User::FastCounter());
   122 	PrintFcDiffAsUs2(_L("### CStreamStore::ReclaimL(), %d bytes reclaimable, Time=%d us\r\n"), total, time);
   123 	return total;
   124 	}
   125 /**
   126 @SYMTestCaseID          SYSLIB-STORE-CT-1159
   127 @SYMTestCaseDesc	    Tests CStreamStore::ReclaimL() function
   128 @SYMTestPriority 	    High
   129 @SYMTestActions  	    Tests for reclaiming the space on the store.
   130                         Tests for an empty store,simple and a complex store.
   131 @SYMTestExpectedResults Test must not fail
   132 @SYMREQ                 REQ0000
   133 */
   134 void ReclaimTestL()
   135 	{
   136 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1159 CPermanentFileStore::ReclaimL()"));
   137 	
   138 	TheTest.Printf(_L(" Empty store\r\n"));
   139 	CFileStore* store = CPermanentFileStore::ReplaceLC(TheFs, TheFileName, EFileRead | EFileWrite);
   140 	store->SetTypeL(store->Layout());
   141 	TInt bytes = ReclaimL(*store);
   142 	TEST2(bytes, 0);
   143 
   144 	TheTest.Printf(_L(" Simple store\r\n"));
   145 	RStoreWriteStream strm;
   146 	TStreamId id=strm.CreateLC(*store);
   147 	strm<<KTestText;
   148 	strm.CommitL();
   149 	strm.Release();
   150 	store->CommitL();
   151 	(void)ReclaimL(*store);
   152 
   153 	TheTest.Printf(_L(" Complex store\r\n"));
   154 	TInt ii;
   155 	for (ii=0;ii<KTestStreams;++ii)
   156 		{
   157 		id=strm.CreateL(*store);
   158 		TInt val=Math::Rand(TheSeed);
   159 		TInt len=(val>>11)%(KTestText.Length()+1);
   160 		if (len>0)
   161 			strm<<KTestText.Left(len-1);
   162 		strm.CommitL();
   163 		strm.Release();
   164 		if ((val>>7)&1)
   165 			store->DeleteL(id);
   166 		}
   167 	store->CommitL();
   168 	(void)ReclaimL(*store);
   169 
   170 	TheTest.Printf(_L(" Large stream\r\n"));
   171 	id=strm.CreateL(*store);
   172 	for (ii=0;ii<KTestReplicas;++ii)
   173 		strm<<KTestText;
   174 	strm.CommitL();
   175 	strm.Release();
   176 	store->CommitL();
   177 	(void)ReclaimL(*store);
   178 
   179 	TheTest.Printf(_L(" Deleted large stream\r\n"));
   180 	store->DeleteL(id);
   181 	store->CommitL();
   182 	(void)ReclaimL(*store);
   183 
   184 	TheTest.Printf(_L(" Mixed reclaim and commit\r\n"));
   185 	RStoreReclaim reclaim;
   186 	TInt step;
   187 	reclaim.OpenLC(*store,step);
   188 	TRequestStatus status;
   189 	TPckgBuf<TInt> pckgStep(step);
   190 	TRAPD(r, reclaim.NextL(pckgStep,status));
   191 	TEST2(r, KErrNone);
   192 	User::WaitForRequest(status);
   193 	TEST2(status.Int(), KErrNone);
   194 	TEST(step>0);
   195 	strm.CreateL(*store);
   196 	strm<<KTestText;
   197 	strm.CommitL();
   198 	strm.Release();
   199 	TRAP(r, reclaim.NextL(step));
   200 	TEST(r!=KErrNone);
   201 	reclaim.ResetL(step);
   202 	r = reclaim.Next(step);
   203 	TEST(r!=KErrNone);
   204 	store->CommitL();
   205 	TPckgBuf<TInt> pckgStep1(step);
   206 	reclaim.Next(pckgStep1,status) ;
   207 	User::WaitForRequest(status);
   208 	TEST(status.Int() != KErrNone);
   209 	reclaim.ResetL(step);
   210 	while (step)
   211 		{
   212 		r = reclaim.Next(step);
   213 		TEST2(r, KErrNone);
   214 		}
   215 
   216 	TInt total=reclaim.Available();
   217 	CleanupStack::PopAndDestroy();
   218 	TheTest.Printf(_L(" %d byte(s) reclaimable\n"),total);
   219 
   220 	CleanupStack::Pop();	// strm
   221 	CleanupStack::PopAndDestroy();	// store
   222 	}
   223 
   224 //Initialize TheFileName. RFs::Connect(). Prepare the test directory. 
   225 void CreateTestEnv()
   226     {
   227 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   228 	TParse parse;
   229 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   230 	TheFileName.Copy(parse.FullName());
   231 	TheTest.Printf(_L("### Test file: %S\r\n"), &TheFileName);
   232     
   233 	TInt err = TheFs.Connect();
   234 	TheTest(err == KErrNone);
   235 
   236 	err = TheFs.MkDirAll(TheFileName);
   237 	TEST(err == KErrNone || err == KErrAlreadyExists);
   238 	}
   239 
   240 TInt E32Main()
   241     {
   242 	TheTest.Title();
   243 	
   244 	CTrapCleanup* tc = CTrapCleanup::New();
   245 	TheTest(tc != NULL);
   246 	
   247 	__UHEAP_MARK;
   248 	
   249 	CreateTestEnv();
   250 	
   251 	TRAPD(err, ReclaimTestL());
   252 	::DeleteDataFile(TheFileName);
   253 	TheFs.Close();
   254 	TEST2(err, KErrNone);
   255 
   256 	__UHEAP_MARKEND;
   257 	
   258 	TheTest.End();
   259 	TheTest.Close();
   260 
   261 	delete tc;
   262 	
   263 	return 0;
   264     }
   265