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