os/textandloc/textrendering/texthandling/ttext/TRICHOOM.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 "TSTCLIPB.H"
    21 #include <txtstyle.h>
    22 #include <gdi.h>
    23 #include <conpics.h>											   						 
    24 #include <flddef.h>
    25 #include <fldbltin.h>
    26 #include <s32mem.h>
    27 #include <s32file.h>
    28 #include "../incp/T_PMLPAR.H"
    29 #include "T_RICHOOM.h"
    30 
    31 #define test(cond)											\
    32 	{														\
    33 	TBool __bb = (cond);									\
    34 	TEST(__bb);												\
    35 	if (!__bb)												\
    36 		{													\
    37 		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    38 		User::Leave(1);										\
    39 		}													\
    40 	}
    41 
    42 const TInt KTestCleanupStack=0x500;
    43 
    44 LOCAL_D RFs theFs;
    45 LOCAL_D CParaFormatLayer* GlobalParaFormatLayer;
    46 LOCAL_D CCharFormatLayer* GlobalCharFormatLayer;
    47 LOCAL_D MPictureFactory* GlobalPictureFactory;
    48 LOCAL_D CTrapCleanup* TheTrapCleanup;
    49 LOCAL_D CParser* TheParser;
    50 LOCAL_D RFs TheSession;
    51 
    52 
    53 CRichText* CT_RICHOOM::LoadIntoTextL(TFileName& aFileName)
    54 //
    55 	{
    56 	TRAPD(ret,
    57 	TheParser=CParser::NewL());
    58 	CRichText* text=NULL;
    59 	TRAP(ret,
    60 	text=TheParser->ParseL(aFileName));
    61 	delete GlobalParaFormatLayer;
    62 	delete GlobalCharFormatLayer;
    63 	GlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
    64 	GlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
    65 	delete TheParser;
    66 	TheParser=NULL;
    67 	return text;
    68 	}
    69 
    70 
    71 void CT_RICHOOM::ConstructOOM()
    72 // Test CRichText construction, (and index), forcing a leave error at each
    73 // possible stage of the process.
    74 //
    75 	{
    76 	INFO_PRINTF1(_L("Construction under low memory conditions"));
    77 	
    78 	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
    79 	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
    80 	TInt failRate=0;
    81 	CRichText* doc=NULL;
    82 	for (failRate=1;;failRate++)
    83 		{
    84 		__UHEAP_RESET;
    85 		__UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
    86 		__UHEAP_MARK;
    87 		TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer));
    88 		if (ret!=KErrNone)
    89 			{
    90 			__UHEAP_MARKEND;
    91 			test(doc==NULL);
    92 			}
    93 		else
    94 			{
    95 			test(doc!=NULL);
    96 //			test(!doc->HasMarkupData());
    97 			delete doc;
    98 			__UHEAP_MARKEND;
    99 			break;
   100 			}
   101 		}
   102 	__UHEAP_RESET;
   103 	delete paraLayer;
   104 	delete charLayer;
   105 	TBuf<36> answer;
   106 	answer.Format(_L("        #allocs for full c'tion: %d\n"),failRate-1);
   107 	INFO_PRINTF1(answer);
   108 	}
   109 
   110 
   111 void CT_RICHOOM::CopyPasteOOM()
   112 	{
   113 // Set up the framework
   114 	INFO_PRINTF1(_L("Copy/Paste OOM"));
   115 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   116 	TFileName file=_L("z:\\test\\app-framework\\etext\\climb.txt");
   117 	/*TInt count=*/richText1->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
   118 	//
   119 	// Insert some picture components
   120 	CXzePicture* pic1=CXzePicture::NewL('p');
   121 	CXzePicture* pic2=CXzePicture::NewL('l');
   122 	CXzePicture* pic3=CXzePicture::NewL('l');
   123 	TPictureHeader hdr1;
   124 	TPictureHeader hdr2;
   125 	TPictureHeader hdr3;
   126 	hdr1.iPictureType = KUidXzePictureType;
   127 	hdr2.iPictureType = KUidXzePictureType;
   128 	hdr3.iPictureType = KUidXzePictureType;
   129 	hdr1.iPicture = pic1;
   130 	hdr2.iPicture = pic2;
   131 	hdr3.iPicture = pic3;
   132 	richText1->InsertL(richText1->DocumentLength(),hdr3);
   133 	richText1->InsertL(richText1->DocumentLength(),hdr2);
   134 	richText1->InsertL(richText1->DocumentLength(),hdr1);
   135 	//
   136 	// Apply some random formatting
   137 	TCharFormat charFormat; TCharFormatMask charMask;
   138 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   139 	charMask.SetAttrib(EAttFontStrokeWeight);
   140 	richText1->ApplyCharFormatL(charFormat,charMask,10,37);
   141 //
   142 // Copy to clipboard normally.
   143 	INFO_PRINTF1(_L("Copy Normally"));
   144 	User::LeaveIfError(TheSession.Connect());
   145 	CClipboard* writeBoard=CClipboard::NewForWritingLC(TheSession);
   146 	richText1->CopyToStoreL(writeBoard->Store(),writeBoard->StreamDictionary(),0,richText1->DocumentLength()-1);  // forces virtual trailing phrase
   147 	writeBoard->CommitL();
   148 	CleanupStack::PopAndDestroy();  // writeboard
   149 	writeBoard=NULL;
   150 	delete richText1;
   151 	richText1=NULL;
   152 //
   153 // Paste from clipboard normally.
   154 	INFO_PRINTF1(_L("Paste Normally"));
   155 	__UHEAP_MARK;
   156 	CRichText* empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   157 	MDemPictureFactory pictureFactory;
   158 	empty->SetPictureFactory(&pictureFactory,NULL);
   159 	CClipboard* readBoard=CClipboard::NewForReadingLC(TheSession);
   160 	TRAPD(ret,
   161 	empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),0));
   162 	test(ret==KErrNone);
   163 	delete empty;
   164 	empty=NULL;
   165 	CleanupStack::PopAndDestroy();  // readBoard
   166 	readBoard=NULL;
   167 	__UHEAP_MARKEND;
   168 //
   169 // Paste from clipboard with OOM
   170 	INFO_PRINTF1(_L("Paste with OOM"));
   171 	INFO_PRINTF1(_L("...please wait"));
   172 	__UHEAP_MARK;
   173 	empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   174 	for (TInt ii=1; ;ii++)
   175 		{
   176 		readBoard=CClipboard::NewForReadingLC(TheSession);
   177 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   178 		TRAP(ret,empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),0));
   179 		__UHEAP_RESET;
   180 		empty->Reset();
   181 		CleanupStack::PopAndDestroy();
   182 		if (ret==KErrNone)
   183 			break;
   184 		}
   185 	readBoard=NULL;
   186 
   187 	//
   188 	delete empty;
   189 	empty=NULL;
   190 	TheSession.Close();
   191 	__UHEAP_MARKEND;
   192 	}
   193 
   194 
   195 void CT_RICHOOM::CopyPasteOOM2()
   196 // Test case for defect HA-282 - simple case
   197 //
   198 	{
   199 	__UHEAP_MARK;
   200 // Set up the framework
   201 	INFO_PRINTF1(_L("Copy/Paste OOM 2"));
   202 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   203 	richText1->InsertL(0,_L("HelloHello"));
   204 	richText1->InsertL(5,CEditableText::EParagraphDelimiter);
   205 	//
   206 	// Format the first paragraph
   207 	TCharFormat charFormat; TCharFormatMask charMask;
   208 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   209 	charMask.SetAttrib(EAttFontStrokeWeight);
   210 	richText1->ApplyCharFormatL(charFormat,charMask,0,6);
   211 //
   212 // Copy to clipboard normally.
   213 	INFO_PRINTF1(_L("Copy Normally"));
   214 	User::LeaveIfError(TheSession.Connect());
   215 	CClipboard* writeBoard=CClipboard::NewForWritingLC(TheSession);
   216 	richText1->CopyToStoreL(writeBoard->Store(),writeBoard->StreamDictionary(),2,6);  // forces virtual trailing phrase
   217 	writeBoard->CommitL();
   218 	CleanupStack::PopAndDestroy();  // writeboard
   219 	writeBoard=NULL;
   220 //
   221 // Paste from clipboard normally.
   222 	INFO_PRINTF1(_L("Paste Normally"));
   223 //	__UHEAP_MARK;
   224 	CRichText* empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   225 	empty->AppendTakingSolePictureOwnershipL(*richText1);
   226 	CClipboard* readBoard=CClipboard::NewForReadingLC(TheSession);
   227 	TRAPD(ret,
   228 	empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),empty->DocumentLength()));
   229 	test(ret==KErrNone);
   230 	delete empty;
   231 	empty=NULL;
   232 	CleanupStack::PopAndDestroy();  // readBoard
   233 	readBoard=NULL;
   234 //	__UHEAP_MARKEND;
   235 //
   236 // Paste from clipboard with OOM
   237 	INFO_PRINTF1(_L("Paste with OOM"));
   238 	INFO_PRINTF1(_L("...please wait"));
   239 	__UHEAP_MARK;
   240 	empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   241 	empty->AppendTakingSolePictureOwnershipL(*richText1);
   242 	delete richText1;
   243 	richText1=NULL;
   244 	for (TInt ii=1; ;ii++)
   245 		{
   246 		readBoard=CClipboard::NewForReadingLC(TheSession);
   247 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   248 		TRAP(ret,empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),empty->DocumentLength()));
   249 		__UHEAP_RESET;
   250 //		empty->Reset();
   251 		CleanupStack::PopAndDestroy();
   252 		if (ret==KErrNone)
   253 			break;
   254 		}
   255 	readBoard=NULL;
   256 	//
   257 	delete empty;
   258 	empty=NULL;
   259 	__UHEAP_MARKEND;
   260 	TheSession.Close();
   261 	__UHEAP_MARKEND;
   262 	}
   263 
   264 
   265 void CT_RICHOOM::WriteInlineL(RWriteStream& aStream,CRichText* aRichText)
   266 	{
   267 	aRichText->ExternalizeStyleDataL(aStream);
   268 	aRichText->ExternalizeMarkupDataL(aStream);	
   269 	aRichText->ExternalizePlainTextL(aStream);
   270 	}
   271 
   272 void CT_RICHOOM::ReadInlineL(RReadStream& aStream,CRichText* aRichText)
   273 	{
   274 	aRichText->InternalizeStyleDataL(aStream);
   275 	aRichText->InternalizeMarkupDataL(aStream);	
   276 	aRichText->InternalizePlainTextL(aStream);
   277 	}
   278 
   279 
   280 CStyleList* CT_RICHOOM::CreatePopulatedStyleList()
   281 //
   282 	{
   283 	//
   284 	// Create style aswell.
   285 	CStyleList* list=CStyleList::NewL();
   286 	CParagraphStyle* style1=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
   287 	CParagraphStyle* style2=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
   288 	CParagraphStyle* style3=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
   289 	RParagraphStyleInfo info1(style1);
   290 	RParagraphStyleInfo info2(style2);
   291 	RParagraphStyleInfo info3(style3);
   292 	list->AppendL(&info1);
   293 	list->AppendL(&info2);
   294 	list->AppendL(&info3);
   295 	return list;
   296 	}
   297 _LIT(KTRichOutputFile,"c:\\etext\\TRICH.DAT");
   298 
   299 void CT_RICHOOM::SaveLoadOOM()
   300 	{
   301 // Set up the framework
   302 	theFs.Delete(KTRichOutputFile);
   303 	theFs.MkDirAll(KTRichOutputFile);
   304 	CFileStore* store = CPermanentFileStore::CreateLC(theFs,KTRichOutputFile,EFileRead|EFileWrite);
   305 	store->SetTypeL(store->Layout());
   306 	CStyleList* list=CreatePopulatedStyleList();
   307 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list);
   308 	TBool hasMarkupData=richText1->HasMarkupData();
   309 	test(hasMarkupData);  // because of owned style list.
   310 	richText1->InsertL(0,_L("hello"));
   311 	richText1->InsertL(richText1->DocumentLength(),CEditableText::EParagraphDelimiter);
   312 	richText1->InsertL(richText1->DocumentLength(),_L("there"));
   313 
   314 	RStoreWriteStream out;
   315 	TStreamId id1 =  out.CreateLC(*store);
   316 	
   317 	INFO_PRINTF1(_L("Store/Restore OOM"));
   318 	INFO_PRINTF1(_L("Writing Inline noramlly"));
   319 // Write out inline normally
   320 	WriteInlineL(out,richText1);
   321 	delete richText1;
   322 	out.CommitL();
   323 	CleanupStack::PopAndDestroy();  // out
   324 	store->CommitL();
   325 	RStoreReadStream in;
   326 	in.OpenLC(*store,id1);
   327 	CRichText* empty = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   328 
   329 	INFO_PRINTF1(_L("Reading Inline noramlly"));
   330 // Read in inline normally:
   331 	TRAPD(ret,ReadInlineL(in,empty));
   332 	test(ret==KErrNone);
   333 	CleanupStack::PopAndDestroy();  // in
   334 	delete empty;
   335 	empty=NULL;
   336 
   337 	INFO_PRINTF1(_L("Reading Inline with OOM"));
   338 // Read in inline with OOM:
   339 	empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   340 
   341 	for (TInt jj = 1; ;++jj)
   342 		{
   343 		RStoreReadStream in2;
   344 		in2.OpenLC(*store,id1);
   345 		__UHEAP_SETFAIL(RHeap::EDeterministic,jj);
   346 		TRAPD(ret,ReadInlineL(in2,empty));
   347 		__UHEAP_RESET;
   348 		CleanupStack::PopAndDestroy();  // in2
   349 		if (ret!=KErrNone)
   350 			empty->Reset();
   351 		else
   352 			{
   353 			test(empty->HasMarkupData());
   354 			break;
   355 			}
   356 		}
   357 
   358 	INFO_PRINTF1(_L("Writing Inline with OOM"));
   359 // Write out inline with OOM:
   360 	CStyleList* list2=CreatePopulatedStyleList();
   361 	CRichText* richText2 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list2);
   362 	richText2->InsertL(0,_L("hello"));
   363 	TStreamId i = store->ExtendL();
   364 	for (TInt ii = 1; ;++ii)
   365 		{
   366 		RStoreWriteStream out2;
   367 		out2.ReplaceLC(*store,i);	
   368 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   369 		TRAP(ret,WriteInlineL(out2,richText2));
   370 		__UHEAP_RESET;
   371 		if (ret==KErrNone)
   372 			{
   373 			out2.CommitL();
   374 			CleanupStack::PopAndDestroy();  // out2
   375 			delete richText2;
   376 			break;		
   377 			}
   378 		else
   379 			CleanupStack::PopAndDestroy();  // out2
   380 		}
   381 	store->CommitL();
   382 
   383 	INFO_PRINTF1(_L("Reading Inline after OOM write"));
   384 // Read in inline normally following a write out with OOM
   385 	RStoreReadStream in3;
   386 	in3.OpenLC(*store,i);
   387 	empty->Reset();
   388 	TRAP(ret,ReadInlineL(in3,empty));	// unhandled exception
   389 	test(ret==KErrNone);
   390 	CleanupStack::PopAndDestroy();
   391 	empty->Reset();
   392 
   393 //
   394 //
   395 //
   396 
   397 	// Set up new component framework
   398 	CXzePicture* pic1=CXzePicture::NewL('p');
   399 	CXzePicture* pic2=CXzePicture::NewL('l');
   400 	CXzePicture* pic3=CXzePicture::NewL('l');
   401 	TPictureHeader hdr1;
   402 	TPictureHeader hdr2;
   403 	TPictureHeader hdr3;
   404 	hdr1.iPictureType = KUidXzePictureType;
   405 	hdr2.iPictureType = KUidXzePictureType;
   406 	hdr3.iPictureType = KUidXzePictureType;
   407 	hdr1.iPicture = pic1;
   408 	hdr2.iPicture = pic2;
   409 	hdr3.iPicture = pic3;
   410 	CRichText* richText3 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   411 	richText3->InsertL(0,hdr3);
   412 	richText3->InsertL(0,hdr2);
   413 	richText3->InsertL(0,hdr1);
   414 	richText3->InsertL(2,_L("hello"));
   415 
   416 	INFO_PRINTF1(_L("Writing Outline noramlly"));
   417 // Write outline normally:
   418 	TStreamId id2 = richText3->StoreL(*store);
   419 	store->CommitL();
   420 	delete richText3;
   421 
   422 	INFO_PRINTF1(_L("Reading Outline noramlly"));
   423 // Read outline normally:
   424 	empty->Reset();
   425 	TRAP(ret,empty->RestoreL(*store,id2));
   426 	test(ret==KErrNone);
   427 	empty->Reset();
   428 
   429 	INFO_PRINTF1(_L("Reading Outline with OOM"));
   430 // Read outline with OOM:
   431 	CRichText* inText2=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   432 	for (TInt kk = 1; ;++kk)
   433 		{
   434 		__UHEAP_SETFAIL(RHeap::EDeterministic,kk);
   435 		//
   436 		TRAP(ret,inText2->RestoreL(*store,id2));
   437 		//
   438 		__UHEAP_RESET;
   439 		if (ret!=KErrNone)
   440 			inText2->Reset();
   441 		else
   442 			{
   443 			delete inText2;
   444 			break;
   445 			}
   446 		}
   447 
   448 	CRichText* richText4 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   449 	CXzePicture* pic4=CXzePicture::NewL('P');
   450 	CXzePicture* pic5=CXzePicture::NewL('P');
   451 	CXzePicture* pic6=CXzePicture::NewL('P');
   452 	TPictureHeader hdr4;
   453 	TPictureHeader hdr5;
   454 	TPictureHeader hdr6;
   455 	hdr4.iPictureType=KUidXzePictureType;
   456 	hdr5.iPictureType=KUidXzePictureType;
   457 	hdr6.iPictureType=KUidXzePictureType;
   458 	hdr4.iPicture=pic4;
   459 	hdr5.iPicture=pic5;
   460 	hdr6.iPicture=pic6;
   461 	richText4->InsertL(0,hdr4);
   462 	richText4->InsertL(0,hdr5);
   463 	richText4->InsertL(0,hdr6);
   464 	richText4->InsertL(1,_L("hello"));
   465 	
   466 	INFO_PRINTF1(_L("Writing Outline with OOM"));
   467 // Wtite outline with OOM:
   468 	TStreamId id3(0);
   469 	for (TInt mm=1; ;++mm)
   470 		{
   471 		__UHEAP_SETFAIL(RHeap::EDeterministic,mm);
   472 		TRAPD(ret,id3 = richText4->StoreL(*store));
   473 		if (ret==KErrNone)
   474 			{
   475 			__UHEAP_RESET;
   476 			delete richText4;
   477 			store->CommitL();
   478 			break;		
   479 			}
   480 		}
   481 
   482 	INFO_PRINTF1(_L("Reading Outline after OOM write"));
   483 // Read outline normally folliwng a write with OOM:
   484 	empty->Reset();
   485 	TRAP(ret,empty->RestoreL(*store,id3));
   486 	test(ret==KErrNone);
   487 		
   488 	CleanupStack::PopAndDestroy();  // store
   489 	delete empty;
   490 	}
   491 
   492 
   493 void CT_RICHOOM::CheckTextIntegrity(const CRichText* aText)
   494 // Simply invokes a method to run the text (& component's) onvariants.
   495 //
   496 	{
   497 	__UHEAP_RESET;
   498 	CParaFormat* paraFormat=CParaFormat::NewLC();
   499 	aText->GetParagraphFormatL(paraFormat,0);  // forces CRichTextIndex::__DbgTextInvariant() to run.
   500 	CleanupStack::PopAndDestroy();  // paraFormat
   501 	}
   502 	
   503 	
   504 void CT_RICHOOM::BasicEditOOM()
   505 // Tests basic editing functions under OOM conditions.
   506 //
   507 	{
   508 	INFO_PRINTF1(_L("Basic Editing methods under OOM"));
   509 	INFO_PRINTF1(_L("InsertL(TChar)"));
   510 //
   511 //	Insert a single character
   512 	const TInt insertCharLoop=10;
   513 	const TInt KSmallTextBufferSize=1;
   514 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   515 	richText1->SetPictureFactory(NULL,NULL);  // forces index generation
   516 	for (TInt mm=1;mm<=insertCharLoop;mm++)
   517 		{
   518 		__UHEAP_SETFAIL(RHeap::EDeterministic,mm);
   519 		for (TInt nn=1;nn<=insertCharLoop;nn++)
   520 			{
   521 			TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),'x'));
   522 			if (ret!=KErrNone)
   523 				{
   524 				test(richText1->DocumentLength()+1==nn);
   525 				CheckTextIntegrity(richText1);
   526 				break;
   527 				}
   528 			}
   529 		__UHEAP_RESET;
   530 		richText1->Reset();
   531 		}
   532 	__UHEAP_RESET;
   533 	delete richText1;
   534 //
   535 //
   536 	INFO_PRINTF1(_L("InsertL(TDesC&)"));
   537 //
   538 //	Insert a descriptor
   539 	const TInt insertDescriptorLoop=10;
   540 	richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   541 	richText1->SetPictureFactory(NULL,NULL);  // forces index generation
   542 	TPtrC buf(_L("1234567890"));
   543 
   544 	for (TInt nn=1;nn<=insertDescriptorLoop+1;nn++)
   545 		{
   546 		__UHEAP_SETFAIL(RHeap::EDeterministic,nn);
   547 		TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),buf));
   548 		if (ret!=KErrNone)
   549 			{
   550 			test(richText1->DocumentLength()==0);
   551 			}
   552 		else
   553 			{
   554 			test(richText1->DocumentLength()==buf.Length());
   555 			}
   556 		CheckTextIntegrity(richText1);
   557 		richText1->Reset();
   558 		}
   559 	__UHEAP_RESET;
   560 	delete richText1;
   561 
   562 //
   563 //
   564 	INFO_PRINTF1(_L("InsertL(TPictureHeader&)"));
   565 //
   566 //	Insert a picture header
   567 	richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   568 	//
   569 	for (TInt ii=18; ;ii++)
   570 		{
   571 		// create the picture header
   572 		__UHEAP_RESET;
   573 		CXzePicture* pic1=CXzePicture::NewL('o');
   574 		TPictureHeader hdr1;
   575 		hdr1.iPictureType=KUidXzePictureType;
   576 		hdr1.iPicture=pic1;
   577 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   578 		TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),hdr1));
   579 		if (ret!=KErrNone)
   580 			{
   581 			test(richText1->DocumentLength()==0);
   582 //			if (ii<19)
   583 //				delete pic1;
   584 /*
   585 	THE ABOVE 2 LINES ARE WRONG NOW, SINCE THE PICTURE IS DELETED AUTOMATICALLY, IF THE INSERTION FAILS.
   586 
   587 */
   588 			richText1->Reset();
   589 			}
   590 		else
   591 			{
   592 			test(richText1->DocumentLength()==1);
   593 			break;
   594 			}
   595 		}
   596 	__UHEAP_RESET;
   597 	delete richText1;
   598 
   599 	__UHEAP_RESET;
   600 //	delete richText1;
   601 	}
   602 
   603 
   604 void CT_RICHOOM::AppendTest1L()
   605 	{
   606 //	Insert a single character
   607 	const TInt insertDescriptorLoop=10;
   608 	const TInt KSmallTextBufferSize=1;
   609 	CRichText* source=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   610 	CRichText* target=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   611 	source->InsertL(source->DocumentLength(),_L("1234567890"));	
   612 	target->InsertL(target->DocumentLength(),_L("abcdef"));
   613 	TInt targetStartLength=target->DocumentLength();
   614 	for (TInt nn=1;nn<=insertDescriptorLoop+2;nn++) // +1 for the last para delim, +1 to force a suceed
   615 		{
   616 		__UHEAP_SETFAIL(RHeap::EDeterministic,nn);
   617 		TRAPD(ret,target->AppendTakingSolePictureOwnershipL(*source));
   618 		if (ret!=KErrNone)
   619 			{
   620 			test(target->DocumentLength()==targetStartLength);
   621 			}
   622 		else
   623 			{
   624 			TInt targetLength=target->DocumentLength();
   625 			test(targetLength==targetStartLength+source->DocumentLength()+1);
   626 			break;
   627 			}
   628 		CheckTextIntegrity(target);
   629 		}
   630 	__UHEAP_RESET;
   631 	delete target;
   632 	delete source;
   633 	}
   634 
   635 
   636 void CT_RICHOOM::AppendTest2L(CRichText* aTarget)
   637 	{
   638 	__UHEAP_RESET;
   639 	const TInt KSmallTextBufferSize=1;
   640 	TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
   641 	CRichText* source=LoadIntoTextL(filename);
   642 	if (!aTarget)
   643 		aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   644 	TInt targetStartLength=aTarget->DocumentLength();
   645 	for (TInt ii = 1; ;++ii)
   646 		{
   647 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   648 		TRAPD(ret,
   649 			aTarget->AppendTakingSolePictureOwnershipL(*source));
   650 		__UHEAP_RESET;
   651 		if (ret!=KErrNone)
   652 			{
   653 			test(aTarget->DocumentLength()==targetStartLength);
   654 			}
   655 		else
   656 			{// We have succeeded in appending the document.
   657 			TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
   658 			test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
   659 			break;
   660 			}
   661 		}
   662 	delete source;
   663 	delete aTarget;
   664 	}
   665 
   666 
   667 void CT_RICHOOM::AppendTestNewL(CRichText* aTarget)
   668 	{
   669 	const TInt KSmallTextBufferSize=4;
   670 	TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
   671 	CRichText* source=LoadIntoTextL(filename);
   672 	if (!aTarget)
   673 		{
   674 		aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   675 		aTarget->InsertL(0,_L("This is paragraph number one"));
   676 		aTarget->InsertL(1,CEditableText::EParagraphDelimiter);
   677 		}
   678 	TInt targetStartLength=aTarget->DocumentLength();
   679 	for (TInt ii = 1; ;++ii)
   680 		{
   681 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   682 		TRAPD(ret,
   683 			aTarget->AppendTakingSolePictureOwnershipL(*source));
   684 		__UHEAP_RESET;
   685 		if (ret!=KErrNone)
   686 			{
   687 			test(aTarget->DocumentLength()==targetStartLength);
   688 			}
   689 		else
   690 			{// We have succeeded in appending the document.
   691 			TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
   692 			test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
   693 			break;
   694 			}
   695 		}
   696 	delete source;
   697 	delete aTarget;
   698 	}
   699 
   700 
   701 void CT_RICHOOM::AppendTest3L(CRichText* aTarget)
   702 	{
   703 	const TInt KSmallTextBufferSize=31;
   704 	TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
   705 	CRichText* source=LoadIntoTextL(filename);
   706 	if (!aTarget)
   707 		aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
   708 	TInt targetStartLength=aTarget->DocumentLength();
   709 	for (TInt ii = 1; ;++ii)
   710 		{
   711 		__UHEAP_SETFAIL(RHeap::EDeterministic,ii);
   712 		TRAPD(ret,
   713 			aTarget->AppendTakingSolePictureOwnershipL(*source));
   714 		__UHEAP_RESET;
   715 		if (ret!=KErrNone)
   716 			{
   717 			test(aTarget->DocumentLength()==targetStartLength);
   718 			}
   719 		else
   720 			{// We have succeeded in appending the document.
   721 			TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
   722 			test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
   723 			break;
   724 			}
   725 		}
   726 	delete source;
   727 	delete aTarget;
   728 	}
   729 
   730 
   731 void CT_RICHOOM::AppendTakingSolePictureOwnershipOOM()
   732 //
   733 	{
   734 	INFO_PRINTF1(_L("AppendTakingSolePictureOwnershipL() under OOM"));
   735 	//
   736 	INFO_PRINTF1(_L("Plain text only"));
   737 	TRAPD(ret,
   738 	AppendTest1L());
   739 	test(ret==KErrNone);
   740 	//
   741 	INFO_PRINTF1(_L("Plain text + phrase markup, with empty target"));
   742 	TRAP(ret,
   743 	AppendTest2L(STATIC_CAST(CRichText*,NULL)));
   744 	test(ret==KErrNone);
   745 	//
   746 	INFO_PRINTF1(_L("Plain text + phrase markup, with non-empty target"));
   747 	TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
   748 	CRichText* target=LoadIntoTextL(filename);
   749 	TRAP(ret,
   750 	AppendTest2L(target));
   751 	test(ret==KErrNone);
   752 	//
   753 //	INFO_PRINTF1(_L("Plain text + shared markup, with empty target"));
   754 //	TRAP(ret,
   755 //	AppendTest3L(STATIC_CAST(CRichText*,NULL)));
   756 //	test(ret==KErrNone);
   757 	//
   758 	INFO_PRINTF1(_L("Plain text + shared markup, non-empty target"));
   759 	TRAP(ret,
   760 	AppendTestNewL(STATIC_CAST(CRichText*,NULL)));
   761 	test(ret==KErrNone);
   762 	//
   763 	INFO_PRINTF1(_L("Plain text + shared markup, with non-empty target"));
   764 	filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
   765 	target=LoadIntoTextL(filename);
   766 	TRAP(ret,
   767 	AppendTest3L(target));
   768 	test(ret==KErrNone);
   769 	}
   770 
   771 
   772 void CT_RICHOOM::DoAppendParagraphOOM(CRichText* aRichText,TBool aUnderOOM,TInt aReplicas)
   773 	{
   774 	if (!aUnderOOM)
   775 		{
   776 		aRichText->AppendParagraphL(aReplicas);
   777 		return;
   778 		}
   779 //
   780 // Append testing for OOM
   781 	TInt charCount=aRichText->DocumentLength();
   782 	TInt paraCount=aRichText->ParagraphCount();
   783 	for (TInt jj = 1; ;++jj)
   784 		{
   785 		__UHEAP_SETFAIL(RHeap::EDeterministic,jj);
   786 		TRAPD(ret,
   787 		aRichText->AppendParagraphL(aReplicas));
   788 		__UHEAP_RESET;
   789 		TInt newCharCount=aRichText->DocumentLength();
   790 		TInt newParaCount=aRichText->ParagraphCount();
   791 		if (ret!=KErrNone)
   792 			{
   793 			test(newCharCount==charCount);
   794 			test(newParaCount==paraCount);
   795 			}
   796 		else
   797 			{
   798 			test(newCharCount==charCount+aReplicas);
   799 			test(newParaCount==paraCount+aReplicas);
   800 			TBuf<30> buf;
   801 			buf.Format(_L("   allocs=%d\n"),jj);
   802 			INFO_PRINTF1(buf);
   803 			break;
   804 			}
   805 		}
   806 	}
   807 
   808 
   809 void CT_RICHOOM::AppendParagraphOOM()
   810 //	
   811 	{
   812 	TInt manyParas=5;
   813 	TInt singlePara=1;
   814 	INFO_PRINTF1(_L("AppendParagraphL() under OOM"));
   815 //
   816 	INFO_PRINTF1(_L("appending normally - text has markup - single para"));
   817 	TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
   818 	CRichText* text=LoadIntoTextL(filename);
   819 	DoAppendParagraphOOM(text,EFalse,singlePara);
   820 	delete text;
   821 	text=NULL;
   822 
   823 	INFO_PRINTF1(_L("appending with OOM - text has markup - single para"));
   824 	text=LoadIntoTextL(filename);
   825 	DoAppendParagraphOOM(text,ETrue,singlePara);
   826 	delete text;
   827 	text=NULL;
   828 
   829 	INFO_PRINTF1(_L("appending normally - text has markup - many paras"));
   830 	text=LoadIntoTextL(filename);
   831 	DoAppendParagraphOOM(text,EFalse,manyParas);
   832 	delete text;
   833 	text=NULL;
   834 
   835 	INFO_PRINTF1(_L("appending with OOM - text has markup - many paras"));
   836 	text=LoadIntoTextL(filename);
   837 	DoAppendParagraphOOM(text,ETrue,manyParas);
   838 	delete text;
   839 	text=NULL;
   840 	}
   841 
   842 
   843 void CT_RICHOOM::ApplyCharFormatOOM1()
   844 	{
   845 // Set up the framework
   846 	INFO_PRINTF1(_L("ApplyCharFormatL() OOM - no markup"));
   847 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   848 	richText1->InsertL(0,_L("SOME VERY FINE TEXT"));
   849 
   850 // Apply some random formatting
   851 	TCharFormat charFormat; TCharFormatMask charMask;
   852 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   853 	charMask.SetAttrib(EAttFontStrokeWeight);
   854 
   855 	for (TInt jj=1; ;jj++)
   856 		{
   857 		__UHEAP_SETFAIL(RHeap::EDeterministic,jj);
   858 		TRAPD(ret,
   859 		richText1->ApplyCharFormatL(charFormat,charMask,5,11));
   860 		__UHEAP_RESET;
   861 		TPtrC buf;
   862 		if (ret==KErrNone)
   863 			{
   864 			TCharFormat newFormat;
   865 			richText1->GetChars(buf,newFormat,5);
   866 			test(newFormat.IsEqual(charFormat,charMask));
   867 			test(buf.Length() < richText1->DocumentLength());
   868 			break;
   869 			}
   870 		else
   871 			{
   872 
   873 			}
   874 
   875 		}
   876 	delete richText1;
   877 	richText1=NULL;
   878 	}
   879 
   880 
   881 void CT_RICHOOM::ApplyCharFormatOOM2()
   882 	{
   883 // Set up the framework
   884 	INFO_PRINTF1(_L("ApplyCharFormatL() OOM - with markup"));
   885 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
   886 	richText1->InsertL(0,_L("SOME TEXT"));
   887 
   888 // Generate some markup
   889 	TCharFormat cF;
   890 	TCharFormatMask cM;
   891 	cF.iFontSpec.iFontStyle.SetPosture(EPostureItalic);
   892 	cM.SetAttrib(EAttFontPosture);
   893 	richText1->ApplyCharFormatL(cF,cM,3,3);
   894 
   895 // Apply some random formatting
   896 	TCharFormat charFormat; TCharFormatMask charMask;
   897 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   898 	charMask.SetAttrib(EAttFontStrokeWeight);
   899 
   900 	for (TInt jj=1; ;jj++)
   901 		{
   902 		__UHEAP_SETFAIL(RHeap::EDeterministic,jj);
   903 		TRAPD(ret,
   904 		richText1->ApplyCharFormatL(charFormat,charMask,3,3));
   905 		__UHEAP_RESET;
   906 		TPtrC buf;
   907 		if (ret==KErrNone)
   908 			{
   909 			TCharFormat newFormat;
   910 			richText1->GetChars(buf,newFormat,3);
   911 			test(newFormat.iFontSpec.iFontStyle.Posture()==EPostureItalic);
   912 			test(newFormat.iFontSpec.iFontStyle.StrokeWeight()==EStrokeWeightBold);
   913 			test(buf.Length()==3);
   914 			break;
   915 			}
   916 		else
   917 			{
   918 
   919 			}
   920 
   921 		}
   922 	delete richText1;
   923 	richText1=NULL;
   924 	}
   925 
   926 
   927 void CT_RICHOOM::doMainL()
   928 	{
   929  
   930 	GlobalPictureFactory=new(ELeave) MDemPictureFactory;
   931 	GlobalParaFormatLayer=CParaFormatLayer::NewL();
   932 	GlobalCharFormatLayer=CCharFormatLayer::NewL();
   933 	theFs.Connect();
   934 	//
   935 	TRAPD(ret,ConstructOOM());
   936 		test(ret==KErrNone);
   937 	TRAP(ret,SaveLoadOOM());
   938 		test(ret==KErrNone);
   939 	TRAP(ret,CopyPasteOOM());
   940 		test(ret==KErrNone);
   941 	TRAP(ret,BasicEditOOM());
   942 		test(ret==KErrNone);
   943 	TRAP(ret,AppendTakingSolePictureOwnershipOOM());
   944 		test(ret==KErrNone);
   945 	TRAP(ret,CopyPasteOOM2());
   946 		test(ret==KErrNone);
   947 	TRAP(ret,AppendParagraphOOM());
   948 		test(ret==KErrNone);
   949 	TRAP(ret,ApplyCharFormatOOM1());
   950 		test(ret==KErrNone);
   951 	TRAP(ret,ApplyCharFormatOOM2());
   952 		test(ret==KErrNone);
   953 	//
   954 	delete GlobalPictureFactory;
   955 	delete GlobalParaFormatLayer;
   956 	delete GlobalCharFormatLayer;
   957 	theFs.Close();
   958 	}
   959 
   960 
   961 void CT_RICHOOM::setupCleanup()
   962 //
   963 // Initialise the cleanup stack.
   964 //
   965     {
   966 	TheTrapCleanup=CTrapCleanup::New();
   967 	test(TheTrapCleanup!=NULL);
   968 	TRAPD(r,\
   969 		{\
   970 		for (TInt i=KTestCleanupStack;i>0;i--)\
   971 			CleanupStack::PushL((TAny*)0);\
   972 		CleanupStack::Pop(KTestCleanupStack);\
   973 		});
   974 	test(r==KErrNone);
   975 	}
   976 
   977 
   978 void CT_RICHOOM::DeleteDataFile(const TDesC& aFullName)
   979 	{
   980 	RFs fsSession;
   981 	TInt err = fsSession.Connect();
   982 	if(err == KErrNone)
   983 		{
   984 		TEntry entry;
   985 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   986 			{
   987 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   988 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   989 			if(err != KErrNone) 
   990 				{
   991 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   992 				}
   993 			err = fsSession.Delete(aFullName);
   994 			if(err != KErrNone) 
   995 				{
   996 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   997 				}
   998 			}
   999 		fsSession.Close();
  1000 		}
  1001 	else
  1002 		{
  1003 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
  1004 		}
  1005 	}
  1006 
  1007 CT_RICHOOM::CT_RICHOOM()
  1008     {
  1009     SetTestStepName(KTestStep_T_RICHOOM);
  1010     }
  1011 
  1012 TVerdict CT_RICHOOM::doTestStepL()
  1013     {
  1014     SetTestStepResult(EFail);
  1015 
  1016     __UHEAP_MARK;
  1017 
  1018 	setupCleanup();
  1019     
  1020 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRICHOOM-0001 RichText OOM Testing "));
  1021     TRAPD(error1, doMainL());
  1022 
  1023 	delete TheTrapCleanup;
  1024 
  1025     __UHEAP_MARKEND;
  1026 
  1027     if(error1 == KErrNone)
  1028         {
  1029         SetTestStepResult(EPass);
  1030         }
  1031 
  1032     return TestStepResult();
  1033     }