blob: eae79bea11c3e5c95a8a4b7c4873a126027c2793 [file] [log] [blame]
Junxiao Shi85d17fc2015-01-21 22:18:17 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa997d292017-08-24 20:16:59 -04002/*
Davide Pesaventob7e72c32020-10-02 20:00:03 -04003 * Copyright (c) 2014-2020, Regents of the University of California,
Junxiao Shi85d17fc2015-01-21 22:18:17 -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
Eric Newberry52ae3292017-11-16 13:54:52 -070026#include "benchmark-helpers.hpp"
Junxiao Shi85d17fc2015-01-21 22:18:17 -070027#include "table/cs.hpp"
Eric Newberry52ae3292017-11-16 13:54:52 -070028
29#include <ndn-cxx/security/signature-sha256-with-rsa.hpp>
Junxiao Shi85d17fc2015-01-21 22:18:17 -070030
Davide Pesaventoa997d292017-08-24 20:16:59 -040031#include <iostream>
32
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +000033#ifdef HAVE_VALGRIND
34#include <valgrind/callgrind.h>
35#endif
36
Junxiao Shi85d17fc2015-01-21 22:18:17 -070037namespace nfd {
38namespace tests {
39
Eric Newberry52ae3292017-11-16 13:54:52 -070040class CsBenchmarkFixture
Junxiao Shi85d17fc2015-01-21 22:18:17 -070041{
42protected:
43 CsBenchmarkFixture()
44 {
45#ifdef _DEBUG
Davide Pesaventoa997d292017-08-24 20:16:59 -040046 std::cerr << "Benchmark compiled in debug mode is unreliable, please compile in release mode.\n";
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +000047#endif
Junxiao Shi85d17fc2015-01-21 22:18:17 -070048
49 cs.setLimit(CS_CAPACITY);
50 }
51
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +000052 static time::microseconds
53 timedRun(const std::function<void()>& f)
Junxiao Shi85d17fc2015-01-21 22:18:17 -070054 {
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +000055#ifdef HAVE_VALGRIND
56 CALLGRIND_START_INSTRUMENTATION;
57#endif
58
59 auto t1 = time::steady_clock::now();
Junxiao Shi85d17fc2015-01-21 22:18:17 -070060 f();
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +000061 auto t2 = time::steady_clock::now();
62
63#ifdef HAVE_VALGRIND
64 CALLGRIND_STOP_INSTRUMENTATION;
65#endif
66
Junxiao Shi85d17fc2015-01-21 22:18:17 -070067 return time::duration_cast<time::microseconds>(t2 - t1);
68 }
69
Eric Newberry52ae3292017-11-16 13:54:52 -070070 static shared_ptr<Data>
71 makeData(const Name& name)
72 {
Davide Pesaventob7e72c32020-10-02 20:00:03 -040073 auto data = std::make_shared<Data>(name);
74 data->setSignatureInfo(ndn::SignatureInfo(tlv::NullSignature));
75 data->setSignatureValue(std::make_shared<ndn::Buffer>());
Eric Newberry52ae3292017-11-16 13:54:52 -070076 data->wireEncode();
77 return data;
78 }
79
mzhang4eab72492015-02-25 11:16:09 -060080 void
81 find(const Interest& interest)
82 {
83 cs.find(interest, bind([]{}), bind([]{}));
84 }
85
Junxiao Shi85d17fc2015-01-21 22:18:17 -070086protected:
87 typedef std::function<Name(size_t)> NameGenerator;
88
89 class SimpleNameGenerator
90 {
91 public:
92 explicit
93 SimpleNameGenerator(const Name& prefix = "/cs/benchmark")
94 : m_prefix(prefix)
95 {
96 }
97
98 Name
99 operator()(size_t i) const
100 {
101 Name name(m_prefix);
102 name.appendNumber(i % 4);
103 name.appendNumber(i);
104 return name;
105 }
106
107 private:
108 Name m_prefix;
109 };
110
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000111 static std::vector<shared_ptr<Interest>>
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700112 makeInterestWorkload(size_t count, const NameGenerator& genName = SimpleNameGenerator())
113 {
114 std::vector<shared_ptr<Interest>> workload(count);
115 for (size_t i = 0; i < count; ++i) {
116 Name name = genName(i);
Davide Pesaventob7e72c32020-10-02 20:00:03 -0400117 auto interest = std::make_shared<Interest>(name);
Junxiao Shi9222f362019-04-16 15:15:23 +0000118 interest->setCanBePrefix(false);
119 workload[i] = interest;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700120 }
121 return workload;
122 }
123
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000124 static std::vector<shared_ptr<Data>>
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700125 makeDataWorkload(size_t count, const NameGenerator& genName = SimpleNameGenerator())
126 {
127 std::vector<shared_ptr<Data>> workload(count);
128 for (size_t i = 0; i < count; ++i) {
129 Name name = genName(i);
130 workload[i] = makeData(name);
131 }
132 return workload;
133 }
134
135protected:
136 Cs cs;
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000137 static constexpr size_t CS_CAPACITY = 50000;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700138};
139
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700140// find miss, then insert
Davide Pesaventoa997d292017-08-24 20:16:59 -0400141BOOST_FIXTURE_TEST_CASE(FindMissInsert, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700142{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000143 constexpr size_t N_WORKLOAD = CS_CAPACITY * 2;
144 constexpr size_t REPEAT = 4;
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700145
Junxiao Shi9222f362019-04-16 15:15:23 +0000146 auto interestWorkload = makeInterestWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700147 std::vector<shared_ptr<Data>> dataWorkload[REPEAT];
148 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700149 dataWorkload[j] = makeDataWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700150 }
151
152 time::microseconds d = timedRun([&] {
153 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700154 for (size_t i = 0; i < N_WORKLOAD; ++i) {
mzhang4eab72492015-02-25 11:16:09 -0600155 find(*interestWorkload[i]);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700156 cs.insert(*dataWorkload[j][i], false);
157 }
158 }
159 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400160
161 std::cout << "find(miss)-insert " << (N_WORKLOAD * REPEAT) << ": " << d << std::endl;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700162}
163
164// insert, then find hit
Davide Pesaventoa997d292017-08-24 20:16:59 -0400165BOOST_FIXTURE_TEST_CASE(InsertFindHit, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700166{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000167 constexpr size_t N_WORKLOAD = CS_CAPACITY * 2;
168 constexpr size_t REPEAT = 4;
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700169
170 std::vector<shared_ptr<Interest>> interestWorkload = makeInterestWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700171 std::vector<shared_ptr<Data>> dataWorkload[REPEAT];
172 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700173 dataWorkload[j] = makeDataWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700174 }
175
176 time::microseconds d = timedRun([&] {
177 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700178 for (size_t i = 0; i < N_WORKLOAD; ++i) {
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700179 cs.insert(*dataWorkload[j][i], false);
mzhang4eab72492015-02-25 11:16:09 -0600180 find(*interestWorkload[i]);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700181 }
182 }
183 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400184
185 std::cout << "insert-find(hit) " << (N_WORKLOAD * REPEAT) << ": " << d << std::endl;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700186}
187
Junxiao Shi9222f362019-04-16 15:15:23 +0000188// find(CanBePrefix) hit
189BOOST_FIXTURE_TEST_CASE(FindCanBePrefixHit, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700190{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000191 constexpr size_t N_CHILDREN = 10;
192 constexpr size_t N_INTERESTS = CS_CAPACITY / N_CHILDREN;
193 constexpr size_t REPEAT = 4;
194
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700195 std::vector<shared_ptr<Interest>> interestWorkload = makeInterestWorkload(N_INTERESTS);
196 for (auto&& interest : interestWorkload) {
Junxiao Shi9222f362019-04-16 15:15:23 +0000197 interest->setCanBePrefix(true);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700198 for (size_t j = 0; j < N_CHILDREN; ++j) {
199 Name name = interest->getName();
200 name.appendNumber(j);
Junxiao Shi9222f362019-04-16 15:15:23 +0000201 cs.insert(*makeData(name), false);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700202 }
203 }
204 BOOST_REQUIRE(cs.size() == N_INTERESTS * N_CHILDREN);
205
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700206 time::microseconds d = timedRun([&] {
207 for (size_t j = 0; j < REPEAT; ++j) {
208 for (const auto& interest : interestWorkload) {
mzhang4eab72492015-02-25 11:16:09 -0600209 find(*interest);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700210 }
211 }
212 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400213
Junxiao Shi9222f362019-04-16 15:15:23 +0000214 std::cout << "find(CanBePrefix-hit) " << (N_INTERESTS * N_CHILDREN * REPEAT) << ": " << d << std::endl;
Davide Pesaventoa997d292017-08-24 20:16:59 -0400215}
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700216
217} // namespace tests
218} // namespace nfd