Loop.hxx 5.92 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef MPD_EVENT_LOOP_HXX
#define MPD_EVENT_LOOP_HXX

23
#include "Chrono.hxx"
24
#include "PollGroup.hxx"
25 26
#include "WakeFD.hxx"
#include "SocketMonitor.hxx"
27
#include "IdleMonitor.hxx"
28
#include "DeferEvent.hxx"
29 30 31
#include "thread/Id.hxx"
#include "thread/Mutex.hxx"
#include "util/Compiler.h"
32 33

#include <boost/intrusive/set.hpp>
34
#include <boost/intrusive/list.hpp>
35

36
#include <atomic>
37 38
#include <cassert>
#include <chrono>
39

40 41 42 43 44 45
#include "io/uring/Features.h"
#ifdef HAVE_URING
#include <memory>
namespace Uring { class Queue; class Manager; }
#endif

46 47
class TimerEvent;

48 49 50 51 52 53 54
/**
 * An event loop that polls for events on file/socket descriptors.
 *
 * This class is not thread-safe, all methods must be called from the
 * thread that runs it, except where explicitly documented as
 * thread-safe.
 *
55
 * @see SocketMonitor, MultiSocketMonitor, TimerEvent, IdleMonitor
56
 */
57
class EventLoop final : SocketMonitor
58
{
59
	WakeFD wake_fd;
60

61
	struct TimerCompare {
62
		constexpr bool operator()(const TimerEvent &a,
63
					  const TimerEvent &b) const noexcept;
64 65
	};

66 67
	using TimerSet =
		boost::intrusive::multiset<TimerEvent,
68
					   boost::intrusive::base_hook<boost::intrusive::set_base_hook<boost::intrusive::link_mode<boost::intrusive::auto_unlink>>>,
69
					   boost::intrusive::compare<TimerCompare>,
70
					   boost::intrusive::constant_time_size<false>>;
71
	TimerSet timers;
72

73 74
	using IdleList =
		boost::intrusive::list<IdleMonitor,
75 76 77
				       boost::intrusive::member_hook<IdleMonitor,
								     IdleMonitor::ListHook,
								     &IdleMonitor::list_hook>,
78
				       boost::intrusive::constant_time_size<false>>;
79
	IdleList idle;
80 81

	Mutex mutex;
82

83 84
	using DeferredList =
		boost::intrusive::list<DeferEvent,
85 86 87
				       boost::intrusive::member_hook<DeferEvent,
								     DeferEvent::ListHook,
								     &DeferEvent::list_hook>,
88
				       boost::intrusive::constant_time_size<false>>;
89
	DeferredList deferred;
90

91 92 93 94
#ifdef HAVE_URING
	std::unique_ptr<Uring::Manager> uring;
#endif

95
	Event::Clock::time_point now = Event::Clock::now();
96

97
	/**
98 99 100 101
	 * Is this #EventLoop alive, i.e. can events be scheduled?
	 * This is used by BlockingCall() to determine whether
	 * schedule in the #EventThread or to call directly (if
	 * there's no #EventThread yet/anymore).
102
	 */
103 104 105
	bool alive;

	std::atomic_bool quit;
106

107 108 109 110 111 112
	/**
	 * True when the object has been modified and another check is
	 * necessary before going to sleep via PollGroup::ReadEvents().
	 */
	bool again;

113 114 115 116 117 118
	/**
	 * True when handling callbacks, false when waiting for I/O or
	 * timeout.
	 *
	 * Protected with #mutex.
	 */
119
	bool busy = true;
120

121 122 123 124
#ifdef HAVE_URING
	bool uring_initialized = false;
#endif

125 126
	PollGroup poll_group;
	PollResult poll_result;
127

128 129 130
	/**
	 * A reference to the thread that is currently inside Run().
	 */
131
	ThreadId thread = ThreadId::Null();
132

133
public:
134 135 136
	/**
	 * Throws on error.
	 */
137
	explicit EventLoop(ThreadId _thread);
138

139 140
	EventLoop():EventLoop(ThreadId::GetCurrent()) {}

141
	~EventLoop() noexcept;
142

143
	/**
144
	 * A caching wrapper for Event::Clock::now().
145
	 */
146
	auto GetTime() const {
147 148
		assert(IsInside());

149
		return now;
150 151
	}

152 153 154 155 156
#ifdef HAVE_URING
	gcc_pure
	Uring::Queue *GetUring() noexcept;
#endif

157 158 159 160 161
	/**
	 * Stop execution of this #EventLoop at the next chance.  This
	 * method is thread-safe and non-blocking: after returning, it
	 * is not guaranteed that the EventLoop has really stopped.
	 */
162
	void Break() noexcept;
163

164
	bool AddFD(int _fd, unsigned flags, SocketMonitor &m) noexcept {
165
		assert(!IsAlive() || IsInside());
166

167
		return poll_group.Add(_fd, flags, &m);
168 169
	}

170
	bool ModifyFD(int _fd, unsigned flags, SocketMonitor &m) noexcept {
171
		assert(!IsAlive() || IsInside());
172

173
		return poll_group.Modify(_fd, flags, &m);
174 175
	}

176 177 178 179 180
	/**
	 * Remove the given #SocketMonitor after the file descriptor
	 * has been closed.  This is like RemoveFD(), but does not
	 * attempt to use #EPOLL_CTL_DEL.
	 */
181
	bool Abandon(int fd, SocketMonitor &m) noexcept;
182

183
	bool RemoveFD(int fd, SocketMonitor &m) noexcept;
184

185 186
	void AddIdle(IdleMonitor &i) noexcept;
	void RemoveIdle(IdleMonitor &i) noexcept;
187

188
	void AddTimer(TimerEvent &t, Event::Duration d) noexcept;
189

190
	/**
191
	 * Schedule a call to DeferEvent::RunDeferred().
192 193 194
	 *
	 * This method is thread-safe.
	 */
195
	void AddDeferred(DeferEvent &d) noexcept;
196 197

	/**
198
	 * Cancel a pending call to DeferEvent::RunDeferred().
199 200 201 202
	 * However after returning, the call may still be running.
	 *
	 * This method is thread-safe.
	 */
203
	void RemoveDeferred(DeferEvent &d) noexcept;
204

205 206 207 208
	/**
	 * The main function of this class.  It will loop until
	 * Break() gets called.  Can be called only once.
	 */
209
	void Run() noexcept;
210 211

private:
212
	/**
213
	 * Invoke all pending DeferEvents.
214 215 216
	 *
	 * Caller must lock the mutex.
	 */
217
	void HandleDeferred() noexcept;
218

219 220 221 222 223
	/**
	 * Invoke all expired #TimerEvent instances and return the
	 * duration until the next timer expires.  Returns a negative
	 * duration if there is no timeout.
	 */
224
	Event::Duration HandleTimers() noexcept;
225

226
	bool OnSocketReady(unsigned flags) noexcept override;
227 228

public:
229 230 231 232 233 234
	void SetAlive(bool _alive) noexcept {
		alive = _alive;
	}

	bool IsAlive() const noexcept {
		return alive;
235
	}
236 237 238 239 240

	/**
	 * Are we currently running inside this EventLoop's thread?
	 */
	gcc_pure
241
	bool IsInside() const noexcept {
242 243
		return thread.IsInside();
	}
244 245 246
};

#endif /* MAIN_NOTIFY_H */