2013-01-10 19:13:00 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
|
|
|
* 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
|
|
|
|
|
|
|
|
#include "check.h"
|
2013-08-10 09:00:04 +02:00
|
|
|
#include "thread/Id.hxx"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-11-27 12:04:38 +01:00
|
|
|
#ifdef USE_INTERNAL_EVENTLOOP
|
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"
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <set>
|
2013-11-27 12:04:38 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_GLIB_EVENTLOOP
|
2013-01-10 19:13:00 +01:00
|
|
|
#include <glib.h>
|
2013-08-07 22:16:59 +02:00
|
|
|
#endif
|
|
|
|
|
2013-11-27 12:04:38 +01:00
|
|
|
#ifdef USE_INTERNAL_EVENTLOOP
|
2013-08-07 22:16:59 +02:00
|
|
|
class TimeoutMonitor;
|
|
|
|
class IdleMonitor;
|
2014-01-04 14:56:02 +01:00
|
|
|
class DeferredMonitor;
|
2013-08-07 22:16:59 +02:00
|
|
|
class SocketMonitor;
|
|
|
|
#endif
|
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.
|
|
|
|
*
|
|
|
|
* @see SocketMonitor, MultiSocketMonitor, TimeoutMonitor, IdleMonitor
|
|
|
|
*/
|
2013-08-07 22:16:59 +02:00
|
|
|
class EventLoop final
|
2013-11-27 12:04:38 +01:00
|
|
|
#ifdef USE_INTERNAL_EVENTLOOP
|
2013-08-07 22:16:59 +02:00
|
|
|
: private SocketMonitor
|
|
|
|
#endif
|
|
|
|
{
|
2013-11-27 12:04:38 +01:00
|
|
|
#ifdef USE_INTERNAL_EVENTLOOP
|
2013-08-07 22:16:59 +02:00
|
|
|
struct TimerRecord {
|
|
|
|
/**
|
|
|
|
* Projected monotonic_clock_ms() value when this
|
|
|
|
* timer is due.
|
|
|
|
*/
|
|
|
|
const unsigned due_ms;
|
|
|
|
|
|
|
|
TimeoutMonitor &timer;
|
|
|
|
|
|
|
|
constexpr TimerRecord(TimeoutMonitor &_timer,
|
|
|
|
unsigned _due_ms)
|
|
|
|
:due_ms(_due_ms), timer(_timer) {}
|
|
|
|
|
|
|
|
bool operator<(const TimerRecord &other) const {
|
|
|
|
return due_ms < other.due_ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsDue(unsigned _now_ms) const {
|
|
|
|
return _now_ms >= due_ms;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
WakeFD wake_fd;
|
|
|
|
|
|
|
|
std::multiset<TimerRecord> timers;
|
|
|
|
std::list<IdleMonitor *> idle;
|
|
|
|
|
|
|
|
Mutex mutex;
|
2014-01-04 14:56:02 +01:00
|
|
|
std::list<DeferredMonitor *> deferred;
|
2013-08-07 22:16:59 +02:00
|
|
|
|
|
|
|
unsigned now_ms;
|
|
|
|
|
|
|
|
bool quit;
|
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
PollGroup poll_group;
|
|
|
|
PollResult poll_result;
|
2013-11-27 12:04:38 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_GLIB_EVENTLOOP
|
2013-01-10 19:13:00 +01:00
|
|
|
GMainContext *context;
|
|
|
|
GMainLoop *loop;
|
2013-08-07 22:16:59 +02:00
|
|
|
#endif
|
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().
|
|
|
|
*/
|
2013-08-10 09:00:04 +02:00
|
|
|
ThreadId thread;
|
2013-08-07 22:49:46 +02:00
|
|
|
|
2013-01-10 19:13:00 +01:00
|
|
|
public:
|
2013-11-27 12:04:38 +01:00
|
|
|
#ifdef USE_INTERNAL_EVENTLOOP
|
2013-08-07 22:16:59 +02:00
|
|
|
struct Default {};
|
|
|
|
|
|
|
|
EventLoop(Default dummy=Default());
|
|
|
|
~EventLoop();
|
|
|
|
|
2013-11-24 19:28:04 +01:00
|
|
|
/**
|
|
|
|
* A caching wrapper for MonotonicClockMS().
|
|
|
|
*/
|
2013-08-07 22:16:59 +02:00
|
|
|
unsigned GetTimeMS() const {
|
|
|
|
return now_ms;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2013-08-07 22:16:59 +02:00
|
|
|
void Break();
|
|
|
|
|
|
|
|
bool AddFD(int _fd, unsigned flags, SocketMonitor &m) {
|
2013-11-28 11:37:23 +01:00
|
|
|
return poll_group.Add(_fd, flags, &m);
|
2013-08-07 22:16:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ModifyFD(int _fd, unsigned flags, SocketMonitor &m) {
|
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.
|
|
|
|
*/
|
2013-11-28 11:37:23 +01:00
|
|
|
bool Abandon(int fd, SocketMonitor &m);
|
2013-11-06 18:20:51 +01:00
|
|
|
|
2013-08-07 22:16:59 +02:00
|
|
|
bool RemoveFD(int fd, SocketMonitor &m);
|
|
|
|
|
|
|
|
void AddIdle(IdleMonitor &i);
|
|
|
|
void RemoveIdle(IdleMonitor &i);
|
|
|
|
|
|
|
|
void AddTimer(TimeoutMonitor &t, unsigned ms);
|
|
|
|
void CancelTimer(TimeoutMonitor &t);
|
|
|
|
|
2014-01-04 14:56:02 +01:00
|
|
|
/**
|
|
|
|
* Schedule a call to DeferredMonitor::RunDeferred().
|
|
|
|
*
|
|
|
|
* This method is thread-safe.
|
|
|
|
*/
|
|
|
|
void AddDeferred(DeferredMonitor &d);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cancel a pending call to DeferredMonitor::RunDeferred().
|
|
|
|
* However after returning, the call may still be running.
|
|
|
|
*
|
|
|
|
* This method is thread-safe.
|
|
|
|
*/
|
|
|
|
void RemoveDeferred(DeferredMonitor &d);
|
|
|
|
|
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.
|
|
|
|
*/
|
2013-08-07 22:16:59 +02:00
|
|
|
void Run();
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool OnSocketReady(unsigned flags) override;
|
|
|
|
|
|
|
|
public:
|
2013-11-27 12:04:38 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_GLIB_EVENTLOOP
|
2013-01-10 19:13:00 +01:00
|
|
|
EventLoop()
|
|
|
|
:context(g_main_context_new()),
|
2013-08-07 22:49:46 +02:00
|
|
|
loop(g_main_loop_new(context, false)),
|
2013-08-10 09:00:04 +02:00
|
|
|
thread(ThreadId::Null()) {}
|
2013-01-10 19:13:00 +01:00
|
|
|
|
|
|
|
struct Default {};
|
|
|
|
EventLoop(gcc_unused Default _dummy)
|
|
|
|
:context(g_main_context_ref(g_main_context_default())),
|
2013-08-07 22:49:46 +02:00
|
|
|
loop(g_main_loop_new(context, false)),
|
2013-08-10 09:00:04 +02:00
|
|
|
thread(ThreadId::Null()) {}
|
2013-01-10 19:13:00 +01:00
|
|
|
|
|
|
|
~EventLoop() {
|
|
|
|
g_main_loop_unref(loop);
|
|
|
|
g_main_context_unref(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
GMainContext *GetContext() {
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2013-01-30 14:57:29 +01:00
|
|
|
void WakeUp() {
|
|
|
|
g_main_context_wakeup(context);
|
|
|
|
}
|
|
|
|
|
2013-01-10 19:13:00 +01:00
|
|
|
void Break() {
|
|
|
|
g_main_loop_quit(loop);
|
|
|
|
}
|
|
|
|
|
2013-08-08 21:50:07 +02:00
|
|
|
void Run();
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-08-08 21:50:07 +02:00
|
|
|
guint AddIdle(GSourceFunc function, gpointer data);
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-01-10 19:08:42 +01:00
|
|
|
GSource *AddTimeout(guint interval_ms,
|
2013-08-08 21:50:07 +02:00
|
|
|
GSourceFunc function, gpointer data);
|
2013-01-10 19:13:00 +01:00
|
|
|
|
2013-01-10 19:08:42 +01:00
|
|
|
GSource *AddTimeoutSeconds(guint interval_s,
|
2013-08-08 21:50:07 +02:00
|
|
|
GSourceFunc function, gpointer data);
|
2013-08-07 22:16:59 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Are we currently running inside this EventLoop's thread?
|
|
|
|
*/
|
|
|
|
gcc_pure
|
|
|
|
bool IsInside() const {
|
|
|
|
assert(!thread.IsNull());
|
|
|
|
|
|
|
|
return thread.IsInside();
|
|
|
|
}
|
2013-01-10 19:13:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MAIN_NOTIFY_H */
|