source: NonGTP/Xerces/xerces-c_2_8_0/include/xercesc/util/XMLASCIITranscoder.hpp @ 2674

Revision 2674, 3.1 KB checked in by mattausch, 16 years ago (diff)
Line 
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 XMLASCIITRANSCODER_HPP
19#define XMLASCIITRANSCODER_HPP
20
21#include <xercesc/util/XercesDefs.hpp>
22#include <xercesc/util/TransService.hpp>
23
24XERCES_CPP_NAMESPACE_BEGIN
25
26//
27//  This class provides an implementation of the XMLTranscoder interface
28//  for a simple ASCII 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//
34class XMLUTIL_EXPORT XMLASCIITranscoder : public XMLTranscoder
35{
36public :
37    // -----------------------------------------------------------------------
38    //  Constructors and destructor
39    // -----------------------------------------------------------------------
40    XMLASCIITranscoder
41    (
42        const   XMLCh* const    encodingName
43        , const unsigned int    blockSize
44        , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
45    );
46
47    virtual ~XMLASCIITranscoder();
48
49
50    // -----------------------------------------------------------------------
51    //  Implementation of the XMLTranscoder interface
52    // -----------------------------------------------------------------------
53    virtual unsigned int transcodeFrom
54    (
55        const   XMLByte* const          srcData
56        , const unsigned int            srcCount
57        ,       XMLCh* const            toFill
58        , const unsigned int            maxChars
59        ,       unsigned int&           bytesEaten
60        ,       unsigned char* const    charSizes
61    );
62
63    virtual unsigned int transcodeTo
64    (
65        const   XMLCh* const    srcData
66        , const unsigned int    srcCount
67        ,       XMLByte* const  toFill
68        , const unsigned int    maxBytes
69        ,       unsigned int&   charsEaten
70        , const UnRepOpts       options
71    );
72
73    virtual bool canTranscodeTo
74    (
75        const   unsigned int    toCheck
76    )   const;
77
78
79private :
80    // -----------------------------------------------------------------------
81    //  Unimplemented constructors and operators
82    // -----------------------------------------------------------------------
83    XMLASCIITranscoder(const XMLASCIITranscoder&);
84    XMLASCIITranscoder& operator=(const XMLASCIITranscoder&);
85};
86
87XERCES_CPP_NAMESPACE_END
88
89#endif
Note: See TracBrowser for help on using the repository browser.