Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 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. |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 10 | * |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #include "cs-entry.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | namespace cs { |
| 30 | |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 31 | Entry::Entry(shared_ptr<const Data> data, bool isUnsolicited) |
| 32 | : m_data(std::move(data)) |
| 33 | , m_isUnsolicited(isUnsolicited) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 34 | { |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 35 | updateFreshUntil(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | bool |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 39 | Entry::isFresh() const |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 40 | { |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 41 | return m_freshUntil >= time::steady_clock::now(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | void |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 45 | Entry::updateFreshUntil() |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 46 | { |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 47 | m_freshUntil = time::steady_clock::now() + m_data->getFreshnessPeriod(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 48 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 49 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 50 | bool |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 51 | Entry::canSatisfy(const Interest& interest) const |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 52 | { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 53 | if (!interest.matchesData(*m_data)) { |
| 54 | return false; |
| 55 | } |
| 56 | |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 57 | if (interest.getMustBeFresh() && !this->isFresh()) { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 58 | return false; |
| 59 | } |
| 60 | |
| 61 | return true; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 62 | } |
| 63 | |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 64 | static int |
| 65 | compareQueryWithData(const Name& queryName, const Data& data) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 66 | { |
Junxiao Shi | 5e4a02f | 2019-07-15 11:59:18 +0000 | [diff] [blame] | 67 | bool queryIsFullName = !queryName.empty() && queryName[-1].isImplicitSha256Digest(); |
| 68 | |
| 69 | int cmp = queryIsFullName ? |
| 70 | queryName.compare(0, queryName.size() - 1, data.getName()) : |
| 71 | queryName.compare(data.getName()); |
| 72 | |
| 73 | if (cmp != 0) { // Name without digest differs |
| 74 | return cmp; |
| 75 | } |
| 76 | |
| 77 | if (queryIsFullName) { // Name without digest equals, compare digest |
| 78 | return queryName[-1].compare(data.getFullName()[-1]); |
| 79 | } |
| 80 | else { // queryName is a proper prefix of Data fullName |
| 81 | return -1; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static int |
| 86 | compareDataWithData(const Data& lhs, const Data& rhs) |
| 87 | { |
| 88 | int cmp = lhs.getName().compare(rhs.getName()); |
| 89 | if (cmp != 0) { |
| 90 | return cmp; |
| 91 | } |
| 92 | |
| 93 | return lhs.getFullName()[-1].compare(rhs.getFullName()[-1]); |
| 94 | } |
| 95 | |
| 96 | bool |
| 97 | operator<(const Entry& entry, const Name& queryName) |
| 98 | { |
| 99 | return compareQueryWithData(queryName, entry.getData()) > 0; |
| 100 | } |
| 101 | |
| 102 | bool |
| 103 | operator<(const Name& queryName, const Entry& entry) |
| 104 | { |
| 105 | return compareQueryWithData(queryName, entry.getData()) < 0; |
| 106 | } |
| 107 | |
| 108 | bool |
| 109 | operator<(const Entry& lhs, const Entry& rhs) |
| 110 | { |
| 111 | return compareDataWithData(lhs.getData(), rhs.getData()) < 0; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | } // namespace cs |
| 115 | } // namespace nfd |