os/textandloc/textrendering/texthandling/ttext/T_TIMES.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 <txtrich.h>
sl@0
    22
#include <txtglobl.h>
sl@0
    23
#include "T_TIMES.h"
sl@0
    24
sl@0
    25
LOCAL_D CTestStep *pTestStep = NULL;
sl@0
    26
#define test(cond)											\
sl@0
    27
	{														\
sl@0
    28
	TBool __bb = (cond);									\
sl@0
    29
	pTestStep->TEST(__bb);									\
sl@0
    30
	if (!__bb)												\
sl@0
    31
		{													\
sl@0
    32
		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
sl@0
    33
		User::Leave(1);										\
sl@0
    34
		}													\
sl@0
    35
	}
sl@0
    36
#undef INFO_PRINTF1
sl@0
    37
#undef INFO_PRINTF2
sl@0
    38
// copy from tefexportconst.h
sl@0
    39
#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
sl@0
    40
#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
sl@0
    41
sl@0
    42
sl@0
    43
/* this fixes a MSVC link warning */
sl@0
    44
#ifdef __VC32__
sl@0
    45
#pragma comment (linker, "/opt:noref") 
sl@0
    46
#endif
sl@0
    47
sl@0
    48
#define UNUSED_VAR(a) a = a
sl@0
    49
sl@0
    50
#ifdef NDEBUG
sl@0
    51
const TInt KGlobalTextATest1=100000;
sl@0
    52
const TInt KGlobalTextATest2=100000;
sl@0
    53
const TInt KGlobalTextATest3=1000;
sl@0
    54
const TInt KRichTextTest1=10000;
sl@0
    55
const TInt KRichTextTest2=10000;
sl@0
    56
const TInt KRichTextTest3=1000;
sl@0
    57
const TInt KGlobalTextBTest1=10000;
sl@0
    58
const TInt KGlobalTextBTest2=10000;
sl@0
    59
const TInt KGlobalTextBTest3=1000;
sl@0
    60
const TInt KCharFormatLayerTest=100000;
sl@0
    61
#else
sl@0
    62
const TInt KGlobalTextATest1=100000;
sl@0
    63
const TInt KGlobalTextATest2=100000;
sl@0
    64
const TInt KGlobalTextATest3=1000;
sl@0
    65
const TInt KRichTextTest1=5000;
sl@0
    66
const TInt KRichTextTest2=5000;
sl@0
    67
const TInt KRichTextTest3=100;
sl@0
    68
const TInt KGlobalTextBTest1=5000;
sl@0
    69
const TInt KGlobalTextBTest2=5000;
sl@0
    70
const TInt KGlobalTextBTest3=100;
sl@0
    71
const TInt KCharFormatLayerTest=100000;
sl@0
    72
#endif
sl@0
    73
sl@0
    74
sl@0
    75
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    76
LOCAL_D CGlobalText* TheText;
sl@0
    77
LOCAL_D CParaFormatLayer* TheParaFormatLayer;
sl@0
    78
LOCAL_D CCharFormatLayer* TheCharFormatLayer;
sl@0
    79
LOCAL_D const TInt KTestCleanupStack=0x200;
sl@0
    80
sl@0
    81
LOCAL_C void GenerateGlobalLayersL()
sl@0
    82
// Provides the base layers for globl text and below
sl@0
    83
//
sl@0
    84
	{
sl@0
    85
	TParaFormatMask paraMask;
sl@0
    86
	TheParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
sl@0
    87
	TCharFormat charFormat;
sl@0
    88
	TCharFormatMask charMask;
sl@0
    89
	TheCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask);
sl@0
    90
	}
sl@0
    91
sl@0
    92
LOCAL_C void GenerateGlobalTextL()
sl@0
    93
// Provide an instantiated global text object
sl@0
    94
//
sl@0
    95
	{
sl@0
    96
	GenerateGlobalLayersL();
sl@0
    97
	TheText=CGlobalText::NewL(TheParaFormatLayer,TheCharFormatLayer);
sl@0
    98
	}
sl@0
    99
sl@0
   100
LOCAL_C void GenerateBasicRichTextL()
sl@0
   101
// Provide a default instantiated rich text object
sl@0
   102
