Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
Craig Tiller | 0605995 | 2015-02-18 08:34:56 -0800 | [diff] [blame] | 3 | * Copyright 2015, Google Inc. |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions are |
| 8 | * met: |
| 9 | * |
| 10 | * * Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * * Redistributions in binary form must reproduce the above |
| 13 | * copyright notice, this list of conditions and the following disclaimer |
| 14 | * in the documentation and/or other materials provided with the |
| 15 | * distribution. |
| 16 | * * Neither the name of Google Inc. nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived from |
| 18 | * this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | */ |
| 33 | |
| 34 | #include "src/cpp/util/time.h" |
| 35 | |
| 36 | #include <grpc/support/time.h> |
| 37 | |
| 38 | using std::chrono::duration_cast; |
| 39 | using std::chrono::nanoseconds; |
| 40 | using std::chrono::seconds; |
| 41 | using std::chrono::system_clock; |
| 42 | |
| 43 | namespace grpc { |
| 44 | |
Yang Gao | 6baa9b6 | 2015-03-17 10:49:39 -0700 | [diff] [blame] | 45 | void Timepoint2Timespec(const system_clock::time_point& from, |
| 46 | gpr_timespec* to) { |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 47 | system_clock::duration deadline = from.time_since_epoch(); |
| 48 | seconds secs = duration_cast<seconds>(deadline); |
Yang Gao | cdb2a6e | 2015-03-20 23:55:04 -0700 | [diff] [blame] | 49 | if (from == system_clock::time_point::max() || |
| 50 | secs.count() >= gpr_inf_future.tv_sec || secs.count() < 0) { |
| 51 | *to = gpr_inf_future; |
| 52 | return; |
| 53 | } |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 54 | nanoseconds nsecs = duration_cast<nanoseconds>(deadline - secs); |
| 55 | to->tv_sec = secs.count(); |
| 56 | to->tv_nsec = nsecs.count(); |
| 57 | } |
| 58 | |
yangg | 87da1b9 | 2014-12-11 15:57:37 -0800 | [diff] [blame] | 59 | system_clock::time_point Timespec2Timepoint(gpr_timespec t) { |
yangg | ed5e7e0 | 2015-01-06 10:16:15 -0800 | [diff] [blame] | 60 | if (gpr_time_cmp(t, gpr_inf_future) == 0) { |
| 61 | return system_clock::time_point::max(); |
| 62 | } |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 63 | system_clock::time_point tp; |
rsilvera | 081e320 | 2014-12-16 15:57:35 -0800 | [diff] [blame] | 64 | tp += duration_cast<system_clock::time_point::duration>(seconds(t.tv_sec)); |
| 65 | tp += |
| 66 | duration_cast<system_clock::time_point::duration>(nanoseconds(t.tv_nsec)); |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 67 | return tp; |
| 68 | } |
| 69 | |
Craig Tiller | 190d360 | 2015-02-18 09:23:38 -0800 | [diff] [blame] | 70 | } // namespace grpc |