os/textandloc/textrendering/texthandling/ttext/T_TRAN.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 <e32std.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
sl@0
    22
#include <gdi.h>
sl@0
    23
#include <conpics.h>
sl@0
    24
#include <s32file.h>
sl@0
    25
sl@0
    26
#include <txtrich.h>
sl@0
    27
#include <txtfmlyr.h>
sl@0
    28
#include "TXTMRTSR.H"
sl@0
    29
sl@0
    30
#include "../incp/T_PMLPAR.H"
sl@0
    31
//#include "../spml/T_PMLPAR.CPP"
sl@0
    32
#include "T_TRAN.h"
sl@0
    33
sl@0
    34
LOCAL_D CTestStep *pTestStep = NULL;
sl@0
    35
#define test(cond)											\
sl@0
    36
	{														\
sl@0
    37
	TBool __bb = (cond);									\
sl@0
    38
	pTestStep->TEST(__bb);									\
sl@0
    39
	if (!__bb)												\
sl@0
    40
		{													\
sl@0
    41
		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
sl@0
    42
		User::Leave(1);										\
sl@0
    43
		}													\
sl@0
    44
	}
sl@0
    45
#undef INFO_PRINTF1
sl@0
    46
#undef INFO_PRINTF2
sl@0
    47
// copy from tefexportconst.h
sl@0
    48
#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
sl@0
    49
#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
sl@0
    50
sl@0
    51
// included in a namespace, to avoid confliction
sl@0
    52
namespace T_TRAN {
sl@0
    53
/* this fixes a MSVC link warning */
sl@0
    54
#ifdef __VC32__
sl@0
    55
#pragma comment (linker, "/opt:noref") 
sl@0
    56
#endif
sl@0
    57
sl@0
    58
#define UNUSED_VAR(a) a = a
sl@0
    59
sl@0
    60
const TInt KTestCleanupStack=0x40;
sl@0
    61
sl@0
    62
_LIT(KExportFileName1, "c:\\etext\\t_para.txg");
sl@0
    63
_LIT(KExportFileName2, "c:\\etext\\t_para2.txg");
sl@0
    64
sl@0
    65
void EnsureFileExists(const TDesC& aName)
sl@0
    66
	{
sl@0
    67
	RFs fs;
sl@0
    68
	fs.Connect();
sl@0
    69
	fs.MkDirAll(aName);
sl@0
    70
	RFile file;
sl@0
    71
	file.Create(fs, aName, EFileRead|EFileWrite);
sl@0
    72
	file.Close();
sl@0
    73
	fs.Close();
sl@0
    74
	}
sl@0
    75
sl@0
    76
class CContainer : public CBase, public MRichTextStoreResolver
sl@0
    77
	{
sl@0
    78
public:
sl@0
    79
	static CContainer* NewL(TFileName aFileName);
sl@0
    80
	~CContainer();
sl@0
    81
	//
sl@0
    82
	// Mixin
sl@0
    83
	//
sl@0
    84
	virtual const CStreamStore& StreamStoreL(TInt aPos)const;
sl@0
    85
	// Methods
sl@0
    86
	TStreamId StoreL(CStreamStore& aStore)const;
sl@0
    87
	void RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFctry);
sl@0
    88
protected:
sl@0
    89
	CContainer();
sl@0
    90
	void ConstructL(TFileName aFileName);
sl@0
    91
public:
sl@0
    92
	CRichText* iText;
sl@0
    93
	const CParaFormatLayer* iGlobalParaFormatLayer;
sl@0
    94
	const CCharFormatLayer* iGlobalCharFormatLayer;
sl@0
    95
	};
sl@0
    96
sl@0
    97
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    98
LOCAL_D RFs TheFs;  // the file server
sl@0
    99
LOCAL_D RFile TheFile;  // the data file
sl@0
   100
LOCAL_D CParser* TheParser;
sl@0
   101
LOCAL_D CContainer* TheContainer;
sl@0
   102
LOCAL_D CStreamStore* TheDeferredPictureStore;
sl@0
   103
