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