os/textandloc/textrendering/texthandling/ttext/T_CONVRT.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 <txtrich.h>
    20 #include <txtfmlyr.h>
    21 #include <s32mem.h>
    22 #include <s32file.h>
    23 #include <flddef.h>
    24 #include <fldbltin.h>
    25 #include "../incp/T_PMLPAR.H"
    26 #include "T_CONVRT.h"
    27 
    28 #define test(cond)											\
    29 	{														\
    30 	TBool __bb = (cond);									\
    31 	TEST(__bb);												\
    32 	if (!__bb)												\
    33 		{													\
    34 		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    35 		User::Leave(1);										\
    36 		}													\
    37 	}
    38 
    39 #define UNUSED_VAR(a) a = a
    40 
    41 const TInt KTestCleanupStack=0x20;
    42 
    43 LOCAL_D CTrapCleanup* TheTrapCleanup;
    44 //
    45 LOCAL_D CRichText* TheText=NULL;
    46 LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
    47 LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
    48 
    49 
    50 ////////////////////////////////////////////////////////////////////////////////////////////
    51 class TTestFieldFactoryCONVRT : public MTextFieldFactory
    52 	{
    53 public:
    54 	// from MTextFieldFactory
    55 	virtual CTextField* NewFieldL(TUid aFieldType); 
    56 	// Creates a field of the type specified
    57 	// Returns NULL if it does not recognise/support the field type
    58 	};
    59 
    60 CTextField* TTestFieldFactoryCONVRT::NewFieldL(TUid aFieldType)
    61 // Creates a field (in aHeader) of the type specified in aHeader
    62 // 
    63 	{
    64 	CTextField* field=NULL;
    65 	if (aFieldType==KDateTimeFieldUid)
    66 		field = (CTextField*)new(ELeave) CDateTimeField();
    67 	return field;
    68 	}
    69 /////////////////////////////////////////////////////////////////////////////////////////////
    70 
    71 _LIT(KOutputFile, "c:\\etext\\t_convrt.tst");
    72 template <class T>
    73 void CT_CONVRT::testStoreRestoreL(T& aCopy,const T& aOriginal)
    74 // Test document persistance.
    75 //
    76     {
    77 	// set up the store
    78 	RFs	theFs;
    79 	theFs.Connect();
    80 	//
    81 	theFs.Delete(KOutputFile);
    82 	theFs.MkDirAll(KOutputFile);
    83 	CFileStore* theStore = CDirectFileStore::CreateL(theFs, KOutputFile, EFileRead | EFileWrite);
    84 	CleanupStack::PushL(theStore);
    85 	theStore->SetTypeL(KDirectFileStoreLayoutUid);
    86 	//
    87 	// store the original
    88 	TStreamId id(0);
    89 	TRAPD(ret,id=aOriginal.StoreL(*theStore));
    90 		test(ret==KErrNone);
    91 	//
    92 	// restore into the copy
    93 	TRAP(ret,aCopy.RestoreL(*theStore,id));
    94 		test(ret==KErrNone);
    95 	//
    96 	// tidy up
    97 	CleanupStack::PopAndDestroy();  // theStore
    98 	theFs.Close();
    99     }
   100 
   101 
   102 TInt CT_CONVRT::IsEqual(const CEditableText* aCopy,const CEditableText* aOriginal)
   103 //
   104 // Returns true if aCopy contents matches aOriginal contents.
   105 // Takes account of multiple segments of a segmented text component.
   106 //
   107 	{
   108 	TInt lengthOfOriginal=aOriginal->DocumentLength();
   109 	TInt lengthOfCopy=aCopy->DocumentLength();
   110 	test(lengthOfOriginal==lengthOfCopy);
   111 //
   112 	TPtrC copy,orig;
   113 //
   114 	TInt lengthRead=0;
   115 	while(lengthRead<=lengthOfOriginal)
   116 		{
   117 		copy.Set((aCopy->Read(lengthRead)));
   118 		orig.Set((aOriginal->Read(lengthRead)));
   119 		for (TInt offset=0; offset<copy.Length(); offset++)
   120 			test(copy[offset]==orig[offset]);
   121 		lengthRead+=copy.Length();
   122 		}
   123 	test(lengthRead==lengthOfOriginal+1);
   124 	return 1;
   125 	}
   126 
   127 
   128 void CT_CONVRT::DoTestRichTextL()
   129 //
   130 // Test streaming CRichText.
   131 //
   132 	{// Create the global text components.
   133 	const TInt KSmallestTextBuffer=1;
   134 	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   135 	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   136 	//	
   137 	CRichText* theCopy=NULL;
   138 	//
   139 	TInt biggest;
   140 	TInt size=User::Available(biggest); 
   141 	//
   142 	TRAPD(ret,
   143 	theCopy=CRichText::NewL(paraLayer,charLayer,CEditableText::ESegmentedStorage,KSmallestTextBuffer));
   144 	//
   145 	TInt newsize=User::Available(biggest);
   146 	TInt footprint=size-newsize;
   147 	//
   148 	size=User::Available(biggest);
   149 	CGlobalText* gText=NULL;
   150 	TRAP(ret,
   151 	gText=CGlobalText::NewL(paraLayer,charLayer,CEditableText::ESegmentedStorage,KSmallestTextBuffer));
   152 	newsize=User::Available(biggest);
   153 	TInt globalPrint=size-newsize;
   154 	TBuf<50> buf;
   155 	buf.Format(_L("Empty rich text takes: %d bytes\n"),footprint);
   156 	INFO_PRINTF1(buf);
   157 	buf.Format(_L("Empty global text takes: %d bytes\n"),globalPrint);
   158 	INFO_PRINTF1(buf);
   159 //	test.Getch();
   160 	delete gText;
   161 	//
   162 	// Now add a text field to this.
   163 	TTestFieldFactoryCONVRT factory;
   164 	TheText->SetFieldFactory(&factory);
   165 	theCopy->SetFieldFactory(&factory);
   166 	CTextField* field=NULL;
   167 	TRAP(ret,
   168 	field=factory.NewFieldL(KDateTimeFieldUid));
   169 	test(ret==KErrNone);
   170 	TRAP(ret,
   171 	TheText->InsertFieldL(0,field,KDateTimeFieldUid));
   172 	test(ret==KErrNone);
   173 	TRAP(ret,
   174 	TheText->UpdateFieldL(0));
   175 	test(ret==KErrNone);
   176 	//
   177 	// Do the store/restore and test
   178 	testStoreRestoreL(*theCopy,*TheText);
   179 	test(IsEqual(theCopy,TheText));
   180 	theCopy->Reset();  // lets me see inside the invariant;
   181 
   182 	delete theCopy;
   183 	delete paraLayer;
   184 	delete charLayer;
   185 	}
   186 
   187 
   188 void CT_CONVRT::LoadIntoText(TFileName& aFileName)
   189 //
   190 	{
   191 	CParser* myParser=NULL;
   192 	TRAPD(ret,
   193 	myParser=CParser::NewL());
   194 	test(ret == KErrNone);
   195 	TRAP(ret,
   196 	TheText=myParser->ParseL(aFileName));
   197 	test(ret == KErrNone);
   198 	TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer();
   199 	TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer();
   200 	delete myParser;
   201 	}
   202 
   203 
   204 void CT_CONVRT::KillText()
   205 //
   206 	{
   207 	delete TheText;
   208 	}
   209 
   210 
   211 void CT_CONVRT::KillLayers()
   212 	{
   213 	delete TheGlobalParaLayer;
   214 	delete TheGlobalCharLayer;
   215 	}
   216 
   217 
   218 void CT_CONVRT::Reset()
   219 //
   220 	{
   221 	KillText();
   222 	KillLayers();
   223 	}
   224 
   225 
   226 void CT_CONVRT::GoL()
   227 //
   228 	{
   229 	INFO_PRINTF1(_L("Rich Text of Shared Para Formats Only"));
   230 	TFileName fileName=_L("z:\\test\\app-framework\\etext\\shared.pml");
   231 	LoadIntoText(fileName);
   232 	TBool hasMarkupData=TheText->HasMarkupData();
   233 	test(hasMarkupData);
   234 	DoTestRichTextL();
   235 	Reset();
   236 	//
   237 	INFO_PRINTF1(_L("Rich Text with specific character formatting"));
   238 	fileName=_L("z:\\test\\app-framework\\etext\\test1.pml");
   239 	LoadIntoText(fileName);
   240 	hasMarkupData=TheText->HasMarkupData();
   241 	test(hasMarkupData);
   242 	DoTestRichTextL();
   243 	Reset();
   244 	}
   245 
   246 
   247 void CT_CONVRT::setupCleanup()
   248 //
   249 // Initialise the cleanup stack.
   250 //
   251     {
   252 
   253 	TheTrapCleanup=CTrapCleanup::New();
   254 	TRAPD(r,\
   255 		{\
   256 		for (TInt i=KTestCleanupStack;i>0;i--)\
   257 			CleanupStack::PushL((TAny*)1);\
   258 		test(r==KErrNone);\
   259 		CleanupStack::Pop(KTestCleanupStack);\
   260 		});
   261 	}
   262 
   263 
   264 void CT_CONVRT::DeleteDataFile(const TDesC& aFullName)
   265 	{
   266 	RFs fsSession;
   267 	TInt err = fsSession.Connect();
   268 	if(err == KErrNone)
   269 		{
   270 		TEntry entry;
   271 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   272 			{
   273 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   274 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   275 			if(err != KErrNone) 
   276 				{
   277 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   278 				}
   279 			err = fsSession.Delete(aFullName);
   280 			if(err != KErrNone) 
   281 				{
   282 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   283 				}
   284 			}
   285 		fsSession.Close();
   286 		}
   287 	else
   288 		{
   289 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   290 		}
   291 	}
   292 
   293 CT_CONVRT::CT_CONVRT()
   294     {
   295     SetTestStepName(KTestStep_T_CONVRT);
   296     }
   297 
   298 TVerdict CT_CONVRT::doTestStepL()
   299     {
   300     SetTestStepResult(EFail);
   301 
   302     setupCleanup();
   303     __UHEAP_MARK;
   304 
   305     INFO_PRINTF1(_L("T_CONVRT - Rich Text Persistence"));
   306     INFO_PRINTF1(_L("Persisting Rich Text"));
   307     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVRT-0001 "));
   308     TRAPD(error1, GoL());
   309 
   310     __UHEAP_MARKEND;
   311     delete TheTrapCleanup;
   312 
   313     if(error1 == KErrNone)
   314         {
   315         SetTestStepResult(EPass);
   316         }
   317 
   318     return TestStepResult();
   319     }