sl@0
   104
CContainer* CContainer::NewL(TFileName aFileName)
sl@0
   105
// Create new container & set its components.
sl@0
   106
//
sl@0
   107
	{
sl@0
   108
	CContainer* self=new(ELeave) CContainer;
sl@0
   109
	CleanupStack::PushL(self);
sl@0
   110
	self->ConstructL(aFileName);
sl@0
   111
	CleanupStack::Pop();
sl@0
   112
	return self;
sl@0
   113
	}
sl@0
   114
sl@0
   115
sl@0
   116
CContainer::CContainer()
sl@0
   117
	{
sl@0
   118
	}
sl@0
   119
sl@0
   120
sl@0
   121
void CContainer::ConstructL(TFileName aFileName)
sl@0
   122
	{
sl@0
   123
	TheParser=CParser::NewL();
sl@0
   124
	CleanupStack::PushL(TheParser);
sl@0
   125
	iText=TheParser->ParseL(aFileName);
sl@0
   126
	CleanupStack::PopAndDestroy();
sl@0
   127
	iGlobalParaFormatLayer=iText->GlobalParaFormatLayer();
sl@0
   128
	iGlobalCharFormatLayer=iText->GlobalCharFormatLayer();
sl@0
   129
	}
sl@0
   130
sl@0
   131
sl@0
   132
CContainer::~CContainer()
sl@0
   133
	{
sl@0
   134
	delete iText;
sl@0
   135
	delete (CParaFormatLayer*)iGlobalParaFormatLayer;
sl@0
   136
	delete (CCharFormatLayer*)iGlobalCharFormatLayer;
sl@0
   137
	}
sl@0
   138
sl@0
   139
sl@0
   140
const CStreamStore& CContainer::StreamStoreL(TInt /*aPos*/)const
sl@0
   141
// Return the deferred picture store.
sl@0
   142
// In this instance, the deferred picture store does not vary with document position.
sl@0
   143
//
sl@0
   144
	{return *TheDeferredPictureStore;}
sl@0
   145
sl@0
   146
sl@0
   147
TStreamId CContainer::StoreL(CStreamStore& aStore)const
sl@0
   148
// Store this component
sl@0
   149
//
sl@0
   150
	{
sl@0
   151
	CStoreMap* map=CStoreMap::NewLC(aStore);
sl@0
   152
	iText->StoreComponentsL(aStore,*map);
sl@0
   153
	//
sl@0
   154
	RStoreWriteStream stream(*map);
sl@0
   155
	TStreamId id=stream.CreateLC(aStore);
sl@0
   156
	iGlobalParaFormatLayer->ExternalizeL(stream);
sl@0
   157
	iGlobalCharFormatLayer->ExternalizeL(stream);
sl@0
   158
	stream<< *iText;
sl@0
   159
	stream.CommitL();
sl@0
   160
	//
sl@0
   161
	map->Reset();
sl@0
   162
	CleanupStack::PopAndDestroy(2);
sl@0
   163
	return id;
sl@0
   164
	}
sl@0
   165
sl@0
   166
sl@0
   167
void CContainer::RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFactory)
sl@0
   168
// Restore this component
sl@0
   169
//
sl@0
   170
	{
sl@0
   171
	RStoreReadStream stream;
sl@0
   172
	stream.OpenLC(aStore,aId);
sl@0
   173
	iGlobalParaFormatLayer=CParaFormatLayer::NewL(stream);
sl@0
   174
	iGlobalCharFormatLayer=CCharFormatLayer::NewL(stream);
sl@0
   175
	iText=CRichText::NewL(iGlobalParaFormatLayer,iGlobalCharFormatLayer);
sl@0
   176
	iText->SetPictureFactory(aFactory,this);
sl@0
   177
	stream>> *iText;
sl@0
   178
	//
sl@0
   179
	CleanupStack::PopAndDestroy();
sl@0
   180
	//
sl@0
   181
	iText->RestoreComponentsL(aStore);
sl@0
   182
	}
sl@0
   183
