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 XMLEBCDICTRANSCODER_HPP
|
---|
18 | #define XMLEBCDICTRANSCODER_HPP
|
---|
19 |
|
---|
20 | #include <xercesc/util/XercesDefs.hpp>
|
---|
21 | #include <xercesc/util/XML256TableTranscoder.hpp>
|
---|
22 |
|
---|
23 | XERCES_CPP_NAMESPACE_BEGIN
|
---|
24 |
|
---|
25 | //
|
---|
26 | // This class provides an implementation of the XMLTranscoder interface
|
---|
27 | // for a simple EBCDIC-US transcoder. The parser does some encodings
|
---|
28 | // intrinsically without depending upon external transcoding services.
|
---|
29 | // To make everything more orthagonal, we implement these internal
|
---|
30 | // transcoders using the same transcoder abstraction as the pluggable
|
---|
31 | // transcoding services do.
|
---|
32 | //
|
---|
33 | // EBCDIC-US is the same as IBM037, CP37, EBCDIC-CP-US, etc...
|
---|
34 | //
|
---|
35 | class XMLUTIL_EXPORT XMLEBCDICTranscoder : public XML256TableTranscoder
|
---|
36 | {
|
---|
37 | public :
|
---|
38 | // -----------------------------------------------------------------------
|
---|
39 | // Public, static methods
|
---|
40 | // -----------------------------------------------------------------------
|
---|
41 | static XMLCh xlatThisOne(const XMLByte toXlat);
|
---|
42 |
|
---|
43 |
|
---|
44 | // -----------------------------------------------------------------------
|
---|
45 | // Public constructors and destructor
|
---|
46 | // -----------------------------------------------------------------------
|
---|
47 | XMLEBCDICTranscoder
|
---|
48 | (
|
---|
49 | const XMLCh* const encodingName
|
---|
50 | , const unsigned int blockSize
|
---|
51 | , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
|
---|
52 | );
|
---|
53 |
|
---|
54 | virtual ~XMLEBCDICTranscoder();
|
---|
55 |
|
---|
56 |
|
---|
57 | private :
|
---|
58 | // -----------------------------------------------------------------------
|
---|
59 | // Unimplemented constructors and operators
|
---|
60 | // -----------------------------------------------------------------------
|
---|
61 | XMLEBCDICTranscoder();
|
---|
62 | XMLEBCDICTranscoder(const XMLEBCDICTranscoder&);
|
---|
63 | XMLEBCDICTranscoder& operator=(const XMLEBCDICTranscoder&);
|
---|
64 | };
|
---|
65 |
|
---|
66 | XERCES_CPP_NAMESPACE_END
|
---|
67 |
|
---|
68 | #endif
|
---|