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 /*
19 * $Id$
20 */
21
22 // ---------------------------------------------------------------------------
23 // Includes for all the program files to see
24 // ---------------------------------------------------------------------------
25 #if defined(XERCES_NEW_IOSTREAMS)
26 #include <iostream>
27 #else
28 #include <iostream.h>
29 #endif
30 #include <string.h>
31 #include <stdlib.h>
32 #include "PParseHandlers.hpp"
33
34
35
36 // ---------------------------------------------------------------------------
37 // This is a simple class that lets us do easy (though not terribly efficient)
38 // trancoding of XMLCh data to local code page for display.
39 // ---------------------------------------------------------------------------
40 class StrX
41 {
42 public :
43 // -----------------------------------------------------------------------
44 // Constructors and Destructor
45 // -----------------------------------------------------------------------
StrX(const XMLCh * const toTranscode)46 StrX(const XMLCh* const toTranscode)
47 {
48 // Call the private transcoding method
49 fLocalForm = XMLString::transcode(toTranscode);
50 }
51
~StrX()52 ~StrX()
53 {
54 XMLString::release(&fLocalForm);
55 }
56
57
58 // -----------------------------------------------------------------------
59 // Getter methods
60 // -----------------------------------------------------------------------
localForm() const61 const char* localForm() const
62 {
63 return fLocalForm;
64 }
65
66
67 private :
68 // -----------------------------------------------------------------------
69 // Private data members
70 //
71 // fLocalForm
72 // This is the local code page form of the string.
73 // -----------------------------------------------------------------------
74 char* fLocalForm;
75 };
76
operator <<(XERCES_STD_QUALIFIER ostream & target,const StrX & toDump)77 inline XERCES_STD_QUALIFIER ostream& operator<<(XERCES_STD_QUALIFIER ostream& target, const StrX& toDump)
78 {
79 target << toDump.localForm();
80 return target;
81 }
82