Update contrib.
2 * Copyright (c) 1999-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.
22 #include "OstTraceDefinitions.h"
23 #ifdef OST_TRACE_COMPILER_IN_USE
24 #include "TxtparseTraces.h"
29 // Install and activate a particular parser, app provides instance
30 EXPORT_C void CRichText::ActivateParserL(MParser* aParser)
32 CParserList* activeParserList = (CParserList*)Dll::Tls();
33 if (!activeParserList)
35 CreateParserETextTLSL();
36 activeParserList = (CParserList*)Dll::Tls();
38 activeParserList->ActivateParserL(aParser);
42 // Deactivate and deinstall a particular parser, identified by ptr to instance
43 EXPORT_C void CRichText::DeactivateParser(MParser* aParser)
45 CParserList* activeParserList = (CParserList*)Dll::Tls();
46 if (!activeParserList)
48 OstTrace0( TRACE_DUMP, CRICHTEXT_DEACTIVATEPARSER, "EParserListNotInitialized" );
50 __ASSERT_DEBUG(activeParserList, Panic(EParserListNotInitialized));
51 activeParserList->DeactivateParser(aParser);
52 if ((activeParserList->iRefCount == 0) && (activeParserList->iNumberInList == 0))
55 delete activeParserList;
60 // Install and activate a parser in the default set
61 EXPORT_C void CRichText::ActivateDefaultParserL(MParser* aParser)
63 CParserList* activeParserList = (CParserList*)Dll::Tls();
64 if (!activeParserList)
66 CreateParserETextTLSL();
67 activeParserList = (CParserList*)Dll::Tls();
69 activeParserList->ActivateDefaultParserL(aParser);
73 // Deactivate and deinstall the standard set of default parsers
74 EXPORT_C void CRichText::DeactivateParserDefaults()
76 CParserList* activeParserList = (CParserList*)Dll::Tls();
79 activeParserList->DeactivateParserDefaults();
80 if ((activeParserList->iRefCount == 0) && (activeParserList->iNumberInList == 0))
83 delete activeParserList;
89 // Create ParserLst instance and retain ownership of it but pass address to EText TLS
90 void CRichText::CreateParserETextTLSL()
92 if (Dll::Tls() != NULL)
94 OstTrace0( TRACE_DUMP, CRICHTEXT_CREATEPARSERETEXTTLSL, "EParserListAlreadyExists" );
96 __ASSERT_DEBUG(Dll::Tls() == NULL, Panic(EParserListAlreadyExists));
97 CParserList* activeParserList = new (ELeave) CParserList;
98 CleanupStack::PushL(activeParserList);
99 TInt err = Dll::SetTls(activeParserList);
100 User::LeaveIfError(err);
101 CleanupStack::Pop(activeParserList);
105 // Set observer callback to tell whenever the object has been edited.
106 // If set set then the parser system is active for this instance, otherwise not.
110 EXPORT_C void CRichText::SetEditObserver(MEditObserver* aEditObserver)
111 /** Sets the rich text object's edit observer. The observer's EditObserver() function
112 is called by the rich text object each time the object's text content is edited
113 (e.g. after a paste, insert, delete, reset etc.).
115 @param aEditObserver Pointer to the edit observer. */
117 iParserData->iEditObserver = aEditObserver;
121 EXPORT_C TBool CRichText::ParseText(TInt& aStartOfTags, TInt& aLength, TBool aForceScanAllText)
125 OstTrace0( TRACE_DUMP, CRICHTEXT_PARSETEXT, "EParserListTextIndexNotInitialized" );
127 __ASSERT_ALWAYS(iIndex.IsPtr(),Panic(EParserListTextIndexNotInitialized));
128 TBool foundSomething = EFalse;
129 if (iParserData->iActiveParserList && iParserData->iEditObserver)
131 if (aForceScanAllText)
132 foundSomething = iParserData->iActiveParserList->ParseThisText(*this,0,DocumentLength(),
133 aStartOfTags,aLength);
134 else if (iParserData->HaveRange())
135 foundSomething = iParserData->iActiveParserList->ParseThisText(*this,iParserData->StartParse(),
136 iParserData->EndParse() - iParserData->StartParse(),
137 aStartOfTags,aLength);
138 // All parsers have scanned the area
139 iParserData->KillRange();
141 return foundSomething;
145 // Given a cursor position, is there a tag under it and, if so, give me details
146 TBool CRichText::DoCursorOverTag(TInt aPos, MParser*& aParser, TInt& aTagStart, TInt& aLength) const
149 TCharFormatXMask varies;
150 TBool success = EFalse;
153 if (!iParserData->iActiveParserList)
155 OstTrace0( TRACE_DUMP, CRICHTEXT_DOCURSOROVERTAG, "EParserListNotInitialized" );
157 __ASSERT_DEBUG(iParserData->iActiveParserList, Panic(EParserListNotInitialized));
158 if (!iParserData->iEditObserver)
160 OstTrace0( TRACE_DUMP, DUP1_CRICHTEXT_DOCURSOROVERTAG, "EParserListNotActive" );
162 __ASSERT_DEBUG(iParserData->iEditObserver, Panic(EParserListNotActive));
163 GetExtendedCharFormat(format, varies, aPos, 1);
164 Extract(buf, aPos, 1);
165 if ((format.iParserTag) && (buf[0] != 0x2029))
167 aParser = iParserData->iActiveParserList->ParserWithThisTag(format.iParserTag);
169 { // Parser has been deactivated
172 // Get extent of tag (or set of contiguous tags for same parser)
176 // need to check backwards
177 TUint tag = format.iParserTag; // Stash tag before overwriting it
178 for (; pos > 0; pos--)
180 GetExtendedCharFormat(format, varies, pos - 1, 1);
181 Extract(buf, aPos, 1);
182 if ((format.iParserTag != tag) || (buf[0] == 0x2029))
187 TInt len = DocumentLength();
191 GetTextAndExtendedFormat(ptr, format, pos);
192 if (format.iParserTag != tag)
198 scanLength = pos - startScan;
199 // Now use the parser that found it originally to isolate the exact range
200 // of the tag from the range that could contain several
203 TInt result = aParser->ParseThisText(*this, EFalse, startScan, scanLength, aTagStart, aLength);
204 // Check we haven't gone past it (failed to find it this time)
205 if (!result || (aTagStart > aPos))
207 if ((aPos >= aTagStart) && (aPos < aTagStart + aLength))
213 // Not yet, skip over that one
214 startScan += aLength;
215 scanLength -= aLength;
225 EXPORT_C TBool CRichText::CursorOverTag(TInt aPos, MParser*& aParser, TInt& aTagStart, TInt& aLength) const
229 if (iParserData->iActiveParserList && iParserData->iEditObserver)
231 iParserData->iLastKnownCursor = aPos;
232 if (DoCursorOverTag(aPos, aParser, aTagStart, aLength))
236 if (aPos && DoCursorOverTag(aPos - 1, aParser, aTagStart, aLength))
242 aParser->ConfirmCursorOverTag(*this, aTagStart, aLength, aPos);
246 EXPORT_C TInt CRichText::PositionOfNextTag(TInt aPos, const MParser * aParser) const
248 if (iParserData->iActiveParserList && iParserData->iEditObserver)
256 tag = iParserData->iActiveParserList->TagForThisParser(aParser);
257 if (DoCursorOverTag(newPos, parser, tagStart, length))
258 newPos = tagStart + length; // To get past the current tag
261 while (newPos < DocumentLength())
263 GetTextAndExtendedFormat(ptr, format, newPos);
264 if (format.iParserTag &&(!aParser || format.iParserTag == tag))
266 newPos += ptr.Length();
274 EXPORT_C TInt CRichText::PositionOfNextTag(TInt aPos) const
276 return PositionOfNextTag(aPos, NULL);
280 EXPORT_C TInt CRichText::PositionOfPrevTag(TInt aPos, const MParser * aParser) const
282 if (iParserData->iActiveParserList && iParserData->iEditObserver)
290 tag = iParserData->iActiveParserList->TagForThisParser(aParser);
291 if (DoCursorOverTag(newPos, parser, tagStart, length))
292 newPos = tagStart; // To get past the current tag
294 TCharFormatXMask varies;
296 for (; newPos > 0; newPos--)
298 GetExtendedCharFormat(format, varies, newPos - 1, 1);
299 if (format.iParserTag &&(!aParser || format.iParserTag == tag))
301 if (DoCursorOverTag(newPos - 1, parser, tagStart, length))
311 EXPORT_C TInt CRichText::PositionOfPrevTag(TInt aPos) const
313 return PositionOfPrevTag(aPos, NULL);
317 void CRichText::OverrideFormatForParsersIfApplicable(TPtrC& aText, TCharFormatX& aFormat, TInt aStartPos) const
319 if (aFormat.iParserTag && iParserData->iActiveParserList && iParserData->iEditObserver)
324 TInt curPos = iParserData->iLastKnownCursor;
325 if (curPos > DocumentLength())
326 curPos = DocumentLength(); // This shouldn't be neccesary but it makes it more
327 // bulletproof if the calls from outside are made in
332 TCharFormatXMask varies;
335 GetExtendedCharFormat(format, varies, curPos, 1);
336 // If char at curpos has a tag then cursor is over that tag, get extents of tag
337 if (CParserList::ReformatOnRollover(format.iParserTag))
338 DoCursorOverTag(curPos, parser, start, length);
341 GetExtendedCharFormat(format, varies, curPos - 1, 1);
342 // Try the char "before" curpos
343 if (CParserList::ReformatOnRollover(format.iParserTag))
344 DoCursorOverTag(curPos - 1, parser, start, length);
348 MParser* parser = iParserData->iActiveParserList->ParserWithThisTag(aFormat.iParserTag);
350 if (length && (aStartPos >= start) && (aStartPos < start + length))
352 if (start + length < aStartPos + aText.Length())
353 aText.Set(aText.Left(start + length - aStartPos));
356 // Only accept the rollover format if the parser agrees
357 // with the framework match of a tag
358 if (parser->ConfirmCursorOverTag(*this, start, length, curPos))
359 parser->GetRolloverFormat(aFormat.iCharFormat);
361 // Reset format to recognised format if parser disagrees
362 // with the framework match as the tag is still in view
363 // and must be formatted as in the else clause below.
364 parser->GetRecogniseFormat(aFormat.iCharFormat);
369 if (length && (start > aStartPos))
370 aText.Set(aText.Left(start - aStartPos));
372 parser->GetRecogniseFormat(aFormat.iCharFormat);
378 void CRichText::CallEditObserver(TInt aStart, TInt aExtent) const
380 if (iParserData->iEditObserver)
381 iParserData->iEditObserver->EditObserver(aStart, aExtent);