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