2013-08-07 22:42:45 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2013-08-07 22:42:45 +02: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "Call.hxx"
|
|
|
|
#include "Loop.hxx"
|
2017-11-12 17:32:23 +01:00
|
|
|
#include "DeferEvent.hxx"
|
2013-08-07 22:42:45 +02:00
|
|
|
#include "thread/Mutex.hxx"
|
|
|
|
#include "thread/Cond.hxx"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2013-08-07 22:42:45 +02:00
|
|
|
|
2016-09-09 17:21:17 +02:00
|
|
|
#include <exception>
|
|
|
|
|
2013-08-07 22:42:45 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-08-07 22:16:59 +02:00
|
|
|
class BlockingCallMonitor final
|
|
|
|
{
|
2017-11-12 17:32:23 +01:00
|
|
|
DeferEvent defer_event;
|
|
|
|
|
2013-08-07 22:42:45 +02:00
|
|
|
const std::function<void()> f;
|
|
|
|
|
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
|
|
|
|
|
|
|
bool done;
|
|
|
|
|
2016-09-09 17:21:17 +02:00
|
|
|
std::exception_ptr exception;
|
|
|
|
|
2013-08-07 22:42:45 +02:00
|
|
|
public:
|
|
|
|
BlockingCallMonitor(EventLoop &_loop, std::function<void()> &&_f)
|
2017-11-12 17:32:23 +01:00
|
|
|
:defer_event(_loop, BIND_THIS_METHOD(RunDeferred)),
|
|
|
|
f(std::move(_f)), done(false) {}
|
2013-08-07 22:42:45 +02:00
|
|
|
|
|
|
|
void Run() {
|
|
|
|
assert(!done);
|
|
|
|
|
2017-11-12 17:32:23 +01:00
|
|
|
defer_event.Schedule();
|
2013-08-07 22:42:45 +02:00
|
|
|
|
|
|
|
mutex.lock();
|
|
|
|
while (!done)
|
|
|
|
cond.wait(mutex);
|
|
|
|
mutex.unlock();
|
2016-09-09 17:21:17 +02:00
|
|
|
|
|
|
|
if (exception)
|
|
|
|
std::rethrow_exception(exception);
|
2013-08-07 22:42:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-11-12 17:32:23 +01:00
|
|
|
void RunDeferred() noexcept {
|
2013-08-07 22:16:59 +02:00
|
|
|
assert(!done);
|
|
|
|
|
2016-09-09 17:21:17 +02:00
|
|
|
try {
|
|
|
|
f();
|
|
|
|
} catch (...) {
|
|
|
|
exception = std::current_exception();
|
|
|
|
}
|
2013-08-10 12:40:44 +02:00
|
|
|
|
|
|
|
mutex.lock();
|
|
|
|
done = true;
|
|
|
|
cond.signal();
|
|
|
|
mutex.unlock();
|
2013-08-07 22:42:45 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
BlockingCall(EventLoop &loop, std::function<void()> &&f)
|
|
|
|
{
|
2018-01-29 23:06:43 +01:00
|
|
|
if (loop.IsDead() || loop.IsInside()) {
|
2013-08-07 22:42:45 +02:00
|
|
|
/* we're already inside the loop - we can simply call
|
|
|
|
the function */
|
|
|
|
f();
|
|
|
|
} else {
|
|
|
|
/* outside the EventLoop's thread - defer execution to
|
|
|
|
the EventLoop, wait for completion */
|
|
|
|
BlockingCallMonitor m(loop, std::move(f));
|
|
|
|
m.Run();
|
|
|
|
}
|
|
|
|
}
|