2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "config.h"
|
2009-12-24 20:16:07 +01:00
|
|
|
#include "player.h"
|
2010-04-15 14:39:34 +02:00
|
|
|
#include "engines/enginebase.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "playlist/playlist.h"
|
2010-05-20 23:21:55 +02:00
|
|
|
#include "playlist/playlistitem.h"
|
|
|
|
#include "playlist/playlistmanager.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "radio/lastfmservice.h"
|
2010-04-15 14:39:34 +02:00
|
|
|
|
2010-05-31 23:24:54 +02:00
|
|
|
#ifdef HAVE_GSTREAMER
|
2010-04-15 14:39:34 +02:00
|
|
|
# include "engines/gstengine.h"
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBVLC
|
2010-04-15 14:39:34 +02:00
|
|
|
# include "engines/vlcengine.h"
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBXINE
|
2010-04-15 14:39:34 +02:00
|
|
|
# include "engines/xine-engine.h"
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_QT_PHONON
|
2010-04-15 14:39:34 +02:00
|
|
|
# include "engines/phononengine.h"
|
|
|
|
#endif
|
2010-03-24 22:07:16 +01:00
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
2010-06-09 00:39:31 +02:00
|
|
|
# include "core/mpris_player.h"
|
|
|
|
# include "core/mpris_tracklist.h"
|
2010-03-24 22:07:16 +01:00
|
|
|
# include <QDBusConnection>
|
|
|
|
#endif
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
#include <QtDebug>
|
2010-02-03 22:48:00 +01:00
|
|
|
#include <QtConcurrentRun>
|
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-04-15 00:36:28 +02:00
|
|
|
using boost::shared_ptr;
|
|
|
|
|
2010-03-24 22:34:32 +01:00
|
|
|
#ifdef Q_WS_X11
|
2010-03-24 21:58:17 +01:00
|
|
|
QDBusArgument& operator<< (QDBusArgument& arg, const DBusStatus& status) {
|
|
|
|
arg.beginStructure();
|
2010-03-24 22:46:00 +01:00
|
|
|
arg << status.play;
|
|
|
|
arg << status.random;
|
|
|
|
arg << status.repeat;
|
|
|
|
arg << status.repeat_playlist;
|
2010-03-24 21:58:17 +01:00
|
|
|
arg.endStructure();
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QDBusArgument& operator>> (const QDBusArgument& arg, DBusStatus& status) {
|
|
|
|
arg.beginStructure();
|
2010-03-24 22:46:00 +01:00
|
|
|
arg >> status.play;
|
|
|
|
arg >> status.random;
|
|
|
|
arg >> status.repeat;
|
|
|
|
arg >> status.repeat_playlist;
|
2010-03-24 21:58:17 +01:00
|
|
|
arg.endStructure();
|
|
|
|
return arg;
|
|
|
|
}
|
2010-03-24 22:34:32 +01:00
|
|
|
#endif
|
2010-03-24 21:58:17 +01:00
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
Player::Player(PlaylistManager* playlists, LastFMService* lastfm,
|
|
|
|
Engine::Type engine, QObject* parent)
|
2009-12-24 20:16:07 +01:00
|
|
|
: QObject(parent),
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_(playlists),
|
2009-12-29 20:22:02 +01:00
|
|
|
lastfm_(lastfm),
|
2010-05-31 22:51:29 +02:00
|
|
|
engine_(CreateEngine(engine)),
|
2010-04-12 03:59:21 +02:00
|
|
|
stream_change_type_(Engine::First)
|
2009-12-24 20:16:07 +01:00
|
|
|
{
|
2010-02-03 22:48:00 +01:00
|
|
|
settings_.beginGroup("Player");
|
|
|
|
|
2010-02-03 23:05:39 +01:00
|
|
|
SetVolume(settings_.value("volume", 50).toInt());
|
|
|
|
|
2010-05-31 22:24:05 +02:00
|
|
|
connect(engine_.get(), SIGNAL(Error(QString)), SIGNAL(Error(QString)));
|
2010-03-24 21:58:17 +01:00
|
|
|
|
2010-03-24 22:07:16 +01:00
|
|
|
// MPRIS DBus interface.
|
|
|
|
#ifdef Q_WS_X11
|
2010-03-24 21:58:17 +01:00
|
|
|
MprisPlayer* mpris = new MprisPlayer(this);
|
|
|
|
// Hack so the next registerObject() doesn't override this one.
|
|
|
|
QDBusConnection::sessionBus().registerObject(
|
|
|
|
"/Player", mpris, QDBusConnection::ExportAllSlots | QDBusConnection::ExportAllSignals);
|
|
|
|
new MprisTrackList(this);
|
|
|
|
QDBusConnection::sessionBus().registerObject("/TrackList", this);
|
2010-03-24 22:07:16 +01:00
|
|
|
#endif
|
2010-02-03 22:48:00 +01:00
|
|
|
}
|
|
|
|
|
2010-05-28 21:51:51 +02:00
|
|
|
Player::~Player() {
|
|
|
|
}
|
|
|
|
|
2010-05-31 22:51:29 +02:00
|
|
|
EngineBase* Player::CreateEngine(Engine::Type engine) {
|
2010-04-15 14:39:34 +02:00
|
|
|
switch(engine) {
|
2010-05-31 23:24:54 +02:00
|
|
|
#ifdef HAVE_GSTREAMER
|
2010-05-31 22:59:13 +02:00
|
|
|
case Engine::Type_GStreamer:
|
2010-04-15 14:39:34 +02:00
|
|
|
return new GstEngine();
|
|
|
|
break;
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBVLC
|
2010-05-31 22:59:13 +02:00
|
|
|
case Engine::Type_VLC:
|
2010-04-15 14:39:34 +02:00
|
|
|
return new VlcEngine();
|
|
|
|
break;
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBXINE
|
2010-05-31 22:59:13 +02:00
|
|
|
case Engine::Type_Xine:
|
2010-04-15 14:39:34 +02:00
|
|
|
return new XineEngine();
|
|
|
|
break;
|
2010-05-31 23:24:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_QT_PHONON
|
2010-05-31 22:59:13 +02:00
|
|
|
case Engine::Type_QtPhonon:
|
2010-04-15 14:39:34 +02:00
|
|
|
return new PhononEngine();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
qFatal("Selected engine not compiled in");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* NOT REACHED */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-03 22:48:00 +01:00
|
|
|
void Player::Init() {
|
2010-04-12 01:24:03 +02:00
|
|
|
if (!engine_->Init())
|
2010-02-03 22:48:00 +01:00
|
|
|
qFatal("Error initialising audio engine");
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-05-31 22:24:05 +02:00
|
|
|
connect(engine_.get(), SIGNAL(StateChanged(Engine::State)), SLOT(EngineStateChanged(Engine::State)));
|
|
|
|
connect(engine_.get(), SIGNAL(TrackAboutToEnd()), SLOT(TrackAboutToEnd()));
|
|
|
|
connect(engine_.get(), SIGNAL(TrackEnded()), SLOT(TrackEnded()));
|
|
|
|
connect(engine_.get(), SIGNAL(MetaData(Engine::SimpleMetaBundle)),
|
2010-02-03 23:20:31 +01:00
|
|
|
SLOT(EngineMetadataReceived(Engine::SimpleMetaBundle)));
|
2010-02-03 22:48:00 +01:00
|
|
|
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->SetVolume(settings_.value("volume", 50).toInt());
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
2010-02-03 17:51:56 +01:00
|
|
|
void Player::ReloadSettings() {
|
2010-04-12 01:03:39 +02:00
|
|
|
engine_->ReloadSettings();
|
2010-02-03 17:51:56 +01:00
|
|
|
}
|
|
|
|
|
2010-05-18 22:43:10 +02:00
|
|
|
void Player::HandleSpecialLoad(const PlaylistItem::SpecialLoadResult &result) {
|
|
|
|
switch (result.type_) {
|
|
|
|
case PlaylistItem::SpecialLoadResult::NoMoreTracks:
|
|
|
|
loading_async_ = QUrl();
|
|
|
|
NextItem(Engine::Auto);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PlaylistItem::SpecialLoadResult::TrackAvailable: {
|
|
|
|
// Might've been an async load, so check we're still on the same item
|
2010-05-20 23:21:55 +02:00
|
|
|
int current_index = playlists_->active()->current_index();
|
2010-05-18 22:43:10 +02:00
|
|
|
if (current_index == -1)
|
|
|
|
return;
|
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
shared_ptr<PlaylistItem> item = playlists_->active()->item_at(current_index);
|
2010-05-18 22:43:10 +02:00
|
|
|
if (!item || item->Url() != result.original_url_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
engine_->Play(result.media_url_, stream_change_type_);
|
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
current_item_ = item;
|
2010-05-18 22:43:10 +02:00
|
|
|
loading_async_ = QUrl();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PlaylistItem::SpecialLoadResult::WillLoadAsynchronously:
|
|
|
|
// We'll get called again later with either NoMoreTracks or TrackAvailable
|
|
|
|
loading_async_ = result.original_url_;
|
|
|
|
break;
|
|
|
|
}
|
2010-04-12 03:59:21 +02:00
|
|
|
}
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
void Player::Next() {
|
|
|
|
NextInternal(Engine::Manual);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::NextInternal(Engine::TrackChangeType change) {
|
2010-05-21 00:30:55 +02:00
|
|
|
if (playlists_->active()->current_item() &&
|
|
|
|
playlists_->active()->current_item()->options() & PlaylistItem::ContainsMultipleTracks) {
|
2010-05-18 22:43:10 +02:00
|
|
|
// The next track is already being loaded
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->current_item()->Url() == loading_async_)
|
2010-05-18 22:43:10 +02:00
|
|
|
return;
|
|
|
|
|
2010-04-12 03:59:21 +02:00
|
|
|
stream_change_type_ = change;
|
2010-05-20 23:21:55 +02:00
|
|
|
HandleSpecialLoad(playlists_->active()->current_item()->LoadNext());
|
2009-12-29 21:48:50 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-05-08 19:39:12 +02:00
|
|
|
NextItem(change);
|
2010-02-04 00:12:21 +01:00
|
|
|
}
|
|
|
|
|
2010-04-12 03:59:21 +02:00
|
|
|
void Player::NextItem(Engine::TrackChangeType change) {
|
2010-05-20 23:21:55 +02:00
|
|
|
int i = playlists_->active()->next_index();
|
|
|
|
playlists_->active()->set_current_index(i);
|
2009-12-24 20:16:07 +01:00
|
|
|
if (i == -1) {
|
2010-04-19 15:01:57 +02:00
|
|
|
emit PlaylistFinished();
|
2009-12-24 20:16:07 +01:00
|
|
|
Stop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
PlayAt(i, change, false);
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
2009-12-26 23:59:11 +01:00
|
|
|
void Player::TrackEnded() {
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->stop_after_current()) {
|
2009-12-26 23:59:11 +01:00
|
|
|
Stop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
NextInternal(Engine::Auto);
|
2009-12-26 23:59:11 +01:00
|
|
|
}
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
void Player::PlayPause() {
|
|
|
|
switch (engine_->state()) {
|
|
|
|
case Engine::Paused:
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->Unpause();
|
2009-12-24 20:16:07 +01:00
|
|
|
break;
|
|
|
|
|
2010-05-27 15:17:28 +02:00
|
|
|
case Engine::Playing: {
|
2010-01-17 16:48:31 +01:00
|
|
|
// We really shouldn't pause last.fm streams
|
2010-05-27 15:17:28 +02:00
|
|
|
// Stopping seems like a reasonable thing to do (especially on mac where there
|
|
|
|
// is no media key for stop).
|
|
|
|
if (current_item_->options() & PlaylistItem::PauseDisabled) {
|
|
|
|
engine_->Stop();
|
|
|
|
} else {
|
|
|
|
engine_->Pause();
|
|
|
|
}
|
2009-12-24 20:16:07 +01:00
|
|
|
break;
|
2010-05-27 15:17:28 +02:00
|
|
|
}
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
case Engine::Empty:
|
|
|
|
case Engine::Idle: {
|
2010-05-21 12:29:17 +02:00
|
|
|
playlists_->SetActivePlaylist(playlists_->current_id());
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->rowCount() == 0)
|
2010-04-12 02:40:03 +02:00
|
|
|
break;
|
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
int i = playlists_->active()->current_index();
|
|
|
|
if (i == -1) i = playlists_->active()->last_played_index();
|
2010-04-12 02:40:03 +02:00
|
|
|
if (i == -1) i = 0;
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
PlayAt(i, Engine::First, true);
|
2009-12-24 20:16:07 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Stop() {
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->Stop();
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->set_current_index(-1);
|
|
|
|
current_item_.reset();
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Previous() {
|
2010-05-20 23:21:55 +02:00
|
|
|
int i = playlists_->active()->previous_index();
|
|
|
|
playlists_->active()->set_current_index(i);
|
2009-12-24 20:16:07 +01:00
|
|
|
if (i == -1) {
|
|
|
|
Stop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
PlayAt(i, Engine::Manual, false);
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::EngineStateChanged(Engine::State state) {
|
|
|
|
switch (state) {
|
|
|
|
case Engine::Paused: emit Paused(); break;
|
|
|
|
case Engine::Playing: emit Playing(); break;
|
|
|
|
case Engine::Empty:
|
|
|
|
case Engine::Idle: emit Stopped(); break;
|
|
|
|
}
|
2010-03-24 21:58:17 +01:00
|
|
|
emit StatusChange(GetStatus());
|
|
|
|
emit CapsChange(GetCaps());
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::SetVolume(int value) {
|
2010-04-13 01:35:47 +02:00
|
|
|
int old_volume = engine_->volume();
|
|
|
|
|
2010-03-24 23:31:34 +01:00
|
|
|
int volume = qBound(0, value, 100);
|
2010-03-24 23:29:17 +01:00
|
|
|
settings_.setValue("volume", volume);
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->SetVolume(volume);
|
2010-04-13 01:35:47 +02:00
|
|
|
|
|
|
|
if (volume != old_volume)
|
|
|
|
emit VolumeChanged(volume);
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int Player::GetVolume() const {
|
|
|
|
return engine_->volume();
|
|
|
|
}
|
|
|
|
|
|
|
|
Engine::State Player::GetState() const {
|
|
|
|
return engine_->state();
|
|
|
|
}
|
|
|
|
|
2010-04-30 01:30:24 +02:00
|
|
|
void Player::PlayAt(int index, Engine::TrackChangeType change, bool reshuffle) {
|
|
|
|
if (reshuffle)
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->set_current_index(-1);
|
|
|
|
playlists_->active()->set_current_index(index);
|
2009-12-26 22:35:45 +01:00
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
current_item_ = playlists_->active()->item_at(index);
|
2009-12-26 22:35:45 +01:00
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
if (current_item_->options() & PlaylistItem::SpecialPlayBehaviour) {
|
2010-05-18 22:43:10 +02:00
|
|
|
// It's already loading
|
2010-05-20 23:21:55 +02:00
|
|
|
if (current_item_->Url() == loading_async_)
|
2010-05-18 22:43:10 +02:00
|
|
|
return;
|
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
HandleSpecialLoad(current_item_->StartLoading());
|
2010-05-18 22:43:10 +02:00
|
|
|
}
|
2009-12-29 20:22:02 +01:00
|
|
|
else {
|
2010-05-18 22:43:10 +02:00
|
|
|
loading_async_ = QUrl();
|
2010-05-20 23:21:55 +02:00
|
|
|
engine_->Play(current_item_->Url(), change);
|
2009-12-29 21:48:50 +01:00
|
|
|
|
|
|
|
if (lastfm_->IsScrobblingEnabled())
|
2010-05-20 23:21:55 +02:00
|
|
|
lastfm_->NowPlaying(current_item_->Metadata());
|
2009-12-29 20:22:02 +01:00
|
|
|
}
|
2010-03-24 21:58:17 +01:00
|
|
|
|
|
|
|
emit CapsChange(GetCaps());
|
2009-12-26 22:35:45 +01:00
|
|
|
}
|
|
|
|
|
2010-03-08 00:28:40 +01:00
|
|
|
void Player::CurrentMetadataChanged(const Song &metadata) {
|
|
|
|
lastfm_->NowPlaying(metadata);
|
2010-03-24 21:58:17 +01:00
|
|
|
emit TrackChange(GetMetadata());
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
2010-01-15 18:12:47 +01:00
|
|
|
|
|
|
|
void Player::Seek(int seconds) {
|
2010-04-14 15:22:50 +02:00
|
|
|
int msec = qBound(0, seconds * 1000, int(engine_->length()));
|
|
|
|
engine_->Seek(msec);
|
2010-03-24 15:21:26 +01:00
|
|
|
|
|
|
|
// If we seek the track we don't want to submit it to last.fm
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->set_scrobbled(true);
|
2010-01-15 18:12:47 +01:00
|
|
|
}
|
2010-02-03 23:20:31 +01:00
|
|
|
|
|
|
|
void Player::EngineMetadataReceived(const Engine::SimpleMetaBundle& bundle) {
|
2010-05-20 23:21:55 +02:00
|
|
|
shared_ptr<PlaylistItem> item = playlists_->active()->current_item();
|
2010-02-03 23:20:31 +01:00
|
|
|
if (item == NULL)
|
|
|
|
return;
|
|
|
|
|
2010-04-21 16:04:40 +02:00
|
|
|
Song song = item->Metadata();
|
|
|
|
song.MergeFromSimpleMetaBundle(bundle);
|
2010-02-03 23:20:31 +01:00
|
|
|
|
2010-02-04 00:56:41 +01:00
|
|
|
// Ignore useless metadata
|
|
|
|
if (song.title().isEmpty() && song.artist().isEmpty())
|
|
|
|
return;
|
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->SetStreamMetadata(item->Url(), song);
|
2010-02-03 23:20:31 +01:00
|
|
|
}
|
2010-03-24 21:58:17 +01:00
|
|
|
|
|
|
|
int Player::GetCaps() const {
|
|
|
|
int caps = CAN_HAS_TRACKLIST;
|
2010-05-20 23:21:55 +02:00
|
|
|
if (current_item_) { caps |= CAN_PROVIDE_METADATA; }
|
|
|
|
if (GetState() == Engine::Playing && current_item_->options() & PlaylistItem::PauseDisabled) {
|
2010-03-24 21:58:17 +01:00
|
|
|
caps |= CAN_PAUSE;
|
|
|
|
}
|
|
|
|
if (GetState() == Engine::Paused) {
|
|
|
|
caps |= CAN_PLAY;
|
|
|
|
}
|
2010-05-20 23:21:55 +02:00
|
|
|
if (GetState() != Engine::Empty && current_item_->Metadata().filetype() != Song::Type_Stream) {
|
2010-03-24 21:58:17 +01:00
|
|
|
caps |= CAN_SEEK;
|
|
|
|
}
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->next_index() != -1 ||
|
|
|
|
playlists_->active()->current_item_options() & PlaylistItem::ContainsMultipleTracks) {
|
2010-03-24 21:58:17 +01:00
|
|
|
caps |= CAN_GO_NEXT;
|
|
|
|
}
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->previous_index() != -1) {
|
2010-03-24 21:58:17 +01:00
|
|
|
caps |= CAN_GO_PREV;
|
|
|
|
}
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusStatus Player::GetStatus() const {
|
|
|
|
DBusStatus status;
|
|
|
|
switch (GetState()) {
|
|
|
|
case Engine::Empty:
|
|
|
|
case Engine::Idle:
|
2010-03-24 22:46:00 +01:00
|
|
|
status.play = DBusStatus::Mpris_Stopped;
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
case Engine::Playing:
|
2010-03-24 22:46:00 +01:00
|
|
|
status.play = DBusStatus::Mpris_Playing;
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
case Engine::Paused:
|
2010-03-24 22:46:00 +01:00
|
|
|
status.play = DBusStatus::Mpris_Paused;
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
}
|
2010-05-20 23:21:55 +02:00
|
|
|
status.random = playlists_->sequence()->shuffle_mode() == PlaylistSequence::Shuffle_Off ? 0 : 1;
|
|
|
|
PlaylistSequence::RepeatMode repeat_mode = playlists_->sequence()->repeat_mode();
|
2010-03-24 22:46:00 +01:00
|
|
|
status.repeat = repeat_mode == PlaylistSequence::Repeat_Track ? 1 : 0;
|
|
|
|
status.repeat_playlist = (repeat_mode == PlaylistSequence::Repeat_Album ||
|
2010-05-20 23:21:55 +02:00
|
|
|
repeat_mode == PlaylistSequence::Repeat_Playlist) ? 1 : 0;
|
2010-03-24 21:58:17 +01:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
inline void AddMetadata(const QString& key, const QString& metadata, QVariantMap* map) {
|
|
|
|
if (!metadata.isEmpty()) {
|
|
|
|
(*map)[key] = metadata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void AddMetadata(const QString& key, int metadata, QVariantMap* map) {
|
|
|
|
if (metadata > 0) {
|
|
|
|
(*map)[key] = metadata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
QVariantMap Player::GetMetadata(const PlaylistItem& item) const {
|
|
|
|
QVariantMap ret;
|
2010-04-14 23:03:00 +02:00
|
|
|
|
|
|
|
const Song& song = item.Metadata();
|
|
|
|
AddMetadata("location", item.Url().toString(), &ret);
|
|
|
|
AddMetadata("title", song.PrettyTitle(), &ret);
|
|
|
|
AddMetadata("artist", song.artist(), &ret);
|
|
|
|
AddMetadata("album", song.album(), &ret);
|
|
|
|
AddMetadata("time", song.length(), &ret);
|
|
|
|
AddMetadata("tracknumber", song.track(), &ret);
|
|
|
|
|
|
|
|
return ret;
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap Player::GetMetadata() const {
|
2010-05-20 23:21:55 +02:00
|
|
|
shared_ptr<PlaylistItem> item = playlists_->active()->current_item();
|
2010-03-24 23:17:56 +01:00
|
|
|
if (item) {
|
|
|
|
return GetMetadata(*item);
|
|
|
|
}
|
|
|
|
return QVariantMap();
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap Player::GetMetadata(int track) const {
|
2010-05-20 23:21:55 +02:00
|
|
|
if (track >= playlists_->active()->rowCount() || track < 0) {
|
2010-03-24 21:58:17 +01:00
|
|
|
return QVariantMap();
|
|
|
|
}
|
2010-05-20 23:21:55 +02:00
|
|
|
const PlaylistItem& item = *(playlists_->active()->item_at(track));
|
2010-03-24 21:58:17 +01:00
|
|
|
return GetMetadata(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Mute() {
|
|
|
|
SetVolume(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Pause() {
|
|
|
|
switch (GetState()) {
|
|
|
|
case Engine::Playing:
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->Pause();
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
case Engine::Paused:
|
2010-06-08 18:00:09 +02:00
|
|
|
engine_->Unpause();
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Play() {
|
|
|
|
switch (GetState()) {
|
|
|
|
case Engine::Playing:
|
|
|
|
Seek(0);
|
|
|
|
break;
|
|
|
|
case Engine::Paused:
|
2010-04-12 01:24:03 +02:00
|
|
|
engine_->Unpause();
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
default:
|
2010-04-13 22:22:29 +02:00
|
|
|
PlayPause();
|
2010-03-24 21:58:17 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Prev() {
|
|
|
|
Previous();
|
|
|
|
}
|
|
|
|
|
|
|
|
int Player::PositionGet() const {
|
|
|
|
return engine_->position();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::PositionSet(int x) {
|
|
|
|
Seek(x / 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::Repeat(bool enable) {
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->sequence()->SetRepeatMode(
|
2010-03-24 21:58:17 +01:00
|
|
|
enable ? PlaylistSequence::Repeat_Track : PlaylistSequence::Repeat_Off);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::ShowOSD() {
|
2010-05-20 23:21:55 +02:00
|
|
|
if (current_item_)
|
|
|
|
emit ForceShowOSD(current_item_->Metadata());
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::VolumeDown(int change) {
|
|
|
|
SetVolume(GetVolume() - change);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::VolumeUp(int change) {
|
|
|
|
SetVolume(GetVolume() + change);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Player::VolumeGet() const {
|
|
|
|
return GetVolume();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::VolumeSet(int volume) {
|
|
|
|
SetVolume(volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Player::AddTrack(const QString& track, bool play_now) {
|
|
|
|
QUrl url(track);
|
|
|
|
QList<QUrl> list;
|
|
|
|
list << url;
|
|
|
|
QModelIndex index;
|
|
|
|
if (url.scheme() == "file") {
|
2010-05-20 23:21:55 +02:00
|
|
|
index = playlists_->active()->InsertPaths(list, play_now ? playlists_->active()->current_index() + 1 : -1);
|
2010-03-24 21:58:17 +01:00
|
|
|
} else {
|
2010-05-20 23:21:55 +02:00
|
|
|
index = playlists_->active()->InsertStreamUrls(list, play_now ? playlists_->active()->current_index() + 1: -1);
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (index.isValid()) {
|
|
|
|
if (play_now) {
|
2010-04-30 01:30:24 +02:00
|
|
|
PlayAt(index.row(), Engine::First, true);
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
2010-03-24 22:46:00 +01:00
|
|
|
return 0; // Success.
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
2010-03-24 22:46:00 +01:00
|
|
|
return -1; // Anything else for failure.
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::DelTrack(int index) {
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->removeRows(index, 1);
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int Player::GetCurrentTrack() const {
|
2010-05-20 23:21:55 +02:00
|
|
|
return playlists_->active()->current_index();
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int Player::GetLength() const {
|
2010-05-20 23:21:55 +02:00
|
|
|
return playlists_->active()->rowCount();
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::SetLoop(bool enable) {
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->sequence()->SetRepeatMode(
|
2010-03-24 21:58:17 +01:00
|
|
|
enable ? PlaylistSequence::Repeat_Playlist : PlaylistSequence::Repeat_Off);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::SetRandom(bool enable) {
|
2010-05-20 23:21:55 +02:00
|
|
|
playlists_->active()->sequence()->SetShuffleMode(
|
2010-03-24 21:58:17 +01:00
|
|
|
enable ? PlaylistSequence::Shuffle_All : PlaylistSequence::Shuffle_Off);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::PlayTrack(int index) {
|
2010-04-30 01:30:24 +02:00
|
|
|
PlayAt(index, Engine::Manual, true);
|
2010-03-24 21:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Player::PlaylistChanged() {
|
|
|
|
emit TrackListChange(GetLength());
|
|
|
|
}
|
2010-04-21 15:55:30 +02:00
|
|
|
|
|
|
|
void Player::TrackAboutToEnd() {
|
|
|
|
if (engine_->is_autocrossfade_enabled()) {
|
|
|
|
// Crossfade is on, so just start playing the next track. The current one
|
|
|
|
// will fade out, and the new one will fade in
|
2010-04-30 01:30:24 +02:00
|
|
|
NextInternal(Engine::Auto);
|
2010-04-21 15:55:30 +02:00
|
|
|
} else {
|
|
|
|
// Crossfade is off, so start preloading the next track so we don't get a
|
|
|
|
// gap between songs.
|
2010-05-20 23:21:55 +02:00
|
|
|
if (current_item_->options() & PlaylistItem::ContainsMultipleTracks)
|
2010-04-21 15:55:30 +02:00
|
|
|
return;
|
2010-05-20 23:21:55 +02:00
|
|
|
if (playlists_->active()->next_index() == -1)
|
2010-04-21 19:11:02 +02:00
|
|
|
return;
|
2010-04-21 15:55:30 +02:00
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
shared_ptr<PlaylistItem> item = playlists_->active()->item_at(
|
|
|
|
playlists_->active()->next_index());
|
2010-04-21 15:55:30 +02:00
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
2010-05-18 22:43:10 +02:00
|
|
|
QUrl url = item->Url();
|
|
|
|
|
2010-05-18 16:30:55 +02:00
|
|
|
// Get the actual track URL rather than the stream URL.
|
|
|
|
if (item->options() & PlaylistItem::ContainsMultipleTracks) {
|
2010-05-18 22:43:10 +02:00
|
|
|
PlaylistItem::SpecialLoadResult result = item->LoadNext();
|
2010-05-19 15:08:52 +02:00
|
|
|
switch (result.type_) {
|
|
|
|
case PlaylistItem::SpecialLoadResult::NoMoreTracks:
|
2010-05-18 22:43:10 +02:00
|
|
|
return;
|
|
|
|
|
2010-05-19 15:08:52 +02:00
|
|
|
case PlaylistItem::SpecialLoadResult::WillLoadAsynchronously:
|
|
|
|
loading_async_ = item->Url();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case PlaylistItem::SpecialLoadResult::TrackAvailable:
|
|
|
|
url = result.media_url_;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 16:30:55 +02:00
|
|
|
}
|
2010-05-18 22:43:10 +02:00
|
|
|
engine_->StartPreloading(url);
|
2010-04-21 15:55:30 +02:00
|
|
|
}
|
|
|
|
}
|