//
sl@0
   103
	{TheText=CRichText::NewL(TheParaFormatLayer,TheCharFormatLayer);}
sl@0
   104
sl@0
   105
LOCAL_C void KillGlobalLayers()
sl@0
   106
// Destroy the base layers for global text and below
sl@0
   107
//
sl@0
   108
	{
sl@0
   109
	delete TheParaFormatLayer;
sl@0
   110
	delete TheCharFormatLayer;
sl@0
   111
	TheParaFormatLayer=NULL;
sl@0
   112
	TheCharFormatLayer=NULL;
sl@0
   113
	}
sl@0
   114
sl@0
   115
LOCAL_C void KillText()
sl@0
   116
	{
sl@0
   117
	delete TheText;
sl@0
   118
	TheText=NULL;
sl@0
   119
	}
sl@0
   120
sl@0
   121
sl@0
   122
LOCAL_C void LoadLongDocument()
sl@0
   123
//
sl@0
   124
	{
sl@0
   125
	TFileName file;
sl@0
   126
sl@0
   127
	file=(_L("z:\\test\\app-framework\\etext\\climb.txt"));
sl@0
   128
	TheText->Reset();
sl@0
   129
	TInt count=0;
sl@0
   130
	TRAPD(ret,
sl@0
   131
	count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph));
sl@0
   132
	test(ret==KErrNone);
sl@0
   133
	test(count>0); // check for equality later
sl@0
   134
	}
sl@0
   135
sl@0
   136
sl@0
   137
LOCAL_C void CallGetChars(TInt aStartPos,TInt aCharacterCount,TInt aLineLength)
sl@0
   138
//
sl@0
   139
	{
sl@0
   140
	TPtrC view;
sl@0
   141
	TCharFormat charFormat;
sl@0
   142
	TInt consumed=aStartPos;
sl@0
   143
	while (consumed<=aStartPos+aCharacterCount)
sl@0
   144
		{
sl@0
   145
		TheText->GetChars(view,charFormat,consumed);
sl@0
   146
		consumed+=Min(view.Length(),aLineLength);
sl@0
   147
		}
sl@0
   148
	}
sl@0
   149
sl@0
   150
LOCAL_C void GetTimesForGetChars(TInt aLoopCount,TInt aStartPos,TInt aCharacterCount,TInt aLineLength)
sl@0
   151
//
sl@0
   152
//
sl@0
   153
	{
sl@0
   154
	//
sl@0
   155
	for (TInt loop=0;loop<aLoopCount;loop++)
sl@0
   156
		{
sl@0
   157
		CallGetChars(aStartPos,aCharacterCount,aLineLength);
sl@0
   158
		}
sl@0
   159
	}
sl@0
   160
sl@0
   161
sl@0
   162
LOCAL_C void DoLongDocumentTestL(TInt aTest1Count,TInt aTest2Count,TInt aTest3Count)
sl@0
   163
//
sl@0
   164
//
sl@0
   165
	{
sl@0
   166
	LoadLongDocument();
sl@0
   167
	TCharFormat charFormat;
sl@0
   168
	TCharFormatMask mask;
sl@0
   169
	mask.SetAttrib(EAttFontStrokeWeight);
sl@0
   170
	TheText->ApplyCharFormatL(charFormat,mask,100,2);
sl@0
   171
	TInt documentLength=TheText->DocumentLength();
sl@0
   172
	TInt paraCount=TheText->ParagraphCount();
sl@0
   173
	TInt wordCount=TheText->WordCount();
sl@0
   174
	TBuf<80> stats;
sl@0
   175
	stats.Format(_L("Document Stats:\nChars: %d\nWords: %d\nParas: %d\n"),documentLength,wordCount,paraCount);
sl@0
   176
	INFO_PRINTF1(stats);
sl@0
   177
	RDebug::Print(_L("%S"),&stats);
sl@0
   178
	TBuf<80> testTitle;
sl@0
   179
	//
sl@0
   180
	testTitle.Format(_L("Pos: 0-100  %d times"),aTest1Count);
sl@0
   181
	INFO_PRINTF1(testTitle);
sl@0
   182
	GetTimesForGetChars(aTest1Count,0,100,50);
sl@0
   183
	//
sl@0
   184
	testTitle.Format(_L("Pos: 18200-18300 %d times"),aTest2Count);
sl@0
   185
	INFO_PRINTF1(testTitle);
sl@0
   186
	GetTimesForGetChars(aTest2Count,18200,100,50);
sl@0
   187
	//
sl@0
   188
	testTitle.Format(_L("Pos: all %d times"),aTest3Count);
sl@0
   189
	INFO_PRINTF1(testTitle);
sl@0
   190
	GetTimesForGetChars(aTest3Count,0,documentLength,50);
sl@0
   191
	//
sl@0
   192
	
sl@0
   193
	}
