2013-01-10 19:13:00 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2013-01-10 19:13:00 +01:00
|
|
|
* 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
|
|
|
|
|
2013-08-10 09:00:04 +02:00
|
|
|
#include "thread/Id.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
#include "PollGroup.hxx"
|
2013-08-07 22:16:59 +02:00
|
|
|
#include "thread/Mutex.hxx"
|
|
|
|
#include "WakeFD.hxx"
|
|
|
|
#include "SocketMonitor.hxx"
|
2017-08-29 15:53:57 +02:00
|
|
|
#include "TimerEvent.hxx"
|
2017-08-29 15:43:16 +02:00
|
|
|
#include "IdleMonitor.hxx"
|
2017-11-12 17:34:06 +01:00
|
|
|
#include "DeferEvent.hxx"
|
2017-08-29 14:25:23 +02:00
|
|
|
|
|
|
|
#include <boost/intrusive/set.hpp>
|
2017-08-29 15:43:16 +02:00
|
|
|
#include <boost/intrusive/list.hpp>
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2016-12-27 23:06:34 +01:00
|
|
|
#include <chrono>
|
2017-12-22 11:04:24 +01:00
|
|
|
#include <atomic>
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-08-07 22:49:46 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-11-24 19:28:04 +01:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2017-08-29 15:53:57 +02:00
|
|
|
* @see SocketMonitor, MultiSocketMonitor, TimerEvent, IdleMonitor
|
2013-11-24 19:28:04 +01:00
|
|
|
*/
|
2014-01-04 19:31:23 +01:00
|
|
|
class EventLoop final : SocketMonitor
|
2013-08-07 22:16:59 +02:00
|
|
|
{
|
2017-08-29 14:25:23 +02:00
|
|
|
WakeFD wake_fd;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2017-08-29 14:25:23 +02:00
|
|
|
struct TimerCompare {
|
2017-08-29 15:53:57 +02:00
|
|
|
constexpr bool operator()(const TimerEvent &a,
|
|
|
|
const TimerEvent &b) const {
|
2017-08-29 14:25:23 +02:00
|
|
|
return a.due < b.due;
|
|
|
|
}
|
2013-08-07 22:16:59 +02:00
|
|
|
};
|
|
|
|
|
2017-08-29 15:53:57 +02:00
|
|
|
typedef boost::intrusive::multiset<TimerEvent,
|
|
|
|
boost::intrusive::member_hook<TimerEvent,
|
|
|
|
TimerEvent::TimerSetHook,
|
|
|
|
&TimerEvent::timer_set_hook>,
|
2017-08-29 14:25:23 +02:00
|
|
|
boost::intrusive::compare<TimerCompare>,
|
|
|
|
boost::intrusive::constant_time_size<false>> TimerSet;
|
|
|
|
TimerSet timers;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2017-08-29 15:43:16 +02:00
|
|
|
typedef boost::intrusive::list<IdleMonitor,
|
|
|
|
boost::intrusive::member_hook<IdleMonitor,
|
|
|
|
IdleMonitor::ListHook,
|
|
|
|
&IdleMonitor::list_hook>,
|
|
|
|
boost::intrusive::constant_time_size<false>> IdleList;
|
|
|
|
IdleList idle;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
|
|
|
Mutex mutex;
|
2017-08-29 15:43:16 +02:00
|
|
|
|
2017-11-12 17:34:06 +01:00
|
|
|
typedef boost::intrusive::list<DeferEvent,
|
|
|
|
boost::intrusive::member_hook<DeferEvent,
|
|
|
|
DeferEvent::ListHook,
|
|
|
|
&DeferEvent::list_hook>,
|
2017-08-29 15:43:16 +02:00
|
|
|
boost::intrusive::constant_time_size<false>> DeferredList;
|
|
|
|
DeferredList deferred;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2016-12-27 23:06:34 +01:00
|
|
|
std::chrono::steady_clock::time_point now = std::chrono::steady_clock::now();
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2018-01-29 22:52:13 +01:00
|
|
|
/**
|
2019-02-05 22:38:45 +01:00
|
|
|
* 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).
|
2018-01-29 22:52:13 +01:00
|
|
|
*/
|
2019-02-05 22:38:45 +01:00
|
|
|
bool alive;
|
|
|
|
|
|
|
|
std::atomic_bool quit;
|
2018-01-29 22:52:13 +01:00
|
|
|
|
2014-01-05 01:38:51 +01:00
|
|
|
/**
|
|
|
|
* True when the object has been modified and another check is
|
|
|
|
* necessary before going to sleep via PollGroup::ReadEvents().
|
|
|
|
*/
|
|
|
|
bool again;
|
|
|
|
|
2014-01-05 01:37:22 +01:00
|
|
|
/**
|
|
|
|
* True when handling callbacks, false when waiting for I/O or
|
|
|
|
* timeout.
|
|
|
|
*
|
|
|
|
* Protected with #mutex.
|
|
|
|
*/
|
2016-12-27 23:08:11 +01:00
|
|
|
bool busy = true;
|
2014-01-05 01:37:22 +01:00
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
PollGroup poll_group;
|
|
|
|
PollResult poll_result;
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-08-07 22:49:46 +02:00
|
|
|
/**
|
|
|
|
* A reference to the thread that is currently inside Run().
|
|
|
|
*/
|
2016-12-27 23:08:11 +01:00
|
|
|
ThreadId thread = ThreadId::Null();
|
2013-08-07 22:49:46 +02:00
|
|
|
|
2013-01-10 19:13:00 +01:00
|
|
|
public:
|
2018-08-06 11:49:38 +02:00
|
|
|
/**
|
|
|
|
* Throws on error.
|
|
|
|
*/
|
2017-08-18 17:57:59 +02:00
|
|
|
explicit EventLoop(ThreadId _thread);
|
2018-08-06 11:49:38 +02:00
|
|
|
|
2017-08-18 17:57:59 +02:00
|
|
|
EventLoop():EventLoop(ThreadId::GetCurrent()) {}
|
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
~EventLoop() noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2013-11-24 19:28:04 +01:00
|
|
|
/**
|
2016-12-27 23:06:34 +01:00
|
|
|
* A caching wrapper for std::chrono::steady_clock::now().
|
2013-11-24 19:28:04 +01:00
|
|
|
*/
|
2016-12-27 23:06:34 +01:00
|
|
|
std::chrono::steady_clock::time_point GetTime() const {
|
2014-01-05 01:40:50 +01:00
|
|
|
assert(IsInside());
|
|
|
|
|
2016-12-27 23:06:34 +01:00
|
|
|
return now;
|
2013-08-07 22:16:59 +02:00
|
|
|
}
|
|
|
|
|
2013-11-24 19:28:04 +01:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-01-29 21:46:07 +01:00
|
|
|
void Break() noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
bool AddFD(int _fd, unsigned flags, SocketMonitor &m) noexcept {
|
2017-08-18 17:57:59 +02:00
|
|
|
assert(IsInside());
|
2014-01-05 01:40:50 +01:00
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
return poll_group.Add(_fd, flags, &m);
|
2013-08-07 22:16:59 +02:00
|
|
|
}
|
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
bool ModifyFD(int _fd, unsigned flags, SocketMonitor &m) noexcept {
|
2014-01-05 01:40:50 +01:00
|
|
|
assert(IsInside());
|
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
return poll_group.Modify(_fd, flags, &m);
|
2013-08-07 22:16:59 +02:00
|
|
|
}
|
|
|
|
|
2013-11-06 18:20:51 +01:00
|
|
|
/**
|
|
|
|
* Remove the given #SocketMonitor after the file descriptor
|
|
|
|
* has been closed. This is like RemoveFD(), but does not
|
|
|
|
* attempt to use #EPOLL_CTL_DEL.
|
|
|
|
*/
|
2018-01-29 21:46:07 +01:00
|
|
|
bool Abandon(int fd, SocketMonitor &m) noexcept;
|
2013-11-06 18:20:51 +01:00
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
bool RemoveFD(int fd, SocketMonitor &m) noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
void AddIdle(IdleMonitor &i) noexcept;
|
|
|
|
void RemoveIdle(IdleMonitor &i) noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2017-08-29 15:53:57 +02:00
|
|
|
void AddTimer(TimerEvent &t,
|
2018-01-29 21:46:07 +01:00
|
|
|
std::chrono::steady_clock::duration d) noexcept;
|
|
|
|
void CancelTimer(TimerEvent &t) noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
2014-01-04 14:56:02 +01:00
|
|
|
/**
|
2017-11-12 17:34:06 +01:00
|
|
|
* Schedule a call to DeferEvent::RunDeferred().
|
2014-01-04 14:56:02 +01:00
|
|
|
*
|
|
|
|
* This method is thread-safe.
|
|
|
|
*/
|
2017-11-12 17:34:06 +01:00
|
|
|
void AddDeferred(DeferEvent &d) noexcept;
|
2014-01-04 14:56:02 +01:00
|
|
|
|
|
|
|
/**
|
2017-11-12 17:34:06 +01:00
|
|
|
* Cancel a pending call to DeferEvent::RunDeferred().
|
2014-01-04 14:56:02 +01:00
|
|
|
* However after returning, the call may still be running.
|
|
|
|
*
|
|
|
|
* This method is thread-safe.
|
|
|
|
*/
|
2017-11-12 17:34:06 +01:00
|
|
|
void RemoveDeferred(DeferEvent &d) noexcept;
|
2014-01-04 14:56:02 +01:00
|
|
|
|
2013-11-24 19:28:04 +01:00
|
|
|
/**
|
|
|
|
* The main function of this class. It will loop until
|
|
|
|
* Break() gets called. Can be called only once.
|
|
|
|
*/
|
2018-01-29 21:46:07 +01:00
|
|
|
void Run() noexcept;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
|
|
|
private:
|
2014-01-05 01:32:59 +01:00
|
|
|
/**
|
2017-11-12 17:34:06 +01:00
|
|
|
* Invoke all pending DeferEvents.
|
2014-01-05 01:32:59 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the mutex.
|
|
|
|
*/
|
2018-01-29 21:46:07 +01:00
|
|
|
void HandleDeferred() noexcept;
|
2014-01-05 01:32:59 +01:00
|
|
|
|
2018-01-29 21:45:36 +01:00
|
|
|
/**
|
|
|
|
* Invoke all expired #TimerEvent instances and return the
|
|
|
|
* duration until the next timer expires. Returns a negative
|
|
|
|
* duration if there is no timeout.
|
|
|
|
*/
|
|
|
|
std::chrono::steady_clock::duration HandleTimers() noexcept;
|
|
|
|
|
2017-11-10 20:20:07 +01:00
|
|
|
bool OnSocketReady(unsigned flags) noexcept override;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
|
|
|
public:
|
2019-02-05 22:38:45 +01:00
|
|
|
void SetAlive(bool _alive) noexcept {
|
|
|
|
alive = _alive;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsAlive() const noexcept {
|
|
|
|
return alive;
|
2018-01-29 22:52:13 +01:00
|
|
|
}
|
2013-08-07 22:16:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Are we currently running inside this EventLoop's thread?
|
|
|
|
*/
|
|
|
|
gcc_pure
|
2017-06-03 21:33:44 +02:00
|
|
|
bool IsInside() const noexcept {
|
2013-08-07 22:16:59 +02:00
|
|
|
return thread.IsInside();
|
|
|
|
}
|
2013-01-10 19:13:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MAIN_NOTIFY_H */
|