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 // ---------------------------------------------------------------------------
24 //  Includes for all the program files to see
25 // ---------------------------------------------------------------------------
26 #include <xercesc/util/PlatformUtils.hpp>
27 #include <stdlib.h>
28 #include <string.h>
29 #if defined(XERCES_NEW_IOSTREAMS)
30 #include <iostream>
31 #else
32 #include <iostream.h>
33 #endif
34 #include <xercesc/parsers/SAXParser.hpp>
35 #include "SAXCountHandlers.hpp"
36 
37 
38 // ---------------------------------------------------------------------------
39 //  This is a simple class that lets us do easy (though not terribly efficient)
40 //  trancoding of XMLCh data to local code page for display.
41 // ---------------------------------------------------------------------------
42 class StrX
43 {
44 public :
45     // -----------------------------------------------------------------------
46     //  Constructors and Destructor
47     // -----------------------------------------------------------------------
StrX(const XMLCh * const toTranscode)48     StrX(const XMLCh* const toTranscode)
49     {
50         // Call the private transcoding method
51         fLocalForm = XMLString::transcode(toTranscode);
52     }
53 
~StrX()54     ~StrX()
55     {
56         XMLString::release(&fLocalForm);
57     }
58 
59     // -----------------------------------------------------------------------
60     //  Getter methods
61     // -----------------------------------------------------------------------
localForm() const62     const char* localForm() const
63     {
64         return fLocalForm;
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