2011-04-25 21:16:26 +02:00
|
|
|
/* This file is part of Clementine.
|
2011-04-26 15:43:13 +02:00
|
|
|
Copyright 2011, David Sansome <me@davidsansome.com>
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:43:13 +02:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:43:13 +02:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:43:13 +02:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2011-04-25 21:16:26 +02:00
|
|
|
*/
|
|
|
|
|
2011-04-26 15:43:13 +02:00
|
|
|
// Note: this file is licensed under the Apache License instead of GPL because
|
|
|
|
// it is used by the Spotify blob which links against libspotify and is not GPL
|
|
|
|
// compatible.
|
|
|
|
|
|
|
|
|
2011-04-25 21:16:26 +02:00
|
|
|
#include "spotifyclient.h"
|
2011-04-26 15:42:58 +02:00
|
|
|
#include "spotifykey.h"
|
2011-04-27 18:38:28 +02:00
|
|
|
#include "spotifymessagehandler.h"
|
2011-04-26 15:42:58 +02:00
|
|
|
#include "spotifymessages.pb.h"
|
2011-07-07 16:54:22 +02:00
|
|
|
#include "spotify_utilities.h"
|
2011-04-25 21:16:26 +02:00
|
|
|
#include "core/logging.h"
|
|
|
|
|
2011-05-25 16:29:10 +02:00
|
|
|
#include <QCoreApplication>
|
2011-04-26 15:42:58 +02:00
|
|
|
#include <QDir>
|
2011-04-25 21:16:26 +02:00
|
|
|
#include <QHostAddress>
|
|
|
|
#include <QTcpSocket>
|
2011-04-26 15:42:58 +02:00
|
|
|
#include <QTimer>
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-29 15:41:42 +02:00
|
|
|
const int SpotifyClient::kSpotifyImageIDSize = 20;
|
2011-09-25 20:24:44 +02:00
|
|
|
const int SpotifyClient::kWaveHeaderSize = 44;
|
2011-04-29 15:41:42 +02:00
|
|
|
|
|
|
|
|
2011-04-25 21:16:26 +02:00
|
|
|
SpotifyClient::SpotifyClient(QObject* parent)
|
|
|
|
: QObject(parent),
|
2011-04-26 15:43:13 +02:00
|
|
|
api_key_(QByteArray::fromBase64(kSpotifyApiKey)),
|
2011-04-26 19:06:46 +02:00
|
|
|
protocol_socket_(new QTcpSocket(this)),
|
|
|
|
media_socket_(NULL),
|
2011-04-27 18:38:28 +02:00
|
|
|
handler_(new SpotifyMessageHandler(protocol_socket_, this)),
|
2011-04-26 15:42:58 +02:00
|
|
|
session_(NULL),
|
2011-04-26 19:06:46 +02:00
|
|
|
events_timer_(new QTimer(this)),
|
2011-09-25 20:24:44 +02:00
|
|
|
media_length_msec_(-1),
|
|
|
|
byte_rate_(0) {
|
2011-04-26 15:42:58 +02:00
|
|
|
memset(&spotify_callbacks_, 0, sizeof(spotify_callbacks_));
|
|
|
|
memset(&spotify_config_, 0, sizeof(spotify_config_));
|
|
|
|
memset(&playlistcontainer_callbacks_, 0, sizeof(playlistcontainer_callbacks_));
|
2011-04-27 18:38:28 +02:00
|
|
|
memset(&get_playlists_callbacks_, 0, sizeof(get_playlists_callbacks_));
|
2011-04-26 19:06:36 +02:00
|
|
|
memset(&load_playlist_callbacks_, 0, sizeof(load_playlist_callbacks_));
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
spotify_callbacks_.logged_in = &LoggedInCallback;
|
|
|
|
spotify_callbacks_.notify_main_thread = &NotifyMainThreadCallback;
|
|
|
|
spotify_callbacks_.log_message = &LogMessageCallback;
|
2011-04-26 19:06:36 +02:00
|
|
|
spotify_callbacks_.metadata_updated = &MetadataUpdatedCallback;
|
2011-04-26 19:06:46 +02:00
|
|
|
spotify_callbacks_.music_delivery = &MusicDeliveryCallback;
|
|
|
|
spotify_callbacks_.end_of_track = &EndOfTrackCallback;
|
|
|
|
spotify_callbacks_.streaming_error = &StreamingErrorCallback;
|
2011-05-25 16:22:49 +02:00
|
|
|
spotify_callbacks_.offline_status_updated = &OfflineStatusUpdatedCallback;
|
2011-11-24 13:40:05 +01:00
|
|
|
spotify_callbacks_.connection_error = &ConnectionErrorCallback;
|
|
|
|
spotify_callbacks_.message_to_user = &UserMessageCallback;
|
|
|
|
spotify_callbacks_.get_audio_buffer_stats = &GetAudioBufferStatsCallback;
|
2011-11-24 14:19:10 +01:00
|
|
|
spotify_callbacks_.start_playback = &StartPlaybackCallback;
|
|
|
|
spotify_callbacks_.stop_playback = &StopPlaybackCallback;
|
2011-11-24 13:40:05 +01:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
playlistcontainer_callbacks_.container_loaded = &PlaylistContainerLoadedCallback;
|
|
|
|
playlistcontainer_callbacks_.playlist_added = &PlaylistAddedCallback;
|
|
|
|
playlistcontainer_callbacks_.playlist_moved = &PlaylistMovedCallback;
|
|
|
|
playlistcontainer_callbacks_.playlist_removed = &PlaylistRemovedCallback;
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
get_playlists_callbacks_.playlist_state_changed = &PlaylistStateChangedForGetPlaylists;
|
|
|
|
|
|
|
|
load_playlist_callbacks_.playlist_state_changed = &PlaylistStateChangedForLoadPlaylist;
|
2011-04-26 19:06:36 +02:00
|
|
|
|
2011-07-07 16:54:22 +02:00
|
|
|
QString cache = utilities::GetCacheDirectory();
|
|
|
|
qLog(Debug) << "Using:" << cache << "for Spotify cache";
|
2011-11-24 13:40:05 +01:00
|
|
|
QString settings_dir = utilities::GetSettingsDirectory();
|
|
|
|
qLog(Debug) << "Using:" << settings_dir << "for Spotify settings";
|
2011-07-07 16:54:22 +02:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
spotify_config_.api_version = SPOTIFY_API_VERSION; // From libspotify/api.h
|
2011-11-24 13:40:05 +01:00
|
|
|
spotify_config_.cache_location = strdup(cache.toUtf8().constData());
|
|
|
|
spotify_config_.settings_location = strdup(settings_dir.toUtf8().constData());
|
2011-04-26 15:43:13 +02:00
|
|
|
spotify_config_.application_key = api_key_.constData();
|
|
|
|
spotify_config_.application_key_size = api_key_.size();
|
2011-04-26 15:42:58 +02:00
|
|
|
spotify_config_.callbacks = &spotify_callbacks_;
|
|
|
|
spotify_config_.userdata = this;
|
|
|
|
spotify_config_.user_agent = "Clementine Player";
|
|
|
|
|
|
|
|
events_timer_->setSingleShot(true);
|
|
|
|
connect(events_timer_, SIGNAL(timeout()), SLOT(ProcessEvents()));
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
connect(handler_, SIGNAL(MessageArrived(spotify_pb::SpotifyMessage)),
|
|
|
|
SLOT(HandleMessage(spotify_pb::SpotifyMessage)));
|
2011-05-25 16:29:10 +02:00
|
|
|
connect(protocol_socket_, SIGNAL(disconnected()),
|
|
|
|
QCoreApplication::instance(), SLOT(quit()));
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
SpotifyClient::~SpotifyClient() {
|
|
|
|
if (session_) {
|
|
|
|
sp_session_release(session_);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(const_cast<char*>(spotify_config_.cache_location));
|
|
|
|
free(const_cast<char*>(spotify_config_.settings_location));
|
|
|
|
}
|
|
|
|
|
2011-04-25 21:16:26 +02:00
|
|
|
void SpotifyClient::Init(quint16 port) {
|
2011-04-26 19:06:36 +02:00
|
|
|
qLog(Debug) << "Connecting to port" << port;
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 19:06:46 +02:00
|
|
|
protocol_socket_->connectToHost(QHostAddress::LocalHost, port);
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::LoggedInCallback(sp_session* session, sp_error error) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
const bool success = error == SP_ERROR_OK;
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::LoginResponse_Error error_code = spotify_pb::LoginResponse_Error_Other;
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
qLog(Warning) << "Failed to login" << sp_error_message(error);
|
|
|
|
}
|
|
|
|
|
2011-08-27 23:01:28 +02:00
|
|
|
switch (error) {
|
|
|
|
case SP_ERROR_BAD_USERNAME_OR_PASSWORD:
|
2011-08-29 03:00:59 +02:00
|
|
|
error_code = spotify_pb::LoginResponse_Error_BadUsernameOrPassword;
|
2011-08-27 23:01:28 +02:00
|
|
|
break;
|
|
|
|
case SP_ERROR_USER_BANNED:
|
2011-08-29 03:00:59 +02:00
|
|
|
error_code = spotify_pb::LoginResponse_Error_UserBanned;
|
2011-08-27 23:01:28 +02:00
|
|
|
break;
|
|
|
|
case SP_ERROR_USER_NEEDS_PREMIUM :
|
2011-08-29 03:00:59 +02:00
|
|
|
error_code = spotify_pb::LoginResponse_Error_UserNeedsPremium;
|
2011-08-27 23:01:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
me->SendLoginCompleted(success, sp_error_message(error), error_code);
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
if (success) {
|
|
|
|
sp_playlistcontainer_add_callbacks(
|
|
|
|
sp_session_playlistcontainer(session),
|
|
|
|
&me->playlistcontainer_callbacks_, me);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::NotifyMainThreadCallback(sp_session* session) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
QMetaObject::invokeMethod(me, "ProcessEvents", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::ProcessEvents() {
|
|
|
|
int next_timeout_ms;
|
|
|
|
sp_session_process_events(session_, &next_timeout_ms);
|
|
|
|
events_timer_->start(next_timeout_ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::LogMessageCallback(sp_session* session, const char* data) {
|
2011-04-26 19:06:36 +02:00
|
|
|
qLog(Debug) << "libspotify:" << QString::fromUtf8(data).trimmed();
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::Search(const spotify_pb::SearchRequest& req) {
|
2011-04-27 18:38:28 +02:00
|
|
|
sp_search* search = sp_search_create(
|
2011-08-29 03:00:59 +02:00
|
|
|
session_, req.query().c_str(),
|
|
|
|
0, req.limit(),
|
|
|
|
0, req.limit_album(),
|
|
|
|
0, 0, // artists
|
2011-04-27 18:38:28 +02:00
|
|
|
&SearchCompleteCallback, this);
|
|
|
|
|
|
|
|
pending_searches_[search] = req;
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::SearchCompleteCallback(sp_search* result, void* userdata) {
|
2011-04-27 18:38:28 +02:00
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
|
|
|
|
if (!me->pending_searches_.contains(result)) {
|
|
|
|
qLog(Warning) << "SearchComplete called with unknown search";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
// If there were any album results then we need to resolve those before
|
|
|
|
// we can send our response.
|
|
|
|
const int count = sp_search_num_albums(result);
|
|
|
|
if (count != 0) {
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
sp_album* album = sp_search_album(result, i);
|
|
|
|
sp_albumbrowse* browse =
|
|
|
|
sp_albumbrowse_create(me->session_, album, &SearchAlbumBrowseComplete, me);
|
|
|
|
|
|
|
|
me->pending_search_album_browse_responses_[browse] = result;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
me->SendSearchResponse(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::SearchAlbumBrowseComplete(sp_albumbrowse* result, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
|
|
|
|
if (!me->pending_search_album_browse_responses_.contains(result)) {
|
|
|
|
qLog(Warning) << "SearchAlbumBrowseComplete called with unknown result";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp_search* search = me->pending_search_album_browse_responses_.take(result);
|
|
|
|
me->pending_search_album_browses_[search].append(result);
|
|
|
|
|
|
|
|
if (me->pending_search_album_browses_[search].count() >= sp_search_num_albums(search)) {
|
|
|
|
me->SendSearchResponse(search);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::SendSearchResponse(sp_search* result) {
|
2011-04-27 18:38:28 +02:00
|
|
|
// Take the request out of the queue
|
2011-09-17 16:57:34 +02:00
|
|
|
spotify_pb::SearchRequest req = pending_searches_.take(result);
|
2011-04-27 18:38:28 +02:00
|
|
|
|
|
|
|
// Prepare the response
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::SearchResponse* response = message.mutable_search_response();
|
2011-04-27 18:38:28 +02:00
|
|
|
|
|
|
|
*response->mutable_request() = req;
|
|
|
|
|
|
|
|
// Check for errors
|
2011-04-26 15:42:58 +02:00
|
|
|
sp_error error = sp_search_error(result);
|
|
|
|
if (error != SP_ERROR_OK) {
|
2011-04-27 18:38:28 +02:00
|
|
|
response->set_error(sp_error_message(error));
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-26 15:42:58 +02:00
|
|
|
sp_search_release(result);
|
2011-04-25 21:16:26 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
// Get the list of tracks from the search
|
2011-08-29 03:00:59 +02:00
|
|
|
int count = sp_search_num_tracks(result);
|
2011-04-27 18:38:28 +02:00
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
sp_track* track = sp_search_track(result, i);
|
2011-09-17 16:57:34 +02:00
|
|
|
ConvertTrack(track, response->add_result());
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
// Get the albums from the search. All these should be resolved by now.
|
|
|
|
QList<sp_albumbrowse*> browses = pending_search_album_browses_.take(result);
|
|
|
|
foreach (sp_albumbrowse* browse, browses) {
|
|
|
|
sp_album* album = sp_albumbrowse_album(browse);
|
2011-09-18 01:06:07 +02:00
|
|
|
spotify_pb::Album* msg = response->add_album();
|
|
|
|
|
|
|
|
ConvertAlbum(album, msg->mutable_metadata());
|
|
|
|
ConvertAlbumBrowse(browse, msg->mutable_metadata());
|
|
|
|
|
|
|
|
// Add all tracks
|
|
|
|
const int tracks = sp_albumbrowse_num_tracks(browse);
|
|
|
|
for (int i=0 ; i<tracks ; ++i) {
|
|
|
|
ConvertTrack(sp_albumbrowse_track(browse, i), msg->add_track());
|
|
|
|
}
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
sp_albumbrowse_release(browse);
|
2011-08-29 03:00:59 +02:00
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
// Add other data to the response
|
|
|
|
response->set_total_tracks(sp_search_total_tracks(result));
|
|
|
|
response->set_did_you_mean(sp_search_did_you_mean(result));
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-26 15:42:58 +02:00
|
|
|
sp_search_release(result);
|
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::HandleMessage(const spotify_pb::SpotifyMessage& message) {
|
2011-04-25 21:16:26 +02:00
|
|
|
if (message.has_login_request()) {
|
2011-11-27 18:29:33 +01:00
|
|
|
Login(message.login_request());
|
2011-04-26 19:06:36 +02:00
|
|
|
} else if (message.has_load_playlist_request()) {
|
|
|
|
LoadPlaylist(message.load_playlist_request());
|
2011-04-26 19:06:46 +02:00
|
|
|
} else if (message.has_playback_request()) {
|
|
|
|
StartPlayback(message.playback_request());
|
2011-09-25 20:24:44 +02:00
|
|
|
} else if (message.has_seek_request()) {
|
|
|
|
Seek(message.seek_request().offset_bytes());
|
2011-04-27 18:38:28 +02:00
|
|
|
} else if (message.has_search_request()) {
|
|
|
|
Search(message.search_request());
|
2011-04-29 15:41:42 +02:00
|
|
|
} else if (message.has_image_request()) {
|
|
|
|
LoadImage(QStringFromStdString(message.image_request().id()));
|
2011-05-25 16:22:49 +02:00
|
|
|
} else if (message.has_sync_playlist_request()) {
|
|
|
|
SyncPlaylist(message.sync_playlist_request());
|
2011-08-29 04:26:59 +02:00
|
|
|
} else if (message.has_browse_album_request()) {
|
|
|
|
BrowseAlbum(QStringFromStdString(message.browse_album_request().uri()));
|
2011-11-27 18:29:33 +01:00
|
|
|
} else if (message.has_set_playback_settings_request()) {
|
|
|
|
SetPlaybackSettings(message.set_playback_settings_request());
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-27 18:29:33 +01:00
|
|
|
void SpotifyClient::SetPlaybackSettings(const spotify_pb::PlaybackSettings& req) {
|
|
|
|
sp_bitrate bitrate = SP_BITRATE_320k;
|
|
|
|
switch (req.bitrate()) {
|
|
|
|
case spotify_pb::Bitrate96k: bitrate = SP_BITRATE_96k; break;
|
|
|
|
case spotify_pb::Bitrate160k: bitrate = SP_BITRATE_160k; break;
|
|
|
|
case spotify_pb::Bitrate320k: bitrate = SP_BITRATE_320k; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
qLog(Debug) << "Setting playback settings: bitrate"
|
|
|
|
<< bitrate << "normalisation" << req.volume_normalisation();
|
|
|
|
|
|
|
|
sp_session_preferred_bitrate(session_, bitrate);
|
|
|
|
sp_session_preferred_offline_bitrate(session_, bitrate, false);
|
|
|
|
sp_session_set_volume_normalization(session_, req.volume_normalisation());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::Login(const spotify_pb::LoginRequest& req) {
|
2011-04-26 15:42:58 +02:00
|
|
|
sp_error error = sp_session_create(&spotify_config_, &session_);
|
|
|
|
if (error != SP_ERROR_OK) {
|
|
|
|
qLog(Warning) << "Failed to create session" << sp_error_message(error);
|
2011-08-29 03:00:59 +02:00
|
|
|
SendLoginCompleted(false, sp_error_message(error), spotify_pb::LoginResponse_Error_Other);
|
2011-04-26 15:42:58 +02:00
|
|
|
return;
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
2011-04-26 15:42:58 +02:00
|
|
|
|
2011-11-27 18:29:33 +01:00
|
|
|
SetPlaybackSettings(req.playback_settings());
|
2011-09-01 21:56:40 +02:00
|
|
|
|
2011-11-27 18:29:33 +01:00
|
|
|
if (req.password().empty()) {
|
2011-11-24 12:17:19 +01:00
|
|
|
sp_error error = sp_session_relogin(session_);
|
|
|
|
if (error != SP_ERROR_OK) {
|
|
|
|
qLog(Warning) << "Tried to relogin but no stored credentials";
|
|
|
|
SendLoginCompleted(false, sp_error_message(error),
|
|
|
|
spotify_pb::LoginResponse_Error_BadUsernameOrPassword);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sp_session_login(session_,
|
2011-11-27 18:29:33 +01:00
|
|
|
req.username().c_str(),
|
|
|
|
req.password().c_str(),
|
2011-11-24 12:17:19 +01:00
|
|
|
true); // Remember the password.
|
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
|
|
|
|
2011-08-27 23:01:28 +02:00
|
|
|
void SpotifyClient::SendLoginCompleted(bool success, const QString& error,
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::LoginResponse_Error error_code) {
|
|
|
|
spotify_pb::SpotifyMessage message;
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::LoginResponse* response = message.mutable_login_response();
|
2011-04-26 15:42:58 +02:00
|
|
|
response->set_success(success);
|
|
|
|
response->set_error(DataCommaSizeFromQString(error));
|
|
|
|
|
2011-08-27 23:01:28 +02:00
|
|
|
if (!success) {
|
|
|
|
response->set_error_code(error_code);
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::PlaylistContainerLoadedCallback(sp_playlistcontainer* pc, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
2011-04-27 18:38:28 +02:00
|
|
|
|
|
|
|
// Install callbacks on all the playlists
|
|
|
|
const int count = sp_playlistcontainer_num_playlists(pc);
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
sp_playlist* playlist = sp_playlistcontainer_playlist(pc, i);
|
|
|
|
sp_playlist_add_callbacks(playlist, &me->get_playlists_callbacks_, me);
|
|
|
|
}
|
|
|
|
|
|
|
|
me->SendPlaylistList();
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::PlaylistAddedCallback(sp_playlistcontainer* pc, sp_playlist* playlist, int position, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
2011-04-27 18:38:28 +02:00
|
|
|
|
|
|
|
// Install callbacks on this playlist
|
|
|
|
sp_playlist_add_callbacks(playlist, &me->get_playlists_callbacks_, me);
|
|
|
|
|
|
|
|
me->SendPlaylistList();
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::PlaylistMovedCallback(sp_playlistcontainer* pc, sp_playlist* playlist, int position, int new_position, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
2011-04-27 18:38:28 +02:00
|
|
|
me->SendPlaylistList();
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-26 15:42:58 +02:00
|
|
|
void SpotifyClient::PlaylistRemovedCallback(sp_playlistcontainer* pc, sp_playlist* playlist, int position, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
2011-04-27 18:38:28 +02:00
|
|
|
|
|
|
|
// Remove callbacks from this playlist
|
|
|
|
sp_playlist_remove_callbacks(playlist, &me->get_playlists_callbacks_, me);
|
|
|
|
|
|
|
|
me->SendPlaylistList();
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
void SpotifyClient::SendPlaylistList() {
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::Playlists* response = message.mutable_playlists_updated();
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
sp_playlistcontainer* container = sp_session_playlistcontainer(session_);
|
|
|
|
if (!container) {
|
|
|
|
qLog(Warning) << "sp_session_playlistcontainer returned NULL";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int count = sp_playlistcontainer_num_playlists(container);
|
|
|
|
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
const int type = sp_playlistcontainer_playlist_type(container, i);
|
|
|
|
sp_playlist* playlist = sp_playlistcontainer_playlist(container, i);
|
2011-04-27 18:38:28 +02:00
|
|
|
const bool is_loaded = sp_playlist_is_loaded(playlist);
|
|
|
|
|
|
|
|
qLog(Debug) << "Got playlist" << i << is_loaded << type << sp_playlist_name(playlist);
|
2011-04-26 15:42:58 +02:00
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
if (!is_loaded) {
|
|
|
|
qLog(Info) << "Playlist is not loaded yet, waiting...";
|
|
|
|
return;
|
|
|
|
}
|
2011-04-26 15:42:58 +02:00
|
|
|
|
|
|
|
if (type != SP_PLAYLIST_TYPE_PLAYLIST) {
|
|
|
|
// Just ignore folders for now
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::Playlists::Playlist* msg = response->add_playlist();
|
2011-04-26 15:42:58 +02:00
|
|
|
msg->set_index(i);
|
|
|
|
msg->set_name(sp_playlist_name(playlist));
|
2011-05-25 16:22:49 +02:00
|
|
|
|
|
|
|
sp_playlist_offline_status offline_status =
|
|
|
|
sp_playlist_get_offline_status(session_, playlist);
|
|
|
|
const bool is_offline = offline_status == SP_PLAYLIST_OFFLINE_STATUS_YES;
|
|
|
|
msg->set_is_offline(is_offline);
|
|
|
|
if (offline_status == SP_PLAYLIST_OFFLINE_STATUS_DOWNLOADING) {
|
|
|
|
msg->set_download_progress(
|
|
|
|
sp_playlist_get_offline_download_completed(session_, playlist));
|
|
|
|
} else if (offline_status == SP_PLAYLIST_OFFLINE_STATUS_WAITING) {
|
|
|
|
msg->set_download_progress(0);
|
|
|
|
}
|
2011-04-26 15:42:58 +02:00
|
|
|
}
|
2011-04-25 21:16:26 +02:00
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-25 21:16:26 +02:00
|
|
|
}
|
2011-04-26 19:06:36 +02:00
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
sp_playlist* SpotifyClient::GetPlaylist(spotify_pb::PlaylistType type, int user_index) {
|
2011-05-25 16:22:49 +02:00
|
|
|
sp_playlist* playlist = NULL;
|
|
|
|
switch (type) {
|
2011-08-29 03:00:59 +02:00
|
|
|
case spotify_pb::Inbox:
|
2011-05-25 16:22:49 +02:00
|
|
|
playlist = sp_session_inbox_create(session_);
|
2011-04-26 19:06:36 +02:00
|
|
|
break;
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
case spotify_pb::Starred:
|
2011-05-25 16:22:49 +02:00
|
|
|
playlist = sp_session_starred_create(session_);
|
2011-04-26 19:06:36 +02:00
|
|
|
break;
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
case spotify_pb::UserPlaylist: {
|
2011-04-26 19:06:36 +02:00
|
|
|
sp_playlistcontainer* pc = sp_session_playlistcontainer(session_);
|
|
|
|
|
2011-05-25 16:22:49 +02:00
|
|
|
if (pc && user_index <= sp_playlistcontainer_num_playlists(pc)) {
|
|
|
|
if (sp_playlistcontainer_playlist_type(pc, user_index) == SP_PLAYLIST_TYPE_PLAYLIST) {
|
|
|
|
playlist = sp_playlistcontainer_playlist(pc, user_index);
|
|
|
|
sp_playlist_add_ref(playlist);
|
2011-04-26 19:06:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-05-25 16:22:49 +02:00
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::LoadPlaylist(const spotify_pb::LoadPlaylistRequest& req) {
|
2011-05-25 16:22:49 +02:00
|
|
|
PendingLoadPlaylist pending_load;
|
|
|
|
pending_load.request_ = req;
|
|
|
|
pending_load.playlist_ = GetPlaylist(req.type(), req.user_playlist_index());
|
2011-04-26 19:06:36 +02:00
|
|
|
|
|
|
|
// A null playlist might mean the user wasn't logged in, or an invalid
|
|
|
|
// playlist index was requested, so we'd better return an error straight away.
|
|
|
|
if (!pending_load.playlist_) {
|
|
|
|
qLog(Warning) << "Invalid playlist requested or not logged in";
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::LoadPlaylistResponse* response = message.mutable_load_playlist_response();
|
2011-04-26 19:06:36 +02:00
|
|
|
*response->mutable_request() = req;
|
2011-04-27 18:38:28 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-26 19:06:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp_playlist_add_callbacks(pending_load.playlist_, &load_playlist_callbacks_, this);
|
|
|
|
pending_load_playlists_ << pending_load;
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
PlaylistStateChangedForLoadPlaylist(pending_load.playlist_, this);
|
2011-04-26 19:06:36 +02:00
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::SyncPlaylist(const spotify_pb::SyncPlaylistRequest& req) {
|
2011-05-25 16:22:49 +02:00
|
|
|
sp_playlist* playlist = GetPlaylist(req.request().type(), req.request().user_playlist_index());
|
|
|
|
|
|
|
|
// The playlist should already be loaded.
|
|
|
|
sp_playlist_set_offline_mode(session_, playlist, req.offline_sync());
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
void SpotifyClient::PlaylistStateChangedForLoadPlaylist(sp_playlist* pl, void* userdata) {
|
2011-04-26 19:06:36 +02:00
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
|
|
|
|
// If the playlist isn't loaded yet we have to wait
|
|
|
|
if (!sp_playlist_is_loaded(pl)) {
|
|
|
|
qLog(Debug) << "Playlist isn't loaded yet, waiting";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find this playlist's pending load object
|
|
|
|
int pending_load_index = -1;
|
|
|
|
PendingLoadPlaylist* pending_load = NULL;
|
|
|
|
for (int i=0 ; i<me->pending_load_playlists_.count() ; ++i) {
|
|
|
|
if (me->pending_load_playlists_[i].playlist_ == pl) {
|
|
|
|
pending_load_index = i;
|
|
|
|
pending_load = &me->pending_load_playlists_[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pending_load) {
|
|
|
|
qLog(Warning) << "Playlist not found in pending load list";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the playlist was just loaded then get all its tracks and ref them
|
|
|
|
if (pending_load->tracks_.isEmpty()) {
|
|
|
|
const int count = sp_playlist_num_tracks(pl);
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
sp_track* track = sp_playlist_track(pl, i);
|
|
|
|
sp_track_add_ref(track);
|
|
|
|
pending_load->tracks_ << track;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If any of the tracks aren't loaded yet we have to wait
|
|
|
|
foreach (sp_track* track, pending_load->tracks_) {
|
|
|
|
if (!sp_track_is_loaded(track)) {
|
|
|
|
qLog(Debug) << "One or more tracks aren't loaded yet, waiting";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Everything is loaded so send the response protobuf and unref everything.
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::LoadPlaylistResponse* response = message.mutable_load_playlist_response();
|
2011-04-26 19:06:36 +02:00
|
|
|
|
|
|
|
*response->mutable_request() = pending_load->request_;
|
|
|
|
foreach (sp_track* track, pending_load->tracks_) {
|
|
|
|
me->ConvertTrack(track, response->add_track());
|
|
|
|
sp_track_release(track);
|
|
|
|
}
|
2011-04-27 18:38:28 +02:00
|
|
|
me->handler_->SendMessage(message);
|
2011-04-26 19:06:36 +02:00
|
|
|
|
|
|
|
// Unref the playlist and remove our callbacks
|
|
|
|
sp_playlist_remove_callbacks(pl, &me->load_playlist_callbacks_, me);
|
|
|
|
sp_playlist_release(pl);
|
|
|
|
|
|
|
|
// Remove the pending load object
|
|
|
|
me->pending_load_playlists_.removeAt(pending_load_index);
|
|
|
|
}
|
|
|
|
|
2011-04-27 18:38:28 +02:00
|
|
|
void SpotifyClient::PlaylistStateChangedForGetPlaylists(sp_playlist* pl, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
|
|
|
|
me->SendPlaylistList();
|
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::ConvertTrack(sp_track* track, spotify_pb::Track* pb) {
|
2011-04-26 19:06:36 +02:00
|
|
|
sp_album* album = sp_track_album(track);
|
|
|
|
|
|
|
|
pb->set_starred(sp_track_is_starred(session_, track));
|
|
|
|
pb->set_title(sp_track_name(track));
|
|
|
|
pb->set_album(sp_album_name(album));
|
|
|
|
pb->set_year(sp_album_year(album));
|
|
|
|
pb->set_duration_msec(sp_track_duration(track));
|
|
|
|
pb->set_popularity(sp_track_popularity(track));
|
|
|
|
pb->set_disc(sp_track_disc(track));
|
|
|
|
pb->set_track(sp_track_index(track));
|
|
|
|
|
2011-04-29 15:41:42 +02:00
|
|
|
// Album art
|
|
|
|
const QByteArray art_id(
|
|
|
|
reinterpret_cast<const char*>(sp_album_cover(sp_track_album(track))),
|
|
|
|
kSpotifyImageIDSize);
|
|
|
|
const QString art_id_b64 = QString::fromAscii(art_id.toBase64());
|
|
|
|
pb->set_album_art_id(DataCommaSizeFromQString(art_id_b64));
|
|
|
|
|
|
|
|
// Artists
|
2011-04-26 19:06:36 +02:00
|
|
|
for (int i=0 ; i<sp_track_num_artists(track) ; ++i) {
|
|
|
|
pb->add_artist(sp_artist_name(sp_track_artist(track, i)));
|
|
|
|
}
|
|
|
|
|
2011-04-29 15:41:42 +02:00
|
|
|
// URI - Blugh
|
2011-04-26 19:06:36 +02:00
|
|
|
char uri[256];
|
|
|
|
sp_link* link = sp_link_create_from_track(track, 0);
|
|
|
|
sp_link_as_string(link, uri, sizeof(uri));
|
|
|
|
sp_link_release(link);
|
|
|
|
|
|
|
|
pb->set_uri(uri);
|
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::ConvertAlbum(sp_album* album, spotify_pb::Track* pb) {
|
|
|
|
pb->set_album(sp_album_name(album));
|
|
|
|
pb->set_year(sp_album_year(album));
|
|
|
|
pb->add_artist(sp_artist_name(sp_album_artist(album)));
|
|
|
|
|
|
|
|
// These fields were required in a previous version so need to set them again
|
|
|
|
// now.
|
|
|
|
pb->mutable_title();
|
|
|
|
pb->set_duration_msec(-1);
|
|
|
|
pb->set_popularity(-1);
|
|
|
|
pb->set_disc(-1);
|
|
|
|
pb->set_track(-1);
|
|
|
|
pb->set_starred(false);
|
|
|
|
|
|
|
|
// Album art
|
|
|
|
const QByteArray art_id(
|
|
|
|
reinterpret_cast<const char*>(sp_album_cover(album)),
|
|
|
|
kSpotifyImageIDSize);
|
|
|
|
const QString art_id_b64 = QString::fromAscii(art_id.toBase64());
|
|
|
|
pb->set_album_art_id(DataCommaSizeFromQString(art_id_b64));
|
|
|
|
|
|
|
|
// URI - Blugh
|
|
|
|
char uri[256];
|
|
|
|
sp_link* link = sp_link_create_from_album(album);
|
|
|
|
sp_link_as_string(link, uri, sizeof(uri));
|
|
|
|
sp_link_release(link);
|
|
|
|
|
|
|
|
pb->set_uri(uri);
|
|
|
|
}
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
void SpotifyClient::ConvertAlbumBrowse(sp_albumbrowse* browse, spotify_pb::Track* pb) {
|
|
|
|
pb->set_track(sp_albumbrowse_num_tracks(browse));
|
|
|
|
}
|
|
|
|
|
2011-04-26 19:06:36 +02:00
|
|
|
void SpotifyClient::MetadataUpdatedCallback(sp_session* session) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
|
|
|
|
foreach (const PendingLoadPlaylist& load, me->pending_load_playlists_) {
|
2011-04-27 18:38:28 +02:00
|
|
|
PlaylistStateChangedForLoadPlaylist(load.playlist_, me);
|
2011-04-26 19:06:36 +02:00
|
|
|
}
|
2011-04-28 17:11:10 +02:00
|
|
|
foreach (const PendingPlaybackRequest& playback, me->pending_playback_requests_) {
|
|
|
|
me->TryPlaybackAgain(playback);
|
|
|
|
}
|
2011-04-26 19:06:36 +02:00
|
|
|
}
|
2011-04-26 19:06:46 +02:00
|
|
|
|
|
|
|
int SpotifyClient::MusicDeliveryCallback(
|
|
|
|
sp_session* session, const sp_audioformat* format,
|
|
|
|
const void* frames, int num_frames) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
|
|
|
|
if (!me->media_socket_) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-25 20:24:44 +02:00
|
|
|
if (num_frames == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-26 19:06:46 +02:00
|
|
|
// Write the WAVE header if it hasn't been written yet.
|
|
|
|
if (me->media_length_msec_ != -1) {
|
|
|
|
qLog(Debug) << "Sending WAVE header";
|
|
|
|
|
|
|
|
QDataStream s(me->media_socket_);
|
|
|
|
s.setByteOrder(QDataStream::LittleEndian);
|
|
|
|
|
|
|
|
const int bytes_per_sample = 2;
|
|
|
|
const int byte_rate = format->sample_rate * format->channels * bytes_per_sample;
|
2011-04-26 20:51:41 +02:00
|
|
|
const quint32 data_size = quint64(me->media_length_msec_) * byte_rate / 1000;
|
|
|
|
|
|
|
|
qLog(Debug) << "length" << me->media_length_msec_ << "byte_rate" << byte_rate
|
|
|
|
<< "data_size" << data_size;
|
2011-04-26 19:06:46 +02:00
|
|
|
|
|
|
|
// RIFF header
|
|
|
|
s.writeRawData("RIFF", 4);
|
|
|
|
s << quint32(32 + data_size);
|
|
|
|
s.writeRawData("WAVE", 4);
|
|
|
|
|
|
|
|
// WAVE fmt sub-chunk
|
|
|
|
s.writeRawData("fmt ", 4);
|
|
|
|
s << quint32(16); // Subchunk1Size
|
|
|
|
s << quint16(1); // AudioFormat
|
|
|
|
s << quint16(format->channels); // NumChannels
|
|
|
|
s << quint32(format->sample_rate); // SampleRate
|
|
|
|
s << quint32(byte_rate); // ByteRate
|
|
|
|
s << quint16(format->channels * bytes_per_sample); // BlockAlign
|
|
|
|
s << quint16(bytes_per_sample * 8); // BitsPerSample
|
|
|
|
|
|
|
|
// Data sub-chunk
|
|
|
|
s.writeRawData("data", 4);
|
|
|
|
s << quint32(data_size);
|
|
|
|
|
|
|
|
me->media_length_msec_ = -1;
|
2011-09-25 20:24:44 +02:00
|
|
|
me->byte_rate_ = byte_rate;
|
|
|
|
}
|
|
|
|
|
2011-11-28 12:17:17 +01:00
|
|
|
#ifdef Q_OS_DARWIN
|
|
|
|
// For some reason, the data doesn't reliably get pushed to the underlying socket on Mac.
|
|
|
|
me->media_socket_->flush();
|
|
|
|
#endif
|
|
|
|
|
2011-09-25 20:24:44 +02:00
|
|
|
if (me->media_socket_->bytesToWrite() >= 8192) {
|
|
|
|
return 0;
|
2011-04-26 19:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write the audio data.
|
2011-09-25 20:24:44 +02:00
|
|
|
qint64 bytes_written = me->media_socket_->write(
|
|
|
|
reinterpret_cast<const char*>(frames),
|
|
|
|
num_frames * format->channels * 2);
|
|
|
|
|
|
|
|
return bytes_written / (format->channels * 2);
|
2011-04-26 19:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::EndOfTrackCallback(sp_session* session) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
|
|
|
|
// Close the socket - it will get deleted when the other side has
|
|
|
|
// disconnected
|
|
|
|
me->media_socket_->close();
|
|
|
|
me->media_socket_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::StreamingErrorCallback(sp_session* session, sp_error error) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
|
|
|
|
// Close the socket - it will get deleted when the other side has
|
|
|
|
// disconnected
|
|
|
|
me->media_socket_->close();
|
|
|
|
me->media_socket_ = NULL;
|
|
|
|
|
|
|
|
// Send the error
|
|
|
|
me->SendPlaybackError(QString::fromUtf8(sp_error_message(error)));
|
|
|
|
}
|
|
|
|
|
2011-11-24 13:40:05 +01:00
|
|
|
void SpotifyClient::ConnectionErrorCallback(sp_session* session, sp_error error) {
|
|
|
|
qLog(Debug) << Q_FUNC_INFO << sp_error_message(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::UserMessageCallback(sp_session* session, const char* message) {
|
|
|
|
qLog(Debug) << Q_FUNC_INFO << message;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::GetAudioBufferStatsCallback(
|
|
|
|
sp_session* session,
|
|
|
|
sp_audio_buffer_stats* stats) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
stats->stutter = 0;
|
|
|
|
stats->samples = me->media_socket_ ? me->media_socket_->bytesToWrite() / 2 : 0;
|
|
|
|
}
|
|
|
|
|
2011-11-24 14:19:10 +01:00
|
|
|
void SpotifyClient::StartPlaybackCallback(sp_session* session) {
|
|
|
|
qLog(Debug) << Q_FUNC_INFO;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::StopPlaybackCallback(sp_session* session) {
|
|
|
|
qLog(Debug) << Q_FUNC_INFO;
|
|
|
|
}
|
|
|
|
|
2011-05-25 16:22:49 +02:00
|
|
|
void SpotifyClient::OfflineStatusUpdatedCallback(sp_session* session) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
|
|
|
|
sp_playlistcontainer* container = sp_session_playlistcontainer(session);
|
|
|
|
if (!container) {
|
|
|
|
qLog(Warning) << "sp_session_playlistcontainer returned NULL";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int count = sp_playlistcontainer_num_playlists(container);
|
|
|
|
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
const sp_playlist_type type = sp_playlistcontainer_playlist_type(container, i);
|
|
|
|
sp_playlist* playlist = sp_playlistcontainer_playlist(container, i);
|
|
|
|
|
|
|
|
if (type != SP_PLAYLIST_TYPE_PLAYLIST) {
|
|
|
|
// Just ignore folders for now
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int download_progress = me->GetDownloadProgress(playlist);
|
|
|
|
if (download_progress != -1) {
|
2011-08-29 03:00:59 +02:00
|
|
|
me->SendDownloadProgress(spotify_pb::UserPlaylist, i, download_progress);
|
2011-05-25 16:22:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sp_playlist* inbox = sp_session_inbox_create(session);
|
|
|
|
int download_progress = me->GetDownloadProgress(inbox);
|
|
|
|
sp_playlist_release(inbox);
|
|
|
|
|
|
|
|
if (download_progress != -1) {
|
2011-08-29 03:00:59 +02:00
|
|
|
me->SendDownloadProgress(spotify_pb::Inbox, -1, download_progress);
|
2011-05-25 16:22:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sp_playlist* starred = sp_session_starred_create(session);
|
|
|
|
download_progress = me->GetDownloadProgress(starred);
|
|
|
|
sp_playlist_release(starred);
|
|
|
|
|
|
|
|
if (download_progress != -1) {
|
2011-08-29 03:00:59 +02:00
|
|
|
me->SendDownloadProgress(spotify_pb::Starred, -1, download_progress);
|
2011-05-25 16:22:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::SendDownloadProgress(
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::PlaylistType type, int index, int download_progress) {
|
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::SyncPlaylistProgress* progress = message.mutable_sync_playlist_progress();
|
2011-05-25 16:22:49 +02:00
|
|
|
progress->mutable_request()->set_type(type);
|
|
|
|
if (index != -1) {
|
|
|
|
progress->mutable_request()->set_user_playlist_index(index);
|
|
|
|
}
|
|
|
|
progress->set_sync_progress(download_progress);
|
|
|
|
handler_->SendMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SpotifyClient::GetDownloadProgress(sp_playlist* playlist) {
|
|
|
|
sp_playlist_offline_status status =
|
|
|
|
sp_playlist_get_offline_status(session_, playlist);
|
|
|
|
switch (status) {
|
|
|
|
case SP_PLAYLIST_OFFLINE_STATUS_NO:
|
|
|
|
return -1;
|
|
|
|
case SP_PLAYLIST_OFFLINE_STATUS_YES:
|
|
|
|
return 100;
|
|
|
|
case SP_PLAYLIST_OFFLINE_STATUS_DOWNLOADING:
|
|
|
|
return sp_playlist_get_offline_download_completed(session_, playlist);
|
|
|
|
case SP_PLAYLIST_OFFLINE_STATUS_WAITING:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-08-29 03:00:59 +02:00
|
|
|
void SpotifyClient::StartPlayback(const spotify_pb::PlaybackRequest& req) {
|
2011-04-26 19:06:46 +02:00
|
|
|
// Get a link object from the URI
|
|
|
|
sp_link* link = sp_link_create_from_string(req.track_uri().c_str());
|
|
|
|
if (!link) {
|
|
|
|
SendPlaybackError("Invalid Spotify URI");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the track from the link
|
|
|
|
sp_track* track = sp_link_as_track(link);
|
|
|
|
if (!track) {
|
|
|
|
SendPlaybackError("Spotify URI was not a track");
|
2011-04-28 17:11:10 +02:00
|
|
|
sp_link_release(link);
|
2011-04-26 19:06:46 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-28 17:11:10 +02:00
|
|
|
PendingPlaybackRequest pending_playback;
|
|
|
|
pending_playback.request_ = req;
|
|
|
|
pending_playback.link_ = link;
|
|
|
|
pending_playback.track_ = track;
|
|
|
|
|
|
|
|
pending_playback_requests_ << pending_playback;
|
|
|
|
|
|
|
|
TryPlaybackAgain(pending_playback);
|
|
|
|
}
|
|
|
|
|
2011-09-25 20:24:44 +02:00
|
|
|
void SpotifyClient::Seek(qint64 offset_bytes) {
|
|
|
|
if (byte_rate_) {
|
|
|
|
const int msec = ((offset_bytes - kWaveHeaderSize) * 1000) / byte_rate_;
|
|
|
|
qLog(Debug) << "Seeking to time" << msec << "ms";
|
|
|
|
sp_session_player_seek(session_, msec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-28 17:11:10 +02:00
|
|
|
void SpotifyClient::TryPlaybackAgain(const PendingPlaybackRequest& req) {
|
|
|
|
// If the track was not loaded then we have to come back later
|
|
|
|
if (!sp_track_is_loaded(req.track_)) {
|
|
|
|
qLog(Debug) << "Playback track not loaded yet, will try again later";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove this from the pending list now
|
|
|
|
pending_playback_requests_.removeAll(req);
|
|
|
|
|
2011-04-26 19:06:46 +02:00
|
|
|
// Load the track
|
2011-04-28 17:11:10 +02:00
|
|
|
sp_error error = sp_session_player_load(session_, req.track_);
|
2011-04-26 19:06:46 +02:00
|
|
|
if (error != SP_ERROR_OK) {
|
2011-04-28 17:11:10 +02:00
|
|
|
SendPlaybackError("Spotify playback error: " +
|
|
|
|
QString::fromUtf8(sp_error_message(error)));
|
|
|
|
sp_link_release(req.link_);
|
2011-04-26 19:06:46 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the media socket
|
2011-04-26 20:39:38 +02:00
|
|
|
QTcpSocket* old_media_socket = media_socket_;
|
2011-04-26 19:06:46 +02:00
|
|
|
media_socket_ = new QTcpSocket(this);
|
2011-04-28 17:11:10 +02:00
|
|
|
media_socket_->connectToHost(QHostAddress::LocalHost, req.request_.media_port());
|
2011-09-25 20:24:44 +02:00
|
|
|
media_socket_->setSocketOption(QAbstractSocket::LowDelayOption, true);
|
2011-04-26 19:06:46 +02:00
|
|
|
connect(media_socket_, SIGNAL(disconnected()), SLOT(MediaSocketDisconnected()));
|
|
|
|
|
2011-04-26 20:39:38 +02:00
|
|
|
if (old_media_socket) {
|
|
|
|
old_media_socket->close();
|
|
|
|
}
|
|
|
|
|
2011-04-28 17:11:10 +02:00
|
|
|
qLog(Info) << "Starting playback of uri" << req.request_.track_uri().c_str()
|
|
|
|
<< "to port" << req.request_.media_port();
|
2011-04-26 19:06:46 +02:00
|
|
|
|
|
|
|
// Set the track length - this will trigger MusicDeliveryCallback to send
|
|
|
|
// a WAVE header.
|
2011-04-28 17:11:10 +02:00
|
|
|
media_length_msec_ = sp_track_duration(req.track_);
|
2011-04-26 19:06:46 +02:00
|
|
|
|
|
|
|
// Start playback
|
|
|
|
sp_session_player_play(session_, true);
|
|
|
|
|
2011-04-28 17:11:10 +02:00
|
|
|
sp_link_release(req.link_);
|
2011-04-26 19:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::SendPlaybackError(const QString& error) {
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::PlaybackError* msg = message.mutable_playback_error();
|
2011-04-26 19:06:46 +02:00
|
|
|
|
|
|
|
msg->set_error(DataCommaSizeFromQString(error));
|
2011-04-27 18:38:28 +02:00
|
|
|
handler_->SendMessage(message);
|
2011-04-26 19:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::MediaSocketDisconnected() {
|
|
|
|
QTcpSocket* socket = qobject_cast<QTcpSocket*>(sender());
|
|
|
|
if (!socket) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qLog(Info) << "Media socket disconnected";
|
|
|
|
|
|
|
|
socket->deleteLater();
|
|
|
|
|
|
|
|
if (socket == media_socket_) {
|
|
|
|
sp_session_player_unload(session_);
|
|
|
|
media_socket_ = NULL;
|
|
|
|
}
|
|
|
|
}
|
2011-04-29 15:41:42 +02:00
|
|
|
|
|
|
|
void SpotifyClient::LoadImage(const QString& id_b64) {
|
|
|
|
QByteArray id = QByteArray::fromBase64(id_b64.toAscii());
|
|
|
|
if (id.length() != kSpotifyImageIDSize) {
|
|
|
|
qLog(Warning) << "Invalid image ID (did not decode to"
|
|
|
|
<< kSpotifyImageIDSize << "bytes):" << id_b64;
|
|
|
|
|
|
|
|
// Send an error response straight away
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::ImageResponse* msg = message.mutable_image_response();
|
2011-04-29 15:41:42 +02:00
|
|
|
msg->set_id(DataCommaSizeFromQString(id_b64));
|
|
|
|
handler_->SendMessage(message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingImageRequest pending_load;
|
|
|
|
pending_load.id_ = id;
|
|
|
|
pending_load.id_b64_ = id_b64;
|
|
|
|
pending_load.image_ = sp_image_create(session_,
|
|
|
|
reinterpret_cast<const byte*>(id.constData()));
|
|
|
|
pending_image_requests_ << pending_load;
|
|
|
|
|
|
|
|
if (!image_callbacks_registered_[pending_load.image_]) {
|
|
|
|
sp_image_add_load_callback(pending_load.image_, &ImageLoaded, this);
|
|
|
|
}
|
|
|
|
image_callbacks_registered_[pending_load.image_] ++;
|
|
|
|
|
|
|
|
TryImageAgain(pending_load.image_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::TryImageAgain(sp_image* image) {
|
|
|
|
if (!sp_image_is_loaded(image)) {
|
|
|
|
qLog(Debug) << "Image not loaded, will try again later";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the pending request for this image
|
|
|
|
int index = -1;
|
|
|
|
PendingImageRequest* req = NULL;
|
|
|
|
for (int i=0 ; i<pending_image_requests_.count() ; ++i) {
|
|
|
|
if (pending_image_requests_[i].image_ == image) {
|
|
|
|
index = i;
|
|
|
|
req = &pending_image_requests_[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index == -1) {
|
|
|
|
qLog(Warning) << "Image not found in pending load list";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the image data
|
|
|
|
size_t size = 0;
|
|
|
|
const void* data = sp_image_data(image, &size);
|
|
|
|
|
|
|
|
// Send the response
|
2011-08-29 03:00:59 +02:00
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::ImageResponse* msg = message.mutable_image_response();
|
2011-04-29 15:41:42 +02:00
|
|
|
msg->set_id(DataCommaSizeFromQString(req->id_b64_));
|
|
|
|
if (data && size) {
|
|
|
|
msg->set_data(data, size);
|
|
|
|
}
|
|
|
|
handler_->SendMessage(message);
|
|
|
|
|
|
|
|
// Free stuff
|
|
|
|
image_callbacks_registered_[image] --;
|
2011-08-29 02:24:32 +02:00
|
|
|
|
|
|
|
// TODO: memory leak?
|
|
|
|
// sp_image_remove_load_callback(image, &ImageLoaded, this);
|
|
|
|
image_callbacks_registered_.remove(image);
|
2011-04-29 15:41:42 +02:00
|
|
|
|
|
|
|
sp_image_release(image);
|
|
|
|
pending_image_requests_.removeAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::ImageLoaded(sp_image* image, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
me->TryImageAgain(image);
|
|
|
|
}
|
2011-08-29 04:26:59 +02:00
|
|
|
|
|
|
|
void SpotifyClient::BrowseAlbum(const QString& uri) {
|
|
|
|
// Get a link object from the URI
|
|
|
|
sp_link* link = sp_link_create_from_string(uri.toStdString().c_str());
|
|
|
|
if (!link) {
|
|
|
|
SendPlaybackError("Invalid Album URI");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-17 16:57:34 +02:00
|
|
|
// Get the album from the link
|
2011-08-29 04:26:59 +02:00
|
|
|
sp_album* album = sp_link_as_album(link);
|
|
|
|
if (!album) {
|
|
|
|
SendPlaybackError("Spotify URI was not an album");
|
|
|
|
sp_link_release(link);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp_albumbrowse* browse =
|
|
|
|
sp_albumbrowse_create(session_, album, &AlbumBrowseComplete, this);
|
|
|
|
pending_album_browses_[browse] = uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotifyClient::AlbumBrowseComplete(sp_albumbrowse* result, void* userdata) {
|
|
|
|
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
|
|
|
|
|
|
|
|
if (!me->pending_album_browses_.contains(result))
|
|
|
|
return;
|
|
|
|
|
|
|
|
QString uri = me->pending_album_browses_.take(result);
|
|
|
|
|
|
|
|
spotify_pb::SpotifyMessage message;
|
|
|
|
spotify_pb::BrowseAlbumResponse* msg = message.mutable_browse_album_response();
|
|
|
|
|
|
|
|
msg->set_uri(DataCommaSizeFromQString(uri));
|
|
|
|
|
|
|
|
const int count = sp_albumbrowse_num_tracks(result);
|
|
|
|
for (int i=0 ; i<count ; ++i) {
|
|
|
|
me->ConvertTrack(sp_albumbrowse_track(result, i), msg->add_track());
|
|
|
|
}
|
|
|
|
|
|
|
|
me->handler_->SendMessage(message);
|
2011-09-17 16:57:34 +02:00
|
|
|
sp_albumbrowse_release(result);
|
2011-08-29 04:26:59 +02:00
|
|
|
}
|