os/textandloc/textrendering/texthandling/stext/TxtWriter.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2005-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 "TxtWriter.h"
    20 #include <txtetext.h>
    21 #include "TXTPLAIN.H"
    22 #include "OstTraceDefinitions.h"
    23 #ifdef OST_TRACE_COMPILER_IN_USE
    24 #include "TxtWriterTraces.h"
    25 #endif
    26 
    27 
    28 static const TText KLineBreak = 0x0A;//Used by TSLBTransaltor class - 0x0A, 0x0D, {0x0D, 0x0A}
    29                               //character aequences found in the input stream will be translated 
    30                               //to KLineBreak character.
    31 
    32 //////////////////////////////////////////////////////////////////////////////////////////////
    33 //////////////////////////////////////////////////////////////////////////////////////////////
    34 // TSLBTransaltor class
    35 
    36 /**
    37 The method processes the input characters and translates 0x0D, 0x0A and 0x0D 0x0A characters
    38 to line breaks. When the next output character is ready, the method calls WriteL() method of
    39 the controlled MTextWriter interface (iTextWriter data member) with the output character 
    40 as an argument. 
    41 Note: Identified line breaks will be translated to 0x0A character. 0x0A character code is very
    42       appropriate for use because all 0x0A, 0x0D or {0x0D, 0x0A} character sequences are filtered
    43 	  from the input stream and it is guaranteed that the output stream can't have any of them.
    44 Note: The output character stream should not contain 0x0D character.
    45 @param aChar Input character to be processed.
    46 */
    47 void TSLBTransaltor::ProcessL(TText aChar)
    48 	{
    49 	if(aChar == 0x0A)
    50 		{
    51 		//Output a line break. It does not matter what is the previous character.
    52 		//If it is 0x0D - line break should be the output (0x0D 0x0A). If it is something else - 
    53 		//(i\x0A) again the output is a line break.
    54 		iTextWriter.WriteL(KLineBreak);
    55 		}
    56 	else
    57 		{
    58 		if(iPrevChar == 0x0D)
    59 			{
    60 			//Previous character is 0x0D and current character is not 0x0A - then we have to output
    61 			//a line break - the previous character was stored one call before and now has to be 
    62 			//processed, if there is no 0x0A character.
    63 			iTextWriter.WriteL(KLineBreak);
    64 			}
    65 		if(aChar != 0x0D)
    66 			{
    67 			//If current character is 0x0D, then it will be stored for further processing (in 
    68 			//case if the next character is 0x0A). If current character is not 0x0D and not 
    69 			//0x0A - then output it immediately.
    70 			iTextWriter.WriteL(aChar);
    71 			}
    72 		}
    73 	iPrevChar = aChar;
    74 	}
    75 
    76 /**
    77 The method immediately sends to the output any characters, left for further processing. 
    78 The method shoud be called by the TSLBTransaltor's client after the processing of all 
    79 input characters.
    80 */
    81 void TSLBTransaltor::FlushL()
    82 	{
    83 	if(iPrevChar == 0x0D)
    84 		{
    85 		//The last input character is 0x0D and there won't be any more characters, so there is
    86 		//not a chanse to find a matching 0x0A character. Output it as a single line break.
    87 		iTextWriter.WriteL(KLineBreak);
    88 		}
    89 	//iTextWriter has an internal state too. Flush it.
    90 	iTextWriter.FlushL();
    91 	iPrevChar = 0;
    92 	}
    93 
    94 //////////////////////////////////////////////////////////////////////////////////////////////
    95 //////////////////////////////////////////////////////////////////////////////////////////////
    96 // TParagraphTextWriter class
    97 
    98 /**
    99 This method should be called only from TSLBTransaltor implementation. It gets the characters 
   100 processed by TSLBTransaltor instance as an input and writes them to the output (using MOutputChar
   101 interface - iOutputChar data member), translating line breaks to paragraph delimiters.
   102 @param aChar Input character to be processed. It can't be 0x0D, but it could be 0x0A - identified
   103              line break.
   104 */
   105 void TParagraphTextWriter::WriteL(TText aChar)
   106 	{
   107 	if (aChar == 0x0D)
   108 	    {
   109 	    OstTrace0( TRACE_DUMP, TPARAGRAPHTEXTWRITER_WRITEL, "Invariant" );
   110 	    }
   111 	__ASSERT_DEBUG(aChar != 0x0D, User::Invariant());
   112 	if(aChar == KLineBreak)
   113 		{
   114 		iOutputChar.OutputCharL(CEditableText::EParagraphDelimiter);
   115 		}
   116 	else
   117 		{
   118 		iOutputChar.OutputCharL(aChar);
   119 		}
   120 	}
   121 
   122 //////////////////////////////////////////////////////////////////////////////////////////////
   123 //////////////////////////////////////////////////////////////////////////////////////////////
   124 // TLineTextWriter class
   125 
   126 /**
   127 This method should be called only from TSLBTransaltor implementation. It gets the characters 
   128 processed by TSLBTransaltor instance as an input and writes them to the output (using MOutputChar
   129 interface - iOutputChar data member), translating line breaks to paragraph delimiters or spaces.
   130 The translation rules are:
   131  - single line break - space;
   132  - double line break - paragraph delimiter;
   133 @param aChar Input character to be processed. It can't be 0x0D, but it could be 0x0A - identified
   134              line break.
   135 */
   136 void TLineTextWriter::WriteL(TText aChar)
   137 	{
   138 	if (aChar == 0x0D)
   139 	    {
   140 	    OstTrace0( TRACE_DUMP, TLINETEXTWRITER_WRITEL, "Invariant" );
   141 	    }
   142 	__ASSERT_DEBUG(aChar != 0x0D, User::Invariant());
   143 	TText prevChar = iPrevChar;
   144 	iPrevChar = aChar;
   145 	if(aChar != KLineBreak)
   146 		{
   147 		if(prevChar == KLineBreak)
   148 			{
   149 			//Current character is not a line break, but the previous one is.
   150 			//Then, it is a single line break - output a space.
   151 			iOutputChar.OutputCharL(' ');
   152 			}
   153 		//Current character is not a line break - then just output it.
   154 		iOutputChar.OutputCharL(aChar);
   155 		}
   156 	else
   157 		{
   158 		if(prevChar == KLineBreak)
   159 			{
   160 			//Current character is a line break, previous character is a line break too.
   161 			//Double line break - output a paragraph delimiter.
   162 			//Both characters are consumed, so iPrevChar is set to 0.
   163 			iPrevChar = 0;
   164 			iOutputChar.OutputCharL(CEditableText::EParagraphDelimiter);
   165 			}
   166 		}
   167 	}
   168 
   169 /**
   170 The method immediately sends to the output any characters, left for further processing. 
   171 This method should be called only from TSLBTransaltor implementation.
   172 */
   173 void TLineTextWriter::FlushL()
   174 	{
   175 	if(iPrevChar == KLineBreak)
   176 		{
   177 		//There is no more input characters and the last input charactes is a line break.
   178 		//Then, treat it as a single line break and output a space.
   179 		iOutputChar.OutputCharL(' ');
   180 		}
   181 	iPrevChar = 0;
   182 	}