blob: 73c30f7470e3cfeb7c036360d7d808bc1ea50b6a [file] [log] [blame]
Alexander Afanasyev85b17b82014-11-10 16:22:05 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2014 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#include "time-unit-test-clock.hpp"
23
24namespace ndn {
25namespace time {
26
27template<class BaseClock>
28UnitTestClock<BaseClock>::UnitTestClock(const nanoseconds& startTime)
29 : m_currentTime(startTime)
30{
31}
32
33template<class BaseClock>
34std::string
35UnitTestClock<BaseClock>::getSince() const
36{
37 return " since unit test clock advancements";
38}
39
40template<class BaseClock>
41typename BaseClock::time_point
42UnitTestClock<BaseClock>::getNow() const
43{
44 return typename BaseClock::time_point(duration_cast<typename BaseClock::duration>(m_currentTime));
45}
46
47template<class BaseClock>
48boost::posix_time::time_duration
49UnitTestClock<BaseClock>::toPosixDuration(const typename BaseClock::duration& duration) const
50{
51 return
52#ifdef BOOST_DATE_TIME_HAS_NANOSECONDS
53 boost::posix_time::nanoseconds(1)
54#else
55 boost::posix_time::microseconds(1)
56#endif
57 ;
58}
59
60
61template<class BaseClock>
62void
63UnitTestClock<BaseClock>::advance(const nanoseconds& duration)
64{
65 m_currentTime += duration;
66}
67
68template<class BaseClock>
69void
70UnitTestClock<BaseClock>::setNow(const nanoseconds& timeSinceEpoch)
71{
72 m_currentTime = timeSinceEpoch;
73}
74
75template
76class UnitTestClock<system_clock>;
77
78template
79class UnitTestClock<steady_clock>;
80
81} // namespace time
82} // namespace ndn