これが私が思いついたものです。
コードを全体的に読みやすくしたことに注意してください。これは、将来のメンテナンスだけでなく、「木を見て森を見る」ことができるため、重要な概念を頭の中で思い出すことができるため、重要です。
少なくとも、それは私を助けます。
編集DyP が使用方法に貢献しましたsleep_until
(睡眠中に時計が変わるなど、まれな状況でより正確に動作するようになります)。
#include <boost/date_time.hpp>
#include <boost/date_time/time_clock.hpp>
#include <iostream>
#include <thread>
#include <chrono>
int main()
{
using namespace boost::gregorian;
using boost::posix_time::ptime;
using clock = boost::posix_time::microsec_clock; // or: boost::posix_time::second_clock;
auto today = date(day_clock::local_day());
auto at_sunday = greg_weekday(Sunday);
auto next_sunday = next_weekday(today, at_sunday);
#if 1
auto as_tm = to_tm(next_sunday);
auto as_time_t = mktime(&as_tm);
auto as_time_point = std::chrono::system_clock::from_time_t(as_time_t);
std::this_thread::sleep_until(as_time_point);
#else
auto duration = (ptime(next_sunday) - clock::local_time());
auto msecs = duration.total_milliseconds();
std::cout << msecs << "\n";
std::this_thread::sleep_for(std::chrono::milliseconds(msecs));
#endif
}
Coliruでコンパイルするのを見てください(明らかにタイムアウトします)