Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
169d0250
Commit
169d0250
authored
Dec 11, 2019
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timestamp
parent
7fcfc182
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
125 additions
and
113 deletions
+125
-113
timestamp.h
jlib/base/timestamp.h
+114
-101
test_timestamp.cpp
test/test_timestamp/test_timestamp.cpp
+11
-12
No files found.
jlib/base/timestamp.h
View file @
169d0250
#
pragma
once
#include "config.h"
#include "copyable.h"
#include <boost/operators.hpp>
#include <stdint.h> // int64_t
#include <string> // std::string
#include <inttypes.h> // PRId64
#include <stdio.h> // snprintf
#include "time.h"
//
//#include "copyable.h"
//#include <boost/operators.hpp>
//#include <stdint.h> // int64_t
//#include <string> // std::string
//#include <inttypes.h> // PRId64
//#include <stdio.h> // snprintf
//#include "time.h"
//#define _WIN32_WINNT _WIN32_WINNT_WIN7
#include "../3rdparty/date/include/date/date.h"
namespace
jlib
{
class
ENABLE_EBO
Timestamp
:
public
jlib
::
copyable
,
public
boost
::
equality_comparable
<
Timestamp
>
,
public
boost
::
less_than_comparable
<
Timestamp
>
namespace
jlib
{
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
);
}
using
namespace
date
;
using
Timestamp
=
date
::
sys_time
<
std
::
chrono
::
microseconds
>
;
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
test/test_timestamp/test_timestamp.cpp
View file @
169d0250
...
...
@@ -3,16 +3,16 @@
#include <stdio.h>
#include <chrono>
using
jlib
::
Timestamp
;
using
namespace
jlib
;
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
)
{
printf
(
"passByValue: %s
\n
"
,
x
.
toString
(
).
c_str
());
printf
(
"passByValue: %s
\n
"
,
format
(
"%F %T"
,
x
).
c_str
());
}
void
benchmark
()
...
...
@@ -23,16 +23,16 @@ void benchmark()
std
::
vector
<
Timestamp
>
stamps
;
stamps
.
reserve
(
kNumber
);
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
(
"back %s
\n
"
,
stamps
.
back
().
toString
(
).
c_str
());
printf
(
"timeDifference %
f
\n
"
,
timeDifference
(
stamps
.
back
(),
stamps
.
front
()
));
printf
(
"front %s
\n
"
,
format
(
"%F %T"
,
stamps
.
front
()
).
c_str
());
printf
(
"back %s
\n
"
,
format
(
"%F %T"
,
stamps
.
back
()
).
c_str
());
printf
(
"timeDifference %
lld
\n
"
,
(
stamps
.
back
()
-
stamps
.
front
()).
count
(
));
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
)
{
int64_t
next
=
stamps
[
i
].
microSecondsSinceEpoch
();
int64_t
next
=
stamps
[
i
].
time_since_epoch
().
count
();
int64_t
inc
=
next
-
start
;
start
=
next
;
if
(
inc
<
0
)
{
...
...
@@ -52,9 +52,8 @@ void benchmark()
int
main
()
{
printf
(
"sizeof Timestamp=%zd, sizeof int64_t=%zd
\n
"
,
sizeof
(
Timestamp
),
sizeof
(
int64_t
));
Timestamp
now
(
Timestamp
::
now
());
printf
(
"now.toString(): %s
\n
"
,
now
.
toString
().
c_str
());
printf
(
"now.toFormattedString(): %s
\n
"
,
now
.
toFormattedString
().
c_str
());
Timestamp
now
(
nowTimestamp
());
printf
(
"now.toString(): %s
\n
"
,
format
(
"%F %T"
,
now
).
c_str
());
passByValue
(
now
);
passByConstReference
(
now
);
benchmark
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment