mpd/src/Main.cxx

673 lines
15 KiB
C++
Raw Normal View History

/*
2018-10-31 17:54:59 +01:00
* Copyright 2003-2018 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.
*/
#include "config.h"
2012-09-28 00:40:00 +02:00
#include "Main.hxx"
#include "Instance.hxx"
2013-01-03 17:31:38 +01:00
#include "CommandLine.hxx"
2012-09-28 00:40:00 +02:00
#include "PlaylistFile.hxx"
2013-01-04 10:16:16 +01:00
#include "MusicChunk.hxx"
2013-01-02 19:52:57 +01:00
#include "StateFile.hxx"
2013-01-02 22:43:56 +01:00
#include "Mapper.hxx"
2013-01-03 03:06:45 +01:00
#include "Permission.hxx"
2013-01-03 11:05:44 +01:00
#include "Listen.hxx"
#include "client/Listener.hxx"
2019-04-03 21:31:32 +02:00
#include "client/Config.hxx"
#include "client/List.hxx"
2013-10-20 13:41:04 +02:00
#include "command/AllCommands.hxx"
#include "Partition.hxx"
2017-02-08 08:26:58 +01:00
#include "tag/Config.hxx"
#include "ReplayGainGlobal.hxx"
2013-01-09 08:36:52 +01:00
#include "Idle.hxx"
2013-01-09 22:33:06 +01:00
#include "Log.hxx"
#include "LogInit.hxx"
2014-01-24 16:18:21 +01:00
#include "input/Init.hxx"
#include "event/Loop.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/Config.hxx"
2014-01-23 23:30:12 +01:00
#include "playlist/PlaylistRegistry.hxx"
2014-01-24 00:14:54 +01:00
#include "zeroconf/ZeroconfGlue.hxx"
2014-01-24 00:02:24 +01:00
#include "decoder/DecoderList.hxx"
#include "AudioParser.hxx"
#include "pcm/PcmConvert.hxx"
2014-01-24 16:12:10 +01:00
#include "unix/SignalHandlers.hxx"
#include "thread/Slack.hxx"
#include "net/Init.hxx"
2014-06-10 22:38:00 +02:00
#include "lib/icu/Init.hxx"
2018-08-19 22:47:05 +02:00
#include "config/File.hxx"
#include "config/Check.hxx"
#include "config/Data.hxx"
#include "config/Param.hxx"
#include "config/Path.hxx"
#include "config/Defaults.hxx"
#include "config/Option.hxx"
#include "config/Domain.hxx"
#include "util/RuntimeError.hxx"
#include "util/ScopeExit.hxx"
2012-09-28 00:40:00 +02:00
#ifdef ENABLE_DAEMON
#include "unix/Daemon.hxx"
#endif
#ifdef ENABLE_DATABASE
#include "db/update/Service.hxx"
2014-02-17 21:47:15 +01:00
#include "db/Configured.hxx"
#include "db/DatabasePlugin.hxx"
2014-02-26 09:17:41 +01:00
#include "db/plugins/simple/SimpleDatabasePlugin.hxx"
#include "storage/Configured.hxx"
#include "storage/CompositeStorage.hxx"
#ifdef ENABLE_INOTIFY
#include "db/update/InotifyUpdate.hxx"
#endif
#endif
#ifdef ENABLE_NEIGHBOR_PLUGINS
#include "neighbor/Glue.hxx"
#endif
#ifdef ENABLE_SQLITE
#include "sticker/Database.hxx"
#endif
#ifdef ENABLE_ARCHIVE
2014-01-24 00:09:37 +01:00
#include "archive/ArchiveList.hxx"
#endif
2012-09-28 00:40:00 +02:00
#ifdef ANDROID
#include "java/Global.hxx"
#include "java/File.hxx"
#include "android/Environment.hxx"
#include "android/Context.hxx"
#include "android/LogListener.hxx"
#include "fs/FileSystem.hxx"
#include "org_musicpd_Bridge.h"
#endif
#ifdef ENABLE_DBUS
#include "lib/dbus/Init.hxx"
2015-03-21 14:18:15 +01:00
#endif
#ifdef ENABLE_SYSTEMD_DAEMON
#include <systemd/sd-daemon.h>
#endif
#include <stdlib.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#include <limits.h>
static constexpr size_t KILOBYTE = 1024;
static constexpr size_t MEGABYTE = 1024 * KILOBYTE;
static constexpr size_t DEFAULT_BUFFER_SIZE = 4 * MEGABYTE;
static constexpr
size_t MIN_BUFFER_SIZE = std::max(CHUNK_SIZE * 32,
64 * KILOBYTE);
#ifdef ANDROID
Context *context;
LogListener *logListener;
#endif
Instance *instance;
struct Config {
ReplayGainConfig replay_gain;
};
static Config
LoadConfig(const ConfigData &config)
{
return {LoadReplayGainConfig(config)};
}
#ifdef ENABLE_DAEMON
static void
2018-07-17 22:48:58 +02:00
glue_daemonize_init(const struct options *options,
const ConfigData &config)
{
2018-07-17 22:48:58 +02:00
daemonize_init(config.GetString(ConfigOption::USER),
config.GetString(ConfigOption::GROUP),
config.GetPath(ConfigOption::PID_FILE));
if (options->kill)
daemonize_kill();
}
#endif
static void
2018-07-17 22:48:58 +02:00
glue_mapper_init(const ConfigData &config)
{
2018-07-17 22:48:58 +02:00
mapper_init(config.GetPath(ConfigOption::PLAYLIST_DIR));
}
#ifdef ENABLE_DATABASE
static void
InitStorage(const ConfigData &config, EventLoop &event_loop)
{
auto storage = CreateConfiguredStorage(config, event_loop);
if (storage == nullptr)
return;
CompositeStorage *composite = new CompositeStorage();
instance->storage = composite;
composite->Mount("", std::move(storage));
}
/**
* Returns the database. If this function returns false, this has not
* succeeded, and the caller should create the database after the
* process has been daemonized.
*/
static bool
glue_db_init_and_load(const ConfigData &config)
{
auto db = CreateConfiguredDatabase(config, instance->event_loop,
instance->io_thread.GetEventLoop(),
*instance);
if (!db)
return true;
if (db->GetPlugin().RequireStorage()) {
InitStorage(config, instance->io_thread.GetEventLoop());
if (instance->storage == nullptr) {
LogDefault(config_domain,
"Found database setting without "
"music_directory - disabling database");
return true;
}
} else {
if (IsStorageConfigured(config))
LogDefault(config_domain,
"Ignoring the storage configuration "
"because the database does not need it");
}
2017-01-23 18:52:11 +01:00
try {
db->Open();
2017-01-23 18:52:11 +01:00
} catch (...) {
std::throw_with_nested(std::runtime_error("Failed to open database plugin"));
}
instance->database = std::move(db);
auto *sdb = dynamic_cast<SimpleDatabase *>(instance->database.get());
if (sdb == nullptr)
return true;
instance->update = new UpdateService(config,
instance->event_loop, *sdb,
static_cast<CompositeStorage &>(*instance->storage),
*instance);
/* run database update after daemonization? */
return sdb->FileExists();
}
static bool
InitDatabaseAndStorage(const ConfigData &config)
{
const bool create_db = !glue_db_init_and_load(config);
return create_db;
}
#endif
#ifdef ENABLE_SQLITE
/**
* Configure and initialize the sticker subsystem.
*/
static std::unique_ptr<StickerDatabase>
LoadStickerDatabase(const ConfigData &config)
{
2018-07-17 22:48:58 +02:00
auto sticker_file = config.GetPath(ConfigOption::STICKER_FILE);
if (sticker_file.IsNull())
return nullptr;
return std::make_unique<StickerDatabase>(std::move(sticker_file));
}
#endif
static void
2018-07-17 23:27:50 +02:00
glue_state_file_init(const ConfigData &raw_config)
{
2018-07-17 23:27:50 +02:00
StateFileConfig config(raw_config);
if (!config.IsEnabled())
return;
2014-08-24 12:59:45 +02:00
2018-07-17 23:27:50 +02:00
instance->state_file = new StateFile(std::move(config),
instance->partitions.front(),
2016-03-05 21:00:38 +01:00
instance->event_loop);
instance->state_file->Read();
}
/**
* Initialize the decoder and player core, including the music pipe.
*/
static void
2018-07-17 22:48:58 +02:00
initialize_decoder_and_player(const ConfigData &config,
const ReplayGainConfig &replay_gain_config)
{
2016-10-28 11:38:37 +02:00
const ConfigParam *param;
2014-01-18 11:34:13 +01:00
size_t buffer_size;
2018-07-17 22:48:58 +02:00
param = config.GetParam(ConfigOption::AUDIO_BUFFER_SIZE);
2013-09-26 17:31:50 +02:00
if (param != nullptr) {
2014-01-18 11:34:13 +01:00
char *test;
long tmp = strtol(param->value.c_str(), &test, 10);
if (*test != '\0' || tmp <= 0 || tmp == LONG_MAX)
throw FormatRuntimeError("buffer size \"%s\" is not a "
"positive integer, line %i",
param->value.c_str(), param->line);
buffer_size = tmp * KILOBYTE;
if (buffer_size < MIN_BUFFER_SIZE) {
FormatWarning(config_domain, "buffer size %lu is too small, using %lu bytes instead",
(unsigned long)buffer_size,
(unsigned long)MIN_BUFFER_SIZE);
buffer_size = MIN_BUFFER_SIZE;
}
} else
buffer_size = DEFAULT_BUFFER_SIZE;
2014-01-18 11:34:13 +01:00
const unsigned buffered_chunks = buffer_size / CHUNK_SIZE;
if (buffered_chunks >= 1 << 15)
throw FormatRuntimeError("buffer size \"%lu\" is too big",
(unsigned long)buffer_size);
const unsigned max_length =
2018-07-17 22:48:58 +02:00
config.GetPositive(ConfigOption::MAX_PLAYLIST_LENGTH,
DEFAULT_PLAYLIST_MAX_LENGTH);
AudioFormat configured_audio_format = AudioFormat::Undefined();
2018-07-17 22:48:58 +02:00
param = config.GetParam(ConfigOption::AUDIO_OUTPUT_FORMAT);
if (param != nullptr) {
try {
configured_audio_format = ParseAudioFormat(param->value.c_str(),
true);
} catch (...) {
std::throw_with_nested(FormatRuntimeError("error parsing line %i",
param->line));
}
}
instance->partitions.emplace_back(*instance,
"default",
max_length,
buffered_chunks,
configured_audio_format,
replay_gain_config);
auto &partition = instance->partitions.back();
try {
2018-07-17 22:48:58 +02:00
param = config.GetParam(ConfigOption::REPLAYGAIN);
if (param != nullptr)
partition.replay_gain_mode =
FromString(param->value.c_str());
} catch (...) {
std::throw_with_nested(FormatRuntimeError("Failed to parse line %i",
param->line));
}
}
inline void
Instance::BeginShutdownUpdate() noexcept
{
#ifdef ENABLE_DATABASE
#ifdef ENABLE_INOTIFY
mpd_inotify_finish();
#endif
if (update != nullptr)
update->CancelAllAsync();
#endif
}
inline void
Instance::BeginShutdownPartitions() noexcept
{
for (auto &partition : partitions) {
partition.pc.Kill();
partition.listener.reset();
}
}
void
2019-04-24 14:56:08 +02:00
Instance::OnIdle(unsigned flags) noexcept
{
2013-01-16 23:23:30 +01:00
/* send "idle" notifications to all subscribed
clients */
client_list->IdleAdd(flags);
if (flags & (IDLE_PLAYLIST|IDLE_PLAYER|IDLE_MIXER|IDLE_OUTPUT) &&
state_file != nullptr)
state_file->CheckModified();
}
#ifndef ANDROID
2018-08-01 19:38:25 +02:00
int
main(int argc, char *argv[]) noexcept
{
#ifdef _WIN32
return win32_main(argc, argv);
#else
return mpd_main(argc, argv);
#endif
}
#endif
static void
2018-08-01 19:38:25 +02:00
mpd_main_after_fork(const ConfigData &raw_config,
const Config &config);
static inline void
MainConfigured(const struct options &options, const ConfigData &raw_config)
{
#ifdef ENABLE_DAEMON
daemonize_close_stdin();
#endif
#ifndef ANDROID
#ifdef HAVE_LOCALE_H
/* initialize locale */
setlocale(LC_CTYPE,"");
setlocale(LC_COLLATE, "");
#endif
#endif
2018-08-02 10:16:56 +02:00
const ScopeIcuInit icu_init;
const ScopeNetInit net_init;
#ifdef ENABLE_DBUS
const ODBus::ScopeInit dbus_init;
#endif
InitPathParser(raw_config);
2018-07-17 22:48:43 +02:00
const auto config = LoadConfig(raw_config);
#ifdef ENABLE_DAEMON
2018-07-17 22:48:58 +02:00
glue_daemonize_init(&options, raw_config);
#endif
2018-07-17 22:48:43 +02:00
TagLoadConfig(raw_config);
2018-07-17 23:02:06 +02:00
log_init(raw_config, options.verbose, options.log_stderr);
instance = new Instance();
AtScopeExit() {
delete instance;
instance = nullptr;
};
#ifdef ENABLE_NEIGHBOR_PLUGINS
instance->neighbors = std::make_unique<NeighborGlue>();
2018-07-17 23:11:33 +02:00
instance->neighbors->Init(raw_config,
instance->io_thread.GetEventLoop(),
*instance);
if (instance->neighbors->IsEmpty())
instance->neighbors.reset();
#endif
const unsigned max_clients =
2018-07-17 22:48:58 +02:00
raw_config.GetPositive(ConfigOption::MAX_CONN, 10);
instance->client_list = new ClientList(max_clients);
2013-01-16 22:55:33 +01:00
2018-07-17 22:48:58 +02:00
initialize_decoder_and_player(raw_config, config.replay_gain);
2018-07-17 23:02:53 +02:00
listen_global_init(raw_config, *instance->partitions.front().listener);
#ifdef ENABLE_DAEMON
daemonize_set_user();
daemonize_begin(options.daemon);
AtScopeExit() { daemonize_finish(); };
#endif
mpd_main_after_fork(raw_config, config);
}
2019-05-29 14:58:24 +02:00
#ifndef ANDROID
static inline void
MainOrThrow(int argc, char *argv[])
{
struct options options;
ConfigData raw_config;
ParseCommandLine(argc, argv, options, raw_config);
MainConfigured(options, raw_config);
}
2018-08-01 19:38:25 +02:00
int mpd_main(int argc, char *argv[]) noexcept
{
AtScopeExit() { log_deinit(); };
try {
MainOrThrow(argc, argv);
return EXIT_SUCCESS;
} catch (...) {
LogError(std::current_exception());
return EXIT_FAILURE;
}
}
2019-05-29 14:58:24 +02:00
#endif /* !ANDROID */
static void
2018-07-17 22:48:43 +02:00
mpd_main_after_fork(const ConfigData &raw_config, const Config &config)
{
2018-07-17 23:09:56 +02:00
ConfigureFS(raw_config);
AtScopeExit() { DeinitFS(); };
2018-07-17 22:48:58 +02:00
glue_mapper_init(raw_config);
2018-07-17 23:00:42 +02:00
initPermissions(raw_config);
2018-07-17 22:48:43 +02:00
spl_global_init(raw_config);
#ifdef ENABLE_ARCHIVE
2019-02-05 21:40:07 +01:00
const ScopeArchivePluginsInit archive_plugins_init;
#endif
pcm_convert_global_init(raw_config);
2019-02-05 22:11:45 +01:00
const ScopeDecoderPluginsInit decoder_plugins_init(raw_config);
#ifdef ENABLE_DATABASE
2018-07-17 22:48:43 +02:00
const bool create_db = InitDatabaseAndStorage(raw_config);
#endif
#ifdef ENABLE_SQLITE
instance->sticker_database = LoadStickerDatabase(raw_config);
#endif
command_init();
for (auto &partition : instance->partitions) {
partition.outputs.Configure(instance->rtio_thread.GetEventLoop(),
raw_config,
config.replay_gain,
partition.pc);
partition.UpdateEffectiveReplayGainMode();
}
2018-07-17 23:07:50 +02:00
client_manager_init(raw_config);
2019-02-05 21:50:31 +01:00
const ScopeInputPluginsInit input_plugins_init(raw_config,
instance->io_thread.GetEventLoop());
2019-02-05 23:03:29 +01:00
const ScopePlaylistPluginsInit playlist_plugins_init(raw_config);
#ifdef ENABLE_DAEMON
daemonize_commit();
#endif
#ifndef ANDROID
setup_log_output();
2019-02-05 21:33:56 +01:00
const ScopeSignalHandlersInit signal_handlers_init(instance->event_loop);
#endif
instance->io_thread.Start();
instance->rtio_thread.Start();
#ifdef ENABLE_NEIGHBOR_PLUGINS
if (instance->neighbors != nullptr)
instance->neighbors->Open();
AtScopeExit() {
if (instance->neighbors != nullptr)
instance->neighbors->Close();
};
#endif
2018-07-17 22:48:43 +02:00
ZeroconfInit(raw_config, instance->event_loop);
#ifdef ENABLE_DATABASE
if (create_db) {
/* the database failed to load: recreate the
database */
instance->update->Enqueue("", true);
}
#endif
glue_state_file_init(raw_config);
#ifdef ENABLE_DATABASE
2018-07-17 22:48:58 +02:00
if (raw_config.GetBool(ConfigOption::AUTO_UPDATE, false)) {
#ifdef ENABLE_INOTIFY
if (instance->storage != nullptr &&
instance->update != nullptr)
2016-03-05 20:17:47 +01:00
mpd_inotify_init(instance->event_loop,
*instance->storage,
*instance->update,
2018-07-17 22:48:58 +02:00
raw_config.GetUnsigned(ConfigOption::AUTO_UPDATE_DEPTH,
INT_MAX));
#else
FormatWarning(config_domain,
"inotify: auto_update was disabled. enable during compilation phase");
#endif
2014-01-18 11:20:20 +01:00
}
#endif
Check(raw_config);
/* enable all audio outputs (if not already done by
playlist_state_restore() */
for (auto &partition : instance->partitions)
partition.pc.LockUpdateAudio();
#ifdef _WIN32
win32_app_started();
#endif
/* the MPD frontend does not care about timer slack; set it to
a huge value to allow the kernel to reduce CPU wakeups */
SetThreadTimerSlack(std::chrono::milliseconds(100));
2015-03-21 14:18:15 +01:00
#ifdef ENABLE_SYSTEMD_DAEMON
sd_notify(0, "READY=1");
#endif
/* run the main loop */
2016-03-05 20:17:47 +01:00
instance->event_loop.Run();
#ifdef _WIN32
win32_app_stopping();
#endif
/* cleanup */
instance->BeginShutdownUpdate();
2016-03-05 21:00:38 +01:00
if (instance->state_file != nullptr) {
instance->state_file->Write();
delete instance->state_file;
2013-01-14 11:00:22 +01:00
}
ZeroconfDeinit();
instance->BeginShutdownPartitions();
delete instance->client_list;
}
#ifdef ANDROID
2019-05-29 14:58:24 +02:00
static void
AndroidMain()
{
struct options options;
ConfigData raw_config;
const auto sdcard = Environment::getExternalStorageDirectory();
if (!sdcard.IsNull()) {
const auto config_path =
sdcard / Path::FromFS("mpd.conf");
if (FileExists(config_path))
ReadConfigFile(raw_config, config_path);
}
MainConfigured(options, raw_config);
}
gcc_visibility_default
JNIEXPORT void JNICALL
Java_org_musicpd_Bridge_run(JNIEnv *env, jclass, jobject _context, jobject _logListener)
{
Java::Init(env);
Java::Object::Initialise(env);
Java::File::Initialise(env);
Environment::Initialise(env);
AtScopeExit(env) { Environment::Deinitialise(env); };
context = new Context(env, _context);
AtScopeExit() { delete context; };
if (_logListener != nullptr)
logListener = new LogListener(env, _logListener);
AtScopeExit() { delete logListener; };
2019-05-29 14:58:24 +02:00
try {
AndroidMain();
} catch (...) {
LogError(std::current_exception());
}
}
gcc_visibility_default
JNIEXPORT void JNICALL
Java_org_musicpd_Bridge_shutdown(JNIEnv *, jclass)
{
if (instance != nullptr)
2018-01-29 23:31:41 +01:00
instance->Break();
}
#endif