blob: 255cfffe4be8bcb2a13a36788c4aa2cc8c65fe3f [file] [log] [blame]
Junxiao Shifc206962015-01-16 11:12:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Eric Newberryf4056d02017-05-26 17:31:53 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shifc206962015-01-16 11:12:22 -07004 * 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 "cs-entry-impl.hpp"
27
28namespace nfd {
29namespace cs {
30
31EntryImpl::EntryImpl(const Name& name)
32 : m_queryName(name)
33{
34 BOOST_ASSERT(this->isQuery());
35}
36
37EntryImpl::EntryImpl(shared_ptr<const Data> data, bool isUnsolicited)
Junxiao Shifc206962015-01-16 11:12:22 -070038{
39 this->setData(data, isUnsolicited);
40 BOOST_ASSERT(!this->isQuery());
41}
42
43bool
44EntryImpl::isQuery() const
45{
46 return !this->hasData();
47}
48
Junxiao Shifc206962015-01-16 11:12:22 -070049void
50EntryImpl::unsetUnsolicited()
51{
52 BOOST_ASSERT(!this->isQuery());
53 this->setData(this->getData(), false);
54}
55
Junxiao Shi5af9bd32015-01-28 19:57:31 -070056int
57compareQueryWithData(const Name& queryName, const Data& data)
58{
59 bool queryIsFullName = !queryName.empty() && queryName[-1].isImplicitSha256Digest();
60
61 int cmp = queryIsFullName ?
62 queryName.compare(0, queryName.size() - 1, data.getName()) :
63 queryName.compare(data.getName());
64
65 if (cmp != 0) { // Name without digest differs
66 return cmp;
67 }
68
69 if (queryIsFullName) { // Name without digest equals, compare digest
70 return queryName[-1].compare(data.getFullName()[-1]);
71 }
72 else { // queryName is a proper prefix of Data fullName
73 return -1;
74 }
75}
76
77int
78compareDataWithData(const Data& lhs, const Data& rhs)
79{
80 int cmp = lhs.getName().compare(rhs.getName());
81 if (cmp != 0) {
82 return cmp;
83 }
84
85 return lhs.getFullName()[-1].compare(rhs.getFullName()[-1]);
86}
87
Junxiao Shifc206962015-01-16 11:12:22 -070088bool
89EntryImpl::operator<(const EntryImpl& other) const
90{
91 if (this->isQuery()) {
92 if (other.isQuery()) {
93 return m_queryName < other.m_queryName;
94 }
95 else {
Junxiao Shi5af9bd32015-01-28 19:57:31 -070096 return compareQueryWithData(m_queryName, other.getData()) < 0;
Junxiao Shifc206962015-01-16 11:12:22 -070097 }
98 }
99 else {
100 if (other.isQuery()) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700101 return compareQueryWithData(other.m_queryName, this->getData()) > 0;
Junxiao Shifc206962015-01-16 11:12:22 -0700102 }
103 else {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700104 return compareDataWithData(this->getData(), other.getData()) < 0;
Junxiao Shifc206962015-01-16 11:12:22 -0700105 }
106 }
107}
108
109} // namespace cs
110} // namespace nfd