Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| 19 | * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn> |
| 20 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 21 | */ |
| 22 | |
| 23 | #ifndef SYNC_STATE_LEAF_CONTAINER |
| 24 | #define SYNC_STATE_LEAF_CONTAINER |
| 25 | |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 26 | #include "sync-leaf.h" |
| 27 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 28 | #include <boost/multi_index_container.hpp> |
| 29 | // #include <boost/multi_index/tag.hpp> |
| 30 | // #include <boost/multi_index/ordered_index.hpp> |
| 31 | // #include <boost/multi_index/composite_key.hpp> |
| 32 | #include <boost/multi_index/hashed_index.hpp> |
| 33 | // #include <boost/multi_index/random_access_index.hpp> |
| 34 | // #include <boost/multi_index/member.hpp> |
| 35 | #include <boost/multi_index/mem_fun.hpp> |
| 36 | |
| 37 | namespace mi = boost::multi_index; |
| 38 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 39 | namespace Sync { |
| 40 | |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 41 | struct NameInfoHash : public std::unary_function<NameInfo, std::size_t> |
| 42 | { |
| 43 | std::size_t |
| 44 | operator() (const NameInfo &prefix) const |
| 45 | { |
| 46 | return prefix.getHashId (); |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | struct hashed { }; |
| 51 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 52 | /** |
| 53 | * \ingroup sync |
| 54 | * @brief Container for SYNC leaves |
| 55 | */ |
| 56 | struct LeafContainer : public mi::multi_index_container< |
| 57 | LeafPtr, |
| 58 | mi::indexed_by< |
| 59 | // For fast access to elements using NameInfo |
| 60 | mi::hashed_unique< |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 61 | mi::tag<hashed>, |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 62 | mi::const_mem_fun<Leaf, const NameInfo&, &Leaf::getInfo>, |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 63 | NameInfoHash |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 64 | > |
| 65 | > |
| 66 | > |
| 67 | { |
| 68 | }; |
| 69 | |
| 70 | } // Sync |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 71 | |
| 72 | #endif // SYNC_STATE_LEAF_CONTAINER |