OSDN Git Service

Change idx sub dir's time stamp when saving idx.
[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 #include "misc.hxx"
33
34
35 namespace dialektos {
36
37 ThreadIdx::ThreadIdx() : title_(), line_count_(0), last_modified_(), etag_()
38 {}
39
40 void ThreadIdx::to_xml(const boost::filesystem::path& xml) {
41   if (!misc::create_directories(xml.parent_path())) return;
42   std::ofstream ofs(xml.file_string().c_str());
43   try {
44     boost::archive::xml_oarchive oa(ofs);
45     oa << boost::serialization::make_nvp("ThreadIdx", *this);
46     boost::filesystem::last_write_time(xml.parent_path(),
47         boost::filesystem::last_write_time(xml));
48   } catch (const boost::archive::archive_exception& e) {
49     std::cerr << e.what() << " " << xml.file_string() << std::endl;
50   }
51   ofs.close();
52 }
53
54 ThreadIdx ThreadIdx::from_xml(const boost::filesystem::path& xml) {
55   ThreadIdx idx;
56
57   if (!boost::filesystem::exists(xml) ||
58       !boost::filesystem::is_regular_file(xml))
59     return idx;
60
61   std::ifstream ifs(xml.file_string().c_str());
62   try {
63     boost::archive::xml_iarchive ia(ifs);
64     ia >> boost::serialization::make_nvp("ThreadIdx", idx);
65   } catch (const boost::archive::archive_exception& e) {
66     std::cerr << e.what() << " " << xml.file_string() << std::endl;
67     return ThreadIdx();
68   }
69   ifs.close();
70
71   return idx;
72 }
73
74
75 } // namespace dialektos