f01793ad4a
This makes it easier to add more options later.
284 lines
6.5 KiB
C++
284 lines
6.5 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
#ifndef MPD_PARTITION_HXX
|
|
#define MPD_PARTITION_HXX
|
|
|
|
#include "event/MaskMonitor.hxx"
|
|
#include "queue/Playlist.hxx"
|
|
#include "queue/Listener.hxx"
|
|
#include "output/MultipleOutputs.hxx"
|
|
#include "mixer/Listener.hxx"
|
|
#include "mixer/Memento.hxx"
|
|
#include "player/Control.hxx"
|
|
#include "player/Listener.hxx"
|
|
#include "protocol/RangeArg.hxx"
|
|
#include "util/IntrusiveList.hxx"
|
|
#include "ReplayGainMode.hxx"
|
|
#include "SingleMode.hxx"
|
|
#include "ConsumeMode.hxx"
|
|
#include "Chrono.hxx"
|
|
#include "config.h"
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
struct PartitionConfig;
|
|
struct Instance;
|
|
struct RangeArg;
|
|
class MultipleOutputs;
|
|
class SongLoader;
|
|
class ClientListener;
|
|
class Client;
|
|
struct ClientPerPartitionListHook;
|
|
|
|
/**
|
|
* A partition of the Music Player Daemon. It is a separate unit with
|
|
* a playlist, a player, outputs etc.
|
|
*/
|
|
struct Partition final : QueueListener, PlayerListener, MixerListener {
|
|
static constexpr unsigned TAG_MODIFIED = 0x1;
|
|
static constexpr unsigned SYNC_WITH_PLAYER = 0x2;
|
|
static constexpr unsigned BORDER_PAUSE = 0x4;
|
|
|
|
Instance &instance;
|
|
|
|
const std::string name;
|
|
|
|
const PartitionConfig &config;
|
|
|
|
std::unique_ptr<ClientListener> listener;
|
|
|
|
IntrusiveList<Client, ClientPerPartitionListHook> clients;
|
|
|
|
/**
|
|
* Monitor for idle events local to this partition.
|
|
*/
|
|
MaskMonitor idle_monitor;
|
|
|
|
MaskMonitor global_events;
|
|
|
|
struct playlist playlist;
|
|
|
|
MultipleOutputs outputs;
|
|
|
|
MixerMemento mixer_memento;
|
|
|
|
PlayerControl pc;
|
|
|
|
ReplayGainMode replay_gain_mode = ReplayGainMode::OFF;
|
|
|
|
Partition(Instance &_instance,
|
|
const char *_name,
|
|
const PartitionConfig &_config) noexcept;
|
|
|
|
~Partition() noexcept;
|
|
|
|
void BeginShutdown() noexcept;
|
|
|
|
void EmitGlobalEvent(unsigned mask) noexcept {
|
|
global_events.OrMask(mask);
|
|
}
|
|
|
|
/**
|
|
* Emit an "idle" event to all clients of this partition.
|
|
*
|
|
* This method can be called from any thread.
|
|
*/
|
|
void EmitIdle(unsigned mask) noexcept {
|
|
idle_monitor.OrMask(mask);
|
|
}
|
|
|
|
/**
|
|
* Populate the #InputCacheManager with soon-to-be-played song
|
|
* files.
|
|
*
|
|
* Errors will be logged.
|
|
*/
|
|
void PrefetchQueue() noexcept;
|
|
|
|
void ClearQueue() noexcept {
|
|
playlist.Clear(pc);
|
|
}
|
|
|
|
unsigned AppendURI(const SongLoader &loader,
|
|
const char *uri_utf8) {
|
|
return playlist.AppendURI(pc, loader, uri_utf8);
|
|
}
|
|
|
|
void DeletePosition(unsigned position) {
|
|
playlist.DeletePosition(pc, position);
|
|
}
|
|
|
|
void DeleteId(unsigned id) {
|
|
playlist.DeleteId(pc, id);
|
|
}
|
|
|
|
/**
|
|
* Deletes a range of songs from the playlist.
|
|
*
|
|
* @param start the position of the first song to delete
|
|
* @param end the position after the last song to delete
|
|
*/
|
|
void DeleteRange(RangeArg range) {
|
|
playlist.DeleteRange(pc, range);
|
|
}
|
|
|
|
void StaleSong(const char *uri) noexcept {
|
|
playlist.StaleSong(pc, uri);
|
|
}
|
|
|
|
void Shuffle(RangeArg range) {
|
|
playlist.Shuffle(pc, range);
|
|
}
|
|
|
|
void MoveRange(RangeArg range, unsigned to) {
|
|
playlist.MoveRange(pc, range, to);
|
|
}
|
|
|
|
void SwapPositions(unsigned song1, unsigned song2) {
|
|
playlist.SwapPositions(pc, song1, song2);
|
|
}
|
|
|
|
void SwapIds(unsigned id1, unsigned id2) {
|
|
playlist.SwapIds(pc, id1, id2);
|
|
}
|
|
|
|
void SetPriorityRange(RangeArg position_range, uint8_t priority) {
|
|
playlist.SetPriorityRange(pc, position_range, priority);
|
|
}
|
|
|
|
void SetPriorityId(unsigned song_id, uint8_t priority) {
|
|
playlist.SetPriorityId(pc, song_id, priority);
|
|
}
|
|
|
|
void Stop() noexcept {
|
|
playlist.Stop(pc);
|
|
}
|
|
|
|
void PlayPosition(int position) {
|
|
return playlist.PlayPosition(pc, position);
|
|
}
|
|
|
|
void PlayId(int id) {
|
|
return playlist.PlayId(pc, id);
|
|
}
|
|
|
|
void PlayNext() {
|
|
return playlist.PlayNext(pc);
|
|
}
|
|
|
|
void PlayPrevious() {
|
|
return playlist.PlayPrevious(pc);
|
|
}
|
|
|
|
void SeekSongPosition(unsigned song_position, SongTime seek_time) {
|
|
playlist.SeekSongPosition(pc, song_position, seek_time);
|
|
}
|
|
|
|
void SeekSongId(unsigned song_id, SongTime seek_time) {
|
|
playlist.SeekSongId(pc, song_id, seek_time);
|
|
}
|
|
|
|
void SeekCurrent(SignedSongTime seek_time, bool relative) {
|
|
playlist.SeekCurrent(pc, seek_time, relative);
|
|
}
|
|
|
|
void SetRepeat(bool new_value) noexcept {
|
|
playlist.SetRepeat(pc, new_value);
|
|
}
|
|
|
|
bool GetRandom() const noexcept {
|
|
return playlist.GetRandom();
|
|
}
|
|
|
|
void SetRandom(bool new_value) noexcept {
|
|
playlist.SetRandom(pc, new_value);
|
|
}
|
|
|
|
void SetSingle(SingleMode new_value) noexcept {
|
|
playlist.SetSingle(pc, new_value);
|
|
}
|
|
|
|
void SetConsume(ConsumeMode new_value) noexcept {
|
|
playlist.SetConsume(new_value);
|
|
}
|
|
|
|
void SetReplayGainMode(ReplayGainMode mode) noexcept {
|
|
replay_gain_mode = mode;
|
|
UpdateEffectiveReplayGainMode();
|
|
}
|
|
|
|
/**
|
|
* Publishes the effective #ReplayGainMode to all subsystems.
|
|
* #ReplayGainMode::AUTO is substituted.
|
|
*/
|
|
void UpdateEffectiveReplayGainMode() noexcept;
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
/**
|
|
* Returns the global #Database instance. May return nullptr
|
|
* if this MPD configuration has no database (no
|
|
* music_directory was configured).
|
|
*/
|
|
const Database *GetDatabase() const noexcept;
|
|
|
|
const Database &GetDatabaseOrThrow() const;
|
|
|
|
/**
|
|
* The database has been modified. Propagate the change to
|
|
* all subsystems.
|
|
*/
|
|
void DatabaseModified(const Database &db) noexcept;
|
|
#endif
|
|
|
|
/**
|
|
* A tag in the play queue has been modified by the player
|
|
* thread. Propagate the change to all subsystems.
|
|
*/
|
|
void TagModified() noexcept;
|
|
|
|
/**
|
|
* The tag of the given song has been modified. Propagate the
|
|
* change to all instances of this song in the queue.
|
|
*/
|
|
void TagModified(const char *uri, const Tag &tag) noexcept;
|
|
|
|
/**
|
|
* Synchronize the player with the play queue.
|
|
*/
|
|
void SyncWithPlayer() noexcept;
|
|
|
|
/**
|
|
* Border pause has just been enabled. Change single mode to off
|
|
* if it was one-shot.
|
|
*/
|
|
void BorderPause() noexcept;
|
|
|
|
private:
|
|
/* virtual methods from class QueueListener */
|
|
void OnQueueModified() noexcept override;
|
|
void OnQueueOptionsChanged() noexcept override;
|
|
void OnQueueSongStarted() noexcept override;
|
|
|
|
/* virtual methods from class PlayerListener */
|
|
void OnPlayerError() noexcept override;
|
|
void OnPlayerStateChanged() noexcept override;
|
|
void OnPlayerSync() noexcept override;
|
|
void OnPlayerTagModified() noexcept override;
|
|
void OnBorderPause() noexcept override;
|
|
void OnPlayerOptionsChanged() noexcept override;
|
|
|
|
/* virtual methods from class MixerListener */
|
|
void OnMixerVolumeChanged(Mixer &mixer, int volume) noexcept override;
|
|
void OnMixerChanged() noexcept override;
|
|
|
|
/* callback for #idle_monitor */
|
|
void OnIdleMonitor(unsigned mask) noexcept;
|
|
|
|
/* callback for #global_events */
|
|
void OnGlobalEvent(unsigned mask) noexcept;
|
|
};
|
|
|
|
#endif
|