mpd/src/Partition.hxx

226 lines
5.3 KiB
C++
Raw Normal View History

/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 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.
*/
#ifndef MPD_PARTITION_HXX
#define MPD_PARTITION_HXX
#include "event/MaskMonitor.hxx"
2014-02-27 17:12:42 +01:00
#include "queue/Playlist.hxx"
#include "queue/Listener.hxx"
#include "output/MultipleOutputs.hxx"
#include "mixer/Listener.hxx"
2015-08-15 15:55:46 +02:00
#include "player/Control.hxx"
#include "player/Listener.hxx"
#include "Chrono.hxx"
#include "Compiler.h"
struct Instance;
class MultipleOutputs;
class SongLoader;
/**
* 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;
Instance &instance;
MaskMonitor global_events;
struct playlist playlist;
MultipleOutputs outputs;
PlayerControl pc;
Partition(Instance &_instance,
unsigned max_length,
unsigned buffer_chunks,
2016-03-05 19:05:04 +01:00
unsigned buffered_before_play);
2013-01-07 10:55:05 +01:00
void EmitGlobalEvent(unsigned mask) {
global_events.OrMask(mask);
}
void EmitIdle(unsigned mask);
2013-01-07 10:55:05 +01:00
void ClearQueue() {
playlist.Clear(pc);
}
unsigned AppendURI(const SongLoader &loader,
const char *uri_utf8) {
return playlist.AppendURI(pc, loader, uri_utf8);
2013-01-07 10:55:05 +01:00
}
void DeletePosition(unsigned position) {
playlist.DeletePosition(pc, position);
2013-01-07 10:55:05 +01:00
}
void DeleteId(unsigned id) {
playlist.DeleteId(pc, id);
2013-01-07 10:55:05 +01:00
}
/**
* 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(unsigned start, unsigned end) {
playlist.DeleteRange(pc, start, end);
2013-01-07 10:55:05 +01:00
}
void StaleSong(const char *uri) {
playlist.StaleSong(pc, uri);
2013-01-07 10:55:05 +01:00
}
void Shuffle(unsigned start, unsigned end) {
playlist.Shuffle(pc, start, end);
}
void MoveRange(unsigned start, unsigned end, int to) {
playlist.MoveRange(pc, start, end, to);
2013-01-07 10:55:05 +01:00
}
void MoveId(unsigned id, int to) {
playlist.MoveId(pc, id, to);
2013-01-07 10:55:05 +01:00
}
void SwapPositions(unsigned song1, unsigned song2) {
playlist.SwapPositions(pc, song1, song2);
2013-01-07 10:55:05 +01:00
}
void SwapIds(unsigned id1, unsigned id2) {
playlist.SwapIds(pc, id1, id2);
2013-01-07 10:55:05 +01:00
}
void SetPriorityRange(unsigned start_position, unsigned end_position,
uint8_t priority) {
playlist.SetPriorityRange(pc, start_position, end_position,
priority);
2013-01-07 10:55:05 +01:00
}
void SetPriorityId(unsigned song_id, uint8_t priority) {
playlist.SetPriorityId(pc, song_id, priority);
2013-01-07 10:55:05 +01:00
}
void Stop() {
playlist.Stop(pc);
}
void PlayPosition(int position) {
return playlist.PlayPosition(pc, position);
2013-01-07 10:55:05 +01:00
}
void PlayId(int id) {
return playlist.PlayId(pc, id);
2013-01-07 10:55:05 +01:00
}
void PlayNext() {
return playlist.PlayNext(pc);
2013-01-07 10:55:05 +01:00
}
void PlayPrevious() {
return playlist.PlayPrevious(pc);
2013-01-07 10:55:05 +01:00
}
void SeekSongPosition(unsigned song_position, SongTime seek_time) {
playlist.SeekSongPosition(pc, song_position, seek_time);
2013-01-07 10:55:05 +01:00
}
void SeekSongId(unsigned song_id, SongTime seek_time) {
playlist.SeekSongId(pc, song_id, seek_time);
2013-01-07 10:55:05 +01:00
}
void SeekCurrent(SignedSongTime seek_time, bool relative) {
playlist.SeekCurrent(pc, seek_time, relative);
2013-01-07 10:55:05 +01:00
}
void SetRepeat(bool new_value) {
playlist.SetRepeat(pc, new_value);
}
bool GetRandom() const {
return playlist.GetRandom();
}
void SetRandom(bool new_value) {
playlist.SetRandom(pc, new_value);
}
void SetSingle(bool new_value) {
playlist.SetSingle(pc, new_value);
}
void SetConsume(bool new_value) {
playlist.SetConsume(new_value);
}
#ifdef ENABLE_DATABASE
2015-08-06 12:45:22 +02:00
/**
* Returns the global #Database instance. May return nullptr
* if this MPD configuration has no database (no
* music_directory was configured).
*/
const Database *GetDatabase() const;
2015-08-06 12:45:22 +02:00
2016-10-26 18:47:19 +02:00
gcc_pure
const Database &GetDatabaseOrThrow() const;
/**
* The database has been modified. Propagate the change to
* all subsystems.
*/
void DatabaseModified(const Database &db);
#endif
/**
* A tag in the play queue has been modified by the player
* thread. Propagate the change to all subsystems.
*/
void TagModified();
/**
* Synchronize the player with the play queue.
*/
void SyncWithPlayer();
private:
/* virtual methods from class QueueListener */
void OnQueueModified() override;
void OnQueueOptionsChanged() override;
void OnQueueSongStarted() override;
/* virtual methods from class PlayerListener */
void OnPlayerSync() override;
void OnPlayerTagModified() override;
/* virtual methods from class MixerListener */
void OnMixerVolumeChanged(Mixer &mixer, int volume) override;
/* callback for #global_events */
void OnGlobalEvent(unsigned mask);
};
#endif