sl@0
   194
sl@0
   195
sl@0
   196
LOCAL_C void DoGetCharFormatLayerReadTimesL(TInt aLoopCount)
sl@0
   197
//
sl@0
   198
	{
sl@0
   199
	//
sl@0
   200
	// Now take some times.
sl@0
   201
	TCharFormat charFormat;
sl@0
   202
	TCharFormatMask charMask;
sl@0
   203
	for (TInt loop=0;loop<aLoopCount;loop++)
sl@0
   204
		{
sl@0
   205
		charMask.ClearAll();  // this is used for readings.
sl@0
   206
sl@0
   207
		TheCharFormatLayer->Sense(charFormat,charMask);
sl@0
   208
sl@0
   209
		}
sl@0
   210
	// Display the metric
sl@0
   211
	TBuf<60> context;
sl@0
   212
	context.Format(_L("10 att X %d loops=%d atts\n"),aLoopCount,10*aLoopCount);
sl@0
   213
	INFO_PRINTF1(context);
sl@0
   214
	RDebug::Print(_L("%S"),&context);
sl@0
   215
	}
sl@0
   216
sl@0
   217
sl@0
   218
LOCAL_C void DoEmptyCharFormatLayerReadL(TInt aLoopCount)
sl@0
   219
//	
sl@0
   220
	{DoGetCharFormatLayerReadTimesL(aLoopCount);}
sl@0
   221
sl@0
   222
sl@0
   223
LOCAL_C void DoCharFormatLayerReadL(TInt aLoopCount)
sl@0
   224
// tests times of reading attributes from a CCharFormatLayer
sl@0
   225
//
sl@0
   226
	{
sl@0
   227
	// Fill the character format layer
sl@0
   228
	TCharFormat charFormat(_L("Times New Roman"),180);
sl@0
   229
	TCharFormatMask charMask;
sl@0
   230
	charMask.SetAll();
sl@0
   231
	TheCharFormatLayer->SetL(charFormat,charMask);
sl@0
   232
	//
sl@0
   233
	// Take times
sl@0
   234
	DoGetCharFormatLayerReadTimesL(aLoopCount);
sl@0
   235
	}
sl@0
   236
sl@0
   237
sl@0
   238
LOCAL_C void FormatLayerTestL()
sl@0
   239
// Time tests on format layer access.
sl@0
   240
//
sl@0
   241
	{
sl@0
   242
	INFO_PRINTF1(_L("CCharFormatLayer - Attribute reads"));
sl@0
   243
	GenerateGlobalLayersL();
sl@0
   244
	//
sl@0
   245
	TBuf<80> testTitle;
sl@0
   246
	testTitle.Format(_L("Reading empty char format layer %d times"),KCharFormatLayerTest);
sl@0
   247
	INFO_PRINTF1(testTitle);
sl@0
   248
	DoEmptyCharFormatLayerReadL(KCharFormatLayerTest);
sl@0
   249
	//
sl@0
   250
	testTitle.Format(_L("Read 10 attributes from layer %d times"),KCharFormatLayerTest);
sl@0
   251
	INFO_PRINTF1(testTitle);
sl@0
   252
	TRAPD(ret, DoCharFormatLayerReadL(KCharFormatLayerTest));
sl@0
   253
	test(ret==KErrNone);
sl@0
   254
	//
sl@0
   255
	KillGlobalLayers();
sl@0
   256
	
sl@0
   257
	}
sl@0
   258
sl@0
   259
sl@0
   260
LOCAL_C void LongDocumentTestL()
sl@0
   261
