blob: 48819aa186fb87d21a0cfc1c701834d37c037142 [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>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080020 * 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
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070045 operator() (NameInfoConstPtr prefix) const
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080046 {
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070047 return prefix->getHashId ();
48 }
49};
50
51struct NameInfoEqual : public std::unary_function<NameInfo, std::size_t>
52{
53 bool
54 operator() (NameInfoConstPtr prefix1, NameInfoConstPtr prefix2) const
55 {
56 return *prefix1 == *prefix2;
57 }
58};
59
60struct NameInfoCompare : public std::unary_function<NameInfo, std::size_t>
61{
62 bool
63 operator() (NameInfoConstPtr prefix1, NameInfoConstPtr prefix2) const
64 {
65 return *prefix1 < *prefix2;
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080066 }
67};
68
Alexander Afanasyevc1030192012-03-08 22:21:28 -080069/// @cond include_hidden
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080070struct hashed { };
Alexander Afanasyeva5625322012-03-06 00:03:41 -080071struct ordered { };
Alexander Afanasyevc1030192012-03-08 22:21:28 -080072/// @endcond
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080073
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080074/**
75 * \ingroup sync
76 * @brief Container for SYNC leaves
77 */
78struct LeafContainer : public mi::multi_index_container<
Alexander Afanasyeva5858032012-03-09 15:55:10 -080079 LeafPtr,
80 mi::indexed_by<
81 // For fast access to elements using NameInfo
82 mi::hashed_unique<
83 mi::tag<hashed>,
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070084 mi::const_mem_fun<Leaf, NameInfoConstPtr, &Leaf::getInfo>,
85 NameInfoHash,
86 NameInfoEqual
Alexander Afanasyeva5858032012-03-09 15:55:10 -080087 >,
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070088
89 mi::ordered_unique<
90 mi::tag<ordered>,
91 mi::const_mem_fun<Leaf, NameInfoConstPtr, &Leaf::getInfo>,
92 NameInfoCompare
93 >
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080094 >
Alexander Afanasyeva5858032012-03-09 15:55:10 -080095 >
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080096{
97};
98
99} // Sync
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -0800100
101#endif // SYNC_STATE_LEAF_CONTAINER