OSDN Git Service

Session load and save.
[fukui-no-namari/dialektos.git] / src / board_subject_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 "board_subject_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/filesystem.hpp>
28 #include <fstream>
29 #include <string>
30 #include <iostream>
31
32
33 namespace dialektos {
34
35
36 SubjectIdx::SubjectIdx() : last_modified_() {
37 }
38
39 SubjectIdx SubjectIdx::from_xml(const boost::filesystem::path& xml) {
40   if (!boost::filesystem::exists(xml) ||
41       !boost::filesystem::is_regular_file(xml))
42     return SubjectIdx();
43
44   std::ifstream ifs(xml.file_string().c_str());
45   try {
46     SubjectIdx idx;
47     boost::archive::xml_iarchive ia(ifs);
48     ia >> boost::serialization::make_nvp("SubjectIdx", idx);
49     return idx;
50   } catch (const boost::archive::archive_exception& e) {
51     std::cerr << e.what() << " " << xml.file_string() << std::endl;
52     return SubjectIdx();
53   }
54 }
55
56 void SubjectIdx::to_xml(const boost::filesystem::path& xml) {
57   std::ofstream ofs(xml.file_string().c_str());
58   try {
59     boost::archive::xml_oarchive oa(ofs);
60     oa << boost::serialization::make_nvp("SubjectIdx", *this);
61   } catch (const boost::archive::archive_exception& e) {
62     std::cerr << e.what() << " " << xml.file_string() << std::endl;
63   }
64 }
65
66
67 } // namespace dialektos