sl@0
   184
sl@0
   185
/*LOCAL_C void testPictureRestorer(TBool aDeferPictureLoad=ETrue)
sl@0
   186
// Test Picture persistance.
sl@0
   187
//
sl@0
   188
    {
sl@0
   189
	//
sl@0
   190
	TheFs.Connect();
sl@0
   191
	//
sl@0
   192
	TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word.doc"),EFileRead|EFileWrite);
sl@0
   193
	TheDeferredPictureStore=TheStore;
sl@0
   194
	CleanupStack::PushL(TheStore);
sl@0
   195
	TheStore->SetTypeL(KDirectFileStoreLayout);
sl@0
   196
	//
sl@0
   197
	// Create concrete picture factory.
sl@0
   198
	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
sl@0
   199
sl@0
   200
	TheContainer->iText->Reset();
sl@0
   201
	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
sl@0
   202
sl@0
   203
	TheContainer->iText->SetPictureFactory(factory,TheContainer);
sl@0
   204
	// Create some pictures.
sl@0
   205
	CXzePicture* pic1=CXzePicture::NewL('x');
sl@0
   206
		CleanupStack::PushL(pic1);
sl@0
   207
	CXzePicture* pic2=CXzePicture::NewL('z');
sl@0
   208
		CleanupStack::PushL(pic2);
sl@0
   209
	CXzePicture* pic3=CXzePicture::NewL('e');
sl@0
   210
		CleanupStack::PushL(pic3);
sl@0
   211
	//
sl@0
   212
	// Create the picture headers
sl@0
   213
	TPictureHeader hdr1;
sl@0
   214
	TPictureHeader hdr2;
sl@0
   215
	TPictureHeader hdr3;
sl@0
   216
	//
sl@0
   217
	TSize size;
sl@0
   218
	pic1->GetSizeInTwips(size);
sl@0
   219
	hdr1.iPictureType=KUidXzePictureType;
sl@0
   220
	hdr1.iPicture=pic1;
sl@0
   221
	hdr2.iPictureType=KUidXzePictureType;
sl@0
   222
	hdr2.iPicture=pic2;
sl@0
   223
	hdr3.iPictureType=KUidXzePictureType;
sl@0
   224
	hdr3.iPicture=pic3;
sl@0
   225
	//
sl@0
   226
	// Insert the pictures into the rich text
sl@0
   227
	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
sl@0
   228
	test(!hasMarkupData);
sl@0
   229
	TheContainer->iText->CancelInsertCharFormat();
sl@0
   230
	TheContainer->iText->InsertL(0,hdr1);
sl@0
   231
	TheContainer->iText->InsertL(5,hdr2);
sl@0
   232
	TheContainer->iText->InsertL(7,hdr3);
sl@0
   233
	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
sl@0
   234
	TheContainer->iText->CancelInsertCharFormat();
sl@0
   235
	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
sl@0
   236
	CleanupStack::Pop(3);
sl@0
   237
	hasMarkupData=TheContainer->iText->HasMarkupData();
sl@0
   238
	test(hasMarkupData);
sl@0
   239
	//
sl@0
   240
	// High level Store context
sl@0
   241
	TStreamId id=TheContainer->StoreL(*TheStore);
sl@0
   242
//
sl@0
   243
	delete TheContainer->iText;
sl@0
   244
	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
sl@0
   245
	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
sl@0
   246
//
sl@0
   247
//
sl@0
   248
//	Now restore the container with rich text
sl@0
   249
	TheContainer->RestoreL(*TheStore,id,factory);
sl@0
   250
	if (!aDeferPictureLoad)
sl@0
   251
		TheContainer->iText->LoadAllPicturesNowL();
sl@0
   252
	//
sl@0
   253
	hasMarkupData=TheContainer->iText->HasMarkupData();
sl@0
   254
	test(hasMarkupData);
sl@0
   255
	test(TheContainer->iText->ParagraphCount()==3);
sl@0
   256
	test(TheContainer->iText->DocumentLength()==21);
sl@0
   257
	TPtrC view;
sl@0
   258
	TCharFormat format;
sl@0
   259
	CPicture* picture;
sl@0
   260
	//
sl@0
   261
	// TEST THE PICTURE HEADERS, DEPENDING ON WHETHER DEFERRED LOADING IS SET OR NOT
sl@0
   262
	TPictureHeader hdrA=TheContainer->iText->PictureHeader(1);
sl@0
   263
	test(hdrA.iPictureType==KUidXzePictureType);
sl@0
   264
	if (aDeferPictureLoad)
sl@0
   265
		{
sl@0
   266
		test(hdrA.iPicture.IsId());
sl@0
   267
		}
sl@0
   268
	else
sl@0
   269
		{
sl@0
   270
		test(hdrA.iPicture!=NULL);
sl@0
   271
		test(hdrA.iPicture.IsPtr());
sl@0
   272
		test(((CXzePicture*)hdrA.iPicture.AsPtr())->iLabel=='x');
sl@0
   273
		}
sl@0
   274
	TPictureHeader hdrB=TheContainer->iText->PictureHeader(7);
sl@0
   275
	test(hdrB.iPictureType==KUidXzePictureType);
sl@0
   276
	if (aDeferPictureLoad)
sl@0
   277
		{
sl@0
   278
		test(hdrB.iPicture.IsId());
sl@0
   279
		}
sl@0
   280
	else
sl@0
   281
		{
sl@0
   282
		test(hdrB.iPicture!=NULL);
sl@0
   283
		test(hdrB.iPicture.IsPtr());
sl@0
   284
		test(((CXzePicture*)hdrB.iPicture.AsPtr())->iLabel=='z');
sl@0
   285
		}
sl@0
   286
	TPictureHeader hdrC=TheContainer->iText->PictureHeader(9);
sl@0
   287
	test(hdrC.iPictureType==KUidXzePictureType);
sl@0
   288
	if (aDeferPictureLoad)
sl@0
   289
		{
sl@0
   290
		test(hdrC.iPicture.IsId());
sl@0
   291
		}
sl@0
   292
	else
sl@0
   293
		{
sl@0
   294
		test(hdrC.iPicture!=NULL);
sl@0
   295
		test(hdrC.iPicture.IsPtr());
sl@0
   296
		test(((CXzePicture*)hdrC.iPicture.AsPtr())->iLabel=='e');
sl@0
   297
		}
sl@0
   298
	TPictureHeader hdrD=TheContainer->iText->PictureHeader(0);  // This is not a picture character
sl@0
   299
	test(hdrD.iPictureType==KNullUid);
sl@0
   300
	test(hdrD.iPicture==NULL);
sl@0
   301
	TSize dummySize;
sl@0
   302
	test(hdrD.iSize==dummySize);
sl@0
   303
	//
sl@0
   304
	TheContainer->iText->GetChars(view,format,1);
sl@0
   305
	test(view[0]==CEditableText::EPictureCharacter);
sl@0
   306
	picture=TheContainer->iText->PictureHandleL(1);
sl@0
   307
	test(((CXzePicture*)picture)->iLabel=='x');
sl@0
   308
	
sl@0
   309
	TheContainer->iText->GetChars(view,format,7);
sl@0
   310
	test(view[0]==CEditableText::EPictureCharacter);
sl@0
   311
	picture=TheContainer->iText->PictureHandleL(7);
sl@0
   312
	test(((CXzePicture*)picture)->iLabel=='z');
sl@0
   313
	
sl@0
   314
	TheContainer->iText->GetChars(view,format,9);
sl@0
   315
	test(view[0]==CEditableText::EPictureCharacter);
sl@0
   316
	picture=TheContainer->iText->PictureHandleL(9);
sl@0
   317
	test(((CXzePicture*)picture)->iLabel=='e');
sl@0
   318
sl@0
   319
	delete factory;
sl@0
   320
	CleanupStack::PopAndDestroy();  // TheStore
sl@0
   321
	TheFs.Close();
sl@0
   322
    }
sl@0
   323
sl@0
   324
sl@0
   325
LOCAL_C void testPictureRestorer2(TBool aAlwaysFailToLoad=EFalse)
sl@0
   326
// Test Picture persistance.
sl@0
   327
//
sl@0
   328
    {
sl@0
   329
	//
sl@0
   330
	TheFs.Connect();
sl@0
   331
	//
sl@0
   332
	TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word1.doc"),EFileRead|EFileWrite);
sl@0
   333
	TheDeferredPictureStore=TheStore;
sl@0
   334
	CleanupStack::PushL(TheStore);
sl@0
   335
	TheStore->SetTypeL(KDirectFileStoreLayout);
sl@0
   336
	//
sl@0
   337
	// Create concrete picture factory.
sl@0
   338
	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
sl@0
   339
sl@0
   340
	TheContainer->iText->Reset();
sl@0
   341
	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
sl@0
   342
sl@0
   343
	TheContainer->iText->SetPictureFactory(factory,TheContainer);
sl@0
   344
	// Create some pictures.
sl@0
   345
	CXzeDoor* pic1=CXzeDoor::NewL('x',aAlwaysFailToLoad);
sl@0
   346
		CleanupStack::PushL(pic1);
sl@0
   347
	CXzeDoor* pic2=CXzeDoor::NewL('z',aAlwaysFailToLoad);
sl@0
   348
		CleanupStack::PushL(pic2);
sl@0
   349
	CXzePicture* pic3=CXzePicture::NewL('e');  // Control: will always load.
sl@0
   350
		CleanupStack::PushL(pic3);
sl@0
   351
	//
sl@0
   352
	// Create the picture headers
sl@0
   353
	TPictureHeader hdr1;
sl@0
   354
	TPictureHeader hdr2;
sl@0
   355
	TPictureHeader hdr3;
sl@0
   356
	//
sl@0
   357
	TSize size;
sl@0
   358
	pic1->GetSizeInTwips(size);
sl@0
   359
	hdr1.iPictureType=KUidXzeDoorType;
sl@0
   360
	hdr1.iPicture=pic1;
sl@0
   361
	hdr2.iPictureType=KUidXzeDoorType;
sl@0
   362
	hdr2.iPicture=pic2;
sl@0
   363
	hdr3.iPictureType=KUidXzePictureType;
sl@0
   364
	hdr3.iPicture=pic3;
sl@0
   365
	//
sl@0
   366
	// Insert the pictures into the rich text
sl@0
   367
	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
sl@0
   368
	test(!hasMarkupData);
sl@0
   369
	TheContainer->iText->CancelInsertCharFormat();
sl@0
   370
	TheContainer->iText->InsertL(0,hdr1);
sl@0
   371
	TheContainer->iText->InsertL(5,hdr2);
sl@0
   372
	TheContainer->iText->InsertL(7,hdr3);
sl@0
   373
	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
sl@0
   374
	TheContainer->iText->CancelInsertCharFormat();
sl@0
   375
	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
sl@0
   376
	CleanupStack::Pop(3);  // pic1,2,3 - ownership transferred to rich text
sl@0
   377
	hasMarkupData=TheContainer->iText->HasMarkupData();
sl@0
   378
	test(hasMarkupData);
sl@0
   379
	//
sl@0
   380
	// High level Store context - all pictures currently in memory
sl@0
   381
	TStreamId id=TheContainer->StoreL(*TheStore);
sl@0
   382
//
sl@0
   383
	delete TheContainer->iText;
sl@0
   384
	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
sl@0
   385
	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
sl@0
   386
//
sl@0
   387
//
sl@0
   388
//	Now restore the container with rich text
sl@0
   389
	TheContainer->RestoreL(*TheStore,id,factory);
sl@0
   390
//
sl@0
   391
//
sl@0
   392
//  Now store the stuff again
sl@0
   393
	TInt error=TheContainer->iText->LoadAllPicturesNowL();
sl@0
   394
	if (error==KErrNotFound)
sl@0
   395
		INFO_PRINTF1(_L("   SIMULATION: Some picture data has been removed as no app could be found."));
sl@0
   396
//	if (aAlwaysFailToLoad)
sl@0
   397
//		test(error==KErrNotFound);
sl@0
   398
//	else
sl@0
   399
//		test(error==KErrNone);
sl@0
   400
	id=KNullStreamId;
sl@0
   401
	TRAP(error,
sl@0
   402
	id=TheContainer->StoreL(*TheStore));
sl@0
   403
	test(error==KErrNone);
sl@0
   404
//
sl@0
   405
// ...and restore it to check what we have got.
sl@0
   406
	delete TheContainer->iText;
sl@0
   407
	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
sl@0
   408
	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
sl@0
   409
    TheContainer->RestoreL(*TheStore,id,factory);
sl@0
   410
	TInt pictureCount=TheContainer->iText->PictureCount();
sl@0
   411
	if (aAlwaysFailToLoad)
sl@0
   412
		test(pictureCount==1);
sl@0
   413
	else
sl@0
   414
		test(pictureCount==3);
sl@0
   415
//
sl@0
   416
	delete factory;
sl@0
   417
	CleanupStack::PopAndDestroy();  // TheStore
sl@0
   418
	TheFs.Close();
sl@0
   419
    }*/