//
sl@0
   262
	{
sl@0
   263
	//
sl@0
   264
	INFO_PRINTF1(_L("Global text - Empty layers"));
sl@0
   265
	GenerateGlobalTextL();
sl@0
   266
	DoLongDocumentTestL(KGlobalTextATest1,KGlobalTextATest2,KGlobalTextATest3);
sl@0
   267
	KillText();
sl@0
   268
	//
sl@0
   269
	INFO_PRINTF1(_L("Rich text - Empty layers"));
sl@0
   270
	GenerateBasicRichTextL();
sl@0
   271
	DoLongDocumentTestL(KRichTextTest1,KRichTextTest2,KRichTextTest3);
sl@0
   272
	KillText();
sl@0
   273
	KillGlobalLayers();
sl@0
   274
	//
sl@0
   275
	INFO_PRINTF1(_L("Global text - 2 character attributes stored"));
sl@0
   276
	GenerateGlobalTextL();
sl@0
   277
	TBuf<5> name=_L("SWiss");
sl@0
   278
	TCharFormat charFormat(name,178);
sl@0
   279
	TCharFormatMask charMask;
sl@0
   280
	charMask.SetAttrib(EAttFontTypeface);
sl@0
   281
	charMask.SetAttrib(EAttFontHeight);
sl@0
   282
	TRAPD(ret,
sl@0
   283
	TheCharFormatLayer->SetL(charFormat,charMask));
sl@0
   284
	test(ret==KErrNone);
sl@0
   285
	DoLongDocumentTestL(KGlobalTextBTest1,KGlobalTextBTest2,KGlobalTextBTest3);
sl@0
   286
	KillText();
sl@0
   287
	//
sl@0
   288
	INFO_PRINTF1(_L("Rich text - 2 charcter attributes stored"));
sl@0
   289
	GenerateBasicRichTextL();
sl@0
   290
	DoLongDocumentTestL(KRichTextTest1,KRichTextTest2,KRichTextTest3);
sl@0
   291
	KillText();
sl@0
   292
	//
sl@0
   293
	KillGlobalLayers();
sl@0
   294
	
sl@0
   295
	}
sl@0
   296
	
sl@0
   297
sl@0
   298
LOCAL_C void DoTestsL()
sl@0
   299
//
sl@0
   300
	{
sl@0
   301
	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TIMES-0001 Long document tests "));
sl@0
   302
	LongDocumentTestL();
sl@0
   303
	//
sl@0
   304
	INFO_PRINTF1(_L("Format layer tests"));
sl@0
   305
	FormatLayerTestL();
sl@0
   306
	//
sl@0
   307
	}
sl@0
   308
sl@0
   309
sl@0
   310
LOCAL_C void setupCleanup()
sl@0
   311
//
sl@0
   312
// Initialise the cleanup stack.
sl@0
   313
//
sl@0
   314
    {
sl@0
   315
sl@0
   316
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   317
	TRAPD(r,\
sl@0
   318
		{\
sl@0
   319
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   320
			CleanupStack::PushL((TAny*)1);\
sl@0
   321
		test(r==KErrNone);\
sl@0
   322
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   323
		});
sl@0
   324
	}
sl@0
   325
sl@0
   326
CT_TIMES::CT_TIMES()
sl@0
   327
    {
sl@0
   328
    SetTestStepName(KTestStep_T_TIMES);
sl@0
   329
    pTestStep = this;
sl@0
   330
    }
sl@0
   331
sl@0
   332
TVerdict CT_TIMES::doTestStepL()
sl@0
   333
    {
sl@0
   334
    SetTestStepResult(EFail);
sl@0
   335
sl@0
   336
    setupCleanup();
sl@0
   337
    INFO_PRINTF1(_L("CRichText Document"));   
sl@0
   338
    __UHEAP_MARK;
sl@0
   339
    
sl@0
   340
    TRAPD(ret,DoTestsL());
sl@0
   341
    
sl@0
   342
    __UHEAP_MARKEND;
sl@0
   343
    delete TheTrapCleanup;
sl@0
   344
    
sl@0
   345
    if (ret == KErrNone)
sl@0
   346
        {
sl@0
   347
        SetTestStepResult(EPass);
sl@0
   348
        }
sl@0
   349
sl@0
   350
    return TestStepResult();
sl@0
   351
    }