os/textandloc/textrendering/texthandling/ttext/T_IMPORT.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 #include <e32svr.h>
    22 
    23 #include <txtetext.h>
    24 #include <txtfrmat.h>
    25 #include <txtfmlyr.h>
    26 #include <txtrich.h>
    27 #include <txtglobl.h>
    28 #include <gdi.h>
    29 #include <s32mem.h>
    30 #include <charconv.h>
    31 #include "T_IMPORT.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 /* this fixes a MSVC link warning */
    51 #ifdef __VC32__
    52 #pragma comment (linker, "/opt:noref") 
    53 #endif
    54 
    55 #define UNUSED_VAR(a) a = a
    56 
    57 const TInt KTestCleanupStack=0x40;
    58 
    59 _LIT(KTestFileName1, "c:\\etext\\climb.txg");
    60 _LIT(KTestFileName2, "c:\\etext\\import1.txg");
    61 
    62 LOCAL_D void EnsureFileExists(const TDesC& aName)
    63 	{
    64 	RFs fs;
    65 	fs.Connect();
    66 	fs.MkDirAll(aName);
    67 	RFile file;
    68 	file.Create(fs, aName, EFileRead|EFileWrite);
    69 	file.Close();
    70 	fs.Close();
    71 	}
    72 
    73 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
    74 LOCAL_D CPlainText* TheText=NULL;
    75 LOCAL_D CRichText* richText=NULL;
    76 LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
    77 LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
    78 
    79 
    80 
    81 LOCAL_C void CreateTextL()
    82 //
    83 	{
    84 	TheText=CPlainText::NewL();
    85 //
    86 	TCharFormat charFormat;
    87 	TCharFormatMask charMask;
    88 	TheGlobalCharLayer=CCharFormatLayer::NewL(charFormat,charMask);
    89 	TParaFormatMask paraMask;
    90 	TheGlobalParaLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
    91 	richText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
    92 	}
    93 
    94 
    95 LOCAL_C void DestroyText()
    96 //
    97 	{
    98 	delete TheText;
    99 	delete TheGlobalParaLayer;
   100 	delete TheGlobalCharLayer;
   101 	}
   102 
   103 
   104 LOCAL_C void ResetTextL()
   105 // Initialise the rich text.
   106 //
   107 	{TheText->Reset();}
   108 
   109 
   110 
   111 LOCAL_C void ImportText1()
   112 // 
   113 	{
   114 	TFileName file=_L("z:\\test\\app-framework\\etext\\import1.txt");
   115 	ResetTextL();
   116 	TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
   117 	test(TheText->DocumentLength()==51);
   118 	test(TheText->ParagraphCount()==10);
   119 	test(count==51);
   120 //	Now export
   121 	TFileName exportFile=KTestFileName2();
   122 	EnsureFileExists(exportFile);
   123 	TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0);
   124 	ResetTextL();
   125 //	and import this export ?!!
   126 	count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
   127 	TInt documentLength=TheText->DocumentLength();
   128 	test(documentLength==49);
   129 	TInt paraCount=TheText->ParagraphCount();
   130 	test(paraCount==3);
   131 	test(count==49);
   132 	ResetTextL();
   133 	}
   134 
   135 
   136 LOCAL_C void ImportText2()
   137 // A very long text file of a realistic document nature!
   138 //
   139 	{
   140 	TFileName file=_L("z:\\test\\app-framework\\etext\\climb.txt");
   141 	ResetTextL();
   142 	TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
   143 	TInt documentLength=TheText->DocumentLength();
   144 	test(documentLength==18396);
   145 	TInt paraCount=TheText->ParagraphCount();
   146 	test(paraCount==158);
   147 	TInt wordCount=TheText->WordCount();
   148 	test(wordCount=3450);
   149 //	Now export
   150 	TFileName exportFile=KTestFileName1();
   151 	//
   152 	//
   153 	EnsureFileExists(exportFile);
   154 	TRAPD(ret,
   155 		TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
   156 	test(ret==KErrNone);
   157 	//
   158 	ResetTextL();
   159 //	and import this export ?!!??!
   160 	count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
   161 	documentLength=TheText->DocumentLength();
   162 	paraCount=TheText->ParagraphCount();
   163 	wordCount=TheText->WordCount();
   164 	test(documentLength==18362);
   165 	test(paraCount==34);
   166 	test(wordCount=3450);
   167 	ResetTextL();
   168 	}
   169 
   170 	
   171 /** 
   172  Test code for INC044582 - [MX0416] Document - Document application crashed when converting file.
   173  This occurs when more than 256 styles are used. The fix to this defect is to Leave with
   174  KErrNotSupported if there are more than 256 styles
   175 */ 
   176 LOCAL_C void TestInc044582()
   177 
   178 	{
   179 	__UHEAP_MARK;
   180 	
   181 	//	create an empty style list
   182 	CStyleList* list=CStyleList::NewL();
   183 
   184 	// create formats and add to cleanup stack
   185 	CParaFormatLayer* GlobalParaFormatLayer=CParaFormatLayer::NewL();
   186 	CleanupStack::PushL(GlobalParaFormatLayer);
   187 	CCharFormatLayer* GlobalCharFormatLayer=CCharFormatLayer::NewL();
   188 	CleanupStack::PushL(GlobalCharFormatLayer);
   189 	
   190 	// create RichText object and supply empty Style list
   191 	CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list);
   192 
   193 	// Load the RichText object with 300 paragraphs
   194 	_LIT(para, "A line of text\x2029");
   195 	for (TInt Z=0; Z<300; Z++)
   196 		{
   197 		// a line of text foloowed by the paragraph separator	
   198 		richText1->InsertL(0,para);
   199 		}
   200 	
   201 	// create a formats for the style
   202 	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   203 	CleanupStack::PushL(paraLayer);
   204 	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   205 	CleanupStack::PushL(charLayer);
   206 	
   207 	// Set the richtext object to own the style list
   208 	richText1->SetStyleListExternallyOwned( EFalse );
   209 	
   210 	// add more than 256 styles
   211 	TInt StartOfNextPara=0;
   212 	TInt Length=0;
   213 	for ( TInt i= 0 ; i< 300; i++ )
   214 		{
   215 		// create a new style and add to the Style list
   216 		CParagraphStyle*  paraStyle=CParagraphStyle::NewL(*paraLayer,*charLayer);
   217 		RParagraphStyleInfo info(paraStyle);
   218 		TRAPD(ret, list->AppendL(&info));
   219         UNUSED_VAR(ret);
   220 
   221 		// find the next paragraph and add a style to it	
   222 		StartOfNextPara = richText1->CharPosOfParagraph(Length, i);
   223 		richText1->ApplyParagraphStyleL(*paraStyle,StartOfNextPara,1,
   224 			CParagraphStyle::ERetainAllSpecificFormats);
   225 		}
   226 	
   227 	// Compress it to a buffer.
   228 	CBufFlat* buffer = CBufFlat::NewL(500000);
   229 	CleanupStack::PushL(buffer);
   230 	RBufWriteStream output_stream(*buffer);
   231 	
   232 	// Attempt to "externalize" the RichText object which has more then 256 styles
   233 	// This caused the problem to occur and should leave "with KErrNotSupported"
   234 	TRAPD( error, richText1->ExternalizeMarkupDataL(output_stream));
   235 	test( error == KErrNotSupported);
   236 	
   237 	output_stream.Close();
   238 	delete richText1;
   239 	CleanupStack::PopAndDestroy(5); // GlobalParaFormatLayer, GlobalCharFormatLayer, paraLayer, 
   240 									// charLayer, buffer
   241 	__UHEAP_MARKEND;
   242 	}
   243 	
   244 static void TestUnicodeCompressionL()
   245 	{
   246 	CPlainText* plain1 = CPlainText::NewL();
   247 	CleanupStack::PushL(plain1);
   248 	CPlainText* plain2 = CPlainText::NewL();
   249 	CleanupStack::PushL(plain2);
   250 
   251 	// Read complicated Unicode text from a file.
   252 	TFileName raw_file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
   253 	plain1->ImportTextFileL(0,raw_file_name,CPlainText::EOrganiseByParagraph);
   254 	
   255 	// Compress it to a buffer.
   256 	CBufFlat* buffer = CBufFlat::NewL(1024);
   257 	CleanupStack::PushL(buffer);
   258 	RBufWriteStream output_stream(*buffer);
   259 	plain1->ExternalizePlainTextL(output_stream);
   260 	output_stream.Close();
   261 
   262 	// Decompress it to a different plain text object.
   263 	RBufReadStream input_stream(*buffer);
   264 	plain2->InternalizePlainTextL(input_stream);
   265 	input_stream.Close();
   266 
   267 	// Test for equality.
   268 	int length = plain1->DocumentLength();
   269 	test(length == plain2->DocumentLength());
   270 	int pos = 0;
   271 	do
   272 		{
   273 		TPtrC p1 = plain1->Read(pos);
   274 		TPtrC p2 = plain2->Read(pos);
   275 		test(p1 == p2);
   276 		pos += p1.Length();
   277 		} while (pos < length);
   278 
   279 	CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
   280 	}
   281 
   282 static void TestEncodingConversionL()
   283 	{
   284 	CPlainText* plain1 = CPlainText::NewL();
   285 	CleanupStack::PushL(plain1);
   286 	CPlainText* plain2 = CPlainText::NewL();
   287 	CleanupStack::PushL(plain2);
   288 	CBufSeg* buffer = CBufSeg::NewL(1024);
   289 	CleanupStack::PushL(buffer);
   290 
   291 	// Read multilingual text from a file.
   292 	TFileName file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
   293 	plain1->ImportTextFileL(0,file_name,CPlainText::EOrganiseByParagraph);
   294 
   295 	// Convert to UTF8.
   296 	RBufWriteStream output(*buffer,0);
   297 	CPlainText::TImportExportParam param;
   298 	param.iForeignEncoding = KCharacterSetIdentifierUtf8;
   299 	CPlainText::TImportExportResult result;
   300 	plain1->ExportTextL(0,output,param,result);
   301 	output.Close();
   302 
   303 	// Read it into another plain text object.
   304 	RBufReadStream input(*buffer,0);
   305 	plain2->ImportTextL(0,input,param,result);
   306 
   307 	// Test for equality.
   308 	int length1 = plain1->DocumentLength();
   309 	TText* text1 = new(ELeave) TText[length1];
   310 	TPtr ptr1(text1,length1);
   311 	plain1->Extract(ptr1);
   312 	int length2 = plain2->DocumentLength();
   313 	TText* text2 = new(ELeave) TText[length2];
   314 	TPtr ptr2(text2,length2);
   315 	plain2->Extract(ptr2);
   316 	test(length1 == length2);
   317 	delete [] text1;
   318 	delete [] text2;
   319 	int pos = 0;
   320 	do
   321 		{
   322 		TPtrC p1 = plain1->Read(pos);
   323 		TPtrC p2 = plain2->Read(pos);
   324 		test(p1 == p2);
   325 		pos += p1.Length();
   326 		} while (pos < length1);
   327 
   328     INFO_PRINTF1(_L("DEF058651 - Propagated:NTT - Received MMS with line break CR set does not cause line feed."));
   329     buffer->Reset();
   330     plain1->Reset();
   331     
   332     TBuf8<100>  testString(_L8("This Is Test  Message"));
   333     testString[4] = 0x0D;
   334     testString[7] = 0x0A;
   335     testString[12] = 0x0D;
   336     testString[13] = 0x0A;
   337     buffer->InsertL(0,testString.Ptr(),testString.Length());
   338     
   339     RBufReadStream insert(*buffer,0);
   340     plain1->ImportTextL(0,insert,param,result);
   341     insert.Close();
   342 
   343 	TBuf<100> str;
   344 	plain1->Extract(str);
   345     test(str[4] ==CEditableText::EParagraphDelimiter);
   346 	CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
   347 	}
   348 
   349 LOCAL_C void DoTestL()
   350 // Main routine
   351 //
   352     {
   353 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_IMPORT-0001 CPlainText "));
   354 	CreateTextL();
   355 
   356 	ImportText1();
   357 	ImportText2();
   358 
   359 	TestUnicodeCompressionL();
   360 	TestEncodingConversionL();
   361 
   362 	INFO_PRINTF1(_L("CRichText"));
   363 	delete TheText;
   364 	TheText=richText;
   365 
   366 	ImportText1();
   367 	ImportText2();
   368 
   369 	INFO_PRINTF1(_L("CRichText - more than 256 styles, defect INC044582"));
   370 	TestInc044582();
   371 	
   372 	DestroyText();
   373     }
   374 
   375 
   376 LOCAL_C void setupCleanup()
   377 // Initialise the cleanup stack.
   378 //
   379     {
   380 
   381 	TheTrapCleanup=CTrapCleanup::New();
   382 	TRAPD(r,\
   383 		{\
   384 		for (TInt i=KTestCleanupStack;i>0;i--)\
   385 			CleanupStack::PushL((TAny*)1);\
   386 		test(r==KErrNone);\
   387 		CleanupStack::Pop(KTestCleanupStack);\
   388 		});
   389 	}
   390 
   391 
   392 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   393 	{
   394 	RFs fsSession;
   395 	TInt err = fsSession.Connect();
   396 	if(err == KErrNone)
   397 		{
   398 		TEntry entry;
   399 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   400 			{
   401 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   402 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   403 			if(err != KErrNone) 
   404 				{
   405 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   406 				}
   407 			err = fsSession.Delete(aFullName);
   408 			if(err != KErrNone) 
   409 				{
   410 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   411 				}
   412 			}
   413 		fsSession.Close();
   414 		}
   415 	else
   416 		{
   417 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   418 		}
   419 	}
   420 
   421 CT_IMPORT::CT_IMPORT()
   422     {
   423     SetTestStepName(KTestStep_T_IMPORT);
   424     pTestStep = this;
   425     }
   426 
   427 TVerdict CT_IMPORT::doTestStepL()
   428     {
   429     SetTestStepResult(EFail);
   430 
   431     INFO_PRINTF1(_L("Plain Text File Imports"));
   432     __UHEAP_MARK;
   433     setupCleanup();
   434     TRAPD(r, DoTestL());
   435 
   436     ::DeleteDataFile(KTestFileName1);       //deletion of data files must be before call to End() - DEF047652
   437     ::DeleteDataFile(KTestFileName2);   
   438 
   439     delete TheTrapCleanup;
   440 
   441     __UHEAP_MARKEND;
   442     
   443     if (r == KErrNone)
   444         {
   445         SetTestStepResult(EPass);
   446         }
   447 
   448     return TestStepResult();
   449     }