os/textandloc/textrendering/texthandling/ttext/T_PICRES.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 <e32std.h>
    20 #include <e32base.h>
    21 
    22 #include <gdi.h>
    23 #include <conpics.h>
    24 #include <s32file.h>
    25 
    26 #include <txtrich.h>
    27 #include <txtfmlyr.h>
    28 #include "TXTMRTSR.H"
    29 
    30 #include "../incp/T_PMLPAR.H"
    31 #include "T_PICRES.h"
    32 
    33 LOCAL_D CTestStep *pTestStep = NULL;
    34 #define test(cond)											\
    35 	{														\
    36 	TBool __bb = (cond);									\
    37 	pTestStep->TEST(__bb);									\
    38 	if (!__bb)												\
    39 		{													\
    40 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    41 		User::Leave(1);										\
    42 		}													\
    43 	}
    44 #undef INFO_PRINTF1
    45 #undef INFO_PRINTF2
    46 // copy from tefexportconst.h
    47 #define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    48 #define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    49 
    50 
    51 #define UNUSED_VAR(a) a = a
    52 
    53 const TInt KTestCleanupStack=0x40;
    54 
    55 class CContainer : public CBase, public MRichTextStoreResolver
    56 	{
    57 public:
    58 	static CContainer* NewL();
    59 	~CContainer();
    60 	//
    61 	// Mixin
    62 	//
    63 	virtual const CStreamStore& StreamStoreL(TInt aPos)const;
    64 	// Methods
    65 	TStreamId StoreL(CStreamStore& aStore)const;
    66 	void RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFctry);
    67 protected:
    68 	CContainer();
    69 	void ConstructL();
    70 public:
    71 	CRichText* iText;
    72 	const CParaFormatLayer* iGlobalParaFormatLayer;
    73 	const CCharFormatLayer* iGlobalCharFormatLayer;
    74 	};
    75 
    76 LOCAL_D CTrapCleanup* TheTrapCleanup;
    77 LOCAL_D RFs TheFs;  // the file server
    78 LOCAL_D RFile TheFile;  // the data file
    79 LOCAL_D CFileStore* TheStore;  // concrete CStreamStore
    80 LOCAL_D CParser* TheParser;
    81 LOCAL_D CContainer* TheContainer;
    82 LOCAL_D CStreamStore* TheDeferredPictureStore;
    83 
    84 CContainer* CContainer::NewL()
    85 // Create new container & set its components.
    86 //
    87 	{
    88 	CContainer* self=new(ELeave) CContainer;
    89 	CleanupStack::PushL(self);
    90 	self->ConstructL();
    91 	CleanupStack::Pop();
    92 	return self;
    93 	}
    94 
    95 
    96 CContainer::CContainer()
    97 	{
    98 	}
    99 
   100 
   101 void CContainer::ConstructL()
   102 	{
   103 	TFileName theFileName = _L("z:\\test\\app-framework\\etext\\t_picres.pml");
   104 	TheParser=CParser::NewL();
   105 	CleanupStack::PushL(TheParser);
   106 	iText=TheParser->ParseL(theFileName);
   107 	CleanupStack::PopAndDestroy();
   108 	iGlobalParaFormatLayer=iText->GlobalParaFormatLayer();
   109 	iGlobalCharFormatLayer=iText->GlobalCharFormatLayer();
   110 	}
   111 
   112 
   113 CContainer::~CContainer()
   114 	{
   115 	delete iText;
   116 	delete (CParaFormatLayer*)iGlobalParaFormatLayer;
   117 	delete (CCharFormatLayer*)iGlobalCharFormatLayer;
   118 	}
   119 
   120 
   121 const CStreamStore& CContainer::StreamStoreL(TInt /*aPos*/)const
   122 // Return the deferred picture store.
   123 // In this instance, the deferred picture store does not vary with document position.
   124 //
   125 	{return *TheDeferredPictureStore;}
   126 
   127 
   128 TStreamId CContainer::StoreL(CStreamStore& aStore)const
   129 // Store this component
   130 //
   131 	{
   132 	CStoreMap* map=CStoreMap::NewLC(aStore);
   133 	iText->StoreComponentsL(aStore,*map);
   134 	//
   135 	RStoreWriteStream stream(*map);
   136 	TStreamId id=stream.CreateLC(aStore);
   137 	iGlobalParaFormatLayer->ExternalizeL(stream);
   138 	iGlobalCharFormatLayer->ExternalizeL(stream);
   139 	stream<< *iText;
   140 	stream.CommitL();
   141 	//
   142 	map->Reset();
   143 	CleanupStack::PopAndDestroy(2);
   144 	return id;
   145 	}
   146 
   147 
   148 void CContainer::RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFactory)
   149 // Restore this component
   150 //
   151 	{
   152 	RStoreReadStream stream;
   153 	stream.OpenLC(aStore,aId);
   154 	iGlobalParaFormatLayer=CParaFormatLayer::NewL(stream);
   155 	iGlobalCharFormatLayer=CCharFormatLayer::NewL(stream);
   156 	iText=CRichText::NewL(iGlobalParaFormatLayer,iGlobalCharFormatLayer);
   157 	iText->SetPictureFactory(aFactory,this);
   158 	stream>> *iText;
   159 	//
   160 	CleanupStack::PopAndDestroy();
   161 	//
   162 	iText->RestoreComponentsL(aStore);
   163 	}
   164 
   165 _LIT(KOutputFile, "c:\\etext\\t_word.doc");
   166 LOCAL_C void testPictureRestorer(TBool aDeferPictureLoad=ETrue)
   167 // Test Picture persistance.
   168 //
   169     {
   170 	//
   171 	TheFs.Connect();
   172 	//
   173 	TheFs.Delete(KOutputFile);
   174 	TheFs.MkDirAll(KOutputFile);
   175 	TheStore=CDirectFileStore::CreateL(TheFs,KOutputFile,EFileRead|EFileWrite);
   176 	TheDeferredPictureStore=TheStore;
   177 	CleanupStack::PushL(TheStore);
   178 	TheStore->SetTypeL(KDirectFileStoreLayoutUid);
   179 	//
   180 	// Create concrete picture factory.
   181 	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   182 
   183 	TheContainer->iText->Reset();
   184 	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
   185 
   186 	TheContainer->iText->SetPictureFactory(factory,TheContainer);
   187 	// Create some pictures.
   188 	CXzePicture* pic1=CXzePicture::NewL('x');
   189 		CleanupStack::PushL(pic1);
   190 	CXzePicture* pic2=CXzePicture::NewL('z');
   191 		CleanupStack::PushL(pic2);
   192 	CXzePicture* pic3=CXzePicture::NewL('e');
   193 		CleanupStack::PushL(pic3);
   194 	//
   195 	// Create the picture headers
   196 	TPictureHeader hdr1;
   197 	TPictureHeader hdr2;
   198 	TPictureHeader hdr3;
   199 	//
   200 	TSize size;
   201 	pic1->GetSizeInTwips(size);
   202 	hdr1.iPictureType=KUidXzePictureType;
   203 	hdr1.iPicture=pic1;
   204 	hdr2.iPictureType=KUidXzePictureType;
   205 	hdr2.iPicture=pic2;
   206 	hdr3.iPictureType=KUidXzePictureType;
   207 	hdr3.iPicture=pic3;
   208 	//
   209 	// Insert the pictures into the rich text
   210 	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
   211 	test(!hasMarkupData);
   212 	TheContainer->iText->CancelInsertCharFormat();
   213 	TheContainer->iText->InsertL(0,hdr1);
   214 	TheContainer->iText->InsertL(5,hdr2);
   215 	TheContainer->iText->InsertL(7,hdr3);
   216 	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
   217 	TheContainer->iText->CancelInsertCharFormat();
   218 	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
   219 	CleanupStack::Pop(3);
   220 	hasMarkupData=TheContainer->iText->HasMarkupData();
   221 	test(hasMarkupData);
   222 	//
   223 	// High level Store context
   224 	TStreamId id=TheContainer->StoreL(*TheStore);
   225 //
   226 	delete TheContainer->iText;
   227 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   228 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   229 //
   230 //
   231 //	Now restore the container with rich text
   232 	TheContainer->RestoreL(*TheStore,id,factory);
   233 	if (!aDeferPictureLoad)
   234 		TheContainer->iText->DetachFromStoreL(CPicture::EDetachFull);
   235 	//
   236 	hasMarkupData=TheContainer->iText->HasMarkupData();
   237 	test(hasMarkupData);
   238 	test(TheContainer->iText->ParagraphCount()==3);
   239 	test(TheContainer->iText->DocumentLength()==21);
   240 	TPtrC view;
   241 	TCharFormat format;
   242 	CPicture* picture;
   243 	//
   244 	// TEST THE PICTURE HEADERS, DEPENDING ON WHETHER DEFERRED LOADING IS SET OR NOT
   245 	TPictureHeader hdrA=TheContainer->iText->PictureHeader(1);
   246 	test(hdrA.iPictureType==KUidXzePictureType);
   247 	if (aDeferPictureLoad)
   248 		{
   249 		test(hdrA.iPicture.IsId());
   250 		}
   251 	else
   252 		{
   253 		test(hdrA.iPicture!=NULL);
   254 		test(hdrA.iPicture.IsPtr());
   255 		test(((CXzePicture*)hdrA.iPicture.AsPtr())->iLabel=='x');
   256 		}
   257 	TPictureHeader hdrB=TheContainer->iText->PictureHeader(7);
   258 	test(hdrB.iPictureType==KUidXzePictureType);
   259 	if (aDeferPictureLoad)
   260 		{
   261 		test(hdrB.iPicture.IsId());
   262 		}
   263 	else
   264 		{
   265 		test(hdrB.iPicture!=NULL);
   266 		test(hdrB.iPicture.IsPtr());
   267 		test(((CXzePicture*)hdrB.iPicture.AsPtr())->iLabel=='z');
   268 		}
   269 	TPictureHeader hdrC=TheContainer->iText->PictureHeader(9);
   270 	test(hdrC.iPictureType==KUidXzePictureType);
   271 	if (aDeferPictureLoad)
   272 		{
   273 		test(hdrC.iPicture.IsId());
   274 		}
   275 	else
   276 		{
   277 		test(hdrC.iPicture!=NULL);
   278 		test(hdrC.iPicture.IsPtr());
   279 		test(((CXzePicture*)hdrC.iPicture.AsPtr())->iLabel=='e');
   280 		}
   281 	TPictureHeader hdrD=TheContainer->iText->PictureHeader(0);  // This is not a picture character
   282 	test(hdrD.iPictureType==KNullUid);
   283 	test(hdrD.iPicture==NULL);
   284 	TSize dummySize;
   285 	test(hdrD.iSize==dummySize);
   286 	//
   287 	TheContainer->iText->GetChars(view,format,1);
   288 	test(view[0]==CEditableText::EPictureCharacter);
   289 	picture=TheContainer->iText->PictureHandleL(1);
   290 	test(((CXzePicture*)picture)->iLabel=='x');
   291 	
   292 	TheContainer->iText->GetChars(view,format,7);
   293 	test(view[0]==CEditableText::EPictureCharacter);
   294 	picture=TheContainer->iText->PictureHandleL(7);
   295 	test(((CXzePicture*)picture)->iLabel=='z');
   296 	
   297 	TheContainer->iText->GetChars(view,format,9);
   298 	test(view[0]==CEditableText::EPictureCharacter);
   299 	picture=TheContainer->iText->PictureHandleL(9);
   300 	test(((CXzePicture*)picture)->iLabel=='e');
   301 
   302 	delete factory;
   303 	CleanupStack::PopAndDestroy();  // TheStore
   304 	TheFs.Close();
   305     }
   306 
   307 _LIT(KOutputFile1, "c:\\etext\\t_word1.doc");
   308 LOCAL_C void testPictureRestorer2(TBool aAlwaysFailToLoad=EFalse)
   309 // Test Picture persistance.
   310 //
   311     {
   312 	//
   313 	TheFs.Connect();
   314 	//
   315 	TheFs.Delete(KOutputFile1);
   316 	TheFs.MkDirAll(KOutputFile1);
   317 	TheStore=CDirectFileStore::CreateL(TheFs,KOutputFile1,EFileRead|EFileWrite);
   318 	TheDeferredPictureStore=TheStore;
   319 	CleanupStack::PushL(TheStore);
   320 	TheStore->SetTypeL(KDirectFileStoreLayoutUid);
   321 	//
   322 	// Create concrete picture factory.
   323 	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   324 
   325 	TheContainer->iText->Reset();
   326 	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
   327 
   328 	TheContainer->iText->SetPictureFactory(factory,TheContainer);
   329 	// Create some pictures.
   330 	CXzeDoor* pic1=CXzeDoor::NewL('x',aAlwaysFailToLoad);
   331 		CleanupStack::PushL(pic1);
   332 	CXzeDoor* pic2=CXzeDoor::NewL('z',aAlwaysFailToLoad);
   333 		CleanupStack::PushL(pic2);
   334 	CXzePicture* pic3=CXzePicture::NewL('e');  // Control: will always load.
   335 		CleanupStack::PushL(pic3);
   336 	//
   337 	// Create the picture headers
   338 	TPictureHeader hdr1;
   339 	TPictureHeader hdr2;
   340 	TPictureHeader hdr3;
   341 	//
   342 	TSize size;
   343 	pic1->GetSizeInTwips(size);
   344 	hdr1.iPictureType=KUidXzeDoorType;
   345 	hdr1.iPicture=pic1;
   346 	hdr2.iPictureType=KUidXzeDoorType;
   347 	hdr2.iPicture=pic2;
   348 	hdr3.iPictureType=KUidXzePictureType;
   349 	hdr3.iPicture=pic3;
   350 	//
   351 	// Insert the pictures into the rich text
   352 	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
   353 	test(!hasMarkupData);
   354 	TheContainer->iText->CancelInsertCharFormat();
   355 	TheContainer->iText->InsertL(0,hdr1);
   356 	TheContainer->iText->InsertL(5,hdr2);
   357 	TheContainer->iText->InsertL(7,hdr3);
   358 	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
   359 	TheContainer->iText->CancelInsertCharFormat();
   360 	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
   361 	CleanupStack::Pop(3);  // pic1,2,3 - ownership transferred to rich text
   362 	hasMarkupData=TheContainer->iText->HasMarkupData();
   363 	test(hasMarkupData);
   364 	//
   365 	// High level Store context - all pictures currently in memory
   366 	TStreamId id=TheContainer->StoreL(*TheStore);
   367 //
   368 	delete TheContainer->iText;
   369 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   370 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   371 //
   372 //
   373 //	Now restore the container with rich text
   374 	TheContainer->RestoreL(*TheStore,id,factory);
   375 //
   376 //
   377 //  Now store the stuff again
   378 	TRAPD(ret,
   379 	TheContainer->iText->DetachFromStoreL(CPicture::EDetachFull));
   380 	if (ret==KErrNotSupported)
   381 	    INFO_PRINTF1(_L("   SIMULATION: Some picture data is not supported by the current factory."));
   382 //	if (aAlwaysFailToLoad)
   383 //		test(error==KErrNotFound);
   384 //	else
   385 //		test(error==KErrNone);
   386 	id=KNullStreamId;
   387 	TRAP(ret,
   388 	id=TheContainer->StoreL(*TheStore));
   389 	test(ret==KErrNone);
   390 //
   391 // ...and restore it to check what we have got.
   392 	delete TheContainer->iText;
   393 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   394 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   395     TheContainer->RestoreL(*TheStore,id,factory);
   396 	TInt pictureCount=TheContainer->iText->PictureCount();
   397 	if (aAlwaysFailToLoad)
   398 	    {
   399 		test(pictureCount==1);
   400 	    }
   401 	else
   402 	    {
   403 		test(pictureCount==3);
   404 	    }
   405 //
   406 	delete factory;
   407 	CleanupStack::PopAndDestroy();  // TheStore
   408 	TheFs.Close();
   409     }
   410 
   411 
   412 LOCAL_C  void GoL()
   413 // Run the tests
   414 //
   415 	{
   416 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_PICRES-0001 RichText Storing - with pictures deferred loading "));
   417 	TheContainer=CContainer::NewL();
   418 	TRAPD(r,
   419 	testPictureRestorer());
   420 	test(r==KErrNone);
   421 	delete TheContainer;  // deletes the rich text, which deletes the contained pictures.
   422 	//
   423 	//
   424 	INFO_PRINTF1(_L("RichText Storing - with pictures auto loading"));
   425 	TheContainer=CContainer::NewL();
   426 	TRAP(r,
   427 	testPictureRestorer(EFalse));  // DO NOT DEFER PICTURE LOADING
   428 	test(r==KErrNone);
   429 	delete TheContainer;  // deletes the rich text, which deletes the contained pictures.
   430 //
   431 //
   432 //
   433 	INFO_PRINTF1(_L("Testing no missing picture app's"));
   434 	TheContainer=CContainer::NewL();
   435 	TRAP(r,
   436 	testPictureRestorer2());
   437 	test(r==KErrNone);
   438 	delete TheContainer;  // deletes the rich text, which deletes the contained pictures.
   439 	//
   440 	//
   441 /*
   442 	TEST NOW REDUNDANT AS OF NEW PICTURE CONTAINMENT MECHANISM AS AT RELEASE 073
   443 
   444 	INFO_PRINTF1(_L("Testing missing picture app's"));
   445 	TheContainer=CContainer::NewL();
   446 	TRAP(r,
   447 	testPictureRestorer2(ETrue));  // ALWAYS FAIL TO DETACH FROM STORE
   448 	test(r==KErrNone);
   449 	delete TheContainer;  // deletes the rich text, which deletes the contained pictures.
   450 */
   451 	}
   452 
   453 
   454 LOCAL_C void setupCleanup()
   455 //
   456 // Initialise the cleanup stack.
   457 //
   458     {
   459 
   460 	TheTrapCleanup=CTrapCleanup::New();
   461 	TRAPD(r,\
   462 		{\
   463 		for (TInt i=KTestCleanupStack;i>0;i--)\
   464 			CleanupStack::PushL((TAny*)1);\
   465 		test(r==KErrNone);\
   466 		CleanupStack::Pop(KTestCleanupStack);\
   467 		});
   468 	}
   469 
   470 
   471 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   472 	{
   473 	RFs fsSession;
   474 	TInt err = fsSession.Connect();
   475 	if(err == KErrNone)
   476 		{
   477 		TEntry entry;
   478 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   479 			{
   480 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   481 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   482 			if(err != KErrNone) 
   483 				{
   484 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   485 				}
   486 			err = fsSession.Delete(aFullName);
   487 			if(err != KErrNone) 
   488 				{
   489 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   490 				}
   491 			}
   492 		fsSession.Close();
   493 		}
   494 	else
   495 		{
   496 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   497 		}
   498 	}
   499 
   500 CT_PICRES::CT_PICRES()
   501     {
   502     SetTestStepName(KTestStep_T_PICRES);
   503     pTestStep = this;
   504     }
   505 
   506 TVerdict CT_PICRES::doTestStepL()
   507     {
   508     SetTestStepResult(EFail);
   509 
   510     INFO_PRINTF1(_L("Testing Picture Restorer mechanism"));
   511     __UHEAP_MARK;
   512     setupCleanup();
   513     TRAPD(r,GoL());
   514 
   515     delete TheTrapCleanup;
   516     
   517     __UHEAP_MARKEND;
   518     
   519     ::DeleteDataFile(KOutputFile);      //deletion of data files must be before call to End() - DEF047652
   520     ::DeleteDataFile(KOutputFile1); 
   521 
   522     if (r == KErrNone)
   523         {
   524         SetTestStepResult(EPass);
   525         }
   526 
   527     return TestStepResult();
   528     }