sl@0
   420
sl@0
   421
sl@0
   422
LOCAL_C void CompareRichTextL(CRichText *aDoc1,CRichText *aDoc2)
sl@0
   423
//
sl@0
   424
	{
sl@0
   425
	INFO_PRINTF1(_L("Comparing Documents"));
sl@0
   426
	TInt length;
sl@0
   427
	TInt num1,num2;
sl@0
   428
 	TInt ii=0,len1,len2,pos1,pos2,oldPos;
sl@0
   429
sl@0
   430
	INFO_PRINTF1(_L("Document Length"));
sl@0
   431
	length=aDoc1->LdDocumentLength();
sl@0
   432
	num2=aDoc2->LdDocumentLength();
sl@0
   433
	test(length==num2);
sl@0
   434
sl@0
   435
	INFO_PRINTF1(_L("Paragraph Count"));
sl@0
   436
	num1=aDoc1->ParagraphCount();
sl@0
   437
	num2=aDoc2->ParagraphCount();
sl@0
   438
	test(num1==num2);
sl@0
   439
sl@0
   440
	INFO_PRINTF1(_L("Paragraph Lengths"));
sl@0
   441
	pos1=-1;
sl@0
   442
	oldPos=-2;
sl@0
   443
	while (pos1>oldPos)
sl@0
   444
		{
sl@0
   445
		oldPos=pos1;
sl@0
   446
		pos1=aDoc1->CharPosOfParagraph(len1,ii);
sl@0
   447
		pos2=aDoc2->CharPosOfParagraph(len2,ii);
sl@0
   448
		test(len1==len2);
sl@0
   449
		test(pos1==pos2);
sl@0
   450
		ii++;
sl@0
   451
		}
sl@0
   452
 
sl@0
   453
	INFO_PRINTF1(_L("Word Count"));
sl@0
   454
	num1=aDoc1->WordCount();
sl@0
   455
	num2=aDoc2->WordCount();
sl@0
   456
	test(num1==num2);
sl@0
   457
sl@0
   458
	INFO_PRINTF1(_L("Characters"));
sl@0
   459
	TCharFormat format1,format2;
sl@0
   460
	TPtrC chars1,chars2;
sl@0
   461
	len1=1;
sl@0
   462
	ii=0;
sl@0
   463
	while (ii<=length)
sl@0
   464
		{
sl@0
   465
		aDoc1->GetChars(chars1,format1,ii);
sl@0
   466
		aDoc2->GetChars(chars2,format2,ii);
sl@0
   467
		len1=Min(chars1.Length(),chars2.Length());
sl@0
   468
		test(chars1.Left(len1)==chars2.Left(len1));
sl@0
   469
		test(format1.IsEqual(format2));
sl@0
   470
		test(format2.IsEqual(format1));
sl@0
   471
		ii+=len1;
sl@0
   472
		}
sl@0
   473
	
sl@0
   474
	
sl@0
   475
	}
