Loop.cxx 5.26 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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.
 */

#include "config.h"
#include "Loop.hxx"
22

23
#include "system/Clock.hxx"
24 25 26
#include "TimeoutMonitor.hxx"
#include "SocketMonitor.hxx"
#include "IdleMonitor.hxx"
27
#include "DeferredMonitor.hxx"
28 29 30

#include <algorithm>

31
EventLoop::EventLoop()
32
	:SocketMonitor(*this),
33
	 now_ms(::MonotonicClockMS()),
34
	 quit(false), busy(true),
35 36 37
#ifndef NDEBUG
	 virgin(true),
#endif
38
	 thread(ThreadId::Null())
39 40 41 42 43 44 45 46 47
{
	SocketMonitor::Open(wake_fd.Get());
	SocketMonitor::Schedule(SocketMonitor::READ);
}

EventLoop::~EventLoop()
{
	assert(idle.empty());
	assert(timers.empty());
48 49 50 51

	/* this is necessary to get a well-defined destruction
	   order */
	SocketMonitor::Cancel();
52 53 54 55 56
}

void
EventLoop::Break()
{
57 58
	quit = true;
	wake_fd.Write();
59 60
}

61 62
bool
EventLoop::Abandon(int _fd, SocketMonitor &m)
63
{
64
	assert(IsInsideOrVirgin());
65

66 67
	poll_result.Clear(&m);
	return poll_group.Abandon(_fd);
68
}
69

70 71 72
bool
EventLoop::RemoveFD(int _fd, SocketMonitor &m)
{
73 74
	assert(IsInsideOrNull());

75 76
	poll_result.Clear(&m);
	return poll_group.Remove(_fd);
77 78 79 80 81
}

void
EventLoop::AddIdle(IdleMonitor &i)
{
82
	assert(IsInsideOrVirgin());
83 84 85
	assert(std::find(idle.begin(), idle.end(), &i) == idle.end());

	idle.push_back(&i);
86
	again = true;
87 88 89 90 91
}

void
EventLoop::RemoveIdle(IdleMonitor &i)
{
92
	assert(IsInsideOrVirgin());
93

94 95 96 97 98 99 100 101 102
	auto it = std::find(idle.begin(), idle.end(), &i);
	assert(it != idle.end());

	idle.erase(it);
}

void
EventLoop::AddTimer(TimeoutMonitor &t, unsigned ms)
{
103 104 105
	/* can't use IsInsideOrVirgin() here because libavahi-client
	   modifies the timeout during avahi_client_free() */
	assert(IsInsideOrNull());
106

107
	timers.insert(TimerRecord(t, now_ms + ms));
108
	again = true;
109 110 111 112 113
}

void
EventLoop::CancelTimer(TimeoutMonitor &t)
{
114 115
	assert(IsInsideOrNull());

116 117 118 119 120 121 122 123
	for (auto i = timers.begin(), end = timers.end(); i != end; ++i) {
		if (&i->timer == &t) {
			timers.erase(i);
			return;
		}
	}
}

124 125 126
void
EventLoop::Run()
{
127
	assert(thread.IsNull());
128 129 130 131 132 133
	assert(virgin);

#ifndef NDEBUG
	virgin = false;
#endif

134
	thread = ThreadId::GetCurrent();
135

136
	assert(!quit);
137
	assert(busy);
138 139

	do {
140
		now_ms = ::MonotonicClockMS();
141
		again = false;
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

		/* invoke timers */

		int timeout_ms;
		while (true) {
			auto i = timers.begin();
			if (i == timers.end()) {
				timeout_ms = -1;
				break;
			}

			timeout_ms = i->due_ms - now_ms;
			if (timeout_ms > 0)
				break;

			TimeoutMonitor &m = i->timer;
			timers.erase(i);

			m.Run();

			if (quit)
				return;
		}

		/* invoke idle */

		while (!idle.empty()) {
			IdleMonitor &m = *idle.front();
			idle.pop_front();
			m.Run();

			if (quit)
				return;
		}

177 178 179 180 181
		/* try to handle DeferredMonitors without WakeFD
		   overhead */
		mutex.lock();
		HandleDeferred();
		busy = false;
182
		const bool _again = again;
183 184
		mutex.unlock();

185
		if (_again)
186 187 188 189 190 191 192
			/* re-evaluate timers because one of the
			   IdleMonitors may have added a new
			   timeout */
			continue;

		/* wait for new event */

193
		poll_group.ReadEvents(poll_result, timeout_ms);
194

195
		now_ms = ::MonotonicClockMS();
196

197 198 199 200
		mutex.lock();
		busy = true;
		mutex.unlock();

201
		/* invoke sockets */
202 203 204
		for (int i = 0; i < poll_result.GetSize(); ++i) {
			auto events = poll_result.GetEvents(i);
			if (events != 0) {
205 206
				if (quit)
					break;
207 208 209

				auto m = (SocketMonitor *)poll_result.GetObject(i);
				m->Dispatch(events);
210 211 212
			}
		}

213
		poll_result.Reset();
214

215
	} while (!quit);
216

217
#ifndef NDEBUG
218
	assert(busy);
219
	assert(thread.IsInside());
220 221
	thread = ThreadId::Null();
#endif
222 223
}

224 225 226 227 228 229 230 231 232 233 234 235
void
EventLoop::AddDeferred(DeferredMonitor &d)
{
	mutex.lock();
	if (d.pending) {
		mutex.unlock();
		return;
	}

	assert(std::find(deferred.begin(),
			 deferred.end(), &d) == deferred.end());

236 237
	/* we don't need to wake up the EventLoop if another
	   DeferredMonitor has already done it */
238
	const bool must_wake = !busy && deferred.empty();
239

240 241
	d.pending = true;
	deferred.push_back(&d);
242
	again = true;
243 244
	mutex.unlock();

245 246
	if (must_wake)
		wake_fd.Write();
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
}

void
EventLoop::RemoveDeferred(DeferredMonitor &d)
{
	const ScopeLock protect(mutex);

	if (!d.pending) {
		assert(std::find(deferred.begin(),
				 deferred.end(), &d) == deferred.end());
		return;
	}

	d.pending = false;

	auto i = std::find(deferred.begin(), deferred.end(), &d);
	assert(i != deferred.end());

	deferred.erase(i);
}

268 269
void
EventLoop::HandleDeferred()
270
{
271 272 273 274 275 276 277 278 279 280 281
	while (!deferred.empty() && !quit) {
		DeferredMonitor &m = *deferred.front();
		assert(m.pending);

		deferred.pop_front();
		m.pending = false;

		mutex.unlock();
		m.RunDeferred();
		mutex.lock();
	}
282
}
283

284 285 286
bool
EventLoop::OnSocketReady(gcc_unused unsigned flags)
{
287 288
	assert(IsInside());

289 290 291 292
	wake_fd.Read();

	mutex.lock();
	HandleDeferred();
293 294 295 296
	mutex.unlock();

	return true;
}