OSDN Git Service

Change idx sub dir's time stamp when saving idx.
[fukui-no-namari/dialektos.git] / src / board_window_state.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 #include "board_window_state.hxx"
22
23 #include <boost/archive/xml_iarchive.hpp>
24 #include <boost/archive/xml_oarchive.hpp>
25 #include <boost/serialization/nvp.hpp>
26 #include <boost/filesystem.hpp>
27 #include <fstream>
28 #include <iostream>
29
30
31 namespace dialektos {
32
33
34 BoardWindowState::BoardWindowState() :
35   width(400), height(300), menubar(true), toolbar(true), statusbar(true) {
36 }
37
38 void BoardWindowState::from_xml(const boost::filesystem::path& xml) {
39   if (!boost::filesystem::exists(xml) ||
40       !boost::filesystem::is_regular_file(xml))
41     return;
42
43   std::ifstream ifs(xml.file_string().c_str());
44   try {
45     boost::archive::xml_iarchive ia(ifs);
46     ia >> boost::serialization::make_nvp("BoardWindowState", *this);
47   } catch (const boost::archive::archive_exception& e) {
48     std::cerr << e.what() << " " << xml << std::endl;
49   }
50 }
51
52 void BoardWindowState::to_xml(const boost::filesystem::path& xml) {
53   // Do not save if subject.txt does not exist.
54   if (!boost::filesystem::exists(xml.parent_path() / "subject.txt")) return;
55   std::ofstream ofs(xml.file_string().c_str());
56   try {
57     boost::archive::xml_oarchive oa(ofs);
58     oa << boost::serialization::make_nvp("BoardWindowState", *this);
59   } catch (const boost::archive::archive_exception& e) {
60     std::cerr << e.what() << " " << xml << std::endl;
61   }
62 }
63
64
65 } // namespace dialektos