Files
date_time/test/posix_time/testtime_serialize.cpp
2005-06-04 06:40:36 +00:00

107 lines
2.8 KiB
C++

/* Copyright (c) 2002-2005 CrystalClear Software, Inc.
* Use, modification and distribution is subject to the
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0)
* Author: Jeff Garland, Bart Garst
*/
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>
#include <boost/archive/xml_iarchive.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/posix_time/time_serialize.hpp>
#include <boost/date_time/testfrmwk.hpp>
#include <fstream>
using namespace boost;
using namespace posix_time;
using namespace gregorian;
template<class archive_type, class temporal_type>
void save_to(archive_type& ar, const temporal_type& tt)
{
ar << tt;
}
int main(){
// originals
date d(2002, Feb, 14);
#if defined(BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG)
time_duration td(12,13,52,123456789);
#else
time_duration td(12,13,52,123456);
#endif
ptime pt(d, td);
time_period tp(pt, ptime(date(2002, Oct, 31), hours(19)));
// for loading in from archive
date d2(not_a_date_time);
time_duration td2(1,0,0);
ptime pt2(d2, td2);
time_period tp2(pt2, hours(1));
std::ofstream ofs("tmp_file");
// NOTE: DATE_TIME_XML_SERIALIZE is only used in testing and is
// defined in the testing Jamfile
#if defined(DATE_TIME_XML_SERIALIZE)
std::cout << "Running xml archive tests" << std::endl;
archive::xml_oarchive oa(ofs);
#else
std::cout << "Running text archive tests" << std::endl;
archive::text_oarchive oa(ofs);
#endif // DATE_TIME_XML_SERIALIZE
try{
#if defined(DATE_TIME_XML_SERIALIZE)
save_to(oa, BOOST_SERIALIZATION_NVP(pt));
save_to(oa, BOOST_SERIALIZATION_NVP(tp));
save_to(oa, BOOST_SERIALIZATION_NVP(td));
#else
save_to(oa, pt);
save_to(oa, tp);
save_to(oa, td);
#endif // DATE_TIME_XML_SERIALIZE
}catch(archive::archive_exception ae){
std::string s(ae.what());
check("Error writing to archive: " + s, false);
ofs.close();
return printTestStats();
}
ofs.close();
std::ifstream ifs("tmp_file");
#if defined(DATE_TIME_XML_SERIALIZE)
archive::xml_iarchive ia(ifs);
#else
archive::text_iarchive ia(ifs);
#endif // DATE_TIME_XML_SERIALIZE
try{
#if defined(DATE_TIME_XML_SERIALIZE)
ia >> BOOST_SERIALIZATION_NVP(pt2);
ia >> BOOST_SERIALIZATION_NVP(tp2);
ia >> BOOST_SERIALIZATION_NVP(td2);
#else
ia >> pt2;
ia >> tp2;
ia >> td2;
#endif // DATE_TIME_XML_SERIALIZE
}catch(archive::archive_exception ae){
std::string s(ae.what());
check("Error readng from archive: " + s, false);
ifs.close();
return printTestStats();
}
ifs.close();
check("ptime", pt == pt2);
check("time_period", tp == tp2);
check("time_duration", td == td2);
return printTestStats();
}