Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [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: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #include "stats-tree.h" |
| 22 | #include "ns3/ccnx-face.h" |
| 23 | #include "ns3/log.h" |
| 24 | |
| 25 | using namespace ns3; |
| 26 | |
| 27 | NS_LOG_COMPONENT_DEFINE ("StatsTree"); |
| 28 | |
| 29 | namespace ndnSIM |
| 30 | { |
| 31 | |
| 32 | StatsTree::StatsTree () |
| 33 | : m_tree ("") |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | void |
| 38 | StatsTree::Step () |
| 39 | { |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 40 | NS_LOG_FUNCTION (this); |
| 41 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 42 | // walking the tree, aggregating and stepping on every node, starting the leaves |
| 43 | // for (trie_type:: |
| 44 | |
| 45 | WalkLeftRightRoot (&m_tree); |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 46 | m_tree.payload ().Step (); |
| 47 | NS_LOG_DEBUG ("[" << m_tree.key () << "] " << m_tree.payload ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | void |
| 51 | StatsTree::NewPitEntry (const ns3::CcnxNameComponents &key) |
| 52 | { |
| 53 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 54 | |
| 55 | item.first->payload ().NewPitEntry (); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | void |
| 59 | StatsTree::Incoming (const CcnxNameComponents &key, Ptr<CcnxFace> face) |
| 60 | { |
| 61 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 62 | |
| 63 | item.first->payload ().AddIncoming (face); |
| 64 | } |
| 65 | |
| 66 | void |
| 67 | StatsTree::Outgoing (const CcnxNameComponents &key, Ptr<CcnxFace> face) |
| 68 | { |
| 69 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 70 | |
| 71 | item.first->payload ().AddOutgoing (face); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | StatsTree::Satisfy (const CcnxNameComponents &key) |
| 76 | { |
| 77 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 78 | |
| 79 | item.first->payload ().Satisfy (); |
| 80 | } |
| 81 | |
| 82 | void |
| 83 | StatsTree::Timeout (const CcnxNameComponents &key) |
| 84 | { |
| 85 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 86 | |
| 87 | item.first->payload ().Timeout (); |
| 88 | } |
| 89 | |
Alexander Afanasyev | 1c0248b | 2012-07-24 15:59:50 -0700 | [diff] [blame] | 90 | void |
| 91 | StatsTree::Rx (const ns3::CcnxNameComponents &key, ns3::Ptr<ns3::CcnxFace> face, uint32_t amount) |
| 92 | { |
| 93 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
| 94 | |
| 95 | item.first->payload ().Rx (face, amount); |
| 96 | } |
| 97 | |
| 98 | void |
| 99 | StatsTree::Tx (const ns3::CcnxNameComponents &key, ns3::Ptr<ns3::CcnxFace> face, uint32_t amount) |
| 100 | { |
| 101 | std::pair<tree_type::iterator, bool> item = m_tree.insert (key, LoadStatsNode ()); |
| 102 | |
| 103 | item.first->payload ().Tx (face, amount); |
| 104 | } |
| 105 | |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 106 | // const LoadStatsNode & |
| 107 | // StatsTree::Get (const ns3::CcnxNameComponents &key) const |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 108 | const LoadStatsNode & |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 109 | StatsTree::operator [] (const ns3::CcnxNameComponents &key) const |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 110 | { |
| 111 | tree_type::iterator foundItem, lastItem; |
| 112 | bool reachLast; |
| 113 | boost::tie (foundItem, reachLast, lastItem) = const_cast<tree_type&> (m_tree).find (key); |
| 114 | |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 115 | return lastItem->payload (); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | const LoadStatsNode& |
| 119 | StatsTree::WalkLeftRightRoot (tree_type *node) |
| 120 | { |
| 121 | tree_type::point_iterator item (*node), end; |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 122 | |
| 123 | while (item != end) |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 124 | { |
| 125 | node->payload () += WalkLeftRightRoot (&*item); |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 126 | item->payload ().Step (); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 127 | |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 128 | NS_LOG_DEBUG ("[" << item->key () << "] " << item->payload ()); |
| 129 | // item->prune (); // will do only if necessary |
| 130 | |
| 131 | tree_type::point_iterator prune_iterator = item; |
| 132 | item++; |
| 133 | |
| 134 | prune_iterator->prune (); |
| 135 | } |
| 136 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 137 | return node->payload (); |
| 138 | } |
| 139 | |
Alexander Afanasyev | 33364b6 | 2012-07-26 17:53:56 -0700 | [diff] [blame^] | 140 | void |
| 141 | StatsTree::RemoveFace (ns3::Ptr<ns3::CcnxFace> face) |
| 142 | { |
| 143 | tree_type::recursive_iterator item (&m_tree), end; |
| 144 | for (; item != end; item ++) |
| 145 | { |
| 146 | item->payload ().RemoveFace (face); |
| 147 | } |
| 148 | } |
| 149 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 150 | std::ostream & |
| 151 | operator << (std::ostream &os, const StatsTree &tree) |
| 152 | { |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 153 | // os << "[" << tree.m_tree.key () << "]: " << tree.m_tree.payload (); |
| 154 | os << tree.m_tree; |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 155 | return os; |
| 156 | } |
| 157 | |
| 158 | |
| 159 | } |