blob: 8f44fc963369d24a6fde2d2b87ef0a3eb8c1b412 [file] [log] [blame]
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -08001/* -*- 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 Afanasyevb5547e32012-03-01 21:59:38 -080026#include "sync-leaf.h"
27
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080028#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
37namespace mi = boost::multi_index;
38
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080039namespace Sync {
40
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080041struct 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
50struct hashed { };
51
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080052/**
53 * \ingroup sync
54 * @brief Container for SYNC leaves
55 */
56struct 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 Afanasyevb5547e32012-03-01 21:59:38 -080061 mi::tag<hashed>,
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080062 mi::const_mem_fun<Leaf, const NameInfo&, &Leaf::getInfo>,
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080063 NameInfoHash
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080064 >
65 >
66 >
67{
68};
69
70} // Sync
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080071
72#endif // SYNC_STATE_LEAF_CONTAINER