/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once #include "data/data_shared_media.h" class AudioMsgId; namespace Media { namespace Player { void start(); void finish(); class Instance; Instance *instance(); struct TrackState; class Instance : private base::Subscriber { public: void play(AudioMsgId::Type type); void pause(AudioMsgId::Type type); void stop(AudioMsgId::Type type); void playPause(AudioMsgId::Type type); bool next(AudioMsgId::Type type); bool previous(AudioMsgId::Type type); AudioMsgId::Type getActiveType() const; void play() { play(getActiveType()); } void pause() { pause(getActiveType()); } void stop() { stop(getActiveType()); } void playPause() { playPause(getActiveType()); } bool next() { return next(getActiveType()); } bool previous() { return previous(getActiveType()); } void playPauseCancelClicked(AudioMsgId::Type type); void play(const AudioMsgId &audioId); AudioMsgId current(AudioMsgId::Type type) const { if (auto data = getData(type)) { return data->current; } return AudioMsgId(); } bool repeatEnabled(AudioMsgId::Type type) const { if (auto data = getData(type)) { return data->repeatEnabled; } return false; } void toggleRepeat(AudioMsgId::Type type) { if (auto data = getData(type)) { data->repeatEnabled = !data->repeatEnabled; _repeatChangedNotifier.notify(type); } } bool isSeeking(AudioMsgId::Type type) const { if (auto data = getData(type)) { return (data->seeking == data->current); } return false; } void startSeeking(AudioMsgId::Type type); void stopSeeking(AudioMsgId::Type type); bool nextAvailable(AudioMsgId::Type type) const; bool previousAvailable(AudioMsgId::Type type) const; struct Switch { AudioMsgId from; FullMsgId to; }; base::Observable &switchToNextNotifier() { return _switchToNextNotifier; } base::Observable &usePanelPlayer() { return _usePanelPlayer; } base::Observable &titleButtonOver() { return _titleButtonOver; } base::Observable &playerWidgetOver() { return _playerWidgetOver; } base::Observable &updatedNotifier() { return _updatedNotifier; } base::Observable &tracksFinishedNotifier() { return _tracksFinishedNotifier; } base::Observable &trackChangedNotifier() { return _trackChangedNotifier; } base::Observable &repeatChangedNotifier() { return _repeatChangedNotifier; } rpl::producer<> playlistChanges(AudioMsgId::Type type) const; void documentLoadProgress(DocumentData *document); void clear(); private: Instance(); friend void start(); using SharedMediaType = Storage::SharedMediaType; using SliceKey = SparseIdsMergedSlice::Key; struct Data { Data(AudioMsgId::Type type, SharedMediaType overview) : type(type) , overview(overview) { } AudioMsgId::Type type; Storage::SharedMediaType overview; AudioMsgId current; AudioMsgId seeking; base::optional playlistSlice; base::optional playlistSliceKey; base::optional playlistRequestedKey; base::optional playlistIndex; rpl::lifetime playlistLifetime; rpl::event_stream<> playlistChanges; History *history = nullptr; History *migrated = nullptr; bool repeatEnabled = false; bool isPlaying = false; }; // Observed notifications. void handleSongUpdate(const AudioMsgId &audioId); void setCurrent(const AudioMsgId &audioId); void refreshPlaylist(not_null data); base::optional playlistKey(not_null data) const; bool validPlaylist(not_null data); void validatePlaylist(not_null data); void playlistUpdated(not_null data); bool moveInPlaylist(not_null data, int delta, bool autonext); void preloadNext(not_null data); HistoryItem *itemByIndex(not_null data, int index); void handleLogout(); template void emitUpdate(AudioMsgId::Type type, CheckCallback check); Data *getData(AudioMsgId::Type type) { if (type == AudioMsgId::Type::Song) { return &_songData; } else if (type == AudioMsgId::Type::Voice) { return &_voiceData; } return nullptr; } const Data *getData(AudioMsgId::Type type) const { if (type == AudioMsgId::Type::Song) { return &_songData; } else if (type == AudioMsgId::Type::Voice) { return &_voiceData; } return nullptr; } Data _songData; Data _voiceData; base::Observable _switchToNextNotifier; base::Observable _usePanelPlayer; base::Observable _titleButtonOver; base::Observable _playerWidgetOver; base::Observable _updatedNotifier; base::Observable _tracksFinishedNotifier; base::Observable _trackChangedNotifier; base::Observable _repeatChangedNotifier; }; } // namespace Clip } // namespace Media