blob: 4dc41752ce86d8fb9be9794aef7151b6543bb34e [file] [log] [blame]
Alexander Afanasyev3ecec502014-04-16 13:42:44 -07001/* -*- 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
28namespace nfd {
29namespace rib {
30
31Rib::Rib()
32{
33}
34
35
36Rib::~Rib()
37{
38}
39
40static inline bool
Alexander Afanasyev20d31442014-04-19 17:00:53 -070041compareNameFaceProtocol(const RibEntry& entry1, const RibEntry& entry2)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070042{
Alexander Afanasyev20d31442014-04-19 17:00:53 -070043 return (entry1.name == entry2.name &&
44 entry1.faceId == entry2.faceId &&
45 entry1.origin == entry2.origin);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070046}
47
48
49Rib::const_iterator
Alexander Afanasyev20d31442014-04-19 17:00:53 -070050Rib::find(const RibEntry& entry) const
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070051{
52 RibTable::const_iterator it = std::find_if(m_rib.begin(), m_rib.end(),
Alexander Afanasyev20d31442014-04-19 17:00:53 -070053 bind(&compareNameFaceProtocol, _1, entry));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070054 if (it == m_rib.end())
55 {
56 return end();
57 }
58 else
59 return it;
60}
61
62
63void
Alexander Afanasyev20d31442014-04-19 17:00:53 -070064Rib::insert(const RibEntry& entry)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070065{
66 RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(),
Alexander Afanasyev20d31442014-04-19 17:00:53 -070067 bind(&compareNameFaceProtocol, _1, entry));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070068 if (it == m_rib.end())
69 {
Alexander Afanasyev20d31442014-04-19 17:00:53 -070070 m_rib.push_front(entry);
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070071 }
72 else
73 {
Alexander Afanasyev20d31442014-04-19 17:00:53 -070074 // entry exist, update other fields
75 it->flags = entry.flags;
76 it->cost = entry.cost;
77 it->expires = entry.expires;
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070078 }
79}
80
81
82void
Alexander Afanasyev20d31442014-04-19 17:00:53 -070083Rib::erase(const RibEntry& entry)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070084{
85 RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(),
Alexander Afanasyev20d31442014-04-19 17:00:53 -070086 bind(&compareNameFaceProtocol, _1, entry));
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070087 if (it != m_rib.end())
88 {
89 m_rib.erase(it);
90 }
91}
92
93void
94Rib::erase(uint64_t faceId)
95{
Alexander Afanasyev20d31442014-04-19 17:00:53 -070096 // Keep it simple for now, with Trie this will be changed.
Alexander Afanasyev3ecec502014-04-16 13:42:44 -070097 RibTable::iterator it = m_rib.begin();
98 while (it != m_rib.end())
99 {
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700100 if (it->faceId == faceId)
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700101 it = m_rib.erase(it);
102 else
103 ++it;
104 }
105}
106
Alexander Afanasyev20d31442014-04-19 17:00:53 -0700107std::ostream&
108operator<<(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 Afanasyev3ecec502014-04-16 13:42:44 -0700122} // namespace rib
123} // namespace nfd