blob: c674fc1e4298b2d8500e08cea9c75a6199971baf [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
39namespace ns3 {
40namespace 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
51struct hashed { };
52
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080053/**
54 * \ingroup sync
55 * @brief Container for SYNC leaves
56 */
57struct LeafContainer : public mi::multi_index_container<
58 LeafPtr,
59 mi::indexed_by<
60 // For fast access to elements using NameInfo
61 mi::hashed_unique<
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080062 mi::tag<hashed>,
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080063 mi::const_mem_fun<Leaf, const NameInfo&, &Leaf::getInfo>,
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080064 NameInfoHash
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080065 >
66 >
67 >
68{
69};
70
71} // Sync
72} // ns3
73
74#endif // SYNC_STATE_LEAF_CONTAINER