blob: a378950b4629896d489462153250c4fd94aa2d03 [file] [log] [blame]
Zhenkai Zhu406f37a2012-03-05 20:23:20 -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>
Zhenkai Zhu406f37a2012-03-05 20:23:20 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080022
23#include "sync-interest-table.h"
Alexander Afanasyevce001692013-07-14 11:34:41 -070024#include "sync-logging.h"
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080025using namespace std;
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080026
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070027INIT_LOGGER ("SyncInterestTable");
28
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080029namespace Sync
30{
31
Alexander Afanasyev531803b2014-02-05 15:57:35 -080032SyncInterestTable::SyncInterestTable (boost::asio::io_service& io, ndn::time::Duration lifetime)
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070033 : m_entryLifetime (lifetime)
Alexander Afanasyev531803b2014-02-05 15:57:35 -080034 , m_scheduler(io)
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080035{
Alexander Afanasyev531803b2014-02-05 15:57:35 -080036 m_scheduler.schedulePeriodicEvent (ndn::time::seconds (4), ndn::time::seconds (4),
37 ndn::bind(&SyncInterestTable::expireInterests, this));
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080038}
39
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070040SyncInterestTable::~SyncInterestTable ()
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080041{
Chaoyi Bian44fff0c2012-03-07 21:07:22 -080042}
43
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070044Interest
45SyncInterestTable::pop ()
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070046{
Alexander Afanasyev46eb5262012-05-10 16:30:35 -070047 if (m_table.size () == 0)
48 BOOST_THROW_EXCEPTION (Error::InterestTableIsEmpty ());
49
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070050 Interest ret = *m_table.begin ();
51 m_table.erase (m_table.begin ());
52
53 return ret;
Zhenkai Zhu77169cb2012-03-08 16:02:52 -080054}
55
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070056bool
Alexander Afanasyev2b6fbfb2012-05-24 10:57:14 -070057SyncInterestTable::insert (DigestConstPtr digest, const string &name, bool unknownState/*=false*/)
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070058{
Alexander Afanasyev03793b42012-05-01 13:03:07 -070059 bool existent = false;
60
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070061 InterestContainer::index<named>::type::iterator it = m_table.get<named> ().find (name);
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070062 if (it != m_table.end())
Alexander Afanasyev03793b42012-05-01 13:03:07 -070063 {
64 existent = true;
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070065 m_table.erase (it);
Alexander Afanasyev03793b42012-05-01 13:03:07 -070066 }
Alexander Afanasyev2b6fbfb2012-05-24 10:57:14 -070067 m_table.insert (Interest (digest, name, unknownState));
Alexander Afanasyev03793b42012-05-01 13:03:07 -070068
69 return existent;
Zhenkai Zhu77169cb2012-03-08 16:02:52 -080070}
71
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070072uint32_t
73SyncInterestTable::size () const
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -070074{
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070075 return m_table.size ();
76}
77
78bool
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070079SyncInterestTable::remove (const string &name)
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070080{
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070081 InterestContainer::index<named>::type::iterator item = m_table.get<named> ().find (name);
82 if (item != m_table.get<named> ().end ())
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070083 {
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070084 m_table.get<named> ().erase (name);
85 return true;
86 }
87
88 return false;
89}
90
91bool
92SyncInterestTable::remove (DigestConstPtr digest)
93{
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070094 InterestContainer::index<hashed>::type::iterator item = m_table.get<hashed> ().find (digest);
95 if (item != m_table.get<hashed> ().end ())
96 {
97 m_table.get<hashed> ().erase (digest); // erase all records associated with the digest
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -070098 return true;
99 }
100 return false;
101}
102
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700103void SyncInterestTable::expireInterests ()
104{
Alexander Afanasyev860e6fe2012-03-15 17:30:31 -0700105 uint32_t count = 0;
Alexander Afanasyev531803b2014-02-05 15:57:35 -0800106 ndn::time::Point expireTime = ndn::time::now() - m_entryLifetime;
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700107
108 while (m_table.size () > 0)
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -0700109 {
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700110 InterestContainer::index<timed>::type::iterator item = m_table.get<timed> ().begin ();
111
Alexander Afanasyev531803b2014-02-05 15:57:35 -0800112 if (item->m_time <= expireTime)
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700113 {
114 m_table.get<timed> ().erase (item);
115 count ++;
116 }
117 else
118 break;
Alexander Afanasyeva022f3d2012-03-11 18:14:48 -0700119 }
120}
121
Zhenkai Zhu77169cb2012-03-08 16:02:52 -0800122
123}