os/textandloc/textrendering/texthandling/stext/TXTRTSTR.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2003-2009 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 "TXTRICH.H"
    23 
    24 #include "TXTINDEX.H"
    25 #include "TXTSTD.H"
    26 #include "TXTRTPFL.H"
    27 #include "ParseLst.h"
    28 
    29 #include "OstTraceDefinitions.h"
    30 #ifdef OST_TRACE_COMPILER_IN_USE
    31 #include "TXTRTSTRTraces.h"
    32 #endif
    33 
    34 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    35 #include "TXTETEXT_INTERNAL.H"
    36 #include "TXTRICH_INTERNAL.H"
    37 #endif
    38 
    39 ///////////////////////////////////////////////////////////
    40 //
    41 // Default persist functions - Deferred loading of pictures
    42 //
    43 ///////////////////////////////////////////////////////////
    44 
    45 
    46 EXPORT_C void CRichText::RestoreWithStyleListL(const CStreamStore& aStore, TStreamId aStreamId, const CStyleList& aExternalStyleList)
    47 /** Restores a rich text object, including all of its components and an 
    48 externally owned style list, from a stream store.
    49 
    50 @param aStore Stream store from which the object is restored. 
    51 @param aStreamId ID of the stream store. 
    52 @param aExternalStyleList An externally owned style list. */
    53 	{
    54 	RStoreReadStream stream;
    55 	stream.OpenLC(aStore,aStreamId);
    56 	//
    57 	InternalizeL(stream,&aExternalStyleList);
    58 	CleanupStack::PopAndDestroy();  // stream
    59 	RestoreComponentsL(aStore);
    60 	}
    61 
    62 EXPORT_C void CRichText::StoreComponentsL(CStreamStore& aStore, CStoreMap& aMap) const
    63 /** Stores the rich text object's components (field set, style list, formatting 
    64 and pictures) to the stream store specified.
    65 
    66 @param aStore Stream store to which the text components are written. 
    67 @param aMap A store map. This binds the address of text components to the 
    68 stream ID of aStore. This is needed to support the deferred loading of pictures 
    69 in rich text. */
    70 	{
    71 	CGlobalText::StoreComponentsL(aStore,aMap);
    72 	StoreStylesL(aStore,aMap);
    73 	StoreMarkupL(aStore,aMap);
    74 	}
    75  
    76 EXPORT_C void CRichText::RestoreComponentsL(const CStreamStore& aStore)
    77 /** Restores the rich text object's components (field set, style list,
    78  formatting and pictures) from a stream store.
    79 
    80 @param aStore The stream store from which the text object's components are 
    81 restored. */
    82 	{
    83 	CPlainText::RestoreComponentsL(aStore);  // field components
    84 	if (iStyleList.IsId() && iStyleList.AsId()!=KNullStreamId)
    85 		RestoreStylesL(aStore,iStyleList.AsId(),iGlobalParaFormatLayer,iGlobalCharFormatLayer);
    86 	if (iIndex.AsId()!=KNullStreamId)
    87 		iIndex=CRichTextIndex::NewL(aStore,iIndex.AsId(),iGlobalParaFormatLayer,iGlobalCharFormatLayer,*this);	
    88 	}
    89 
    90  
    91 	
    92 EXPORT_C void CRichText::ExternalizeL(RWriteStream& aStream)const
    93 /** Externalises the rich text object and all of its components (field set, 
    94 style list, rich text formatting, pictures) to a read stream. The presence 
    95 of this function means that the standard templated operator<<() (defined in 
    96 s32strm.h) is available to externalise objects of this class.
    97 
    98 Notes:
    99 
   100 Any "insert pending" state is cancelled (calls CancelInsertCharFormat()).
   101 
   102 The global format layers are not owned by the object; they are supplied by 
   103 the owner of the object and not saved when the object is externalised or loaded 
   104 when it is internalized.
   105 
   106 StoreComponentsL() must be called before calling this function. This is necessary to set
   107 up the the stream store needed to externalize rich text objects. It is not possible to get
   108 a stream store into a stream and a rich text object cannot be  externalized to an arbitrary 
   109 stream thus StoreComponentsL() will set up this stream store before externalizing.
   110  
   111 The inherited function CEditableText::StoreL() combines both calling of StoreComponentsL()
   112 to set up the stream store and externalizing the rich text object to this stream store.
   113 
   114 @param aStream Stream to which to write the rich text object. */
   115 	{
   116 	__TEST_INVARIANT;
   117 
   118 	CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
   119 	CEditableText::ExternalizeL(aStream);
   120 	DoExternalizeFieldDataL(aStream);
   121 	DoExternalizeStyleDataL(aStream);
   122 	DoExternalizeMarkupDataL(aStream);
   123 	DoExternalizePlainTextL(aStream);
   124 	}
   125 
   126  
   127 EXPORT_C void CRichText::InternalizeL(RReadStream& aStream)
   128 /** Internalises the rich text object and all of its components (field set, 
   129 style list, rich text formatting and pictures) from a read stream. The 
   130 presence of this function means that the standard templated operator>>() 
   131 (defined in s32strm.h) is available to internalise objects of this class.
   132 
   133 Note: The global format layers are not owned by the object; they are supplied by 
   134 the owner of the object and not saved when the object is externalised or loaded 
   135 when it is internalized.
   136 
   137 @param aStream Stream from which to read the rich text object. */
   138 	{InternalizeL(aStream,NULL);}
   139 
   140 
   141 void CRichText::InternalizeL(RReadStream& aStream,const CStyleList* aExternalStyleList)
   142 // Restore this rich text object.
   143 // The global format layers are not present in this persistent state.
   144 //
   145 	{
   146 	CEditableText::InternalizeL(aStream);
   147 	DoInternalizeFieldDataL(aStream);
   148 	DoInternalizeStyleDataL(aStream,aExternalStyleList);
   149 	DoInternalizeMarkupDataL(aStream);
   150 	DoInternalizePlainTextL(aStream);
   151 	if (iParserData == NULL)
   152 		iParserData = new(ELeave) CParserData(DocumentLength()); 
   153 	iParserData->KillRange();
   154 	iParserData->MergeRange(0,0,DocumentLength());
   155 	CallEditObserver(0,DocumentLength());
   156 	}
   157 
   158 
   159 void CRichText::StoreStylesL(CStreamStore& aStore,CStoreMap& aMap)const
   160 // Write the style list, if present, out of line.
   161 //
   162 	{
   163 	if (StyleListPresent() && !StyleListExternallyOwned())
   164 		{
   165 		TStreamId id=iStyleList->StoreL(aStore);
   166 		aMap.BindL(iStyleList,id);
   167 		}
   168 	}
   169 
   170 
   171 void CRichText::RestoreStylesL(const CStreamStore& aStore,TStreamId aId,const CParaFormatLayer* aParaFormatLayer,const CCharFormatLayer* aCharFormatLayer)
   172 // Restore the style list
   173 //
   174 	{
   175 	RStoreReadStream stream;
   176 	stream.OpenLC(aStore,aId);
   177 	//
   178 	iStyleList=CStyleList::NewL(stream,aParaFormatLayer,aCharFormatLayer);
   179 	CleanupStack::PopAndDestroy();  // stream
   180 	}
   181 
   182 
   183 void CRichText::StoreMarkupL(CStreamStore& aStore,CStoreMap& aMap)const
   184 // Write the index/markup data, if present, out of line.
   185 //
   186 	{
   187 	if (IndexPresent())
   188 		{
   189 		TStreamId id=iIndex->StoreMarkupL(aStore,iStyleList);
   190 		aMap.BindL(iIndex,id);
   191 		}
   192 	}
   193 
   194 
   195 EXPORT_C void CRichText::DoExternalizeStyleDataL(RWriteStream& aStream)const
   196 // Write to the stream, the T.V. representing the style definitions.
   197 //
   198 	{
   199 	aStream<< KRichTextStyleDataUid;
   200 	if (StyleListPresent() && !StyleListExternallyOwned())
   201 		aStream<< iStyleList;
   202 	else
   203 		aStream<< KNullStreamId;
   204 	}
   205 
   206 
   207 EXPORT_C void CRichText::DoInternalizeStyleDataL(RReadStream& aStream)
   208 // Load the out-of-line component representing the style list.
   209 //
   210 	{DoInternalizeStyleDataL(aStream,NULL);}
   211 
   212 
   213 void CRichText::DoInternalizeStyleDataL(RReadStream& aStream,const CStyleList* aExternalStyleList)
   214 // Load the out-of-line component representing the style list.
   215 //
   216 	{
   217 	TUid uid=UidFromStreamL(aStream);
   218 	while (uid!=KRichTextStyleDataUid)
   219 		{
   220 		if (uid==KPlainTextCharacterDataUid)
   221 			User::Leave(KErrCorrupt);  // There is no style or markup Data !!!!!
   222 		CPlainText::ConsumeAdornmentL(aStream);
   223 		uid=UidFromStreamL(aStream);
   224 		}
   225 	aStream>> iStyleList;
   226 	if (aExternalStyleList)
   227 		iStyleList=CONST_CAST(CStyleList*,aExternalStyleList);
   228 	}
   229 
   230 
   231 
   232 EXPORT_C void CRichText::DoExternalizeMarkupDataL(RWriteStream& aStream)const
   233 // Write to the stream, the T.V. representing the markup.
   234 //
   235 	{
   236 	aStream<< KRichTextMarkupDataUid;
   237 	aStream<< iIndex;  // the specific markup
   238 	}
   239 
   240 
   241 EXPORT_C void CRichText::DoInternalizeMarkupDataL(RReadStream& aStream)
   242 // Load the out-of-line component representing the markup data.
   243 	{
   244 	TUid uid=UidFromStreamL(aStream);
   245 	while (uid!=KRichTextMarkupDataUid)
   246 		{
   247 		if (uid==KPlainTextCharacterDataUid)
   248 			User::Leave(KErrCorrupt);  // There is no style or markup Data !!!!!
   249 		CPlainText::ConsumeAdornmentL(aStream);
   250 		uid=UidFromStreamL(aStream);
   251 		}
   252 	KillIndex();  // prevent alloc heaven when current index handle is lost to internalized swizzle
   253 	aStream>> iIndex;
   254 	}
   255 
   256 
   257 ///////////////////////////////////////////////////////////
   258 //
   259 // Custom persist functions
   260 //
   261 ///////////////////////////////////////////////////////////
   262 
   263 
   264  
   265 
   266 EXPORT_C void CRichText::ExternalizeStyleDataL(RWriteStream& aStream)const
   267 /** Externalises the style list owned by the rich text object.
   268 
   269 @param aStream Stream to which to write the style list. */
   270 	{
   271 	__TEST_INVARIANT;
   272 	
   273 	if (StyleListPresent() && !StyleListExternallyOwned())
   274 		{
   275 		aStream.WriteUint8L((TUint8)1);  // there follows a style list
   276 		aStream<< *iStyleList;
   277 		}
   278 	else
   279 		aStream.WriteUint8L((TUint8)0);  // there are no paragraph styles
   280 	}
   281 
   282 EXPORT_C void CRichText::InternalizeStyleDataL(RReadStream& aStream)
   283 /** Internalises the style list owned by the rich text object from a read stream, 
   284 if one is present in the stream.
   285 
   286 @param aStream Stream from which to read the style list. */
   287 	{
   288 	TUint8 styleListPresent=aStream.ReadUint8L();
   289 	if (styleListPresent)
   290 		{
   291 		CStyleList* styleList=CStyleList::NewL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer);
   292 		//coverity[leave_without_push]
   293 		delete iStyleList.AsPtr();
   294 		iStyleList=styleList;
   295 		}
   296 	}
   297 
   298 EXPORT_C void CRichText::ExternalizeMarkupDataL(RWriteStream& aStream)const
   299 /** Externalises the rich text object's markup (specific formatting, styles and 
   300 pictures). CRichText::HasMarkupData() can be used to test whether the object 
   301 has any markup information.
   302 
   303 @param aStream Stream to which to store the rich text markup information. */
   304 	{
   305 	__TEST_INVARIANT;
   306 
   307 	CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
   308 	if (!IndexPresent())		
   309 		CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
   310 	aStream<< *iIndex;
   311 	}
   312 
   313 EXPORT_C void CRichText::InternalizeMarkupDataL(RReadStream& aStream)
   314 /** Internalises the rich text object's markup (specific formatting, styles and 
   315 pictures).
   316 
   317 @param aStream Stream from which to internalise the rich text markup. */
   318 	{
   319 	KillIndex();
   320 	CreateEmptyMarkupComponentL();  // set iIndex::iStyleList
   321 	iIndex->InternalizeL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer,iStyleList.AsPtr());
   322 	}
   323 
   324 EXPORT_C void CRichText::StoreMarkupComponentsL(CStreamStore& aStore,CStoreMap& aMap)const
   325 /** Stores all pictures in the rich text object to a stream store.
   326 
   327 @param aStore Stream store to which the pictures are to be stored. 
   328 @param aMap A store map. This binds the address of pictures to the stream ID 
   329 of aStore. This is needed to support the deferred loading of pictures. */
   330 	{
   331 	__TEST_INVARIANT;
   332 	
   333 	if (!IndexPresent())
   334 		CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
   335 	iIndex->StorePicturesL(aStore,aMap);
   336 	}
   337 
   338 
   339 ///////////////////////////////////////////////////////////
   340 //
   341 // Utility persist functions
   342 //
   343 ///////////////////////////////////////////////////////////
   344 
   345 EXPORT_C TBool CRichText::HasMarkupData()const
   346 /** Tests whether the rich text object has any markup, or owns a style list.
   347 
   348 Markup is rich text-specific information, for instance specific formatting, 
   349 styles and pictures. It may be stored in a separate stream from the text.
   350 
   351 @return ETrue if the rich text object has markup, or owns a style list. EFalse 
   352 if not. */
   353 	{
   354 	if (StyleListPresent() && !StyleListExternallyOwned())
   355 		return ETrue;
   356 	if (IndexPresent())
   357 		return iIndex->HasMarkupData(iGlobalParaFormatLayer);
   358 	else
   359 		return EFalse;
   360 	}
   361 
   362 
   363 
   364 
   365 EXPORT_C void CRichText::DetachFromStoreL(CPicture::TDetach aDegree)
   366 /** Loads pictures not already present in memory overloaded function.
   367 Either loads all pictures in the document, or just the pictures located within 
   368 a specified range. Note: In order to load pictures, a picture factory and a 
   369 store resolver must have been set.
   370 
   371 @param aDegree There are two possible values: EDetachFull and EDetachDraw.
   372 If you detach using EDetachFull then you can both draw and edit the picture(s),
   373 but if you detach with EDetachDraw then you can only draw them any attempt 
   374 at editing them causes a panic.
   375 @param aPos The start of the range of characters to search.
   376 @param aLength The number of characters in the range. */	
   377     {
   378 	__ETEXT_WATCH(DETACH);
   379 	
   380 	__TEST_INVARIANT;
   381 	
   382 	if (IndexPresent())
   383 		iIndex->DetachFromStoreL(aDegree,0,DocumentLength());
   384 
   385 	__TEST_INVARIANT;
   386 
   387 	__ETEXT_WATCH_END(DETACH);
   388 	}
   389 
   390 
   391 EXPORT_C void CRichText::DetachFromStoreL(CPicture::TDetach aDegree,TInt aPos,TInt aLength)
   392 /** Loads pictures not already present in memory  overloaded function. Either 
   393 loads all pictures in the document, or just the pictures located within a 
   394 specified range. 
   395 
   396 Note: In order to load pictures, a picture factory and a store resolver must have 
   397 been set.
   398 
   399 @param aDegree There are two possible values: EDetachFull and EDetachDraw. 
   400 If you detach using EDetachFull then you can both draw and edit the picture(s), 
   401 but if you detach with EDetachDraw then you can only draw them  any attempt 
   402 at editing them causes a panic. 
   403 @param aPos The start of the range of characters to search. 
   404 @param aLength The number of characters in the range. */
   405 	{
   406 	__ETEXT_WATCH(DETACH_POS_LENGTH);
   407 
   408 	__TEST_INVARIANT;
   409 	TInt documentLength = DocumentLength();
   410 	if (aPos < 0 || aPos > documentLength)
   411 	    {
   412 	    OstTrace0( TRACE_FATAL, DUP1_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
   413 	    }
   414 	__ASSERT_ALWAYS(aPos >= 0 && aPos <= documentLength,Panic(ECharPosBeyondDocument));
   415 	if (aLength < 0)
   416 	    {
   417 	    OstTrace0( TRACE_FATAL, CRICHTEXT_DETACHFROMSTOREL, "ECopyToStreamNegativeLength" );
   418 	    }
   419 	__ASSERT_ALWAYS(aLength >= 0,Panic(ECopyToStreamNegativeLength));
   420 	if (aPos + aLength > documentLength)
   421 	    {
   422 	    OstTrace0( TRACE_FATAL, DUP2_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
   423 	    }
   424 	__ASSERT_ALWAYS(aPos + aLength <= documentLength,Panic(ECharPosBeyondDocument));
   425 	
   426 	if (aLength > 0 && IndexPresent())
   427 		iIndex->DetachFromStoreL(aDegree,aPos,aLength);
   428 
   429 	__TEST_INVARIANT;
   430 
   431 	__ETEXT_WATCH_END(DETACH_POS_LENGTH);
   432 	}
   433 
   434 EXPORT_C void CRichText::SetPictureFactory(MPictureFactory* aPictureFactory,MRichTextStoreResolver* aStoreResolver)
   435 // Sets up a callback for the index.
   436 // Only called if the owner of this rich text component knows they will wanting to restore pictures
   437 // into this rich text.
   438 // If the index component is not yet present, the callbacks are preserved until required.
   439 //
   440 /** Sets the picture factory.
   441 
   442 Pictures in a rich text object may be represented as picture headers, or by 
   443 the picture data itself. CRichText supports the deferred loading of picture 
   444 data, so that it is only loaded when it is needed to be displayed, thus 
   445 economising on memory use. A rich text object which supports the deferred 
   446 loading of pictures needs to be supplied with a picture factory. It can either 
   447 be set using this function, or during construction.
   448 
   449 Note: A panic occurs if the factory is NULL, but the store resolver is not NULL.
   450 
   451 @param aPictureFactory The picture factory. 
   452 @param aStoreResolver The store resolver. This determines which file store 
   453 the picture is stored in. */
   454 	{
   455 	__TEST_INVARIANT;
   456 	if (!aPictureFactory && aStoreResolver)
   457 	    {
   458 	    OstTrace0( TRACE_FATAL, CRICHTEXT_SETPICTUREFACTORY, "EInvalidPictureFactorySettings" );
   459 	    }
   460 	__ASSERT_ALWAYS(!(!aPictureFactory && aStoreResolver),Panic(EInvalidPictureFactorySettings));
   461 
   462 	iPictureFactory=aPictureFactory;
   463 	iStoreResolver=aStoreResolver;
   464 	}
   465 
   466 EXPORT_C TPictureHeader CRichText::PictureHeader(TInt aPos)const
   467 /** Gets the picture header which describes the picture located at a specified 
   468 document position. If no picture header is located at the position, the function 
   469 constructs and returns a default one.
   470 
   471 @param aPos The document position. Must be valid. 
   472 @return The picture header located at document position aPos, or a default 
   473 picture header. */
   474 	{
   475 	__TEST_INVARIANT;
   476 	if (aPos<0 || aPos>DocumentLength())
   477 	    {
   478 	    OstTrace0( TRACE_FATAL, CRICHTEXT_PICTUREHEADER, "ECharPosBeyondDocument" );
   479 	    }
   480 	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
   481 
   482 	return (IndexPresent())
   483 		? iIndex->PictureHeader(aPos)
   484 		: TPictureHeader();
   485 	}
   486 
   487 EXPORT_C void CRichText::DropPictureOwnership(TInt aPos)
   488 /** Removes ownership from this rich text object of the picture located at a 
   489 document position. The picture character is deleted from the document and 
   490 ownership of the picture passes to the caller of this function. 
   491 Use PictureHandleL() beforehand to get a pointer to the picture.
   492 
   493 @param aPos The document position of the picture character. Must be valid 
   494 or a panic occurs.
   495 @see CRichText::PictureHandleL() */
   496 	{
   497 	__TEST_INVARIANT;
   498 	if (aPos<0 || aPos>DocumentLength())
   499 	    {
   500 	    OstTrace0( TRACE_FATAL, CRICHTEXT_DROPPICTUREOWNERSHIP, "ECharPosBeyondDocument" );
   501 	    }
   502 	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
   503 
   504 	TPictureHeader* p = IndexPresent()? iIndex->PictureHeaderPtr(aPos) : 0;
   505 	if (!p)
   506 		return;
   507 
   508 	p->iPicture = 0;
   509 	DeleteFromParagraph(aPos, 1);
   510 	}
   511