Update contrib.
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
29 #include "OstTraceDefinitions.h"
30 #ifdef OST_TRACE_COMPILER_IN_USE
31 #include "TXTRTSTRTraces.h"
34 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
35 #include "TXTETEXT_INTERNAL.H"
36 #include "TXTRICH_INTERNAL.H"
39 ///////////////////////////////////////////////////////////
41 // Default persist functions - Deferred loading of pictures
43 ///////////////////////////////////////////////////////////
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.
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. */
54 RStoreReadStream stream;
55 stream.OpenLC(aStore,aStreamId);
57 InternalizeL(stream,&aExternalStyleList);
58 CleanupStack::PopAndDestroy(); // stream
59 RestoreComponentsL(aStore);
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.
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
71 CGlobalText::StoreComponentsL(aStore,aMap);
72 StoreStylesL(aStore,aMap);
73 StoreMarkupL(aStore,aMap);
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.
80 @param aStore The stream store from which the text object's components are
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);
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.
100 Any "insert pending" state is cancelled (calls CancelInsertCharFormat()).
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.
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.
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.
114 @param aStream Stream to which to write the rich text object. */
118 CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
119 CEditableText::ExternalizeL(aStream);
120 DoExternalizeFieldDataL(aStream);
121 DoExternalizeStyleDataL(aStream);
122 DoExternalizeMarkupDataL(aStream);
123 DoExternalizePlainTextL(aStream);
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.
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.
137 @param aStream Stream from which to read the rich text object. */
138 {InternalizeL(aStream,NULL);}
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.
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());
159 void CRichText::StoreStylesL(CStreamStore& aStore,CStoreMap& aMap)const
160 // Write the style list, if present, out of line.
163 if (StyleListPresent() && !StyleListExternallyOwned())
165 TStreamId id=iStyleList->StoreL(aStore);
166 aMap.BindL(iStyleList,id);
171 void CRichText::RestoreStylesL(const CStreamStore& aStore,TStreamId aId,const CParaFormatLayer* aParaFormatLayer,const CCharFormatLayer* aCharFormatLayer)
172 // Restore the style list
175 RStoreReadStream stream;
176 stream.OpenLC(aStore,aId);
178 iStyleList=CStyleList::NewL(stream,aParaFormatLayer,aCharFormatLayer);
179 CleanupStack::PopAndDestroy(); // stream
183 void CRichText::StoreMarkupL(CStreamStore& aStore,CStoreMap& aMap)const
184 // Write the index/markup data, if present, out of line.
189 TStreamId id=iIndex->StoreMarkupL(aStore,iStyleList);
190 aMap.BindL(iIndex,id);
195 EXPORT_C void CRichText::DoExternalizeStyleDataL(RWriteStream& aStream)const
196 // Write to the stream, the T.V. representing the style definitions.
199 aStream<< KRichTextStyleDataUid;
200 if (StyleListPresent() && !StyleListExternallyOwned())
201 aStream<< iStyleList;
203 aStream<< KNullStreamId;
207 EXPORT_C void CRichText::DoInternalizeStyleDataL(RReadStream& aStream)
208 // Load the out-of-line component representing the style list.
210 {DoInternalizeStyleDataL(aStream,NULL);}
213 void CRichText::DoInternalizeStyleDataL(RReadStream& aStream,const CStyleList* aExternalStyleList)
214 // Load the out-of-line component representing the style list.
217 TUid uid=UidFromStreamL(aStream);
218 while (uid!=KRichTextStyleDataUid)
220 if (uid==KPlainTextCharacterDataUid)
221 User::Leave(KErrCorrupt); // There is no style or markup Data !!!!!
222 CPlainText::ConsumeAdornmentL(aStream);
223 uid=UidFromStreamL(aStream);
225 aStream>> iStyleList;
226 if (aExternalStyleList)
227 iStyleList=CONST_CAST(CStyleList*,aExternalStyleList);
232 EXPORT_C void CRichText::DoExternalizeMarkupDataL(RWriteStream& aStream)const
233 // Write to the stream, the T.V. representing the markup.
236 aStream<< KRichTextMarkupDataUid;
237 aStream<< iIndex; // the specific markup
241 EXPORT_C void CRichText::DoInternalizeMarkupDataL(RReadStream& aStream)
242 // Load the out-of-line component representing the markup data.
244 TUid uid=UidFromStreamL(aStream);
245 while (uid!=KRichTextMarkupDataUid)
247 if (uid==KPlainTextCharacterDataUid)
248 User::Leave(KErrCorrupt); // There is no style or markup Data !!!!!
249 CPlainText::ConsumeAdornmentL(aStream);
250 uid=UidFromStreamL(aStream);
252 KillIndex(); // prevent alloc heaven when current index handle is lost to internalized swizzle
257 ///////////////////////////////////////////////////////////
259 // Custom persist functions
261 ///////////////////////////////////////////////////////////
266 EXPORT_C void CRichText::ExternalizeStyleDataL(RWriteStream& aStream)const
267 /** Externalises the style list owned by the rich text object.
269 @param aStream Stream to which to write the style list. */
273 if (StyleListPresent() && !StyleListExternallyOwned())
275 aStream.WriteUint8L((TUint8)1); // there follows a style list
276 aStream<< *iStyleList;
279 aStream.WriteUint8L((TUint8)0); // there are no paragraph styles
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.
286 @param aStream Stream from which to read the style list. */
288 TUint8 styleListPresent=aStream.ReadUint8L();
289 if (styleListPresent)
291 CStyleList* styleList=CStyleList::NewL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer);
292 //coverity[leave_without_push]
293 delete iStyleList.AsPtr();
294 iStyleList=styleList;
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.
303 @param aStream Stream to which to store the rich text markup information. */
307 CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
309 CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
313 EXPORT_C void CRichText::InternalizeMarkupDataL(RReadStream& aStream)
314 /** Internalises the rich text object's markup (specific formatting, styles and
317 @param aStream Stream from which to internalise the rich text markup. */
320 CreateEmptyMarkupComponentL(); // set iIndex::iStyleList
321 iIndex->InternalizeL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer,iStyleList.AsPtr());
324 EXPORT_C void CRichText::StoreMarkupComponentsL(CStreamStore& aStore,CStoreMap& aMap)const
325 /** Stores all pictures in the rich text object to a stream store.
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. */
334 CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
335 iIndex->StorePicturesL(aStore,aMap);
339 ///////////////////////////////////////////////////////////
341 // Utility persist functions
343 ///////////////////////////////////////////////////////////
345 EXPORT_C TBool CRichText::HasMarkupData()const
346 /** Tests whether the rich text object has any markup, or owns a style list.
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.
351 @return ETrue if the rich text object has markup, or owns a style list. EFalse
354 if (StyleListPresent() && !StyleListExternallyOwned())
357 return iIndex->HasMarkupData(iGlobalParaFormatLayer);
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.
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. */
378 __ETEXT_WATCH(DETACH);
383 iIndex->DetachFromStoreL(aDegree,0,DocumentLength());
387 __ETEXT_WATCH_END(DETACH);
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
396 Note: In order to load pictures, a picture factory and a store resolver must have
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. */
406 __ETEXT_WATCH(DETACH_POS_LENGTH);
409 TInt documentLength = DocumentLength();
410 if (aPos < 0 || aPos > documentLength)
412 OstTrace0( TRACE_FATAL, DUP1_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
414 __ASSERT_ALWAYS(aPos >= 0 && aPos <= documentLength,Panic(ECharPosBeyondDocument));
417 OstTrace0( TRACE_FATAL, CRICHTEXT_DETACHFROMSTOREL, "ECopyToStreamNegativeLength" );
419 __ASSERT_ALWAYS(aLength >= 0,Panic(ECopyToStreamNegativeLength));
420 if (aPos + aLength > documentLength)
422 OstTrace0( TRACE_FATAL, DUP2_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
424 __ASSERT_ALWAYS(aPos + aLength <= documentLength,Panic(ECharPosBeyondDocument));
426 if (aLength > 0 && IndexPresent())
427 iIndex->DetachFromStoreL(aDegree,aPos,aLength);
431 __ETEXT_WATCH_END(DETACH_POS_LENGTH);
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.
440 /** Sets the picture factory.
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.
449 Note: A panic occurs if the factory is NULL, but the store resolver is not NULL.
451 @param aPictureFactory The picture factory.
452 @param aStoreResolver The store resolver. This determines which file store
453 the picture is stored in. */
456 if (!aPictureFactory && aStoreResolver)
458 OstTrace0( TRACE_FATAL, CRICHTEXT_SETPICTUREFACTORY, "EInvalidPictureFactorySettings" );
460 __ASSERT_ALWAYS(!(!aPictureFactory && aStoreResolver),Panic(EInvalidPictureFactorySettings));
462 iPictureFactory=aPictureFactory;
463 iStoreResolver=aStoreResolver;
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.
471 @param aPos The document position. Must be valid.
472 @return The picture header located at document position aPos, or a default
476 if (aPos<0 || aPos>DocumentLength())
478 OstTrace0( TRACE_FATAL, CRICHTEXT_PICTUREHEADER, "ECharPosBeyondDocument" );
480 __ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
482 return (IndexPresent())
483 ? iIndex->PictureHeader(aPos)
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.
493 @param aPos The document position of the picture character. Must be valid
495 @see CRichText::PictureHandleL() */
498 if (aPos<0 || aPos>DocumentLength())
500 OstTrace0( TRACE_FATAL, CRICHTEXT_DROPPICTUREOWNERSHIP, "ECharPosBeyondDocument" );
502 __ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
504 TPictureHeader* p = IndexPresent()? iIndex->PictureHeaderPtr(aPos) : 0;
509 DeleteFromParagraph(aPos, 1);