Commit 169d0250 authored by captainwong's avatar captainwong

timestamp

parent 7fcfc182
#pragma once #pragma once
#include "config.h" #include "config.h"
#include "copyable.h" //
#include <boost/operators.hpp> //#include "copyable.h"
#include <stdint.h> // int64_t //#include <boost/operators.hpp>
#include <string> // std::string //#include <stdint.h> // int64_t
#include <inttypes.h> // PRId64 //#include <string> // std::string
#include <stdio.h> // snprintf //#include <inttypes.h> // PRId64
#include "time.h" //#include <stdio.h> // snprintf
//#include "time.h"
//#define _WIN32_WINNT _WIN32_WINNT_WIN7 //#define _WIN32_WINNT _WIN32_WINNT_WIN7
#include "../3rdparty/date/include/date/date.h"
namespace jlib
{
class ENABLE_EBO Timestamp : public jlib::copyable namespace jlib
, public boost::equality_comparable<Timestamp>
, public boost::less_than_comparable<Timestamp>
{ {
public:
Timestamp()
: microSecondsSinceEpoch_(0)
{}
explicit Timestamp(int64_t microSecondsSinceEpoch)
: microSecondsSinceEpoch_(microSecondsSinceEpoch)
{}
void swap(Timestamp& rhs) {
std::swap(microSecondsSinceEpoch_, rhs.microSecondsSinceEpoch_);
}
std::string toString() const {
char buff[32] = {};
int64_t seconds = microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND;
int64_t microseconds = microSecondsSinceEpoch_ % MICRO_SECONDS_PER_SECOND;
snprintf(buff, sizeof(buff) - 1, "%" PRId64 ".%06" PRId64 "", seconds, microseconds);
return buff;
}
std::string toFormattedString(bool showMicroSeconds = true) {
char buf[64] = { 0 };
time_t seconds = static_cast<time_t>(microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND);
struct tm tm_time;
gmtime_r(&seconds, &tm_time);
if (showMicroSeconds) {
int microseconds = static_cast<int>(microSecondsSinceEpoch_ % MICRO_SECONDS_PER_SECOND);
snprintf(buf, sizeof(buf), "%4d%02d%02d %02d:%02d:%02d.%06d",
tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
tm_time.tm_hour, tm_time.tm_min, tm_time.tm_sec,
microseconds);
} else {
snprintf(buf, sizeof(buf), "%4d%02d%02d %02d:%02d:%02d",
tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
tm_time.tm_hour, tm_time.tm_min, tm_time.tm_sec);
}
return buf;
}
bool valid() const { return microSecondsSinceEpoch_ > 0; }
int64_t microSecondsSinceEpoch() const { return microSecondsSinceEpoch_; }
time_t secondsSinceEpoch() const { return static_cast<time_t>(microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND); }
static Timestamp now() {
return Timestamp(gettimeofdayUsec());
}
static Timestamp invalid() { return Timestamp(); }
static Timestamp fromTime_t(time_t t) {
return fromTime_t(t, 0);
}
static Timestamp fromTime_t(time_t t, int microSeconds) {
return Timestamp(static_cast<int64_t>(t) * MICRO_SECONDS_PER_SECOND + microSeconds);
}
private:
int64_t microSecondsSinceEpoch_ = 0;
};
static_assert(sizeof(Timestamp) == sizeof(int64_t), "Expected Timestamp to be the same size as int64_t");
inline bool operator<(Timestamp lhs, Timestamp rhs) {
return lhs.microSecondsSinceEpoch() < rhs.microSecondsSinceEpoch();
}
inline bool operator==(Timestamp lhs, Timestamp rhs) {
return lhs.microSecondsSinceEpoch() == rhs.microSecondsSinceEpoch();
}
/**
* @brief Get time diff of two Timestamps, return diff in seconds
* @param high, low
* @return (high - low) in seconds
*/
inline double timeDifference(Timestamp high, Timestamp low) {
int64_t diff = high.microSecondsSinceEpoch() - low.microSecondsSinceEpoch();
return static_cast<double>(diff) / MICRO_SECONDS_PER_SECOND;
}
inline Timestamp addSeconds(Timestamp t, double seconds) { using namespace date;
int64_t delta = static_cast<int64_t>(seconds * MICRO_SECONDS_PER_SECOND); using Timestamp = date::sys_time<std::chrono::microseconds>;
return Timestamp(t.microSecondsSinceEpoch() + delta);
} static constexpr Timestamp nowTimestamp() { return floor<std::chrono::microseconds>(std::chrono::system_clock::now()); }
//class ENABLE_EBO Timestamp : public jlib::copyable
// , public boost::equality_comparable<Timestamp>
// , public boost::less_than_comparable<Timestamp>
//{
//public:
// Timestamp()
// : microSecondsSinceEpoch_(0)
// {}
//
// explicit Timestamp(int64_t microSecondsSinceEpoch)
// : microSecondsSinceEpoch_(microSecondsSinceEpoch)
// {}
//
//
// void swap(Timestamp& rhs) {
// std::swap(microSecondsSinceEpoch_, rhs.microSecondsSinceEpoch_);
// }
//
// std::string toString() const {
// char buff[32] = {};
// int64_t seconds = microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND;
// int64_t microseconds = microSecondsSinceEpoch_ % MICRO_SECONDS_PER_SECOND;
// snprintf(buff, sizeof(buff) - 1, "%" PRId64 ".%06" PRId64 "", seconds, microseconds);
// return buff;
// }
//
// std::string toFormattedString(bool showMicroSeconds = true) {
// char buf[64] = { 0 };
// time_t seconds = static_cast<time_t>(microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND);
// struct tm tm_time;
// gmtime_r(&seconds, &tm_time);
//
// if (showMicroSeconds) {
// int microseconds = static_cast<int>(microSecondsSinceEpoch_ % MICRO_SECONDS_PER_SECOND);
// snprintf(buf, sizeof(buf), "%4d%02d%02d %02d:%02d:%02d.%06d",
// tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
// tm_time.tm_hour, tm_time.tm_min, tm_time.tm_sec,
// microseconds);
// } else {
// snprintf(buf, sizeof(buf), "%4d%02d%02d %02d:%02d:%02d",
// tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
// tm_time.tm_hour, tm_time.tm_min, tm_time.tm_sec);
// }
// return buf;
// }
//
// bool valid() const { return microSecondsSinceEpoch_ > 0; }
//
// int64_t microSecondsSinceEpoch() const { return microSecondsSinceEpoch_; }
// time_t secondsSinceEpoch() const { return static_cast<time_t>(microSecondsSinceEpoch_ / MICRO_SECONDS_PER_SECOND); }
//
//
// static Timestamp now() {
// return Timestamp(gettimeofdayUsec());
// }
//
// static Timestamp invalid() { return Timestamp(); }
//
// static Timestamp fromTime_t(time_t t) {
// return fromTime_t(t, 0);
// }
//
// static Timestamp fromTime_t(time_t t, int microSeconds) {
// return Timestamp(static_cast<int64_t>(t) * MICRO_SECONDS_PER_SECOND + microSeconds);
// }
//
//private:
// int64_t microSecondsSinceEpoch_ = 0;
//};
//
//static_assert(sizeof(Timestamp) == sizeof(int64_t), "Expected Timestamp to be the same size as int64_t");
//
//inline bool operator<(Timestamp lhs, Timestamp rhs) {
// return lhs.microSecondsSinceEpoch() < rhs.microSecondsSinceEpoch();
//}
//
//inline bool operator==(Timestamp lhs, Timestamp rhs) {
// return lhs.microSecondsSinceEpoch() == rhs.microSecondsSinceEpoch();
//}
//
///**
//* @brief Get time diff of two Timestamps, return diff in seconds
//* @param high, low
//* @return (high - low) in seconds
//*/
//inline double timeDifference(Timestamp high, Timestamp low) {
// int64_t diff = high.microSecondsSinceEpoch() - low.microSecondsSinceEpoch();
// return static_cast<double>(diff) / MICRO_SECONDS_PER_SECOND;
//}
//
//inline Timestamp addSeconds(Timestamp t, double seconds) {
// int64_t delta = static_cast<int64_t>(seconds * MICRO_SECONDS_PER_SECOND);
// return Timestamp(t.microSecondsSinceEpoch() + delta);
//}
} // namespace jlib } // namespace jlib
...@@ -3,16 +3,16 @@ ...@@ -3,16 +3,16 @@
#include <stdio.h> #include <stdio.h>
#include <chrono> #include <chrono>
using jlib::Timestamp; using namespace jlib;
void passByConstReference(const Timestamp& x) void passByConstReference(const Timestamp& x)
{ {
printf("passByConstReference: %s\n", x.toString().c_str()); printf("passByConstReference: %s\n", format("%F %T", x).c_str());
} }
void passByValue(Timestamp x) void passByValue(Timestamp x)
{ {
printf("passByValue: %s\n", x.toString().c_str()); printf("passByValue: %s\n", format("%F %T", x).c_str());
} }
void benchmark() void benchmark()
...@@ -23,16 +23,16 @@ void benchmark() ...@@ -23,16 +23,16 @@ void benchmark()
std::vector<Timestamp> stamps; std::vector<Timestamp> stamps;
stamps.reserve(kNumber); stamps.reserve(kNumber);
for (int i = 0; i < kNumber; ++i) { for (int i = 0; i < kNumber; ++i) {
stamps.push_back(Timestamp::now()); stamps.push_back(nowTimestamp());
} }
printf("front %s\n", stamps.front().toString().c_str()); printf("front %s\n", format("%F %T", stamps.front()).c_str());
printf("back %s\n", stamps.back().toString().c_str()); printf("back %s\n", format("%F %T", stamps.back()).c_str());
printf("timeDifference %f\n", timeDifference(stamps.back(), stamps.front())); printf("timeDifference %lld\n", (stamps.back() - stamps.front()).count());
int increments[100] = { 0 }; int increments[100] = { 0 };
int64_t start = stamps.front().microSecondsSinceEpoch(); int64_t start = stamps.front().time_since_epoch().count();
for (int i = 1; i < kNumber; ++i) { for (int i = 1; i < kNumber; ++i) {
int64_t next = stamps[i].microSecondsSinceEpoch(); int64_t next = stamps[i].time_since_epoch().count();
int64_t inc = next - start; int64_t inc = next - start;
start = next; start = next;
if (inc < 0) { if (inc < 0) {
...@@ -52,9 +52,8 @@ void benchmark() ...@@ -52,9 +52,8 @@ void benchmark()
int main() int main()
{ {
printf("sizeof Timestamp=%zd, sizeof int64_t=%zd\n", sizeof(Timestamp), sizeof(int64_t)); printf("sizeof Timestamp=%zd, sizeof int64_t=%zd\n", sizeof(Timestamp), sizeof(int64_t));
Timestamp now(Timestamp::now()); Timestamp now(nowTimestamp());
printf("now.toString(): %s\n", now.toString().c_str()); printf("now.toString(): %s\n", format("%F %T", now).c_str());
printf("now.toFormattedString(): %s\n", now.toFormattedString().c_str());
passByValue(now); passByValue(now);
passByConstReference(now); passByConstReference(now);
benchmark(); benchmark();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment