os/textandloc/textrendering/texthandling/ttext/TTIMES1.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include <e32svr.h>
    20 
    21 #include <s32mem.h>
    22 
    23 #include <txtrich.h>
    24 #include <txtglobl.h>
    25 
    26 #include "../incp/T_PMLPAR.H"
    27 #include "TTIMES1.h"
    28 
    29 #define test(cond)											\
    30 	{														\
    31 	TBool __bb = (cond);									\
    32 	TEST(__bb);												\
    33 	if (!__bb)												\
    34 		{													\
    35 		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    36 		User::Leave(1);										\
    37 		}													\
    38 	}
    39 
    40 #define UNUSED_VAR(a) a = a
    41 
    42 LOCAL_D CTrapCleanup* TheTrapCleanup;
    43 LOCAL_D CParaFormatLayer* TheGlobalParaFormatLayer;
    44 LOCAL_D CCharFormatLayer* TheGlobalCharFormatLayer;
    45 LOCAL_D CParser* TheParser;
    46 
    47 LOCAL_D const TInt KTestCleanupStack=0x200;
    48 LOCAL_D const TInt KCreateRichTextCount=1000;
    49 
    50 LOCAL_D CRichText* TheText[KCreateRichTextCount];
    51 
    52 void CT_TTIMES1::GenerateGlobalLayersL()
    53 // Provides the base layers for globl text and below
    54 //
    55 	{
    56 	TParaFormatMask paraMask;
    57 	TheGlobalParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
    58 	TCharFormat charFormat;
    59 	TCharFormatMask charMask;
    60 	TheGlobalCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask);
    61 	}
    62 
    63 
    64 void CT_TTIMES1::KillGlobalLayers()
    65 // Destroy the base layers for global text and below
    66 //
    67 	{
    68 	delete TheGlobalParaFormatLayer;
    69 	delete TheGlobalCharFormatLayer;
    70 	TheGlobalParaFormatLayer=NULL;
    71 	TheGlobalCharFormatLayer=NULL;
    72 	}
    73 
    74 void CT_TTIMES1::KillText()
    75 	{
    76 	for (TInt ii=0; ii<KCreateRichTextCount;ii++)
    77 		{
    78 		delete TheText[ii];
    79 		TheText[ii]=NULL;
    80 		}
    81 	}
    82 
    83 
    84 struct TNow : public TTime 
    85 	{
    86 	TNow() { HomeTime(); }
    87 	};
    88 
    89 void CT_TTIMES1::CreationTestsL()
    90 //
    91 	{
    92 	GenerateGlobalLayersL();
    93 
    94 	TNow start;
    95 	TInt ii = 0;
    96 	for (ii=0; ii<KCreateRichTextCount;ii++)
    97 		{
    98 		TheText[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);			
    99 		}
   100 	TNow finish;
   101 	KillText();
   102 	test(ii==KCreateRichTextCount);
   103 	//
   104 	// Display the metric
   105 	TBuf<60> context;
   106 	context.Format(_L("        Create rich text %d times: %d\n"),KCreateRichTextCount,finish.MicroSecondsFrom(start).Int64());
   107 	INFO_PRINTF1(context);
   108 	//
   109 	// Tidy up
   110 	KillText();
   111 	KillGlobalLayers();
   112 	}
   113 
   114 
   115 CRichText* CT_TTIMES1::LoadIntoTextL(TFileName& aFileName)
   116 //
   117 	{
   118 	TRAPD(ret,
   119 	TheParser=CParser::NewL());
   120 	CRichText* text=NULL;
   121 	TRAP(ret,
   122 	text=TheParser->ParseL(aFileName));
   123 	TheGlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
   124 	TheGlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
   125 	delete TheParser;
   126 	TheParser=NULL;
   127 	return text;
   128 	}
   129 
   130 
   131 void CT_TTIMES1::GetAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
   132 	{
   133 	CRichText* target=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   134 	test(target->DocumentLength()==0);
   135 	test(!target->HasMarkupData());
   136 
   137 	TNow start;
   138 	TInt ii = 0;
   139 	for (ii=0;ii<aTestLoopCount;ii++)
   140 		{
   141 		target->AppendTakingSolePictureOwnershipL(*aSource);
   142 		}
   143 	TNow finish;
   144 	TInt charSum=aTestLoopCount*(aSource->DocumentLength()+1)-1;
   145 	test(target->DocumentLength()==charSum);
   146 	//
   147 	// Calculate and display result
   148 	test(ii==aTestLoopCount);
   149 	TBuf<60> context;
   150 	context.Format(_L("        Append %d rich text's: %d\n"),aTestLoopCount,finish.MicroSecondsFrom(start).Int64());
   151 	INFO_PRINTF1(context);
   152 	delete target;
   153 	}
   154 
   155 
   156 void CT_TTIMES1::GetBenchmarkAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
   157 	{
   158 	CRichText** target=new CRichText*[aTestLoopCount];
   159 	CBufStore** store=new CBufStore*[aTestLoopCount];	
   160 	TInt ii = 0;
   161 	for (ii=0;ii<aTestLoopCount;ii++)
   162 		{
   163 		target[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   164 		store[ii]=CBufStore::NewL(128);	
   165 		test(target[ii]->DocumentLength()==0);
   166 		test(!target[ii]->HasMarkupData());
   167 		}
   168 	TNow start;
   169 	for (ii=0;ii<aTestLoopCount;ii++)
   170 		{
   171 		TStreamId id=aSource->StoreL(*store[ii]);
   172 		target[ii]->RestoreL(*store[ii],id);
   173 		}
   174 	TNow finish;
   175 
   176 	for (ii=0;ii<aTestLoopCount;ii++)
   177 		{
   178 		delete target[ii];
   179 		delete store[ii];
   180 		}
   181 	delete []target;
   182 	delete []store;
   183 	//
   184 	// Calculate and display result
   185 	test(ii==aTestLoopCount);
   186 	TBuf<70> context2;
   187 	context2.Format(_L("        Benchmark              : %d\n"),finish.MicroSecondsFrom(start).Int64());
   188 	INFO_PRINTF1(context2);
   189 	}
   190 
   191 
   192 void CT_TTIMES1::AppendTest1L()
   193 //
   194 	{
   195 	TInt testLoopCount=900;
   196 	CRichText* source=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   197 	source->InsertL(source->DocumentLength(),_L("A bit of text that pretends to be an entry's title"));
   198 	test(!source->HasMarkupData());
   199 	GetAppendTestTimeL(source,testLoopCount);
   200 	//
   201 	// Now the benchmark against which we should measure.
   202 	GetBenchmarkAppendTestTimeL(source,testLoopCount);
   203 	//
   204 	// tidy up
   205 	delete source;
   206 	}
   207 
   208 
   209 void CT_TTIMES1::AppendTest2L()
   210 //
   211 	{
   212 	KillGlobalLayers();  // they are replaced by the ones read in from the PML file.
   213 	TInt testLoopCount=266;
   214 	TFileName file=_L("z:\\test\\app-framework\\etext\\ttimes1.pml");
   215 	CRichText* source=LoadIntoTextL(file);
   216 	test(source->HasMarkupData());
   217 	GetAppendTestTimeL(source,testLoopCount);
   218 	//
   219 	// Now the benchmark against which we should measure.
   220 	GetBenchmarkAppendTestTimeL(source,testLoopCount);
   221 	//
   222 	// tidy up
   223 	delete source;
   224 	}
   225 
   226 
   227 void CT_TTIMES1::AppendTestsL()
   228 //
   229 	{
   230 	GenerateGlobalLayersL();
   231 	//
   232 	INFO_PRINTF1(_L("Plain Text Component Only"));
   233 	TRAPD(ret,
   234 	AppendTest1L());
   235 	test(ret==KErrNone);
   236 	//
   237 	INFO_PRINTF1(_L("Plain Text with limited Markup - no pictures"));
   238 	TRAP(ret,
   239 	AppendTest2L());
   240 	test(ret==KErrNone);
   241 	//
   242 	KillGlobalLayers();
   243 	}
   244 	
   245 	
   246 void CT_TTIMES1::DoTestsL()
   247 //
   248 	{
   249 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TTIMES1-0001 Creation Tests "));
   250 	CreationTestsL();
   251 	INFO_PRINTF1(_L("Appending Tests"));
   252 	AppendTestsL();
   253 	//
   254 	}
   255 
   256 
   257 void CT_TTIMES1::setupCleanup()
   258 //
   259 // Initialise the cleanup stack.
   260 //
   261     {
   262 
   263 	TheTrapCleanup=CTrapCleanup::New();
   264 	TRAPD(r,\
   265 		{\
   266 		for (TInt i=KTestCleanupStack;i>0;i--)\
   267 			CleanupStack::PushL((TAny*)1);\
   268 		test(r==KErrNone);\
   269 		CleanupStack::Pop(KTestCleanupStack);\
   270 		});
   271 	}
   272 
   273 CT_TTIMES1::CT_TTIMES1()
   274     {
   275     SetTestStepName(KTestStep_T_TTIMES1);
   276     }
   277 
   278 TVerdict CT_TTIMES1::doTestStepL()
   279     {
   280     SetTestStepResult(EFail);
   281 
   282     __UHEAP_MARK;
   283 
   284     setupCleanup();
   285     
   286     INFO_PRINTF1(_L("CRichText Document"));
   287     TRAPD(error1, DoTestsL());
   288 
   289     delete TheTrapCleanup;
   290 
   291     __UHEAP_MARKEND;
   292 
   293     if(error1 == KErrNone)
   294         {
   295         SetTestStepResult(EPass);
   296         }
   297 
   298     return TestStepResult();
   299     }