cmake/Tests/CMakeTests/String-TIMESTAMP-UnixTime.cmake

23 lines
770 B
CMake
Raw Normal View History

2016-07-09 11:21:54 +02:00
string(TIMESTAMP timestamp "[%Y-%m-%d %H:%M:%S] %s" UTC)
string(TIMESTAMP unix_time "%s")
string(TIMESTAMP year "%Y" UTC)
string(TIMESTAMP days "%j" UTC)
# Doing proper date calculations here to verify unix timestamps
# could be error prone.
# At the very least use some safe lower and upper bounds to
# see if we are somewhere in the right region.
math(EXPR years_since_epoch "${year} - 1970")
2018-04-23 21:13:27 +02:00
math(EXPR lower_bound "((${years_since_epoch} * 365) + ${days} - 1) * 86400")
2016-07-09 11:21:54 +02:00
math(EXPR upper_bound "((${years_since_epoch} * 366) + ${days}) * 86400")
2018-04-23 21:13:27 +02:00
if(unix_time GREATER_EQUAL lower_bound AND unix_time LESS upper_bound)
2016-07-09 11:21:54 +02:00
message("~${unix_time}~")
else()
2018-04-23 21:13:27 +02:00
message(FATAL_ERROR "${timestamp} unix time not in expected range [${lower_bound}, ${upper_bound})")
2016-07-09 11:21:54 +02:00
endif()