2013-10-21 23:40:52 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2013-10-21 23:40:52 +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 "Partition.hxx"
|
2015-08-06 12:45:22 +02:00
|
|
|
#include "Instance.hxx"
|
2018-08-02 13:45:43 +02:00
|
|
|
#include "song/DetachedSong.hxx"
|
2014-02-05 23:20:33 +01:00
|
|
|
#include "mixer/Volume.hxx"
|
2016-03-10 23:12:03 +01:00
|
|
|
#include "IdleFlags.hxx"
|
2018-01-29 23:53:52 +01:00
|
|
|
#include "client/Listener.hxx"
|
2013-10-21 23:40:52 +02:00
|
|
|
|
2016-03-05 19:05:04 +01:00
|
|
|
Partition::Partition(Instance &_instance,
|
2017-02-17 23:18:51 +01:00
|
|
|
const char *_name,
|
2016-03-05 19:05:04 +01:00
|
|
|
unsigned max_length,
|
|
|
|
unsigned buffer_chunks,
|
2016-12-03 14:12:08 +01:00
|
|
|
AudioFormat configured_audio_format,
|
2016-12-03 13:14:06 +01:00
|
|
|
const ReplayGainConfig &replay_gain_config)
|
2016-03-10 22:47:47 +01:00
|
|
|
:instance(_instance),
|
2017-02-17 23:18:51 +01:00
|
|
|
name(_name),
|
2018-01-29 23:53:52 +01:00
|
|
|
listener(new ClientListener(instance.event_loop, *this)),
|
2016-06-17 17:00:05 +02:00
|
|
|
global_events(instance.event_loop, BIND_THIS_METHOD(OnGlobalEvent)),
|
2016-03-10 22:47:47 +01:00
|
|
|
playlist(max_length, *this),
|
2016-03-05 19:05:04 +01:00
|
|
|
outputs(*this),
|
2018-09-23 15:47:20 +02:00
|
|
|
pc(*this, outputs, buffer_chunks,
|
2016-12-03 14:12:08 +01:00
|
|
|
configured_audio_format, replay_gain_config)
|
2016-03-05 19:05:04 +01:00
|
|
|
{
|
2016-12-03 13:56:25 +01:00
|
|
|
UpdateEffectiveReplayGainMode();
|
2016-03-05 19:05:04 +01:00
|
|
|
}
|
|
|
|
|
2018-01-29 23:53:52 +01:00
|
|
|
Partition::~Partition() noexcept = default;
|
|
|
|
|
2016-03-05 19:16:39 +01:00
|
|
|
void
|
|
|
|
Partition::EmitIdle(unsigned mask)
|
|
|
|
{
|
2016-03-10 23:12:03 +01:00
|
|
|
instance.EmitIdle(mask);
|
2016-03-05 19:16:39 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 15:18:57 +01:00
|
|
|
void
|
2016-12-03 13:56:25 +01:00
|
|
|
Partition::UpdateEffectiveReplayGainMode()
|
2016-11-24 15:18:57 +01:00
|
|
|
{
|
2016-12-03 13:56:25 +01:00
|
|
|
auto mode = replay_gain_mode;
|
2016-11-24 17:21:23 +01:00
|
|
|
if (mode == ReplayGainMode::AUTO)
|
2016-11-24 15:18:57 +01:00
|
|
|
mode = playlist.queue.random
|
2016-11-24 17:21:23 +01:00
|
|
|
? ReplayGainMode::TRACK
|
|
|
|
: ReplayGainMode::ALBUM;
|
2016-11-24 15:18:57 +01:00
|
|
|
|
2016-12-03 13:07:33 +01:00
|
|
|
pc.LockSetReplayGainMode(mode);
|
2016-11-25 12:51:55 +01:00
|
|
|
|
2016-11-24 15:18:57 +01:00
|
|
|
outputs.SetReplayGainMode(mode);
|
|
|
|
}
|
|
|
|
|
2014-02-01 00:44:41 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|
2015-08-06 12:45:22 +02:00
|
|
|
const Database *
|
2016-10-26 18:52:00 +02:00
|
|
|
Partition::GetDatabase() const
|
2015-08-06 12:45:22 +02:00
|
|
|
{
|
2016-10-26 18:52:00 +02:00
|
|
|
return instance.GetDatabase();
|
2015-08-06 12:45:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-26 18:47:19 +02:00
|
|
|
const Database &
|
|
|
|
Partition::GetDatabaseOrThrow() const
|
|
|
|
{
|
|
|
|
return instance.GetDatabaseOrThrow();
|
|
|
|
}
|
|
|
|
|
2013-10-22 00:26:20 +02:00
|
|
|
void
|
2014-02-01 00:45:58 +01:00
|
|
|
Partition::DatabaseModified(const Database &db)
|
2013-10-22 00:26:20 +02:00
|
|
|
{
|
2014-02-01 00:45:58 +01:00
|
|
|
playlist.DatabaseModified(db);
|
2016-03-05 19:16:39 +01:00
|
|
|
EmitIdle(IDLE_DATABASE);
|
2013-10-22 00:26:20 +02:00
|
|
|
}
|
|
|
|
|
2014-02-01 00:44:41 +01:00
|
|
|
#endif
|
|
|
|
|
2013-10-21 23:40:52 +02:00
|
|
|
void
|
|
|
|
Partition::TagModified()
|
|
|
|
{
|
2017-11-26 11:46:14 +01:00
|
|
|
auto song = pc.LockReadTaggedSong();
|
|
|
|
if (song)
|
2013-10-21 23:22:16 +02:00
|
|
|
playlist.TagModified(std::move(*song));
|
2013-10-21 23:40:52 +02:00
|
|
|
}
|
|
|
|
|
2018-01-29 12:02:14 +01:00
|
|
|
void
|
|
|
|
Partition::TagModified(const char *uri, const Tag &tag) noexcept
|
|
|
|
{
|
|
|
|
playlist.TagModified(uri, tag);
|
|
|
|
}
|
|
|
|
|
2013-10-21 23:40:52 +02:00
|
|
|
void
|
|
|
|
Partition::SyncWithPlayer()
|
|
|
|
{
|
|
|
|
playlist.SyncWithPlayer(pc);
|
|
|
|
}
|
2014-02-05 23:20:33 +01:00
|
|
|
|
2018-02-05 17:13:00 +01:00
|
|
|
void
|
|
|
|
Partition::BorderPause()
|
|
|
|
{
|
|
|
|
playlist.BorderPause(pc);
|
|
|
|
}
|
|
|
|
|
2016-03-10 20:10:14 +01:00
|
|
|
void
|
|
|
|
Partition::OnQueueModified()
|
|
|
|
{
|
|
|
|
EmitIdle(IDLE_PLAYLIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Partition::OnQueueOptionsChanged()
|
|
|
|
{
|
|
|
|
EmitIdle(IDLE_OPTIONS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Partition::OnQueueSongStarted()
|
|
|
|
{
|
|
|
|
EmitIdle(IDLE_PLAYER);
|
|
|
|
}
|
|
|
|
|
2014-02-21 08:55:52 +01:00
|
|
|
void
|
2017-11-26 12:39:09 +01:00
|
|
|
Partition::OnPlayerSync() noexcept
|
2014-02-21 08:55:52 +01:00
|
|
|
{
|
2016-03-10 23:10:14 +01:00
|
|
|
EmitGlobalEvent(SYNC_WITH_PLAYER);
|
2014-02-21 08:55:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-11-26 12:39:09 +01:00
|
|
|
Partition::OnPlayerTagModified() noexcept
|
2014-02-21 08:55:52 +01:00
|
|
|
{
|
2016-03-10 23:10:14 +01:00
|
|
|
EmitGlobalEvent(TAG_MODIFIED);
|
2014-02-21 08:55:52 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 17:13:00 +01:00
|
|
|
void
|
|
|
|
Partition::OnBorderPause() noexcept
|
|
|
|
{
|
|
|
|
EmitGlobalEvent(BORDER_PAUSE);
|
|
|
|
}
|
|
|
|
|
2014-02-05 23:20:33 +01:00
|
|
|
void
|
|
|
|
Partition::OnMixerVolumeChanged(gcc_unused Mixer &mixer, gcc_unused int volume)
|
|
|
|
{
|
|
|
|
InvalidateHardwareVolume();
|
|
|
|
|
|
|
|
/* notify clients */
|
2016-03-05 19:16:39 +01:00
|
|
|
EmitIdle(IDLE_MIXER);
|
2014-02-05 23:20:33 +01:00
|
|
|
}
|
2016-03-10 22:44:34 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
Partition::OnGlobalEvent(unsigned mask)
|
|
|
|
{
|
2016-03-10 23:10:14 +01:00
|
|
|
if ((mask & SYNC_WITH_PLAYER) != 0)
|
2016-03-10 22:44:34 +01:00
|
|
|
SyncWithPlayer();
|
2017-03-10 16:11:34 +01:00
|
|
|
|
|
|
|
if ((mask & TAG_MODIFIED) != 0)
|
|
|
|
TagModified();
|
2018-02-05 17:13:00 +01:00
|
|
|
|
|
|
|
if ((mask & BORDER_PAUSE) != 0)
|
|
|
|
BorderPause();
|
2016-03-10 22:44:34 +01:00
|
|
|
}
|