sl@0
   476
sl@0
   477
sl@0
   478
LOCAL_C  void GoL()
sl@0
   479
// Run the tests
sl@0
   480
//
sl@0
   481
	{
sl@0
   482
	CParaFormatLayer* pLayer=CParaFormatLayer::NewL();
sl@0
   483
	CCharFormatLayer* cLayer=CCharFormatLayer::NewL();
sl@0
   484
	CRichText *document=CRichText::NewL(pLayer,cLayer);
sl@0
   485
	TInt err;
sl@0
   486
	
sl@0
   487
	INFO_PRINTF1(_L("Document with single Paragraph"));
sl@0
   488
	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRAN-0001 "));
sl@0
   489
	{	
sl@0
   490
	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
sl@0
   491
	INFO_PRINTF1(_L("Exporting a file by Para"));
sl@0
   492
	TFileName exportFile=KExportFileName1();
sl@0
   493
	EnsureFileExists(exportFile);
sl@0
   494
	TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
sl@0
   495
	test(err==KErrNone);
sl@0
   496
	INFO_PRINTF1(_L("Importing a file by Para"));
sl@0
   497
	document->Reset();
sl@0
   498
	TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
sl@0
   499
	test(charsImported>0);
sl@0
   500
	INFO_PRINTF1(_L("Comparing Result"));
sl@0
   501
	TRAP(err,CompareRichTextL(TheContainer->iText,document));
sl@0
   502
 	test(err==KErrNone);
sl@0
   503
	delete TheContainer;
sl@0
   504
	}
sl@0
   505
	
sl@0
   506
	{
sl@0
   507
	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
sl@0
   508
	INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
sl@0
   509
	INFO_PRINTF1(_L("Line Lengths 25,30,...,95"));
sl@0
   510
	TFileName exportFile=KExportFileName1();
sl@0
   511
	TInt ii;
sl@0
   512
	for(ii=25;ii<100;ii+=5)
sl@0
   513
		{
sl@0
   514
		INFO_PRINTF1(_L("With next line length"));
sl@0
   515
		EnsureFileExists(exportFile);
sl@0
   516
		TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
sl@0
   517
		test(err==KErrNone);
sl@0
   518
		document->Reset();
sl@0
   519
		TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
sl@0
   520
		test(charsImported>0);
sl@0
   521
		TRAP(err,CompareRichTextL(TheContainer->iText,document));
sl@0
   522
 		test(err==KErrNone);
sl@0
   523
		}
sl@0
   524
	delete TheContainer;
sl@0
   525
	
sl@0
   526
	}
sl@0
   527
sl@0
   528
	
sl@0
   529
	INFO_PRINTF1(_L("Document with two Paragraphs"));
sl@0
   530
	
sl@0
   531
	{	
sl@0
   532
	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para2.pml"));
sl@0
   533
	INFO_PRINTF1(_L("Exporting a file by Para"));
sl@0
   534
	TFileName exportFile=KExportFileName2();
sl@0
   535
	EnsureFileExists(exportFile);
sl@0
   536
	TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
sl@0
   537
	test(err==KErrNone);
sl@0
   538
	INFO_PRINTF1(_L("Importing a file by Para"));
sl@0
   539
	document->Reset();
sl@0
   540
	TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
sl@0
   541
	test(charsImported>0);
sl@0
   542
	INFO_PRINTF1(_L("Comparing Result"));
sl@0
   543
	TRAP(err,CompareRichTextL(TheContainer->iText,document));
sl@0
   544
 	test(err==KErrNone);
sl@0
   545
	delete TheContainer;
sl@0
   546
	}
sl@0
   547
	
sl@0
   548
	{
sl@0
   549
	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
sl@0
   550
	INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
sl@0
   551
	INFO_PRINTF1(_L("Line Lengths 30,40,...,100"));
sl@0
   552
	TFileName exportFile=KExportFileName1();
sl@0
   553
	TInt ii;
sl@0
   554
	for(ii=30;ii<105;ii+=10)
sl@0
   555
		{
sl@0
   556
		INFO_PRINTF1(_L("With next line length"));
sl@0
   557
		EnsureFileExists(exportFile);
sl@0
   558
		TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
sl@0
   559
		test(err==KErrNone);
sl@0
   560
		document->Reset();
sl@0
   561
		TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
sl@0
   562
		test(charsImported>0);
sl@0
   563
		TRAP(err,CompareRichTextL(TheContainer->iText,document));
sl@0
   564
 		test(err==KErrNone);
sl@0
   565
		}
sl@0
   566
	delete TheContainer;
sl@0
   567
	
sl@0
   568
	}
sl@0
   569
sl@0
   570
	delete document;
sl@0
   571
	delete cLayer;
sl@0
   572
	delete pLayer;
sl@0
   573
sl@0
   574
	
sl@0
   575
	}
