Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | **/ |
| 25 | |
| 26 | #include "rib.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | namespace rib { |
| 30 | |
| 31 | Rib::Rib() |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | |
| 36 | Rib::~Rib() |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | static inline bool |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 41 | compareNameFaceProtocol(const RibEntry& entry1, const RibEntry& entry2) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 42 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 43 | return (entry1.name == entry2.name && |
| 44 | entry1.faceId == entry2.faceId && |
| 45 | entry1.origin == entry2.origin); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | |
| 49 | Rib::const_iterator |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 50 | Rib::find(const RibEntry& entry) const |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 51 | { |
| 52 | RibTable::const_iterator it = std::find_if(m_rib.begin(), m_rib.end(), |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 53 | bind(&compareNameFaceProtocol, _1, entry)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 54 | if (it == m_rib.end()) |
| 55 | { |
| 56 | return end(); |
| 57 | } |
| 58 | else |
| 59 | return it; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 64 | Rib::insert(const RibEntry& entry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 65 | { |
| 66 | RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(), |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 67 | bind(&compareNameFaceProtocol, _1, entry)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 68 | if (it == m_rib.end()) |
| 69 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 70 | m_rib.push_front(entry); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 71 | } |
| 72 | else |
| 73 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 74 | // entry exist, update other fields |
| 75 | it->flags = entry.flags; |
| 76 | it->cost = entry.cost; |
| 77 | it->expires = entry.expires; |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
| 81 | |
| 82 | void |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 83 | Rib::erase(const RibEntry& entry) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 84 | { |
| 85 | RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(), |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 86 | bind(&compareNameFaceProtocol, _1, entry)); |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 87 | if (it != m_rib.end()) |
| 88 | { |
| 89 | m_rib.erase(it); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void |
| 94 | Rib::erase(uint64_t faceId) |
| 95 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 96 | // Keep it simple for now, with Trie this will be changed. |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 97 | RibTable::iterator it = m_rib.begin(); |
| 98 | while (it != m_rib.end()) |
| 99 | { |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 100 | if (it->faceId == faceId) |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 101 | it = m_rib.erase(it); |
| 102 | else |
| 103 | ++it; |
| 104 | } |
| 105 | } |
| 106 | |
Alexander Afanasyev | 20d3144 | 2014-04-19 17:00:53 -0700 | [diff] [blame] | 107 | std::ostream& |
| 108 | operator<<(std::ostream& os, const RibEntry& entry) |
| 109 | { |
| 110 | os << "RibEntry(" |
| 111 | << "name: " << entry.name |
| 112 | << " faceid: " << entry.faceId |
| 113 | << " origin: " << entry.origin |
| 114 | << " cost: " << entry.cost |
| 115 | << " flags: " << entry.flags |
| 116 | << " expires in: " << (entry.expires - time::steady_clock::now()) |
| 117 | << ")"; |
| 118 | |
| 119 | return os; |
| 120 | } |
| 121 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 122 | } // namespace rib |
| 123 | } // namespace nfd |