Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 1 | /* -*- 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 | #include "sync-full-state.h" |
| 24 | |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 25 | #ifndef STANDALONE |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 26 | #include "ns3/simulator.h" |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 27 | #endif // STANDALONE |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 28 | |
| 29 | #include <boost/make_shared.hpp> |
| 30 | #include <boost/lambda/lambda.hpp> |
| 31 | #include <boost/lambda/bind.hpp> |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 32 | #include <boost/foreach.hpp> |
| 33 | #include <boost/assert.hpp> |
| 34 | |
| 35 | #include "sync-full-leaf.h" |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 36 | |
| 37 | using namespace boost; |
| 38 | namespace ll = boost::lambda; |
| 39 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 40 | namespace Sync { |
| 41 | |
| 42 | |
| 43 | FullState::FullState () |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 44 | // m_lastUpdated is initialized to "not_a_date_time" in STANDALONE mode and to "0" time in NS-3 mode |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 45 | { |
| 46 | } |
| 47 | |
| 48 | FullState::~FullState () |
| 49 | { |
| 50 | } |
| 51 | |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 52 | TimeDurationType |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 53 | FullState::getTimeFromLastUpdate () const |
| 54 | { |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 55 | #ifndef STANDALONE |
Alexander Afanasyev | 017784c | 2012-03-02 11:44:13 -0800 | [diff] [blame] | 56 | return ns3::Simulator::Now () - m_lastUpdated; |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 57 | #else |
| 58 | return boost::posix_time::second_clock::universal_time () - m_lastUpdated; |
| 59 | #endif // STANDALONE |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 60 | } |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 61 | |
| 62 | DigestConstPtr |
| 63 | FullState::getDigest () |
| 64 | { |
| 65 | if (m_digest == 0) |
| 66 | { |
Alexander Afanasyev | a4ce9cf | 2012-03-06 14:29:58 -0800 | [diff] [blame] | 67 | // std::cout << "getDigest: "; |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 68 | m_digest = make_shared<Digest> (); |
Alexander Afanasyev | a562532 | 2012-03-06 00:03:41 -0800 | [diff] [blame] | 69 | BOOST_FOREACH (LeafConstPtr leaf, m_leaves.get<ordered> ()) |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 70 | { |
| 71 | FullLeafConstPtr fullLeaf = dynamic_pointer_cast<const FullLeaf> (leaf); |
| 72 | BOOST_ASSERT (fullLeaf != 0); |
| 73 | *m_digest << fullLeaf->getDigest (); |
Alexander Afanasyev | a4ce9cf | 2012-03-06 14:29:58 -0800 | [diff] [blame] | 74 | // std::cout << *leaf << "[" << fullLeaf->getDigest () << "] "; |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 75 | } |
Alexander Afanasyev | a4ce9cf | 2012-03-06 14:29:58 -0800 | [diff] [blame] | 76 | // std::cout << "\n"; |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 77 | } |
Alexander Afanasyev | a4ce9cf | 2012-03-06 14:29:58 -0800 | [diff] [blame] | 78 | m_digest->finalize (); |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 79 | |
| 80 | return m_digest; |
| 81 | } |
| 82 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 83 | // from State |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 84 | bool |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 85 | FullState::update (NameInfoConstPtr info, const SeqNo &seq) |
| 86 | { |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 87 | #ifndef STANDALONE |
Alexander Afanasyev | 017784c | 2012-03-02 11:44:13 -0800 | [diff] [blame] | 88 | m_lastUpdated = ns3::Simulator::Now (); |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 89 | #else |
| 90 | m_lastUpdated = boost::posix_time::second_clock::universal_time (); |
| 91 | #endif // STANDALONE |
| 92 | |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 93 | m_digest.reset (); |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 94 | |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 95 | LeafContainer::iterator item = m_leaves.find (info); |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 96 | if (item == m_leaves.end ()) |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 97 | { |
Alexander Afanasyev | 58c77b0 | 2012-03-05 21:52:25 -0800 | [diff] [blame] | 98 | m_leaves.insert (make_shared<FullLeaf> (info, cref (seq))); |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 99 | } |
| 100 | else |
| 101 | { |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 102 | if ((*item)->getSeq () == seq || seq < (*item)->getSeq ()) |
| 103 | return false; |
| 104 | |
| 105 | m_leaves.modify (item, |
| 106 | ll::bind (&Leaf::setSeq, *ll::_1, seq)); |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 107 | } |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 108 | return true; |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 109 | } |
| 110 | |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 111 | bool |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 112 | FullState::remove (NameInfoConstPtr info) |
| 113 | { |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 114 | #ifndef STANDALONE |
Alexander Afanasyev | 017784c | 2012-03-02 11:44:13 -0800 | [diff] [blame] | 115 | m_lastUpdated = ns3::Simulator::Now (); |
Alexander Afanasyev | 146a51b | 2012-03-05 10:47:35 -0800 | [diff] [blame] | 116 | #else |
| 117 | m_lastUpdated = boost::posix_time::second_clock::universal_time (); |
| 118 | #endif // STANDALONE |
| 119 | |
Alexander Afanasyev | d94542d | 2012-03-05 08:41:46 -0800 | [diff] [blame] | 120 | m_digest.reset (); |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 121 | |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame^] | 122 | LeafContainer::iterator item = m_leaves.find (info); |
| 123 | if (item != m_leaves.end ()) |
| 124 | { |
| 125 | m_leaves.erase (info); |
| 126 | return true; |
| 127 | } |
| 128 | else |
| 129 | return false; |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 130 | } |
| 131 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 132 | } // Sync |