sl@0
   576
sl@0
   577
sl@0
   578
LOCAL_C void setupCleanup()
sl@0
   579
//
sl@0
   580
// Initialise the cleanup stack.
sl@0
   581
//
sl@0
   582
    {
sl@0
   583
sl@0
   584
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   585
	TRAPD(r,\
sl@0
   586
		{\
sl@0
   587
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   588
			CleanupStack::PushL((TAny*)1);\
sl@0
   589
		test(r==KErrNone);\
sl@0
   590
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   591
		});
sl@0
   592
	}
sl@0
   593
sl@0
   594
sl@0
   595
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   596
	{
sl@0
   597
	RFs fsSession;
sl@0
   598
	TInt err = fsSession.Connect();
sl@0
   599
	if(err == KErrNone)
sl@0
   600
		{
sl@0
   601
		TEntry entry;
sl@0
   602
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   603
			{
sl@0
   604
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   605
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   606
			if(err != KErrNone) 
sl@0
   607
				{
sl@0
   608
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   609
				}
sl@0
   610
			err = fsSession.Delete(aFullName);
sl@0
   611
			if(err != KErrNone) 
sl@0
   612
				{
sl@0
   613
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   614
				}
sl@0
   615
			}
sl@0
   616
		fsSession.Close();
sl@0
   617
		}
sl@0
   618
	else
sl@0
   619
		{
sl@0
   620
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   621
		}
sl@0
   622
	}
