2013-04-17 22:58:33 +02:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2013-04-17 22:58:33 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_INSTANCE_HXX
|
|
|
|
#define MPD_INSTANCE_HXX
|
|
|
|
|
|
|
|
#include "check.h"
|
2016-03-05 20:17:47 +01:00
|
|
|
#include "event/Loop.hxx"
|
2017-02-10 21:46:07 +01:00
|
|
|
#include "event/Thread.hxx"
|
2016-03-10 20:31:08 +01:00
|
|
|
#include "event/MaskMonitor.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2013-04-17 22:58:33 +02:00
|
|
|
|
2018-08-02 11:15:35 +02:00
|
|
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
|
|
|
#include "lib/systemd/Watchdog.hxx"
|
|
|
|
#endif
|
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
#ifdef ENABLE_CURL
|
|
|
|
#include "RemoteTagCacheHandler.hxx"
|
|
|
|
#endif
|
|
|
|
|
2014-01-18 16:36:42 +01:00
|
|
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
|
|
|
#include "neighbor/Listener.hxx"
|
|
|
|
class NeighborGlue;
|
|
|
|
#endif
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
#include "db/DatabaseListener.hxx"
|
2014-02-01 00:26:34 +01:00
|
|
|
class Database;
|
2014-02-06 07:19:12 +01:00
|
|
|
class Storage;
|
2014-01-29 20:16:43 +01:00
|
|
|
class UpdateService;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
#include <memory>
|
2017-02-17 23:21:20 +01:00
|
|
|
#include <list>
|
|
|
|
|
2013-04-17 22:58:33 +02:00
|
|
|
class ClientList;
|
|
|
|
struct Partition;
|
2016-03-05 21:00:38 +01:00
|
|
|
class StateFile;
|
2018-01-29 12:02:14 +01:00
|
|
|
class RemoteTagCache;
|
2013-04-17 22:58:33 +02:00
|
|
|
|
2016-03-10 20:32:35 +01:00
|
|
|
/**
|
|
|
|
* A utility class which, when used as the first base class, ensures
|
|
|
|
* that the #EventLoop gets initialized before the other base classes.
|
|
|
|
*/
|
|
|
|
struct EventLoopHolder {
|
|
|
|
EventLoop event_loop;
|
|
|
|
};
|
|
|
|
|
2014-01-18 16:36:42 +01:00
|
|
|
struct Instance final
|
2016-03-10 20:31:08 +01:00
|
|
|
: EventLoopHolder
|
2014-01-30 20:29:48 +01:00
|
|
|
#if defined(ENABLE_DATABASE) || defined(ENABLE_NEIGHBOR_PLUGINS)
|
2016-03-10 20:32:35 +01:00
|
|
|
,
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
public DatabaseListener
|
2014-01-18 16:36:42 +01:00
|
|
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
2014-01-30 20:29:48 +01:00
|
|
|
,
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
|
|
|
public NeighborListener
|
2014-01-18 16:36:42 +01:00
|
|
|
#endif
|
2018-01-29 12:02:14 +01:00
|
|
|
#ifdef ENABLE_CURL
|
|
|
|
, public RemoteTagCacheHandler
|
|
|
|
#endif
|
2014-01-18 16:36:42 +01:00
|
|
|
{
|
2018-02-16 22:38:55 +01:00
|
|
|
/**
|
|
|
|
* A thread running an #EventLoop for non-blocking (bulk) I/O.
|
|
|
|
*/
|
2017-02-10 21:46:07 +01:00
|
|
|
EventThread io_thread;
|
|
|
|
|
2018-02-16 22:38:55 +01:00
|
|
|
/**
|
|
|
|
* Another thread running an #EventLoop for non-blocking
|
|
|
|
* (real-time) I/O. This is used instead of #io_thread for
|
|
|
|
* events which require low latency, e.g. for filling hardware
|
|
|
|
* ring buffers.
|
|
|
|
*/
|
|
|
|
EventThread rtio_thread;
|
|
|
|
|
2018-08-02 11:15:35 +02:00
|
|
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
|
|
|
Systemd::Watchdog systemd_watchdog;
|
|
|
|
#endif
|
|
|
|
|
2016-06-17 17:00:05 +02:00
|
|
|
MaskMonitor idle_monitor;
|
2016-03-10 20:31:08 +01:00
|
|
|
|
2014-01-18 16:36:42 +01:00
|
|
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
|
|
|
NeighborGlue *neighbors;
|
|
|
|
#endif
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-02-01 00:26:34 +01:00
|
|
|
Database *database;
|
|
|
|
|
2014-02-09 07:44:07 +01:00
|
|
|
/**
|
|
|
|
* This is really a #CompositeStorage. To avoid heavy include
|
|
|
|
* dependencies, we declare it as just #Storage.
|
|
|
|
*/
|
2016-03-05 18:55:39 +01:00
|
|
|
Storage *storage = nullptr;
|
2014-02-05 17:50:04 +01:00
|
|
|
|
2016-03-05 18:55:39 +01:00
|
|
|
UpdateService *update = nullptr;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
#ifdef ENABLE_CURL
|
|
|
|
std::unique_ptr<RemoteTagCache> remote_tag_cache;
|
|
|
|
#endif
|
|
|
|
|
2013-04-17 22:58:33 +02:00
|
|
|
ClientList *client_list;
|
|
|
|
|
2017-02-17 23:21:20 +01:00
|
|
|
std::list<Partition> partitions;
|
2013-04-17 22:58:33 +02:00
|
|
|
|
2017-02-17 23:21:55 +01:00
|
|
|
StateFile *state_file = nullptr;
|
2016-03-05 21:00:38 +01:00
|
|
|
|
2017-02-17 23:21:41 +01:00
|
|
|
Instance();
|
2018-01-29 18:43:10 +01:00
|
|
|
~Instance() noexcept;
|
2016-03-05 20:14:12 +01:00
|
|
|
|
2016-03-05 18:33:27 +01:00
|
|
|
/**
|
2018-01-29 23:31:41 +01:00
|
|
|
* Wrapper for EventLoop::Break(). Call to initiate shutdown.
|
2016-03-05 18:33:27 +01:00
|
|
|
*/
|
2018-01-29 23:31:41 +01:00
|
|
|
void Break() {
|
2016-03-05 20:17:47 +01:00
|
|
|
event_loop.Break();
|
|
|
|
}
|
2016-03-05 18:33:27 +01:00
|
|
|
|
2016-03-10 20:31:08 +01:00
|
|
|
void EmitIdle(unsigned mask) {
|
|
|
|
idle_monitor.OrMask(mask);
|
|
|
|
}
|
|
|
|
|
2017-02-20 12:38:27 +01:00
|
|
|
/**
|
|
|
|
* Find a #Partition with the given name. Returns nullptr if
|
|
|
|
* no such partition was found.
|
|
|
|
*/
|
|
|
|
gcc_pure
|
2017-05-15 23:05:45 +02:00
|
|
|
Partition *FindPartition(const char *name) noexcept;
|
2017-02-20 12:38:27 +01:00
|
|
|
|
2018-01-29 23:45:48 +01:00
|
|
|
void BeginShutdownPartitions() noexcept;
|
|
|
|
void FinishShutdownPartitions() noexcept;
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-02-01 00:26:34 +01:00
|
|
|
/**
|
|
|
|
* Returns the global #Database instance. May return nullptr
|
|
|
|
* if this MPD configuration has no database (no
|
|
|
|
* music_directory was configured).
|
|
|
|
*/
|
2016-10-26 18:52:00 +02:00
|
|
|
Database *GetDatabase() {
|
|
|
|
return database;
|
|
|
|
}
|
2016-10-26 18:47:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the global #Database instance. Throws
|
|
|
|
* DatabaseError if this MPD configuration has no database (no
|
|
|
|
* music_directory was configured).
|
|
|
|
*/
|
|
|
|
const Database &GetDatabaseOrThrow() const;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
|
2018-01-29 23:45:48 +01:00
|
|
|
void BeginShutdownUpdate() noexcept;
|
|
|
|
void FinishShutdownUpdate() noexcept;
|
|
|
|
void ShutdownDatabase() noexcept;
|
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
#ifdef ENABLE_CURL
|
|
|
|
void LookupRemoteTag(const char *uri) noexcept;
|
|
|
|
#else
|
|
|
|
void LookupRemoteTag(const char *) noexcept {
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-11 01:01:54 +01:00
|
|
|
private:
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2016-03-10 23:16:35 +01:00
|
|
|
void OnDatabaseModified() override;
|
2016-03-18 16:18:41 +01:00
|
|
|
void OnDatabaseSongRemoved(const char *uri) override;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
2014-01-18 16:36:42 +01:00
|
|
|
|
|
|
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
|
|
|
/* virtual methods from class NeighborListener */
|
2018-01-02 16:58:14 +01:00
|
|
|
void FoundNeighbor(const NeighborInfo &info) noexcept override;
|
|
|
|
void LostNeighbor(const NeighborInfo &info) noexcept override;
|
2014-01-18 16:36:42 +01:00
|
|
|
#endif
|
2016-03-10 09:27:07 +01:00
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
#ifdef ENABLE_CURL
|
|
|
|
/* virtual methods from class RemoteTagCacheHandler */
|
|
|
|
void OnRemoteTag(const char *uri, const Tag &tag) noexcept override;
|
|
|
|
#endif
|
|
|
|
|
2016-03-10 20:31:08 +01:00
|
|
|
/* callback for #idle_monitor */
|
|
|
|
void OnIdle(unsigned mask);
|
2013-04-17 22:58:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|