sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-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 |
* Header for the classes that import and export plain text into and out of ETEXT.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __TXTPLAIN__
|
sl@0
|
21 |
#define __TXTPLAIN__ 1
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#include <s32mem.h>
|
sl@0
|
25 |
#include <txtetext.h>
|
sl@0
|
26 |
#include "TxtWriter.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
class CCnvCharacterSetConverter;
|
sl@0
|
29 |
class TPlainTextIOState;
|
sl@0
|
30 |
|
sl@0
|
31 |
NONSHARABLE_CLASS(CPlainTextConverter) : public CBase
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
@internalComponent
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
static CPlainTextConverter* NewLC();
|
sl@0
|
38 |
~CPlainTextConverter();
|
sl@0
|
39 |
void PrepareToConvertL(TPlainTextIOState& aState,const TDesC8* aSample);
|
sl@0
|
40 |
|
sl@0
|
41 |
enum
|
sl@0
|
42 |
{
|
sl@0
|
43 |
EConversionBufferSize = 1024
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
CCnvCharacterSetConverter* iConverter; // use this converter to translate input or output
|
sl@0
|
47 |
TUint8* iConversionBuffer; // the buffer used by iConverter for non-Unicode text
|
sl@0
|
48 |
TInt iConversionBufferLength; // current number of characters in the conversion buffer
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
class TPlainTextIOState
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
@internalComponent
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
{
|
sl@0
|
56 |
public:
|
sl@0
|
57 |
TPlainTextIOState(const CPlainText::TImportExportParam& aParam,CPlainText::TImportExportResult& aResult,
|
sl@0
|
58 |
RWriteStream& aOutput,RReadStream& aInput);
|
sl@0
|
59 |
TBool Finished() const
|
sl@0
|
60 |
{ return iResult.iOutputChars >= iParam.iMaxOutputChars || iResult.iInputChars >= iParam.iMaxInputChars; }
|
sl@0
|
61 |
TText ReadRawCharL();
|
sl@0
|
62 |
void WriteRawCharL(TText aChar);
|
sl@0
|
63 |
|
sl@0
|
64 |
const CPlainText::TImportExportParam& iParam;
|
sl@0
|
65 |
CPlainText::TImportExportResult& iResult;
|
sl@0
|
66 |
RWriteStream& iOutput;
|
sl@0
|
67 |
RReadStream& iInput;
|
sl@0
|
68 |
CPlainTextConverter* iConverter;// if non-null, use CHARCONV, via this object, to convert a
|
sl@0
|
69 |
// foreign encoding to or from Unicode
|
sl@0
|
70 |
TBool iSwapInput; // input needs to be byte-swapped
|
sl@0
|
71 |
TBool iCheckByteOrder; // flip iSwapInput if the next input character is 0xFFFE (byte-swapped byte order mark)
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
class TPlainTextWriter: public TPlainTextIOState
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
@internalComponent
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
static void TranslateL(const CPlainText::TImportExportParam& aParam,CPlainText::TImportExportResult& aResult,
|
sl@0
|
81 |
RWriteStream& aOutput,RReadStream& aInput);
|
sl@0
|
82 |
|
sl@0
|
83 |
private:
|
sl@0
|
84 |
TPlainTextWriter(const CPlainText::TImportExportParam& aParam,CPlainText::TImportExportResult& aResult,
|
sl@0
|
85 |
RWriteStream& aOutput,RReadStream& aInput);
|
sl@0
|
86 |
void TranslateHelperL();
|
sl@0
|
87 |
|
sl@0
|
88 |
enum
|
sl@0
|
89 |
{
|
sl@0
|
90 |
EDefaultLineBufferSize = CPlainTextConverter::EConversionBufferSize * 2
|
sl@0
|
91 |
};
|
sl@0
|
92 |
|
sl@0
|
93 |
void TranslateToEofL();
|
sl@0
|
94 |
void FlushL();
|
sl@0
|
95 |
void WriteCharL(TText aChar);
|
sl@0
|
96 |
void WriteNewLineL();
|
sl@0
|
97 |
void WriteAndConvertL(const TText* aText,TInt aLength);
|
sl@0
|
98 |
|
sl@0
|
99 |
RBufReadStream iBufReadStream; // a stream over the input buffer
|
sl@0
|
100 |
TInt iMaxLineLength; // wrap lines automatically if they exceed this length
|
sl@0
|
101 |
TInt iLineLength; // length of the current line
|
sl@0
|
102 |
TText* iLineBuffer; // if non-null, this buffer contains the current line, or Unicode text
|
sl@0
|
103 |
// to be converted to a foreign encoding
|
sl@0
|
104 |
TInt iMaxLineBufferLength; // maximum number of characters in iLineBuffer
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
@internalComponent
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
NONSHARABLE_CLASS(TPlainTextReader) : public TPlainTextIOState, public MOutputChar
|
sl@0
|
111 |
{
|
sl@0
|
112 |
public:
|
sl@0
|
113 |
static void TranslateL(const CPlainText::TImportExportParam& aParam,CPlainText::TImportExportResult& aResult,
|
sl@0
|
114 |
RWriteStream& aOutput,RReadStream& aInput);
|
sl@0
|
115 |
|
sl@0
|
116 |
private:
|
sl@0
|
117 |
TPlainTextReader(const CPlainText::TImportExportParam& aParam,CPlainText::TImportExportResult& aResult,
|
sl@0
|
118 |
RWriteStream& aOutput,RReadStream& aInput);
|
sl@0
|
119 |
void TranslateHelperL(TSLBTransaltor& aSLBTranslator);
|
sl@0
|
120 |
|
sl@0
|
121 |
enum
|
sl@0
|
122 |
{
|
sl@0
|
123 |
EInputBufferSize = CPlainTextConverter::EConversionBufferSize * 2
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
void TranslateToEofL(TSLBTransaltor& aSLBTranslator);
|
sl@0
|
127 |
TText ReadAndConvertL();
|
sl@0
|
128 |
virtual void OutputCharL(TText aChar);
|
sl@0
|
129 |
|
sl@0
|
130 |
TText* iInputBuffer; // if non-null, this buffer contains Unicode text
|
sl@0
|
131 |
// converted from a foreign encoding
|
sl@0
|
132 |
TInt iInputLength; // number of characters currently stored in iInputBuffer
|
sl@0
|
133 |
TInt iInputPos; // current position in iInputBuffer;
|
sl@0
|
134 |
TInt iConversionState; // state used by iConverter when converting to Unicode
|
sl@0
|
135 |
};
|
sl@0
|
136 |
|
sl@0
|
137 |
#endif // __TXTPLAIN__
|