OSDN Git Service

Session load and save.
[fukui-no-namari/dialektos.git] / src / thread_idx_cache.hxx
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 #ifndef THREAD_IDX_CACHE_HXX
22 #define THREAD_IDX_CACHE_HXX
23
24 #include <boost/serialization/access.hpp>
25 #include <boost/serialization/nvp.hpp>
26 #include <boost/filesystem.hpp>
27 #include <boost/unordered_map.hpp>
28 #include <boost/unordered_set.hpp>
29 #include <string>
30 #include <vector>
31
32
33 namespace dialektos {
34
35 struct ThreadIdxCache {
36
37   typedef std::string ThreadID;
38
39   std::string id_;
40   std::string title_;
41   std::string idx_last_modified_;
42   int line_count_;
43
44   static std::vector<ThreadIdxCache> from_directory(
45       const boost::filesystem::path&);
46
47 private:
48
49   static std::vector<ThreadIdxCache> from_xml(const boost::filesystem::path&);
50   static void to_xml(const boost::filesystem::path&,
51       const std::vector<ThreadIdxCache>&);
52   static void idx_dir_scan(const boost::filesystem::path&,
53       boost::unordered_map<ThreadID, ThreadIdxCache>&);
54   static void merge_idx(const boost::filesystem::path&,
55       const boost::unordered_set<ThreadID>&,
56       boost::unordered_map<ThreadID, ThreadIdxCache>&);
57   static void remove_deleted_ids(
58       boost::unordered_map<ThreadID, ThreadIdxCache>&,
59       const std::vector<ThreadID>& deleted_ids);
60   static std::vector<ThreadID> get_deleted_ids(
61       const boost::unordered_map<ThreadID, ThreadIdxCache>&,
62       const boost::unordered_set<ThreadID>& exist_ids);
63   static boost::unordered_set<ThreadID> get_exist_ids(
64         const boost::filesystem::path&);
65
66   friend class boost::serialization::access;
67   template <typename ArchiveType>
68   void serialize(ArchiveType& ar, const unsigned int version) {
69     ar & boost::serialization::make_nvp("ID", id_);
70     ar & boost::serialization::make_nvp("Title", title_);
71     ar & boost::serialization::make_nvp("IdxLastModified", idx_last_modified_);
72     ar & boost::serialization::make_nvp("LineCount", line_count_);
73   }
74 };
75
76
77 } // namespace dialektos
78
79
80 #endif