sl@0
   623
}
sl@0
   624
sl@0
   625
CT_TRAN::CT_TRAN()
sl@0
   626
    {
sl@0
   627
    SetTestStepName(KTestStep_T_TRAN);
sl@0
   628
    pTestStep = this;
sl@0
   629
    }
sl@0
   630
sl@0
   631
TVerdict CT_TRAN::doTestStepL()
sl@0
   632
    {
sl@0
   633
    SetTestStepResult(EFail);
sl@0
   634
sl@0
   635
    INFO_PRINTF1(_L("Testing Picture Restorer mechanism"));
sl@0
   636
    
sl@0
   637
    __UHEAP_MARK;
sl@0
   638
    T_TRAN::setupCleanup();
sl@0
   639
    TRAPD(r, T_TRAN::GoL());
sl@0
   640
sl@0
   641
    delete T_TRAN::TheTrapCleanup;
sl@0
   642
    
sl@0
   643
    __UHEAP_MARKEND;
sl@0
   644
    
sl@0
   645
    T_TRAN::DeleteDataFile(T_TRAN::KExportFileName1);     //deletion of data files must be before call to End() - DEF047652
sl@0
   646
    T_TRAN::DeleteDataFile(T_TRAN::KExportFileName2); 
sl@0
   647
    
sl@0
   648
    if (r == KErrNone)
sl@0
   649
        {
sl@0
   650
        SetTestStepResult(EPass);
sl@0
   651
        }
sl@0
   652
sl@0
   653
    return TestStepResult();
sl@0
   654
    }