blob: ef213996554457a9d2113d87c892f1878ce274b3 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
//
// detail/impl/winrt_timer_scheduler.ipp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_DETAIL_IMPL_WINRT_TIMER_SCHEDULER_IPP
#define ASIO_DETAIL_IMPL_WINRT_TIMER_SCHEDULER_IPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "asio/detail/config.hpp"
#if defined(ASIO_WINDOWS_RUNTIME)
#include "asio/detail/bind_handler.hpp"
#include "asio/detail/winrt_timer_scheduler.hpp"
#include "asio/detail/push_options.hpp"
namespace asio {
namespace detail {
winrt_timer_scheduler::winrt_timer_scheduler(
asio::io_context& io_context)
: asio::detail::service_base<winrt_timer_scheduler>(io_context),
io_context_(use_service<io_context_impl>(io_context)),
mutex_(),
event_(),
timer_queues_(),
thread_(0),
stop_thread_(false),
shutdown_(false)
{
thread_ = new asio::detail::thread(
bind_handler(&winrt_timer_scheduler::call_run_thread, this));
}
winrt_timer_scheduler::~winrt_timer_scheduler()
{
shutdown();
}
void winrt_timer_scheduler::shutdown()
{
asio::detail::mutex::scoped_lock lock(mutex_);
shutdown_ = true;
stop_thread_ = true;
event_.signal(lock);
lock.unlock();
if (thread_)
{
thread_->join();
delete thread_;
thread_ = 0;
}
op_queue<operation> ops;
timer_queues_.get_all_timers(ops);
io_context_.abandon_operations(ops);
}
void winrt_timer_scheduler::notify_fork(asio::io_context::fork_event)
{
}
void winrt_timer_scheduler::init_task()
{
}
void winrt_timer_scheduler::run_thread()
{
asio::detail::mutex::scoped_lock lock(mutex_);
while (!stop_thread_)
{
const long max_wait_duration = 5 * 60 * 1000000;
long wait_duration = timer_queues_.wait_duration_usec(max_wait_duration);
event_.wait_for_usec(lock, wait_duration);
event_.clear(lock);
op_queue<operation> ops;
timer_queues_.get_ready_timers(ops);
if (!ops.empty())
{
lock.unlock();
io_context_.post_deferred_completions(ops);
lock.lock();
}
}
}
void winrt_timer_scheduler::call_run_thread(winrt_timer_scheduler* scheduler)
{
scheduler->run_thread();
}
void winrt_timer_scheduler::do_add_timer_queue(timer_queue_base& queue)
{
mutex::scoped_lock lock(mutex_);
timer_queues_.insert(&queue);
}
void winrt_timer_scheduler::do_remove_timer_queue(timer_queue_base& queue)
{
mutex::scoped_lock lock(mutex_);
timer_queues_.erase(&queue);
}
} // namespace detail
} // namespace asio
#include "asio/detail/pop_options.hpp"
#endif // defined(ASIO_WINDOWS_RUNTIME)
#endif // ASIO_DETAIL_IMPL_WINRT_TIMER_SCHEDULER_IPP
|