blob: 9ae98b06d338b3302ade6624a940ac070617accc [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"
Alexander Afanasyeva5625322012-03-06 00:03:41 -080027#include "sync-name-info.h"
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080028
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080029#include <boost/multi_index_container.hpp>
30// #include <boost/multi_index/tag.hpp>
Alexander Afanasyeva5625322012-03-06 00:03:41 -080031#include <boost/multi_index/ordered_index.hpp>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080032// #include <boost/multi_index/composite_key.hpp>
33#include <boost/multi_index/hashed_index.hpp>
34// #include <boost/multi_index/random_access_index.hpp>
35// #include <boost/multi_index/member.hpp>
36#include <boost/multi_index/mem_fun.hpp>
37
38namespace mi = boost::multi_index;
39
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080040namespace Sync {
41
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080042struct NameInfoHash : public std::unary_function<NameInfo, std::size_t>
43{
44 std::size_t
45 operator() (const NameInfo &prefix) const
46 {
47 return prefix.getHashId ();
48 }
49};
50
Alexander Afanasyevc1030192012-03-08 22:21:28 -080051/// @cond include_hidden
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080052struct hashed { };
Alexander Afanasyeva5625322012-03-06 00:03:41 -080053struct ordered { };
Alexander Afanasyevc1030192012-03-08 22:21:28 -080054/// @endcond
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080055
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080056/**
57 * \ingroup sync
58 * @brief Container for SYNC leaves
59 */
60struct LeafContainer : public mi::multi_index_container<
Alexander Afanasyeva5858032012-03-09 15:55:10 -080061 LeafPtr,
62 mi::indexed_by<
63 // For fast access to elements using NameInfo
64 mi::hashed_unique<
65 mi::tag<hashed>,
66 mi::const_mem_fun<Leaf, const NameInfo&, &Leaf::getInfo>,
67 NameInfoHash
68 >,
69 mi::ordered_unique<
70 mi::tag<ordered>,
71 mi::const_mem_fun<Leaf, const NameInfo&, &Leaf::getInfo>
72 >
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080073 >
Alexander Afanasyeva5858032012-03-09 15:55:10 -080074 >
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080075{
76};
77
78} // Sync
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080079
80#endif // SYNC_STATE_LEAF_CONTAINER