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