Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | /** |
| 23 | * This code is based on https://svn.boost.org/trac/boost/attachment/ticket/3504/MonotonicDeadlineTimer.h |
| 24 | */ |
| 25 | |
| 26 | #ifndef NDN_UTIL_MONOTONIC_DEADLINE_TIMER_HPP |
| 27 | #define NDN_UTIL_MONOTONIC_DEADLINE_TIMER_HPP |
| 28 | |
| 29 | #include <boost/asio.hpp> |
| 30 | #include "time.hpp" |
| 31 | |
| 32 | namespace boost { |
| 33 | namespace asio { |
| 34 | |
Alexander Afanasyev | 85b17b8 | 2014-11-10 16:22:05 -0800 | [diff] [blame] | 35 | template<> |
| 36 | struct time_traits<ndn::time::steady_clock> |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 37 | { |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 38 | typedef ndn::time::steady_clock::TimePoint time_type; |
Alexander Afanasyev | 85b17b8 | 2014-11-10 16:22:05 -0800 | [diff] [blame] | 39 | typedef ndn::time::steady_clock::Duration duration_type; |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 40 | |
| 41 | static time_type |
| 42 | now() |
| 43 | { |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 44 | return ndn::time::steady_clock::now(); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static time_type |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 48 | add(const time_type& time, const duration_type& duration) |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 49 | { |
| 50 | return time + duration; |
| 51 | } |
| 52 | |
| 53 | static duration_type |
| 54 | subtract(const time_type& timeLhs, const time_type& timeRhs) |
| 55 | { |
| 56 | return timeLhs - timeRhs; |
| 57 | } |
| 58 | |
| 59 | static bool |
| 60 | less_than(const time_type& timeLhs, const time_type& timeRhs) |
| 61 | { |
| 62 | return timeLhs < timeRhs; |
| 63 | } |
| 64 | |
| 65 | static boost::posix_time::time_duration |
| 66 | to_posix_duration(const duration_type& duration) |
| 67 | { |
Alexander Afanasyev | 85b17b8 | 2014-11-10 16:22:05 -0800 | [diff] [blame] | 68 | return ndn::time::steady_clock::to_posix_duration(duration); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 69 | } |
| 70 | }; |
| 71 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 72 | } // namespace asio |
| 73 | } // namespace boost |
| 74 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 75 | namespace ndn { |
| 76 | |
Alexander Afanasyev | 85b17b8 | 2014-11-10 16:22:05 -0800 | [diff] [blame] | 77 | typedef boost::asio::basic_deadline_timer<time::steady_clock> monotonic_deadline_timer; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 78 | |
| 79 | } // namespace ndn |
| 80 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 81 | #endif // NDN_UTIL_MONOTONIC_DEADLINE_TIMER_HPP |