Monero
time_helper.h
Go to the documentation of this file.
1 // Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright
9 // notice, this list of conditions and the following disclaimer in the
10 // documentation and/or other materials provided with the distribution.
11 // * Neither the name of the Andrey N. Sabelnikov nor the
12 // names of its contributors may be used to endorse or promote products
13 // derived from this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER BE LIABLE FOR ANY
19 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 //
26 
27 
28 
29 #pragma once
30 
31 #include <chrono>
32 #include <cstdio>
33 #include <ctime>
34 #include <string>
35 
36 namespace epee
37 {
38 namespace misc_utils
39 {
40  inline bool get_gmt_time(time_t t, struct tm &tm)
41  {
42 #ifdef _WIN32
43  return gmtime_s(&tm, &t);
44 #else
45  return gmtime_r(&t, &tm);
46 #endif
47  }
48 
49  inline std::string get_internet_time_str(const time_t& time_)
50  {
51  char tmpbuf[200] = {0};
52  struct tm pt;
53  get_gmt_time(time_, pt);
54  strftime(tmpbuf, 199, "%a, %d %b %Y %H:%M:%S GMT", &pt);
55  return tmpbuf;
56  }
57 
58  inline std::string get_time_interval_string(const time_t& time_)
59  {
60  time_t tail = time_;
61  const int days = static_cast<int>(tail/(60*60*24));
62  tail = tail%(60*60*24);
63  const int hours = static_cast<int>(tail/(60*60));
64  tail = tail%(60*60);
65  const int minutes = static_cast<int>(tail/60);
66  tail = tail%(60);
67  const int seconds = static_cast<int>(tail);
68 
69  char tmpbuf[64] = {0};
70  snprintf(tmpbuf, sizeof(tmpbuf) - 1, "d%d.h%d.m%d.s%d", days, hours, minutes, seconds);
71 
72  return tmpbuf;
73  }
74 
76  {
77  typedef std::chrono::duration<uint64_t, std::nano> ns_duration;
78  const ns_duration ns_since_epoch = std::chrono::steady_clock::now().time_since_epoch();
79  return ns_since_epoch.count();
80  }
81 
83  {
84  return get_ns_count() / 1000000;
85  }
86 }
87 }
uint64_t get_tick_count()
Definition: time_helper.h:82
::std::string string
Definition: gtest-port.h:1097
t
Definition: console.py:33
uint64_t get_ns_count()
Definition: time_helper.h:75
bool get_gmt_time(time_t t, struct tm &tm)
Definition: time_helper.h:40
unsigned __int64 uint64_t
Definition: stdint.h:136
std::string get_time_interval_string(const time_t &time_)
Definition: time_helper.h:58
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:39
std::string get_internet_time_str(const time_t &time_)
Definition: time_helper.h:49