1 | /*
|
---|
2 | * Copyright 1999-2000,2004 The Apache Software Foundation.
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
5 | * you may not use this file except in compliance with the License.
|
---|
6 | * You may obtain a copy of the License at
|
---|
7 | *
|
---|
8 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
9 | *
|
---|
10 | * Unless required by applicable law or agreed to in writing, software
|
---|
11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
13 | * See the License for the specific language governing permissions and
|
---|
14 | * limitations under the License.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef XMLUTF16TRANSCODER_HPP
|
---|
18 | #define XMLUTF16TRANSCODER_HPP
|
---|
19 |
|
---|
20 | #include <xercesc/util/XercesDefs.hpp>
|
---|
21 | #include <xercesc/util/TransService.hpp>
|
---|
22 |
|
---|
23 | XERCES_CPP_NAMESPACE_BEGIN
|
---|
24 |
|
---|
25 |
|
---|
26 | //
|
---|
27 | // This class provides an implementation of the XMLTranscoder interface
|
---|
28 | // for a simple UTF16 transcoder. The parser does some encodings
|
---|
29 | // intrinsically without depending upon external transcoding services.
|
---|
30 | // To make everything more orthagonal, we implement these internal
|
---|
31 | // transcoders using the same transcoder abstraction as the pluggable
|
---|
32 | // transcoding services do.
|
---|
33 | //
|
---|
34 | class XMLUTIL_EXPORT XMLUTF16Transcoder : public XMLTranscoder
|
---|
35 | {
|
---|
36 | public :
|
---|
37 | // -----------------------------------------------------------------------
|
---|
38 | // Public constructors and destructor
|
---|
39 | // -----------------------------------------------------------------------
|
---|
40 | XMLUTF16Transcoder
|
---|
41 | (
|
---|
42 | const XMLCh* const encodingName
|
---|
43 | , const unsigned int blockSize
|
---|
44 | , const bool swapped
|
---|
45 | , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
|
---|
46 | );
|
---|
47 |
|
---|
48 | virtual ~XMLUTF16Transcoder();
|
---|
49 |
|
---|
50 |
|
---|
51 | // -----------------------------------------------------------------------
|
---|
52 | // Implementation of the XMLTranscoder interface
|
---|
53 | // -----------------------------------------------------------------------
|
---|
54 | virtual unsigned int transcodeFrom
|
---|
55 | (
|
---|
56 | const XMLByte* const srcData
|
---|
57 | , const unsigned int srcCount
|
---|
58 | , XMLCh* const toFill
|
---|
59 | , const unsigned int maxChars
|
---|
60 | , unsigned int& bytesEaten
|
---|
61 | , unsigned char* const charSizes
|
---|
62 | );
|
---|
63 |
|
---|
64 | virtual unsigned int transcodeTo
|
---|
65 | (
|
---|
66 | const XMLCh* const srcData
|
---|
67 | , const unsigned int srcCount
|
---|
68 | , XMLByte* const toFill
|
---|
69 | , const unsigned int maxBytes
|
---|
70 | , unsigned int& charsEaten
|
---|
71 | , const UnRepOpts options
|
---|
72 | );
|
---|
73 |
|
---|
74 | virtual bool canTranscodeTo
|
---|
75 | (
|
---|
76 | const unsigned int toCheck
|
---|
77 | ) const;
|
---|
78 |
|
---|
79 |
|
---|
80 | private :
|
---|
81 | // -----------------------------------------------------------------------
|
---|
82 | // Unimplemented constructors and operators
|
---|
83 | // -----------------------------------------------------------------------
|
---|
84 | XMLUTF16Transcoder(const XMLUTF16Transcoder&);
|
---|
85 | XMLUTF16Transcoder& operator=(const XMLUTF16Transcoder&);
|
---|
86 |
|
---|
87 |
|
---|
88 | // -----------------------------------------------------------------------
|
---|
89 | // Private data members
|
---|
90 | //
|
---|
91 | // fSwapped
|
---|
92 | // Indicates whether the encoding is of the opposite endianness from
|
---|
93 | // the local host.
|
---|
94 | // -----------------------------------------------------------------------
|
---|
95 | bool fSwapped;
|
---|
96 | };
|
---|
97 |
|
---|
98 | XERCES_CPP_NAMESPACE_END
|
---|
99 |
|
---|
100 | #endif
|
---|