MagAO-X
|
||||
|
A fixed-width timespec structure. More...
#include <timespecX.hpp>
Public Member Functions | |
timespecX & | operator= (const timespec &ts) |
Convert a native timespec to a timespecX. More... | |
timespec | getTimespec () |
Get a native timespec from this custom one. More... | |
template<clockid_t clk_id = CLOCK_REALTIME> | |
void | gettime () |
Fill the the timespecX with the current time. More... | |
int | timeStamp (std::string &tstamp) |
Get the filename timestamp for this timespecX. More... | |
std::string | timeStamp () |
Get the filname timestamp for this timespecX. More... | |
std::string | ISO8601DateTimeStrX () |
Get a date-time string in ISO 8601 format for timespecX. More... | |
Public Attributes | |
secT | time_s |
Time since the Unix epoch. More... | |
nanosecT | time_ns |
Nanoseconds. More... | |
A fixed-width timespec structure.
To ensure that binary encoding of time is stable regardless of environment, we use a custom timespec composed of fixed-width types.
Definition at line 31 of file timespecX.hpp.
|
inline |
Fill the the timespecX with the current time.
This is based on the usual clock_gettime. clockid_t is a template parameter since we probaby always want CLOCK_REALTIME, but if we don't for some reason it will be passed in the same order as in clock_gettime.
clk_id | specifies the type. |
Definition at line 76 of file timespecX.hpp.
Referenced by flatlogs::clock_gettimeX(), and MagAOX::logger::logManager< logFileT >::createLog().
|
inline |
Get a native timespec from this custom one.
Definition at line 58 of file timespecX.hpp.
|
inline |
Get a date-time string in ISO 8601 format for timespecX.
Returns a string in the ISO 8601 format:
YYYY-MM-DDTHH:MM:SS.SSSSSSSSS
std::string | containing the formated date/time |
Definition at line 135 of file timespecX.hpp.
Referenced by flatlogs::stdFormat().
|
inline |
Convert a native timespec to a timespecX.
[in] | ts | the native timespec from which to get values |
Definition at line 41 of file timespecX.hpp.
|
inline |
Get the filename timestamp for this timespecX.
Fills in a string with the timestamp encoded as
YYYYMMDDHHMMSSNNNNNNNNN
[out] | tstamp | the string to hold the formatted time |
Definition at line 90 of file timespecX.hpp.
Referenced by MagAOX::logger::logFileRaw::createFile().
|
inline |
Get the filname timestamp for this timespecX.
Returns a string with the timestamp encoded as
YYYYMMDDHHMMSSNNNNNNNNN
Definition at line 118 of file timespecX.hpp.
nanosecT flatlogs::timespecX::time_ns |
Nanoseconds.
Definition at line 34 of file timespecX.hpp.
Referenced by getTimespec(), and flatlogs::timespecFromX().
secT flatlogs::timespecX::time_s |
Time since the Unix epoch.
Definition at line 33 of file timespecX.hpp.
Referenced by getTimespec(), ISO8601DateTimeStrX(), flatlogs::timespecFromX(), and timeStamp().