OSDN Git Service

Session load and save.
[fukui-no-namari/dialektos.git] / src / thread_idx.cxx
1 /*
2  * Copyright (C) 2009 by Aiwota Programmer
3  * aiwotaprog@tetteke.tk
4  *
5  * This file is part of Dialektos.
6  *
7  * Dialektos is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * Dialektos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Dialektos.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "thread_idx.hxx"
23
24 #include <boost/archive/xml_iarchive.hpp>
25 #include <boost/archive/xml_oarchive.hpp>
26 #include <boost/serialization/nvp.hpp>
27 #include <boost/format.hpp>
28 #include <boost/filesystem.hpp>
29 #include <fstream>
30 #include <string>
31 #include <iostream>
32
33
34 namespace dialektos {
35
36 ThreadIdx::ThreadIdx() : title_(), line_count_(0), last_modified_(), etag_()
37 {}
38
39 void ThreadIdx::to_xml(const boost::filesystem::path& xml) {
40   std::ofstream ofs(xml.file_string().c_str());
41   try {
42     boost::archive::xml_oarchive oa(ofs);
43     oa << boost::serialization::make_nvp("ThreadIdx", *this);
44   } catch (const boost::archive::archive_exception& e) {
45     std::cerr << e.what() << " " << xml.file_string() << std::endl;
46   }
47   ofs.close();
48 }
49
50 ThreadIdx ThreadIdx::from_xml(const boost::filesystem::path& xml) {
51   ThreadIdx idx;
52
53   if (!boost::filesystem::exists(xml) ||
54       !boost::filesystem::is_regular_file(xml))
55     return idx;
56
57   std::ifstream ifs(xml.file_string().c_str());
58   try {
59     boost::archive::xml_iarchive ia(ifs);
60     ia >> boost::serialization::make_nvp("ThreadIdx", idx);
61   } catch (const boost::archive::archive_exception& e) {
62     std::cerr << e.what() << " " << xml.file_string() << std::endl;
63     return ThreadIdx();
64   }
65   ifs.close();
66
67   return idx;
68 }
69
70
71 } // namespace dialektos