blob: b22be893f5cd22a10b89fe79e879e244786d3b8e [file] [log] [blame]
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 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 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070024
25#include "limited-io.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060026#include "core/logger.hpp"
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070027
28namespace nfd {
Junxiao Shid9ee45c2014-02-27 15:38:11 -070029namespace tests {
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070030
Junxiao Shi7e2413b2014-03-02 11:15:09 -070031NFD_LOG_INIT("LimitedIo");
32
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070033const int LimitedIo::UNLIMITED_OPS = std::numeric_limits<int>::max();
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070034const time::nanoseconds LimitedIo::UNLIMITED_TIME = time::nanoseconds::min();
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070035
36LimitedIo::LimitedIo()
37 : m_isRunning(false)
38 , m_nOpsRemaining(0)
39{
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070040}
41
42LimitedIo::StopReason
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070043LimitedIo::run(int nOpsLimit, const time::nanoseconds& nTimeLimit)
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070044{
45 BOOST_ASSERT(!m_isRunning);
46 m_isRunning = true;
Junxiao Shi98e29f42014-03-31 10:27:26 -070047
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070048 m_reason = NO_WORK;
49 m_nOpsRemaining = nOpsLimit;
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070050 if (nTimeLimit >= time::nanoseconds::zero()) {
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070051 m_timeout = scheduler::schedule(nTimeLimit, bind(&LimitedIo::afterTimeout, this));
52 }
Junxiao Shi98e29f42014-03-31 10:27:26 -070053
Junxiao Shi7e2413b2014-03-02 11:15:09 -070054 try {
55 getGlobalIoService().run();
56 }
57 catch (std::exception& ex) {
58 m_reason = EXCEPTION;
59 NFD_LOG_ERROR("g_io.run() exception: " << ex.what());
60 m_lastException = ex;
61 }
Junxiao Shi98e29f42014-03-31 10:27:26 -070062
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070063 getGlobalIoService().reset();
64 scheduler::cancel(m_timeout);
65 m_isRunning = false;
66 return m_reason;
67}
68
69void
70LimitedIo::afterOp()
71{
72 --m_nOpsRemaining;
73 if (m_nOpsRemaining <= 0) {
74 m_reason = EXCEED_OPS;
75 getGlobalIoService().stop();
76 }
77}
78
79void
80LimitedIo::afterTimeout()
81{
82 m_reason = EXCEED_TIME;
83 getGlobalIoService().stop();
84}
85
Junxiao Shi7e2413b2014-03-02 11:15:09 -070086const std::exception&
87LimitedIo::getLastException() const
88{
89 return m_lastException;
90}
91
Junxiao Shid9ee45c2014-02-27 15:38:11 -070092} // namespace tests
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070093} // namespace nfd