Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, 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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 25 | |
| 26 | #include "limited-io.hpp" |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 27 | #include "core/extended-error-message.hpp" |
| 28 | #include "core/global-io.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 29 | #include "core/logger.hpp" |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 32 | namespace tests { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 33 | |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 34 | NFD_LOG_INIT("LimitedIo"); |
| 35 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 36 | const int LimitedIo::UNLIMITED_OPS = std::numeric_limits<int>::max(); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 37 | const time::nanoseconds LimitedIo::UNLIMITED_TIME = time::nanoseconds::min(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 38 | |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 39 | LimitedIo::LimitedIo(UnitTestTimeFixture* uttf) |
| 40 | : m_uttf(uttf) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 41 | , m_nOpsRemaining(0) |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 42 | , m_isRunning(false) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 43 | { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | LimitedIo::StopReason |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 47 | LimitedIo::run(int nOpsLimit, const time::nanoseconds& timeLimit, const time::nanoseconds& tick) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 48 | { |
| 49 | BOOST_ASSERT(!m_isRunning); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 50 | |
| 51 | if (nOpsLimit <= 0) { |
| 52 | return EXCEED_OPS; |
| 53 | } |
| 54 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 55 | m_isRunning = true; |
Junxiao Shi | 98e29f4 | 2014-03-31 10:27:26 -0700 | [diff] [blame] | 56 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 57 | m_reason = NO_WORK; |
| 58 | m_nOpsRemaining = nOpsLimit; |
Junxiao Shi | 455581d | 2014-11-17 18:38:40 -0700 | [diff] [blame] | 59 | if (timeLimit >= time::nanoseconds::zero()) { |
| 60 | m_timeout = scheduler::schedule(timeLimit, bind(&LimitedIo::afterTimeout, this)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 61 | } |
Junxiao Shi | 98e29f4 | 2014-03-31 10:27:26 -0700 | [diff] [blame] | 62 | |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 63 | try { |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 64 | if (m_uttf == nullptr) { |
| 65 | getGlobalIoService().run(); |
| 66 | } |
| 67 | else { |
| 68 | // timeLimit is enforced by afterTimeout |
| 69 | m_uttf->advanceClocks(tick, time::nanoseconds::max()); |
| 70 | } |
| 71 | } |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 72 | catch (const StopException&) { |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 73 | } |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 74 | catch (const std::exception& ex) { |
| 75 | NFD_LOG_ERROR("g_io.run() exception: " << getExtendedErrorMessage(ex)); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 76 | m_reason = EXCEPTION; |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 77 | m_lastException = std::current_exception(); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 78 | } |
Junxiao Shi | 98e29f4 | 2014-03-31 10:27:26 -0700 | [diff] [blame] | 79 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 80 | getGlobalIoService().reset(); |
| 81 | scheduler::cancel(m_timeout); |
| 82 | m_isRunning = false; |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 83 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 84 | return m_reason; |
| 85 | } |
| 86 | |
| 87 | void |
| 88 | LimitedIo::afterOp() |
| 89 | { |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 90 | if (!m_isRunning) { |
| 91 | // Do not proceed further if .afterOp() is invoked out of .run(), |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 92 | return; |
| 93 | } |
| 94 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 95 | --m_nOpsRemaining; |
Davide Pesavento | f35a5a9 | 2015-12-18 18:57:45 +0100 | [diff] [blame] | 96 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 97 | if (m_nOpsRemaining <= 0) { |
| 98 | m_reason = EXCEED_OPS; |
| 99 | getGlobalIoService().stop(); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 100 | if (m_uttf != nullptr) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 101 | BOOST_THROW_EXCEPTION(StopException()); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 102 | } |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 103 | } |
| 104 | } |
| 105 | |
| 106 | void |
| 107 | LimitedIo::afterTimeout() |
| 108 | { |
| 109 | m_reason = EXCEED_TIME; |
| 110 | getGlobalIoService().stop(); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 111 | if (m_uttf != nullptr) { |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 112 | BOOST_THROW_EXCEPTION(StopException()); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 113 | } |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 116 | } // namespace tests |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 117 | } // namespace nfd |