12 #ifndef flatlogs_timespecX_hpp 13 #define flatlogs_timespecX_hpp 43 if(ts.tv_sec < 0 || ts.tv_sec > 4294967295)
75 template<clock
id_t clk_
id=CLOCK_REALTIME>
79 clock_gettime(clk_id, &ts);
96 if(gmtime_r(&t0, &uttime) == 0)
98 std::cerr <<
"Error getting UT time (gmtime_r returned 0). At: " << __FILE__ <<
" " << __LINE__ <<
"\n";
104 snprintf(buffer, 24,
"%04i%02i%02i%02i%02i%02i%09i", uttime.tm_year+1900, uttime.tm_mon+1, uttime.tm_mday, uttime.tm_hour, uttime.tm_min, uttime.tm_sec, static_cast<int>(time_ns));
139 gmtime_r( &tt, &bdt);
143 strftime(tstr1, 25,
"%FT%H:%M:%S", &bdt);
147 snprintf(tstr2, 11,
".%09i", static_cast<int>(time_ns));
149 return std::string(tstr1) + std::string(tstr2);
151 } __attribute__((packed));
177 template<clock
id_t clk_
id=CLOCK_REALTIME>
186 #endif //flatlogs_timespecX_hpp
std::string ISO8601DateTimeStrX()
Get a date-time string in ISO 8601 format for timespecX.
int timeStamp(std::string &tstamp)
Get the filename timestamp for this timespecX.
void clock_gettimeX(timespecX &tsX)
Fill in a timespecX with the current time.
void timespecFromX(timespec &ts, const timespecX &tsX)
Convert a timespecX to a native timespec.
uint32_t secT
The type used for seconds.
timespecX & operator=(const timespec &ts)
Convert a native timespec to a timespecX.
secT time_s
Time since the Unix epoch.
nanosecT time_ns
Nanoseconds.
void gettime()
Fill the the timespecX with the current time.
Type definitions for the flatlogs format.
uint32_t nanosecT
The type used for nanoseconds.
timespec getTimespec()
Get a native timespec from this custom one.
std::string timeStamp()
Get the filname timestamp for this timespecX.
A fixed-width timespec structure.