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