summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/LibLsp/lsp/SimpleTimer.h
blob: 0a2707979da4e84b921897b68619cb874bd062c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
#include <thread>
#include <atomic>
#include <functional>
#include <boost/asio.hpp>

template<typename Duration = boost::posix_time::milliseconds>
class SimpleTimer
{
public:
    SimpleTimer(unsigned int duration,const std::function<void()>& _call_back)
	:is_running_(true), call_back(_call_back), _deadline_timer(_ios, Duration(duration))
    {
        _deadline_timer.async_wait([&](const boost::system::error_code& e)
        {
            if (e.value() == boost::asio::error::operation_aborted)
            {
                return;
            }
            if(is_running_.load(std::memory_order_relaxed))
            {
                call_back();
            }

        });
        _thread = std::thread([this] { _ios.run(); });
    }
    ~SimpleTimer()
    {
        Stop();
    }
    void Stop()
    {
        is_running_.store(false, std::memory_order_relaxed);
        _ios.stop();
        if (_thread.joinable())
        {
            _thread.join();
        }
    }
private:
    std::atomic_bool is_running_;
    std::function<void()> call_back;
    boost::asio::io_service _ios;
    boost::asio::deadline_timer _deadline_timer;
    std::thread _thread;


};