1 | /* |
---|
2 | * Licensed to the Apache Software Foundation (ASF) under one or more |
---|
3 | * contributor license agreements. See the NOTICE file distributed with |
---|
4 | * this work for additional information regarding copyright ownership. |
---|
5 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
---|
6 | * (the "License"); you may not use this file except in compliance with |
---|
7 | * the License. You may obtain a copy of the License at |
---|
8 | * |
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0 |
---|
10 | * |
---|
11 | * Unless required by applicable law or agreed to in writing, software |
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS, |
---|
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
---|
14 | * See the License for the specific language governing permissions and |
---|
15 | * limitations under the License. |
---|
16 | */ |
---|
17 | |
---|
18 | #ifndef XMLEBCDICTRANSCODER_HPP |
---|
19 | #define XMLEBCDICTRANSCODER_HPP |
---|
20 | |
---|
21 | #include <xercesc/util/XercesDefs.hpp> |
---|
22 | #include <xercesc/util/XML256TableTranscoder.hpp> |
---|
23 | |
---|
24 | XERCES_CPP_NAMESPACE_BEGIN |
---|
25 | |
---|
26 | // |
---|
27 | // This class provides an implementation of the XMLTranscoder interface |
---|
28 | // for a simple EBCDIC-US 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 | // EBCDIC-US is the same as IBM037, CP37, EBCDIC-CP-US, etc... |
---|
35 | // |
---|
36 | class XMLUTIL_EXPORT XMLEBCDICTranscoder : public XML256TableTranscoder |
---|
37 | { |
---|
38 | public : |
---|
39 | // ----------------------------------------------------------------------- |
---|
40 | // Public, static methods |
---|
41 | // ----------------------------------------------------------------------- |
---|
42 | static XMLCh xlatThisOne(const XMLByte toXlat); |
---|
43 | |
---|
44 | |
---|
45 | // ----------------------------------------------------------------------- |
---|
46 | // Public constructors and destructor |
---|
47 | // ----------------------------------------------------------------------- |
---|
48 | XMLEBCDICTranscoder |
---|
49 | ( |
---|
50 | const XMLCh* const encodingName |
---|
51 | , const unsigned int blockSize |
---|
52 | , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager |
---|
53 | ); |
---|
54 | |
---|
55 | virtual ~XMLEBCDICTranscoder(); |
---|
56 | |
---|
57 | |
---|
58 | private : |
---|
59 | // ----------------------------------------------------------------------- |
---|
60 | // Unimplemented constructors and operators |
---|
61 | // ----------------------------------------------------------------------- |
---|
62 | XMLEBCDICTranscoder(); |
---|
63 | XMLEBCDICTranscoder(const XMLEBCDICTranscoder&); |
---|
64 | XMLEBCDICTranscoder& operator=(const XMLEBCDICTranscoder&); |
---|
65 | }; |
---|
66 | |
---|
67 | XERCES_CPP_NAMESPACE_END |
---|
68 | |
---|
69 | #endif |
---|