项目作者: SahibYar

项目描述 :
JavaScript like thread-safe Header only C++17 Timer Library using std::thread and std::chrono without polling.
高级语言: C++
项目地址: git://github.com/SahibYar/C-17-Timer.git
创建时间: 2021-01-19T19:20:58Z
项目社区:https://github.com/SahibYar/C-17-Timer

开源协议:GNU General Public License v2.0

下载


C-17-Timer

JavaScript Like thread-safe Header only C++17 Timer Library using std::thread and std::chrono without polling.

Features

  1. It takes const std::chrono::duration<Rep, Period> &duration as a duration so by default supports all the std::chrono::durations
  2. It takes Function &&f, Args &&... args which is the same as std::thread constructor
  3. It can notify the caller via std::condition_variable, so you do not need to do polling.

Example 1:

It can take any duration, with repeat and once, for stopping repeating

  1. Timer t = Timer();
  2. t.once(std::chrono::seconds (5), []() { std::cout << "Will be printed once after 5 seconds" << std::endl;});
  3. t.once(std::chrono::milliseconds(1500), []() { std::cout << "Will be printed once after 1500 milliseconds" << std::endl;});
  4. t.repeat(std::chrono::milliseconds(1500), []() { std::cout << "Will be printed repeatedly after 1500 milliseconds" << std::endl;});
  5. // for stop repeating
  6. t.stop();

Example 2:

It can take any number of parameters

  1. void func1(const std::string_view str, const std::string_view str2) {
  2. std::cout << str << str2 << std::endl;
  3. }
  4. Timer t = Timer();
  5. t.repeat(std::chrono::microseconds (1100), func2, "This is the value", "this is my 2nd parameter");

Example 3:

  1. #include <condition_variable>
  2. #include <mutex>
  3. void cv_func(bool& processed, std::condition_variable& cv)
  4. {
  5. //do some processing here.
  6. processed = true;
  7. cv.notify_all();
  8. }
  9. int main()
  10. {
  11. bool processed = false;
  12. std::condition_variable cv;
  13. std::mutex m;
  14. t.once(std::chrono::microseconds (1000), cv_func, std::ref(processed), std::ref(cv));
  15. std::unique_lock<std::mutex> lk(m);
  16. // no need to do polling / busy waiting.
  17. cv.wait(lk, [&] { return processed; });
  18. std::cout << "This line will be executed only when condition variable is set to true in a thread." << std::endl;
  19. }