Loop.hxx 4.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * 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"
24
#include "thread/Id.hxx"
25
#include "Compiler.h"
26

27 28 29 30 31 32 33 34 35 36
#ifdef USE_EPOLL
#include "system/EPollFD.hxx"
#include "thread/Mutex.hxx"
#include "WakeFD.hxx"
#include "SocketMonitor.hxx"

#include <functional>
#include <list>
#include <set>
#else
37
#include <glib.h>
38 39 40 41 42 43 44
#endif

#ifdef USE_EPOLL
class TimeoutMonitor;
class IdleMonitor;
class SocketMonitor;
#endif
45

46 47
#include <assert.h>

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
class EventLoop final
#ifdef USE_EPOLL
	: private SocketMonitor
#endif
{
#ifdef USE_EPOLL
	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;
		}
	};

	EPollFD epoll;

	WakeFD wake_fd;

	std::multiset<TimerRecord> timers;
	std::list<IdleMonitor *> idle;

	Mutex mutex;
	std::list<std::function<void()>> calls;

	unsigned now_ms;

	bool quit;

	static constexpr unsigned MAX_EVENTS = 16;
	unsigned n_events;
	epoll_event events[MAX_EVENTS];
#else
94 95
	GMainContext *context;
	GMainLoop *loop;
96
#endif
97

98 99 100
	/**
	 * A reference to the thread that is currently inside Run().
	 */
101
	ThreadId thread;
102

103
public:
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
#ifdef USE_EPOLL
	struct Default {};

	EventLoop(Default dummy=Default());
	~EventLoop();

	unsigned GetTimeMS() const {
		return now_ms;
	}

	void Break();

	bool AddFD(int _fd, unsigned flags, SocketMonitor &m) {
		return epoll.Add(_fd, flags, &m);
	}

	bool ModifyFD(int _fd, unsigned flags, SocketMonitor &m) {
		return epoll.Modify(_fd, flags, &m);
	}

124 125 126 127 128 129 130
	/**
	 * Remove the given #SocketMonitor after the file descriptor
	 * has been closed.  This is like RemoveFD(), but does not
	 * attempt to use #EPOLL_CTL_DEL.
	 */
	void Abandon(SocketMonitor &m);

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	bool RemoveFD(int fd, SocketMonitor &m);

	void AddIdle(IdleMonitor &i);
	void RemoveIdle(IdleMonitor &i);

	void AddTimer(TimeoutMonitor &t, unsigned ms);
	void CancelTimer(TimeoutMonitor &t);

	void AddCall(std::function<void()> &&f);

	void Run();

private:
	virtual bool OnSocketReady(unsigned flags) override;

public:
#else
148 149
	EventLoop()
		:context(g_main_context_new()),
150
		 loop(g_main_loop_new(context, false)),
151
		 thread(ThreadId::Null()) {}
152 153 154 155

	struct Default {};
	EventLoop(gcc_unused Default _dummy)
		:context(g_main_context_ref(g_main_context_default())),
156
		 loop(g_main_loop_new(context, false)),
157
		 thread(ThreadId::Null()) {}
158 159 160 161 162 163 164 165 166 167

	~EventLoop() {
		g_main_loop_unref(loop);
		g_main_context_unref(context);
	}

	GMainContext *GetContext() {
		return context;
	}

168 169 170 171
	void WakeUp() {
		g_main_context_wakeup(context);
	}

172 173 174 175
	void Break() {
		g_main_loop_quit(loop);
	}

176
	void Run();
177

178
	guint AddIdle(GSourceFunc function, gpointer data);
179

180
	GSource *AddTimeout(guint interval_ms,
181
			    GSourceFunc function, gpointer data);
182

183
	GSource *AddTimeoutSeconds(guint interval_s,
184
				   GSourceFunc function, gpointer data);
185 186 187 188 189 190 191 192 193 194 195
#endif

	/**
	 * Are we currently running inside this EventLoop's thread?
	 */
	gcc_pure
	bool IsInside() const {
		assert(!thread.IsNull());

		return thread.IsInside();
	}
196 197 198
};

#endif /* MAIN_NOTIFY_H */