1 | /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 |
---|
2 | // xml_iarchive_impl.cpp: |
---|
3 | |
---|
4 | // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . |
---|
5 | // Distributed under the Boost Software License, Version 1.0. (See |
---|
6 | // accompanying file LICENSE_1_0.txt or copy at |
---|
7 | // http://www.boost.org/LICENSE_1_0.txt) |
---|
8 | |
---|
9 | // See http://www.boost.org for updates, documentation, and revision history. |
---|
10 | |
---|
11 | #include <boost/config.hpp> |
---|
12 | #include <cstring> // memcpy |
---|
13 | #if defined(BOOST_NO_STDC_NAMESPACE) |
---|
14 | namespace std{ |
---|
15 | using ::memcpy; |
---|
16 | } // namespace std |
---|
17 | #endif |
---|
18 | |
---|
19 | #ifndef BOOST_NO_CWCHAR |
---|
20 | #include <cstdlib> // mbtowc |
---|
21 | #if defined(BOOST_NO_STDC_NAMESPACE) |
---|
22 | namespace std{ |
---|
23 | using ::mbtowc; |
---|
24 | } // namespace std |
---|
25 | #endif |
---|
26 | #endif // BOOST_NO_CWCHAR |
---|
27 | |
---|
28 | #include <boost/detail/workaround.hpp> // RogueWave and Dinkumware |
---|
29 | #if BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1) |
---|
30 | #include <boost/archive/dinkumware.hpp> |
---|
31 | #endif |
---|
32 | |
---|
33 | #include <boost/detail/no_exceptions_support.hpp> |
---|
34 | |
---|
35 | #include <boost/archive/archive_exception.hpp> |
---|
36 | #include <boost/archive/iterators/dataflow_exception.hpp> |
---|
37 | #include <boost/archive/basic_xml_archive.hpp> |
---|
38 | #include <boost/archive/xml_iarchive.hpp> |
---|
39 | |
---|
40 | #include "basic_xml_grammar.hpp" |
---|
41 | |
---|
42 | namespace boost { |
---|
43 | namespace archive { |
---|
44 | |
---|
45 | /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 |
---|
46 | // implemenations of functions specific to char archives |
---|
47 | |
---|
48 | // wide char stuff used by char archives |
---|
49 | |
---|
50 | #ifndef BOOST_NO_CWCHAR |
---|
51 | #ifndef BOOST_NO_STD_WSTRING |
---|
52 | template<class Archive> |
---|
53 | BOOST_ARCHIVE_DECL(void) |
---|
54 | xml_iarchive_impl<Archive>::load(std::wstring &ws){ |
---|
55 | std::string s; |
---|
56 | bool result = gimpl->parse_string(is, s); |
---|
57 | if(! result) |
---|
58 | boost::throw_exception( |
---|
59 | xml_archive_exception(xml_archive_exception::xml_archive_parsing_error) |
---|
60 | ); |
---|
61 | |
---|
62 | #if BOOST_WORKAROUND(_RWSTD_VER, BOOST_TESTED_AT(20101)) |
---|
63 | if(NULL != ws.data()) |
---|
64 | #endif |
---|
65 | ws.resize(0); |
---|
66 | const char * start = s.data(); |
---|
67 | const char * end = start + s.size(); |
---|
68 | while(start < end){ |
---|
69 | wchar_t wc; |
---|
70 | int resultx = std::mbtowc(&wc, start, end - start); |
---|
71 | if(0 < resultx){ |
---|
72 | start += resultx; |
---|
73 | ws += wc; |
---|
74 | continue; |
---|
75 | } |
---|
76 | boost::throw_exception( |
---|
77 | iterators::dataflow_exception( |
---|
78 | iterators::dataflow_exception::invalid_conversion |
---|
79 | ) |
---|
80 | ); |
---|
81 | } |
---|
82 | } |
---|
83 | #endif // BOOST_NO_STD_WSTRING |
---|
84 | |
---|
85 | #ifndef BOOST_NO_INTRINSIC_WCHAR_T |
---|
86 | template<class Archive> |
---|
87 | BOOST_ARCHIVE_DECL(void) |
---|
88 | xml_iarchive_impl<Archive>::load(wchar_t * ws){ |
---|
89 | std::string s; |
---|
90 | bool result = gimpl->parse_string(is, s); |
---|
91 | if(! result) |
---|
92 | boost::throw_exception( |
---|
93 | xml_archive_exception(xml_archive_exception::xml_archive_parsing_error) |
---|
94 | ); |
---|
95 | |
---|
96 | const char * start = s.data(); |
---|
97 | const char * end = start + s.size(); |
---|
98 | while(start < end){ |
---|
99 | wchar_t wc; |
---|
100 | int result = std::mbtowc(&wc, start, end - start); |
---|
101 | if(0 < result){ |
---|
102 | start += result; |
---|
103 | *ws++ = wc; |
---|
104 | continue; |
---|
105 | } |
---|
106 | boost::throw_exception( |
---|
107 | iterators::dataflow_exception( |
---|
108 | iterators::dataflow_exception::invalid_conversion |
---|
109 | ) |
---|
110 | ); |
---|
111 | } |
---|
112 | *ws = L'\0'; |
---|
113 | } |
---|
114 | #endif |
---|
115 | |
---|
116 | #endif // BOOST_NO_CWCHAR |
---|
117 | |
---|
118 | template<class Archive> |
---|
119 | BOOST_ARCHIVE_DECL(void) |
---|
120 | xml_iarchive_impl<Archive>::load(std::string &s){ |
---|
121 | bool result = gimpl->parse_string(is, s); |
---|
122 | if(! result) |
---|
123 | boost::throw_exception( |
---|
124 | xml_archive_exception(xml_archive_exception::xml_archive_parsing_error) |
---|
125 | ); |
---|
126 | } |
---|
127 | |
---|
128 | template<class Archive> |
---|
129 | BOOST_ARCHIVE_DECL(void) |
---|
130 | xml_iarchive_impl<Archive>::load(char * s){ |
---|
131 | std::string tstring; |
---|
132 | bool result = gimpl->parse_string(is, tstring); |
---|
133 | if(! result) |
---|
134 | boost::throw_exception( |
---|
135 | xml_archive_exception(xml_archive_exception::xml_archive_parsing_error) |
---|
136 | ); |
---|
137 | std::memcpy(s, tstring.data(), tstring.size()); |
---|
138 | s[tstring.size()] = 0; |
---|
139 | } |
---|
140 | |
---|
141 | template<class Archive> |
---|
142 | BOOST_ARCHIVE_DECL(void) |
---|
143 | xml_iarchive_impl<Archive>::load_override(class_name_type & t, int){ |
---|
144 | const std::string & s = gimpl->rv.class_name; |
---|
145 | if(s.size() > BOOST_SERIALIZATION_MAX_KEY_SIZE - 1) |
---|
146 | boost::throw_exception(archive_exception::invalid_class_name); |
---|
147 | char * tptr = t; |
---|
148 | std::memcpy(tptr, s.data(), s.size()); |
---|
149 | tptr[s.size()] = '\0'; |
---|
150 | } |
---|
151 | |
---|
152 | template<class Archive> |
---|
153 | BOOST_ARCHIVE_DECL(void) |
---|
154 | xml_iarchive_impl<Archive>::init(){ |
---|
155 | gimpl->init(is); |
---|
156 | this->set_library_version(gimpl->rv.version); |
---|
157 | } |
---|
158 | |
---|
159 | template<class Archive> |
---|
160 | BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) |
---|
161 | xml_iarchive_impl<Archive>::xml_iarchive_impl( |
---|
162 | std::istream &is_, |
---|
163 | unsigned int flags |
---|
164 | ) : |
---|
165 | basic_text_iprimitive<std::istream>( |
---|
166 | is_, |
---|
167 | 0 != (flags & no_codecvt) |
---|
168 | ), |
---|
169 | basic_xml_iarchive<Archive>(flags), |
---|
170 | gimpl(new xml_grammar()) |
---|
171 | { |
---|
172 | if(0 == (flags & no_header)){ |
---|
173 | BOOST_TRY{ |
---|
174 | init(); |
---|
175 | } |
---|
176 | BOOST_CATCH(...){ |
---|
177 | delete gimpl; |
---|
178 | #ifndef BOOST_NO_EXCEPTIONS |
---|
179 | throw; // re-throw |
---|
180 | #endif |
---|
181 | } |
---|
182 | BOOST_CATCH_END |
---|
183 | } |
---|
184 | } |
---|
185 | |
---|
186 | template<class Archive> |
---|
187 | BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) |
---|
188 | xml_iarchive_impl<Archive>::~xml_iarchive_impl(){ |
---|
189 | if(0 == (this->get_flags() & no_header)){ |
---|
190 | BOOST_TRY{ |
---|
191 | gimpl->windup(is); |
---|
192 | } |
---|
193 | BOOST_CATCH(...){} |
---|
194 | BOOST_CATCH_END |
---|
195 | } |
---|
196 | delete gimpl; |
---|
197 | } |
---|
198 | } // namespace archive |
---|
199 | } // namespace boost |
---|