blob: 8ad5ec6c7ece43ee69bf4fd5bd53dc47bc09fda4 [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
41compareNameFaceProtocol(const PrefixRegOptions& opt1, const PrefixRegOptions& opt2)
42{
43 return (opt1.getName() == opt2.getName() &&
44 opt1.getFaceId() == opt2.getFaceId() &&
45 opt1.getProtocol() == opt2.getProtocol());
46}
47
48
49Rib::const_iterator
50Rib::find(const PrefixRegOptions& options) const
51{
52 RibTable::const_iterator it = std::find_if(m_rib.begin(), m_rib.end(),
53 bind(&compareNameFaceProtocol, _1, options));
54 if (it == m_rib.end())
55 {
56 return end();
57 }
58 else
59 return it;
60}
61
62
63void
64Rib::insert(const PrefixRegOptions& options)
65{
66 RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(),
67 bind(&compareNameFaceProtocol, _1, options));
68 if (it == m_rib.end())
69 {
70 m_rib.push_front(options);
71 }
72 else
73 {
74 //entry exist, update other fields
75 it->setFlags(options.getFlags());
76 it->setCost(options.getCost());
77 it->setExpirationPeriod(options.getExpirationPeriod());
78 it->setProtocol(options.getProtocol());
79 }
80}
81
82
83void
84Rib::erase(const PrefixRegOptions& options)
85{
86 RibTable::iterator it = std::find_if(m_rib.begin(), m_rib.end(),
87 bind(&compareNameFaceProtocol, _1, options));
88 if (it != m_rib.end())
89 {
90 m_rib.erase(it);
91 }
92}
93
94void
95Rib::erase(uint64_t faceId)
96{
97 //Keep it simple for now, with Trie this will be changed.
98 RibTable::iterator it = m_rib.begin();
99 while (it != m_rib.end())
100 {
101 if (it->getFaceId() == faceId)
102 it = m_rib.erase(it);
103 else
104 ++it;
105 }
106}
107
108} // namespace rib
109} // namespace nfd