blob: 252e6fd0a2b6881c9ec6539464ab72314f3d7cad [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/*
Junxiao Shi9222f362019-04-16 15:15:23 +00003 * Copyright (c) 2014-2019, 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 {
73 auto data = make_shared<Data>(name);
74 ndn::SignatureSha256WithRsa fakeSignature;
75 fakeSignature.setValue(ndn::encoding::makeEmptyBlock(tlv::SignatureValue));
76 data->setSignature(fakeSignature);
77 data->wireEncode();
78 return data;
79 }
80
mzhang4eab72492015-02-25 11:16:09 -060081 void
82 find(const Interest& interest)
83 {
84 cs.find(interest, bind([]{}), bind([]{}));
85 }
86
Junxiao Shi85d17fc2015-01-21 22:18:17 -070087protected:
88 typedef std::function<Name(size_t)> NameGenerator;
89
90 class SimpleNameGenerator
91 {
92 public:
93 explicit
94 SimpleNameGenerator(const Name& prefix = "/cs/benchmark")
95 : m_prefix(prefix)
96 {
97 }
98
99 Name
100 operator()(size_t i) const
101 {
102 Name name(m_prefix);
103 name.appendNumber(i % 4);
104 name.appendNumber(i);
105 return name;
106 }
107
108 private:
109 Name m_prefix;
110 };
111
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000112 static std::vector<shared_ptr<Interest>>
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700113 makeInterestWorkload(size_t count, const NameGenerator& genName = SimpleNameGenerator())
114 {
115 std::vector<shared_ptr<Interest>> workload(count);
116 for (size_t i = 0; i < count; ++i) {
117 Name name = genName(i);
Junxiao Shi9222f362019-04-16 15:15:23 +0000118 auto interest = make_shared<Interest>(name);
119 interest->setCanBePrefix(false);
120 workload[i] = interest;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700121 }
122 return workload;
123 }
124
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000125 static std::vector<shared_ptr<Data>>
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700126 makeDataWorkload(size_t count, const NameGenerator& genName = SimpleNameGenerator())
127 {
128 std::vector<shared_ptr<Data>> workload(count);
129 for (size_t i = 0; i < count; ++i) {
130 Name name = genName(i);
131 workload[i] = makeData(name);
132 }
133 return workload;
134 }
135
136protected:
137 Cs cs;
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000138 static constexpr size_t CS_CAPACITY = 50000;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700139};
140
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700141// find miss, then insert
Davide Pesaventoa997d292017-08-24 20:16:59 -0400142BOOST_FIXTURE_TEST_CASE(FindMissInsert, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700143{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000144 constexpr size_t N_WORKLOAD = CS_CAPACITY * 2;
145 constexpr size_t REPEAT = 4;
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700146
Junxiao Shi9222f362019-04-16 15:15:23 +0000147 auto interestWorkload = makeInterestWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700148 std::vector<shared_ptr<Data>> dataWorkload[REPEAT];
149 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700150 dataWorkload[j] = makeDataWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700151 }
152
153 time::microseconds d = timedRun([&] {
154 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700155 for (size_t i = 0; i < N_WORKLOAD; ++i) {
mzhang4eab72492015-02-25 11:16:09 -0600156 find(*interestWorkload[i]);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700157 cs.insert(*dataWorkload[j][i], false);
158 }
159 }
160 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400161
162 std::cout << "find(miss)-insert " << (N_WORKLOAD * REPEAT) << ": " << d << std::endl;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700163}
164
165// insert, then find hit
Davide Pesaventoa997d292017-08-24 20:16:59 -0400166BOOST_FIXTURE_TEST_CASE(InsertFindHit, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700167{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000168 constexpr size_t N_WORKLOAD = CS_CAPACITY * 2;
169 constexpr size_t REPEAT = 4;
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700170
171 std::vector<shared_ptr<Interest>> interestWorkload = makeInterestWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700172 std::vector<shared_ptr<Data>> dataWorkload[REPEAT];
173 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700174 dataWorkload[j] = makeDataWorkload(N_WORKLOAD);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700175 }
176
177 time::microseconds d = timedRun([&] {
178 for (size_t j = 0; j < REPEAT; ++j) {
Junxiao Shi5af9bd32015-01-28 19:57:31 -0700179 for (size_t i = 0; i < N_WORKLOAD; ++i) {
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700180 cs.insert(*dataWorkload[j][i], false);
mzhang4eab72492015-02-25 11:16:09 -0600181 find(*interestWorkload[i]);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700182 }
183 }
184 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400185
186 std::cout << "insert-find(hit) " << (N_WORKLOAD * REPEAT) << ": " << d << std::endl;
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700187}
188
Junxiao Shi9222f362019-04-16 15:15:23 +0000189// find(CanBePrefix) hit
190BOOST_FIXTURE_TEST_CASE(FindCanBePrefixHit, CsBenchmarkFixture)
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700191{
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000192 constexpr size_t N_CHILDREN = 10;
193 constexpr size_t N_INTERESTS = CS_CAPACITY / N_CHILDREN;
194 constexpr size_t REPEAT = 4;
195
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700196 std::vector<shared_ptr<Interest>> interestWorkload = makeInterestWorkload(N_INTERESTS);
197 for (auto&& interest : interestWorkload) {
Junxiao Shi9222f362019-04-16 15:15:23 +0000198 interest->setCanBePrefix(true);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700199 for (size_t j = 0; j < N_CHILDREN; ++j) {
200 Name name = interest->getName();
201 name.appendNumber(j);
Junxiao Shi9222f362019-04-16 15:15:23 +0000202 cs.insert(*makeData(name), false);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700203 }
204 }
205 BOOST_REQUIRE(cs.size() == N_INTERESTS * N_CHILDREN);
206
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700207 time::microseconds d = timedRun([&] {
208 for (size_t j = 0; j < REPEAT; ++j) {
209 for (const auto& interest : interestWorkload) {
mzhang4eab72492015-02-25 11:16:09 -0600210 find(*interest);
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700211 }
212 }
213 });
Davide Pesaventoa997d292017-08-24 20:16:59 -0400214
Junxiao Shi9222f362019-04-16 15:15:23 +0000215 std::cout << "find(CanBePrefix-hit) " << (N_INTERESTS * N_CHILDREN * REPEAT) << ": " << d << std::endl;
Davide Pesaventoa997d292017-08-24 20:16:59 -0400216}
Junxiao Shi85d17fc2015-01-21 22:18:17 -0700217
218} // namespace tests
219} // namespace nfd