Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/archive/impl/xml_wiarchive_impl.ipp @ 33

Last change on this file since 33 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 5.4 KB
Line 
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// xml_wiprimitive.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> // for BOOST_DEDUCED_TYPENAME
12
13#include <cstring>
14#if defined(BOOST_NO_STDC_NAMESPACE)
15namespace std{
16    using ::memcpy;
17} //std
18#endif
19
20#include <boost/config.hpp> // msvc 6.0 needs this to suppress warnings
21#ifndef BOOST_NO_STD_WSTREAMBUF
22
23#include <cassert>
24#include <algorithm>
25
26#include <boost/detail/workaround.hpp> // Dinkumware and RogueWave
27#if BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1)
28#include <boost/archive/dinkumware.hpp>
29#endif
30
31#include <boost/io/ios_state.hpp>
32#include <boost/detail/no_exceptions_support.hpp>
33#include <boost/pfto.hpp>
34
35#include <boost/serialization/string.hpp>
36#include <boost/archive/add_facet.hpp>
37#include <boost/archive/archive_exception.hpp>
38#include <boost/archive/detail/utf8_codecvt_facet.hpp>
39
40#include <boost/archive/iterators/mb_from_wchar.hpp>
41
42#include <boost/archive/basic_xml_archive.hpp>
43#include <boost/archive/xml_wiarchive.hpp>
44
45#include "basic_xml_grammar.hpp"
46
47namespace boost {
48namespace archive {
49
50/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
51// implemenations of functions specific to wide char archives
52
53namespace { // anonymous
54
55void copy_to_ptr(char * s, const std::wstring & ws){
56    std::copy(
57        iterators::mb_from_wchar<std::wstring::const_iterator>(
58            BOOST_MAKE_PFTO_WRAPPER(ws.begin())
59        ),
60        iterators::mb_from_wchar<std::wstring::const_iterator>(
61            BOOST_MAKE_PFTO_WRAPPER(ws.end())
62        ),
63        s
64    );
65    s[ws.size()] = 0;
66}
67
68} // anonymous
69
70template<class Archive>
71BOOST_WARCHIVE_DECL(void)
72xml_wiarchive_impl<Archive>::load(std::string & s){
73    std::wstring ws;
74    bool result = gimpl->parse_string(is, ws);
75    if(! result)
76        boost::throw_exception(
77            xml_archive_exception(xml_archive_exception::xml_archive_parsing_error)
78        );
79    #if BOOST_WORKAROUND(_RWSTD_VER, BOOST_TESTED_AT(20101))
80    if(NULL != s.data())
81    #endif
82        s.resize(0);
83    s.reserve(ws.size());
84    std::copy(
85        iterators::mb_from_wchar<std::wstring::iterator>(
86            BOOST_MAKE_PFTO_WRAPPER(ws.begin())
87        ),
88        iterators::mb_from_wchar<std::wstring::iterator>(
89            BOOST_MAKE_PFTO_WRAPPER(ws.end())
90        ),
91        std::back_inserter(s)
92    );
93}
94
95#ifndef BOOST_NO_STD_WSTRING
96template<class Archive>
97BOOST_WARCHIVE_DECL(void)
98xml_wiarchive_impl<Archive>::load(std::wstring & ws){
99    bool result = gimpl->parse_string(is, ws);
100    if(! result)
101        boost::throw_exception(
102            xml_archive_exception(xml_archive_exception::xml_archive_parsing_error)
103        );
104}
105#endif
106
107template<class Archive>
108BOOST_WARCHIVE_DECL(void)
109xml_wiarchive_impl<Archive>::load(char * s){
110    std::wstring ws;
111    bool result = gimpl->parse_string(is, ws);
112    if(! result)
113        boost::throw_exception(
114            xml_archive_exception(xml_archive_exception::xml_archive_parsing_error)
115        );
116    copy_to_ptr(s, ws);
117}
118
119#ifndef BOOST_NO_INTRINSIC_WCHAR_T
120template<class Archive>
121BOOST_WARCHIVE_DECL(void)
122xml_wiarchive_impl<Archive>::load(wchar_t * ws){
123    std::wstring twstring;
124    bool result = gimpl->parse_string(is, twstring);
125    if(! result)
126        boost::throw_exception(
127            xml_archive_exception(xml_archive_exception::xml_archive_parsing_error)
128        );
129    std::memcpy(ws, twstring.c_str(), twstring.size());
130    ws[twstring.size()] = L'\0';
131}
132#endif
133
134template<class Archive>
135BOOST_WARCHIVE_DECL(void)
136xml_wiarchive_impl<Archive>::load_override(class_name_type & t, int){
137    const std::wstring & ws = gimpl->rv.class_name;
138    if(ws.size() > BOOST_SERIALIZATION_MAX_KEY_SIZE - 1)
139        boost::throw_exception(archive_exception::invalid_class_name);
140    copy_to_ptr(t, ws);
141}
142
143template<class Archive>
144BOOST_WARCHIVE_DECL(void)
145xml_wiarchive_impl<Archive>::init(){
146    gimpl->init(is);
147    this->set_library_version(gimpl->rv.version);
148}
149
150template<class Archive>
151BOOST_WARCHIVE_DECL(BOOST_PP_EMPTY())
152xml_wiarchive_impl<Archive>::xml_wiarchive_impl(
153    std::wistream &is_,
154    unsigned int flags
155) :
156    basic_text_iprimitive<std::wistream>(
157        is_,
158        true // don't change the codecvt - use the one below
159    ),
160    basic_xml_iarchive<Archive>(flags),
161    gimpl(new xml_wgrammar())
162{
163    if(0 == (flags & no_codecvt)){
164        archive_locale.reset(
165            add_facet(
166                std::locale::classic(),
167                new detail::utf8_codecvt_facet
168            )
169        );
170        is.imbue(* archive_locale);
171    }
172    if(0 == (flags & no_header)){
173        BOOST_TRY{
174            this->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
186template<class Archive>
187BOOST_WARCHIVE_DECL(BOOST_PP_EMPTY())
188xml_wiarchive_impl<Archive>::~xml_wiarchive_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
199} // namespace archive
200} // namespace boost
201
202#endif  // BOOST_NO_STD_WSTREAMBUF
Note: See TracBrowser for help on using the repository browser.