Make format after update to avoid conflicts
This commit is contained in:
parent
9770154b57
commit
50b7b7d889
@ -106,12 +106,10 @@ bool MediaPipeline::Init(int sample_rate, int channels) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Set caps
|
// Set caps
|
||||||
GstCaps* caps = gst_caps_new_simple("audio/x-raw",
|
GstCaps* caps = gst_caps_new_simple(
|
||||||
"format", G_TYPE_STRING, format,
|
"audio/x-raw", "format", G_TYPE_STRING, format, "rate", G_TYPE_INT,
|
||||||
"rate", G_TYPE_INT, sample_rate,
|
sample_rate, "channels", G_TYPE_INT, channels, "layout", G_TYPE_STRING,
|
||||||
"channels", G_TYPE_INT, channels,
|
"interleaved", nullptr);
|
||||||
"layout", G_TYPE_STRING, "interleaved",
|
|
||||||
nullptr);
|
|
||||||
|
|
||||||
gst_app_src_set_caps(appsrc_, caps);
|
gst_app_src_set_caps(appsrc_, caps);
|
||||||
gst_caps_unref(caps);
|
gst_caps_unref(caps);
|
||||||
|
@ -604,7 +604,6 @@ void SpotifyClient::PlaylistStateChangedForGetPlaylists(sp_playlist* pl,
|
|||||||
|
|
||||||
void SpotifyClient::AddTracksToPlaylist(
|
void SpotifyClient::AddTracksToPlaylist(
|
||||||
const pb::spotify::AddTracksToPlaylistRequest& req) {
|
const pb::spotify::AddTracksToPlaylistRequest& req) {
|
||||||
|
|
||||||
// Get the playlist we want to update
|
// Get the playlist we want to update
|
||||||
int playlist_index = req.playlist_index();
|
int playlist_index = req.playlist_index();
|
||||||
sp_playlist* playlist =
|
sp_playlist* playlist =
|
||||||
@ -615,21 +614,22 @@ void SpotifyClient::AddTracksToPlaylist(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get the tracks we want to add
|
// Get the tracks we want to add
|
||||||
std::unique_ptr<sp_track*[]> tracks_array (new sp_track*[req.track_uri_size()]);
|
std::unique_ptr<sp_track* []> tracks_array(
|
||||||
|
new sp_track* [req.track_uri_size()]);
|
||||||
for (int i = 0; i < req.track_uri_size(); ++i) {
|
for (int i = 0; i < req.track_uri_size(); ++i) {
|
||||||
sp_link* track_link = sp_link_create_from_string(req.track_uri(i).c_str());
|
sp_link* track_link = sp_link_create_from_string(req.track_uri(i).c_str());
|
||||||
sp_track* track = sp_link_as_track(track_link);
|
sp_track* track = sp_link_as_track(track_link);
|
||||||
sp_track_add_ref(track);
|
sp_track_add_ref(track);
|
||||||
sp_link_release(track_link);
|
sp_link_release(track_link);
|
||||||
if (!track) {
|
if (!track) {
|
||||||
qLog(Error) << "Track" << QString::fromStdString(req.track_uri(i)) << "not found";
|
qLog(Error) << "Track" << QString::fromStdString(req.track_uri(i))
|
||||||
|
<< "not found";
|
||||||
}
|
}
|
||||||
tracks_array[i] = track;
|
tracks_array[i] = track;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Actually add the tracks to the playlist
|
// Actually add the tracks to the playlist
|
||||||
if (sp_playlist_add_tracks(playlist, tracks_array.get(),
|
if (sp_playlist_add_tracks(playlist, tracks_array.get(), req.track_uri_size(),
|
||||||
req.track_uri_size(),
|
|
||||||
0 /* TODO: don't insert at a hardcoded position */,
|
0 /* TODO: don't insert at a hardcoded position */,
|
||||||
session_) != SP_ERROR_OK) {
|
session_) != SP_ERROR_OK) {
|
||||||
qLog(Error) << "Error when adding tracks!";
|
qLog(Error) << "Error when adding tracks!";
|
||||||
@ -643,7 +643,6 @@ void SpotifyClient::AddTracksToPlaylist(
|
|||||||
|
|
||||||
void SpotifyClient::RemoveTracksFromPlaylist(
|
void SpotifyClient::RemoveTracksFromPlaylist(
|
||||||
const pb::spotify::RemoveTracksFromPlaylistRequest& req) {
|
const pb::spotify::RemoveTracksFromPlaylistRequest& req) {
|
||||||
|
|
||||||
// Get the playlist we want to update
|
// Get the playlist we want to update
|
||||||
int playlist_index = req.playlist_index();
|
int playlist_index = req.playlist_index();
|
||||||
sp_playlist* playlist =
|
sp_playlist* playlist =
|
||||||
@ -654,18 +653,17 @@ void SpotifyClient::RemoveTracksFromPlaylist(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get the position of the tracks we want to remove
|
// Get the position of the tracks we want to remove
|
||||||
std::unique_ptr<int[]> tracks_indices_array (new int[req.track_index_size()]);
|
std::unique_ptr<int[]> tracks_indices_array(new int[req.track_index_size()]);
|
||||||
for (int i = 0; i < req.track_index_size(); ++i) {
|
for (int i = 0; i < req.track_index_size(); ++i) {
|
||||||
tracks_indices_array[i] = req.track_index(i);
|
tracks_indices_array[i] = req.track_index(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sp_playlist_remove_tracks(playlist, tracks_indices_array.get(),
|
if (sp_playlist_remove_tracks(playlist, tracks_indices_array.get(),
|
||||||
req.track_index_size()) != SP_ERROR_OK) {
|
req.track_index_size()) != SP_ERROR_OK) {
|
||||||
qLog(Error) << "Error when removing tracks!";
|
qLog(Error) << "Error when removing tracks!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void SpotifyClient::ConvertTrack(sp_track* track, pb::spotify::Track* pb) {
|
void SpotifyClient::ConvertTrack(sp_track* track, pb::spotify::Track* pb) {
|
||||||
sp_album* album = sp_track_album(track);
|
sp_album* album = sp_track_album(track);
|
||||||
|
|
||||||
|
@ -123,7 +123,8 @@ class SpotifyClient : public AbstractMessageHandler<pb::spotify::Message> {
|
|||||||
void LoadPlaylist(const pb::spotify::LoadPlaylistRequest& req);
|
void LoadPlaylist(const pb::spotify::LoadPlaylistRequest& req);
|
||||||
void SyncPlaylist(const pb::spotify::SyncPlaylistRequest& req);
|
void SyncPlaylist(const pb::spotify::SyncPlaylistRequest& req);
|
||||||
void AddTracksToPlaylist(const pb::spotify::AddTracksToPlaylistRequest& req);
|
void AddTracksToPlaylist(const pb::spotify::AddTracksToPlaylistRequest& req);
|
||||||
void RemoveTracksFromPlaylist(const pb::spotify::RemoveTracksFromPlaylistRequest& req);
|
void RemoveTracksFromPlaylist(
|
||||||
|
const pb::spotify::RemoveTracksFromPlaylistRequest& req);
|
||||||
void StartPlayback(const pb::spotify::PlaybackRequest& req);
|
void StartPlayback(const pb::spotify::PlaybackRequest& req);
|
||||||
void Seek(qint64 offset_nsec);
|
void Seek(qint64 offset_nsec);
|
||||||
void LoadImage(const QString& id_b64);
|
void LoadImage(const QString& id_b64);
|
||||||
@ -194,7 +195,7 @@ class SpotifyClient : public AbstractMessageHandler<pb::spotify::Message> {
|
|||||||
QMap<sp_toplistbrowse*, pb::spotify::BrowseToplistRequest>
|
QMap<sp_toplistbrowse*, pb::spotify::BrowseToplistRequest>
|
||||||
pending_toplist_browses_;
|
pending_toplist_browses_;
|
||||||
|
|
||||||
QMap<sp_search*, QList<sp_albumbrowse*> > pending_search_album_browses_;
|
QMap<sp_search*, QList<sp_albumbrowse*>> pending_search_album_browses_;
|
||||||
QMap<sp_albumbrowse*, sp_search*> pending_search_album_browse_responses_;
|
QMap<sp_albumbrowse*, sp_search*> pending_search_album_browse_responses_;
|
||||||
|
|
||||||
QScopedPointer<MediaPipeline> media_pipeline_;
|
QScopedPointer<MediaPipeline> media_pipeline_;
|
||||||
|
@ -235,25 +235,20 @@ bool GstEnginePipeline::Init() {
|
|||||||
!device_.toString().isEmpty()) {
|
!device_.toString().isEmpty()) {
|
||||||
switch (device_.type()) {
|
switch (device_.type()) {
|
||||||
case QVariant::Int:
|
case QVariant::Int:
|
||||||
g_object_set(G_OBJECT(audiosink_),
|
g_object_set(G_OBJECT(audiosink_), "device", device_.toInt(), nullptr);
|
||||||
"device", device_.toInt(),
|
|
||||||
nullptr);
|
|
||||||
break;
|
break;
|
||||||
case QVariant::String:
|
case QVariant::String:
|
||||||
g_object_set(G_OBJECT(audiosink_),
|
g_object_set(G_OBJECT(audiosink_), "device",
|
||||||
"device", device_.toString().toUtf8().constData(),
|
device_.toString().toUtf8().constData(), nullptr);
|
||||||
nullptr);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef Q_OS_WIN32
|
#ifdef Q_OS_WIN32
|
||||||
case QVariant::ByteArray: {
|
case QVariant::ByteArray: {
|
||||||
GUID guid = QUuid(device_.toByteArray());
|
GUID guid = QUuid(device_.toByteArray());
|
||||||
g_object_set(G_OBJECT(audiosink_),
|
g_object_set(G_OBJECT(audiosink_), "device", &guid, nullptr);
|
||||||
"device", &guid,
|
|
||||||
nullptr);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif // Q_OS_WIN32
|
#endif // Q_OS_WIN32
|
||||||
|
|
||||||
default:
|
default:
|
||||||
qLog(Warning) << "Unknown device type" << device_;
|
qLog(Warning) << "Unknown device type" << device_;
|
||||||
@ -322,8 +317,8 @@ bool GstEnginePipeline::Init() {
|
|||||||
// We do it here because we want pre-equalized and pre-volume samples
|
// We do it here because we want pre-equalized and pre-volume samples
|
||||||
// so that our visualization are not be affected by them.
|
// so that our visualization are not be affected by them.
|
||||||
pad = gst_element_get_static_pad(event_probe, "src");
|
pad = gst_element_get_static_pad(event_probe, "src");
|
||||||
gst_pad_add_probe(
|
gst_pad_add_probe(pad, GST_PAD_PROBE_TYPE_EVENT_UPSTREAM,
|
||||||
pad, GST_PAD_PROBE_TYPE_EVENT_UPSTREAM, &EventHandoffCallback, this, NULL);
|
&EventHandoffCallback, this, NULL);
|
||||||
gst_object_unref(pad);
|
gst_object_unref(pad);
|
||||||
|
|
||||||
// Configure the fakesink properly
|
// Configure the fakesink properly
|
||||||
@ -334,8 +329,8 @@ bool GstEnginePipeline::Init() {
|
|||||||
|
|
||||||
int last_band_frequency = 0;
|
int last_band_frequency = 0;
|
||||||
for (int i = 0; i < kEqBandCount; ++i) {
|
for (int i = 0; i < kEqBandCount; ++i) {
|
||||||
GstObject* band = GST_OBJECT(gst_child_proxy_get_child_by_index(
|
GstObject* band = GST_OBJECT(
|
||||||
GST_CHILD_PROXY(equalizer_), i));
|
gst_child_proxy_get_child_by_index(GST_CHILD_PROXY(equalizer_), i));
|
||||||
|
|
||||||
const float frequency = kEqBandFrequencies[i];
|
const float frequency = kEqBandFrequencies[i];
|
||||||
const float bandwidth = frequency - last_band_frequency;
|
const float bandwidth = frequency - last_band_frequency;
|
||||||
@ -369,9 +364,8 @@ bool GstEnginePipeline::Init() {
|
|||||||
|
|
||||||
// Link the elements with special caps
|
// Link the elements with special caps
|
||||||
// The scope path through the tee gets 16-bit ints.
|
// The scope path through the tee gets 16-bit ints.
|
||||||
GstCaps* caps16 = gst_caps_new_simple ("audio/x-raw",
|
GstCaps* caps16 = gst_caps_new_simple("audio/x-raw", "format", G_TYPE_STRING,
|
||||||
"format", G_TYPE_STRING, "S16LE",
|
"S16LE", NULL);
|
||||||
NULL);
|
|
||||||
gst_element_link_filtered(probe_converter, probe_sink, caps16);
|
gst_element_link_filtered(probe_converter, probe_sink, caps16);
|
||||||
gst_caps_unref(caps16);
|
gst_caps_unref(caps16);
|
||||||
|
|
||||||
@ -394,8 +388,7 @@ bool GstEnginePipeline::Init() {
|
|||||||
|
|
||||||
// Add probes and handlers.
|
// Add probes and handlers.
|
||||||
gst_pad_add_probe(gst_element_get_static_pad(probe_converter, "src"),
|
gst_pad_add_probe(gst_element_get_static_pad(probe_converter, "src"),
|
||||||
GST_PAD_PROBE_TYPE_BUFFER,
|
GST_PAD_PROBE_TYPE_BUFFER, HandoffCallback, this, nullptr);
|
||||||
HandoffCallback, this, nullptr);
|
|
||||||
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
||||||
BusCallbackSync, this, nullptr);
|
BusCallbackSync, this, nullptr);
|
||||||
bus_cb_id_ = gst_bus_add_watch(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
bus_cb_id_ = gst_bus_add_watch(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
||||||
@ -456,9 +449,8 @@ bool GstEnginePipeline::InitFromUrl(const QUrl& url, qint64 end_nanosec) {
|
|||||||
|
|
||||||
GstEnginePipeline::~GstEnginePipeline() {
|
GstEnginePipeline::~GstEnginePipeline() {
|
||||||
if (pipeline_) {
|
if (pipeline_) {
|
||||||
gst_bus_set_sync_handler(
|
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
||||||
gst_pipeline_get_bus(GST_PIPELINE(pipeline_)),
|
nullptr, nullptr, nullptr);
|
||||||
nullptr, nullptr, nullptr);
|
|
||||||
g_source_remove(bus_cb_id_);
|
g_source_remove(bus_cb_id_);
|
||||||
gst_element_set_state(pipeline_, GST_STATE_NULL);
|
gst_element_set_state(pipeline_, GST_STATE_NULL);
|
||||||
gst_object_unref(GST_OBJECT(pipeline_));
|
gst_object_unref(GST_OBJECT(pipeline_));
|
||||||
@ -719,20 +711,16 @@ void GstEnginePipeline::NewPadCallback(GstElement*, GstPad* pad,
|
|||||||
// decodebin.
|
// decodebin.
|
||||||
// "Running time" is the time since the last flushing seek.
|
// "Running time" is the time since the last flushing seek.
|
||||||
GstClockTime running_time = gst_segment_to_running_time(
|
GstClockTime running_time = gst_segment_to_running_time(
|
||||||
&instance->last_decodebin_segment_,
|
&instance->last_decodebin_segment_, GST_FORMAT_TIME,
|
||||||
GST_FORMAT_TIME,
|
|
||||||
instance->last_decodebin_segment_.position);
|
instance->last_decodebin_segment_.position);
|
||||||
gst_pad_set_offset(pad, running_time);
|
gst_pad_set_offset(pad, running_time);
|
||||||
|
|
||||||
// Add a probe to the pad so we can update last_decodebin_segment_.
|
// Add a probe to the pad so we can update last_decodebin_segment_.
|
||||||
gst_pad_add_probe(pad,
|
gst_pad_add_probe(
|
||||||
static_cast<GstPadProbeType>(
|
pad, static_cast<GstPadProbeType>(GST_PAD_PROBE_TYPE_BUFFER |
|
||||||
GST_PAD_PROBE_TYPE_BUFFER |
|
GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM |
|
||||||
GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM |
|
GST_PAD_PROBE_TYPE_EVENT_FLUSH),
|
||||||
GST_PAD_PROBE_TYPE_EVENT_FLUSH),
|
DecodebinProbe, instance, nullptr);
|
||||||
DecodebinProbe,
|
|
||||||
instance,
|
|
||||||
nullptr);
|
|
||||||
|
|
||||||
instance->pipeline_is_connected_ = true;
|
instance->pipeline_is_connected_ = true;
|
||||||
if (instance->pending_seek_nanosec_ != -1 &&
|
if (instance->pending_seek_nanosec_ != -1 &&
|
||||||
@ -985,21 +973,22 @@ GstState GstEnginePipeline::state() const {
|
|||||||
|
|
||||||
QFuture<GstStateChangeReturn> GstEnginePipeline::SetState(GstState state) {
|
QFuture<GstStateChangeReturn> GstEnginePipeline::SetState(GstState state) {
|
||||||
if (url_.scheme() == "spotify" && !buffering_) {
|
if (url_.scheme() == "spotify" && !buffering_) {
|
||||||
const GstState current_state = this->state();
|
const GstState current_state = this->state();
|
||||||
|
|
||||||
if (state == GST_STATE_PAUSED && current_state == GST_STATE_PLAYING) {
|
if (state == GST_STATE_PAUSED && current_state == GST_STATE_PLAYING) {
|
||||||
SpotifyService* spotify = InternetModel::Service<SpotifyService>();
|
SpotifyService* spotify = InternetModel::Service<SpotifyService>();
|
||||||
|
|
||||||
// Need to schedule this in the spotify service's thread
|
// Need to schedule this in the spotify service's thread
|
||||||
QMetaObject::invokeMethod(spotify, "SetPaused", Qt::QueuedConnection,
|
QMetaObject::invokeMethod(spotify, "SetPaused", Qt::QueuedConnection,
|
||||||
Q_ARG(bool, true));
|
Q_ARG(bool, true));
|
||||||
} else if (state == GST_STATE_PLAYING && current_state == GST_STATE_PAUSED) {
|
} else if (state == GST_STATE_PLAYING &&
|
||||||
SpotifyService* spotify = InternetModel::Service<SpotifyService>();
|
current_state == GST_STATE_PAUSED) {
|
||||||
|
SpotifyService* spotify = InternetModel::Service<SpotifyService>();
|
||||||
|
|
||||||
// Need to schedule this in the spotify service's thread
|
// Need to schedule this in the spotify service's thread
|
||||||
QMetaObject::invokeMethod(spotify, "SetPaused", Qt::QueuedConnection,
|
QMetaObject::invokeMethod(spotify, "SetPaused", Qt::QueuedConnection,
|
||||||
Q_ARG(bool, false));
|
Q_ARG(bool, false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ConcurrentRun::Run<GstStateChangeReturn, GstElement*, GstState>(
|
return ConcurrentRun::Run<GstStateChangeReturn, GstElement*, GstState>(
|
||||||
&set_state_threadpool_, &gst_element_set_state, pipeline_, state);
|
&set_state_threadpool_, &gst_element_set_state, pipeline_, state);
|
||||||
|
@ -131,7 +131,8 @@ signals:
|
|||||||
static gboolean BusCallback(GstBus*, GstMessage*, gpointer);
|
static gboolean BusCallback(GstBus*, GstMessage*, gpointer);
|
||||||
static void NewPadCallback(GstElement*, GstPad*, gpointer);
|
static void NewPadCallback(GstElement*, GstPad*, gpointer);
|
||||||
static GstPadProbeReturn HandoffCallback(GstPad*, GstPadProbeInfo*, gpointer);
|
static GstPadProbeReturn HandoffCallback(GstPad*, GstPadProbeInfo*, gpointer);
|
||||||
static GstPadProbeReturn EventHandoffCallback(GstPad*, GstPadProbeInfo*, gpointer);
|
static GstPadProbeReturn EventHandoffCallback(GstPad*, GstPadProbeInfo*,
|
||||||
|
gpointer);
|
||||||
static GstPadProbeReturn DecodebinProbe(GstPad*, GstPadProbeInfo*, gpointer);
|
static GstPadProbeReturn DecodebinProbe(GstPad*, GstPadProbeInfo*, gpointer);
|
||||||
static void SourceDrainedCallback(GstURIDecodeBin*, gpointer);
|
static void SourceDrainedCallback(GstURIDecodeBin*, gpointer);
|
||||||
static void SourceSetupCallback(GstURIDecodeBin*, GParamSpec* pspec,
|
static void SourceSetupCallback(GstURIDecodeBin*, GParamSpec* pspec,
|
||||||
|
@ -338,7 +338,8 @@ void InternetModel::UpdateServices() {
|
|||||||
bool setting_val = s.value(service_name).toBool();
|
bool setting_val = s.value(service_name).toBool();
|
||||||
|
|
||||||
// Only update if values are different
|
// Only update if values are different
|
||||||
if (setting_val == true && shown_services_[internet_service].shown == false) {
|
if (setting_val == true &&
|
||||||
|
shown_services_[internet_service].shown == false) {
|
||||||
ShowService(internet_service);
|
ShowService(internet_service);
|
||||||
} else if (setting_val == false &&
|
} else if (setting_val == false &&
|
||||||
shown_services_[internet_service].shown == true) {
|
shown_services_[internet_service].shown == true) {
|
||||||
@ -352,7 +353,7 @@ void InternetModel::UpdateServices() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void InternetModel::ShowService(InternetService* service) {
|
void InternetModel::ShowService(InternetService* service) {
|
||||||
if(shown_services_[service].shown != true) {
|
if (shown_services_[service].shown != true) {
|
||||||
invisibleRootItem()->appendRow(shown_services_[service].item);
|
invisibleRootItem()->appendRow(shown_services_[service].item);
|
||||||
shown_services_[service].shown = true;
|
shown_services_[service].shown = true;
|
||||||
}
|
}
|
||||||
|
@ -115,7 +115,7 @@ class InternetModel : public QStandardItemModel {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct ServiceItem {
|
struct ServiceItem {
|
||||||
QStandardItem *item;
|
QStandardItem* item;
|
||||||
bool shown;
|
bool shown;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -180,7 +180,6 @@ signals:
|
|||||||
void ServiceDeleted();
|
void ServiceDeleted();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
QMap<InternetService*, ServiceItem> shown_services_;
|
QMap<InternetService*, ServiceItem> shown_services_;
|
||||||
|
|
||||||
static QMap<QString, InternetService*>* sServices;
|
static QMap<QString, InternetService*>* sServices;
|
||||||
|
@ -38,7 +38,8 @@ void InternetShowSettingsPage::Load() {
|
|||||||
|
|
||||||
ui_->sources->clear();
|
ui_->sources->clear();
|
||||||
|
|
||||||
for (QMap<InternetService*, InternetModel::ServiceItem>::iterator service = shown_services.begin();
|
for (QMap<InternetService*, InternetModel::ServiceItem>::iterator service =
|
||||||
|
shown_services.begin();
|
||||||
service != shown_services.end(); ++service) {
|
service != shown_services.end(); ++service) {
|
||||||
QTreeWidgetItem* item = new QTreeWidgetItem;
|
QTreeWidgetItem* item = new QTreeWidgetItem;
|
||||||
|
|
||||||
@ -46,7 +47,8 @@ void InternetShowSettingsPage::Load() {
|
|||||||
item->setText(0, service.value().item->text());
|
item->setText(0, service.value().item->text());
|
||||||
item->setIcon(0, service.value().item->icon());
|
item->setIcon(0, service.value().item->icon());
|
||||||
|
|
||||||
Qt::CheckState check_state = service.value().shown == true ? Qt::Checked : Qt::Unchecked;
|
Qt::CheckState check_state =
|
||||||
|
service.value().shown == true ? Qt::Checked : Qt::Unchecked;
|
||||||
item->setData(0, Qt::CheckStateRole, check_state);
|
item->setData(0, Qt::CheckStateRole, check_state);
|
||||||
/* We have to store the constant name of the service */
|
/* We have to store the constant name of the service */
|
||||||
item->setData(1, Qt::UserRole, service.key()->name());
|
item->setData(1, Qt::UserRole, service.key()->name());
|
||||||
|
@ -420,7 +420,8 @@ void SpotifyService::PlaylistsUpdated(const pb::spotify::Playlists& response) {
|
|||||||
QString playlist_title = QStringFromStdString(msg.name());
|
QString playlist_title = QStringFromStdString(msg.name());
|
||||||
if (!msg.is_mine()) {
|
if (!msg.is_mine()) {
|
||||||
const std::string& owner = msg.owner();
|
const std::string& owner = msg.owner();
|
||||||
playlist_title += tr(", by ") + QString::fromUtf8(owner.c_str(), owner.size());
|
playlist_title +=
|
||||||
|
tr(", by ") + QString::fromUtf8(owner.c_str(), owner.size());
|
||||||
}
|
}
|
||||||
QStandardItem* item = new QStandardItem(playlist_title);
|
QStandardItem* item = new QStandardItem(playlist_title);
|
||||||
item->setData(InternetModel::Type_UserPlaylist, InternetModel::Role_Type);
|
item->setData(InternetModel::Type_UserPlaylist, InternetModel::Role_Type);
|
||||||
@ -611,8 +612,7 @@ void SpotifyService::EnsureMenuCreated() {
|
|||||||
|
|
||||||
song_context_menu_ = new QMenu;
|
song_context_menu_ = new QMenu;
|
||||||
remove_from_playlist_ = song_context_menu_->addAction(
|
remove_from_playlist_ = song_context_menu_->addAction(
|
||||||
IconLoader::Load("list-remove"),
|
IconLoader::Load("list-remove"), tr("Remove from playlist"), this,
|
||||||
tr("Remove from playlist"), this,
|
|
||||||
SLOT(RemoveCurrentFromPlaylist()));
|
SLOT(RemoveCurrentFromPlaylist()));
|
||||||
|
|
||||||
song_context_menu_->addAction(GetNewShowConfigAction());
|
song_context_menu_->addAction(GetNewShowConfigAction());
|
||||||
@ -742,7 +742,8 @@ void SpotifyService::ShowContextMenu(const QPoint& global_pos) {
|
|||||||
return;
|
return;
|
||||||
} else if (type == InternetModel::Type_Track) {
|
} else if (type == InternetModel::Type_Track) {
|
||||||
// Is this track contained in a playlist we can modify?
|
// Is this track contained in a playlist we can modify?
|
||||||
bool is_playlist_modifiable = item->parent() &&
|
bool is_playlist_modifiable =
|
||||||
|
item->parent() &&
|
||||||
item->parent()->data(Role_UserPlaylistIsMine).toBool();
|
item->parent()->data(Role_UserPlaylistIsMine).toBool();
|
||||||
remove_from_playlist_->setVisible(is_playlist_modifiable);
|
remove_from_playlist_->setVisible(is_playlist_modifiable);
|
||||||
|
|
||||||
@ -807,9 +808,8 @@ void SpotifyService::SyncPlaylistProgress(
|
|||||||
}
|
}
|
||||||
|
|
||||||
QAction* SpotifyService::GetNewShowConfigAction() {
|
QAction* SpotifyService::GetNewShowConfigAction() {
|
||||||
QAction* action = new QAction(
|
QAction* action = new QAction(IconLoader::Load("configure"),
|
||||||
IconLoader::Load("configure"),
|
tr("Configure Spotify..."), this);
|
||||||
tr("Configure Spotify..."), this);
|
|
||||||
connect(action, SIGNAL(triggered()), this, SLOT(ShowConfig()));
|
connect(action, SIGNAL(triggered()), this, SLOT(ShowConfig()));
|
||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
@ -820,14 +820,15 @@ void SpotifyService::ShowConfig() {
|
|||||||
|
|
||||||
void SpotifyService::RemoveCurrentFromPlaylist() {
|
void SpotifyService::RemoveCurrentFromPlaylist() {
|
||||||
const QModelIndexList& indexes(model()->selected_indexes());
|
const QModelIndexList& indexes(model()->selected_indexes());
|
||||||
QMap<int, QList<int> > playlists_songs_indices;
|
QMap<int, QList<int>> playlists_songs_indices;
|
||||||
for (const QModelIndex& index : indexes) {
|
for (const QModelIndex& index : indexes) {
|
||||||
if (index.parent().data(InternetModel::Role_Type).toInt() !=
|
if (index.parent().data(InternetModel::Role_Type).toInt() !=
|
||||||
InternetModel::Type_UserPlaylist) {
|
InternetModel::Type_UserPlaylist) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (index.data(InternetModel::Role_Type).toInt() != InternetModel::Type_Track) {
|
if (index.data(InternetModel::Role_Type).toInt() !=
|
||||||
|
InternetModel::Type_Track) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -836,8 +837,8 @@ void SpotifyService::RemoveCurrentFromPlaylist() {
|
|||||||
playlists_songs_indices[playlist_index] << song_index;
|
playlists_songs_indices[playlist_index] << song_index;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (QMap<int, QList<int> >::const_iterator it =
|
for (QMap<int, QList<int>>::const_iterator it =
|
||||||
playlists_songs_indices.constBegin();
|
playlists_songs_indices.constBegin();
|
||||||
it != playlists_songs_indices.constEnd(); ++it) {
|
it != playlists_songs_indices.constEnd(); ++it) {
|
||||||
RemoveSongsFromPlaylist(it.key(), it.value());
|
RemoveSongsFromPlaylist(it.key(), it.value());
|
||||||
}
|
}
|
||||||
@ -845,7 +846,6 @@ void SpotifyService::RemoveCurrentFromPlaylist() {
|
|||||||
|
|
||||||
void SpotifyService::RemoveSongsFromPlaylist(
|
void SpotifyService::RemoveSongsFromPlaylist(
|
||||||
int playlist_index, const QList<int>& songs_indices_to_remove) {
|
int playlist_index, const QList<int>& songs_indices_to_remove) {
|
||||||
|
|
||||||
server_->RemoveSongsFromPlaylist(playlist_index, songs_indices_to_remove);
|
server_->RemoveSongsFromPlaylist(playlist_index, songs_indices_to_remove);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ class SpotifyService : public InternetService {
|
|||||||
|
|
||||||
enum Role {
|
enum Role {
|
||||||
Role_UserPlaylistIndex = InternetModel::RoleCount,
|
Role_UserPlaylistIndex = InternetModel::RoleCount,
|
||||||
Role_UserPlaylistIsMine, // Is this playlist owned by the user currently logged-in?
|
Role_UserPlaylistIsMine, // Is this playlist owned by the user currently
|
||||||
|
// logged-in?
|
||||||
};
|
};
|
||||||
|
|
||||||
// Values are persisted - don't change.
|
// Values are persisted - don't change.
|
||||||
|
@ -23,18 +23,14 @@
|
|||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
static const int sBarkBands[] = {
|
static const int sBarkBands[] = {
|
||||||
100, 200, 300, 400, 510, 630, 770, 920,
|
100, 200, 300, 400, 510, 630, 770, 920, 1080, 1270, 1480, 1720,
|
||||||
1080, 1270, 1480, 1720, 2000, 2320, 2700, 3150,
|
2000, 2320, 2700, 3150, 3700, 4400, 5300, 6400, 7700, 9500, 12000, 15500};
|
||||||
3700, 4400, 5300, 6400, 7700, 9500, 12000, 15500 };
|
|
||||||
|
|
||||||
static const int sBarkBandCount = arraysize(sBarkBands);
|
static const int sBarkBandCount = arraysize(sBarkBands);
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
MoodbarBuilder::MoodbarBuilder()
|
MoodbarBuilder::MoodbarBuilder() : bands_(0), rate_hz_(0) {}
|
||||||
: bands_(0),
|
|
||||||
rate_hz_(0) {
|
|
||||||
}
|
|
||||||
|
|
||||||
int MoodbarBuilder::BandFrequency(int band) const {
|
int MoodbarBuilder::BandFrequency(int band) const {
|
||||||
return ((rate_hz_ / 2) * band + rate_hz_ / 4) / bands_;
|
return ((rate_hz_ / 2) * band + rate_hz_ / 4) / bands_;
|
||||||
@ -151,9 +147,8 @@ void MoodbarBuilder::Normalize(QList<Rgb>* vals, double Rgb::*member) {
|
|||||||
|
|
||||||
for (auto it = vals->begin(); it != vals->end(); ++it) {
|
for (auto it = vals->begin(); it != vals->end(); ++it) {
|
||||||
double* value = &((*it).*member);
|
double* value = &((*it).*member);
|
||||||
*value = std::isfinite(*value)
|
*value =
|
||||||
? qBound(0.0, (*value - mini) / delta, 1.0)
|
std::isfinite(*value) ? qBound(0.0, (*value - mini) / delta, 1.0) : 0;
|
||||||
: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,8 +156,7 @@ QByteArray MoodbarBuilder::Finish(int width) {
|
|||||||
QByteArray ret;
|
QByteArray ret;
|
||||||
ret.resize(width * 3);
|
ret.resize(width * 3);
|
||||||
char* data = ret.data();
|
char* data = ret.data();
|
||||||
if (frames_.count() == 0)
|
if (frames_.count() == 0) return ret;
|
||||||
return ret;
|
|
||||||
|
|
||||||
Normalize(&frames_, &Rgb::r);
|
Normalize(&frames_, &Rgb::r);
|
||||||
Normalize(&frames_, &Rgb::g);
|
Normalize(&frames_, &Rgb::g);
|
||||||
|
@ -102,17 +102,13 @@ void MoodbarPipeline::Start() {
|
|||||||
builder_.reset(new MoodbarBuilder);
|
builder_.reset(new MoodbarBuilder);
|
||||||
|
|
||||||
// Set properties
|
// Set properties
|
||||||
g_object_set(decodebin,
|
g_object_set(decodebin, "uri", local_filename_.toEncoded().constData(),
|
||||||
"uri", local_filename_.toEncoded().constData(),
|
|
||||||
nullptr);
|
|
||||||
g_object_set(spectrum,
|
|
||||||
"bands", kBands,
|
|
||||||
nullptr);
|
nullptr);
|
||||||
|
g_object_set(spectrum, "bands", kBands, nullptr);
|
||||||
|
|
||||||
GstFastSpectrum* fast_spectrum = GST_FASTSPECTRUM(spectrum);
|
GstFastSpectrum* fast_spectrum = GST_FASTSPECTRUM(spectrum);
|
||||||
fast_spectrum->output_callback = [this](double* magnitudes, int size) {
|
fast_spectrum->output_callback = [this](
|
||||||
builder_->AddFrame(magnitudes, size);
|
double* magnitudes, int size) { builder_->AddFrame(magnitudes, size); };
|
||||||
};
|
|
||||||
|
|
||||||
// Connect signals
|
// Connect signals
|
||||||
CHECKED_GCONNECT(decodebin, "pad-added", &NewPadCallback, this);
|
CHECKED_GCONNECT(decodebin, "pad-added", &NewPadCallback, this);
|
||||||
|
@ -167,7 +167,8 @@ void PlaylistManager::Load(const QString& filename) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Playlist* playlist = AddPlaylist(id, info.baseName(), QString(), QString(), false);
|
Playlist* playlist =
|
||||||
|
AddPlaylist(id, info.baseName(), QString(), QString(), false);
|
||||||
|
|
||||||
QList<QUrl> urls;
|
QList<QUrl> urls;
|
||||||
playlist->InsertUrls(urls << QUrl::fromLocalFile(filename));
|
playlist->InsertUrls(urls << QUrl::fromLocalFile(filename));
|
||||||
@ -195,7 +196,6 @@ void PlaylistManager::Save(int id, const QString& filename,
|
|||||||
void PlaylistManager::ItemsLoadedForSavePlaylist(QFutureWatcher<Song>* watcher,
|
void PlaylistManager::ItemsLoadedForSavePlaylist(QFutureWatcher<Song>* watcher,
|
||||||
const QString& filename,
|
const QString& filename,
|
||||||
Playlist::Path path_type) {
|
Playlist::Path path_type) {
|
||||||
|
|
||||||
SongList song_list = watcher->future().results();
|
SongList song_list = watcher->future().results();
|
||||||
parser_->Save(song_list, filename, path_type);
|
parser_->Save(song_list, filename, path_type);
|
||||||
}
|
}
|
||||||
@ -263,7 +263,6 @@ void PlaylistManager::Rename(int id, const QString& new_name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistManager::Favorite(int id, bool favorite) {
|
void PlaylistManager::Favorite(int id, bool favorite) {
|
||||||
|
|
||||||
if (playlists_.contains(id)) {
|
if (playlists_.contains(id)) {
|
||||||
// If playlists_ contains this playlist, its means it's opened: star or
|
// If playlists_ contains this playlist, its means it's opened: star or
|
||||||
// unstar it.
|
// unstar it.
|
||||||
|
@ -76,7 +76,8 @@ class PlaylistManagerInterface : public QObject {
|
|||||||
virtual void New(const QString& name, const SongList& songs = SongList(),
|
virtual void New(const QString& name, const SongList& songs = SongList(),
|
||||||
const QString& special_type = QString()) = 0;
|
const QString& special_type = QString()) = 0;
|
||||||
virtual void Load(const QString& filename) = 0;
|
virtual void Load(const QString& filename) = 0;
|
||||||
virtual void Save(int id, const QString& filename, Playlist::Path path_type) = 0;
|
virtual void Save(int id, const QString& filename,
|
||||||
|
Playlist::Path path_type) = 0;
|
||||||
virtual void Rename(int id, const QString& new_name) = 0;
|
virtual void Rename(int id, const QString& new_name) = 0;
|
||||||
virtual void Delete(int id) = 0;
|
virtual void Delete(int id) = 0;
|
||||||
virtual bool Close(int id) = 0;
|
virtual bool Close(int id) = 0;
|
||||||
|
@ -48,5 +48,6 @@ void PlaylistSaveOptionsDialog::accept() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Playlist::Path PlaylistSaveOptionsDialog::path_type() const {
|
Playlist::Path PlaylistSaveOptionsDialog::path_type() const {
|
||||||
return static_cast<Playlist::Path>(ui->filePaths->itemData(ui->filePaths->currentIndex()).toInt());
|
return static_cast<Playlist::Path>(
|
||||||
|
ui->filePaths->itemData(ui->filePaths->currentIndex()).toInt());
|
||||||
}
|
}
|
||||||
|
@ -967,8 +967,9 @@ void PlaylistView::paintEvent(QPaintEvent* event) {
|
|||||||
if (model()->rowCount() == 0)
|
if (model()->rowCount() == 0)
|
||||||
drop_pos = 1;
|
drop_pos = 1;
|
||||||
else
|
else
|
||||||
drop_pos = 1 + visualRect(model()->index(model()->rowCount() - 1,
|
drop_pos = 1 +
|
||||||
first_column)).bottom();
|
visualRect(model()->index(model()->rowCount() - 1,
|
||||||
|
first_column)).bottom();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1112,10 +1113,10 @@ void PlaylistView::ReloadSettings() {
|
|||||||
force_background_redraw_ = true;
|
force_background_redraw_ = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!s.value("click_edit_inline", true).toBool())
|
if (!s.value("click_edit_inline", true).toBool())
|
||||||
setEditTriggers(editTriggers() & ~QAbstractItemView::SelectedClicked);
|
setEditTriggers(editTriggers() & ~QAbstractItemView::SelectedClicked);
|
||||||
else
|
else
|
||||||
setEditTriggers(editTriggers() | QAbstractItemView::SelectedClicked);
|
setEditTriggers(editTriggers() | QAbstractItemView::SelectedClicked);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::SaveSettings() {
|
void PlaylistView::SaveSettings() {
|
||||||
|
@ -50,8 +50,7 @@ SongList AsxIniParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AsxIniParser::Save(const SongList& songs, QIODevice* device,
|
void AsxIniParser::Save(const SongList& songs, QIODevice* device,
|
||||||
const QDir& dir,
|
const QDir& dir, Playlist::Path path_type) const {
|
||||||
Playlist::Path path_type) const {
|
|
||||||
QTextStream s(device);
|
QTextStream s(device);
|
||||||
s << "[Reference]" << endl;
|
s << "[Reference]" << endl;
|
||||||
|
|
||||||
|
@ -33,8 +33,7 @@ class AsxIniParser : public ParserBase {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -117,8 +117,8 @@ return_song:
|
|||||||
return song;
|
return song;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ASXParser::Save(const SongList& songs, QIODevice* device,
|
void ASXParser::Save(const SongList& songs, QIODevice* device, const QDir&,
|
||||||
const QDir&, Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
QXmlStreamWriter writer(device);
|
QXmlStreamWriter writer(device);
|
||||||
writer.setAutoFormatting(true);
|
writer.setAutoFormatting(true);
|
||||||
writer.setAutoFormattingIndent(2);
|
writer.setAutoFormattingIndent(2);
|
||||||
|
@ -33,8 +33,7 @@ class ASXParser : public XMLParser {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -63,7 +63,6 @@ SongList CueParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
|
|
||||||
// -- whole file
|
// -- whole file
|
||||||
while (!text_stream.atEnd()) {
|
while (!text_stream.atEnd()) {
|
||||||
|
|
||||||
QString album_artist;
|
QString album_artist;
|
||||||
QString album;
|
QString album;
|
||||||
QString album_composer;
|
QString album_composer;
|
||||||
@ -86,22 +85,18 @@ SongList CueParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
|
|
||||||
// PERFORMER
|
// PERFORMER
|
||||||
if (line_name == kPerformer) {
|
if (line_name == kPerformer) {
|
||||||
|
|
||||||
album_artist = line_value;
|
album_artist = line_value;
|
||||||
|
|
||||||
// TITLE
|
// TITLE
|
||||||
} else if (line_name == kTitle) {
|
} else if (line_name == kTitle) {
|
||||||
|
|
||||||
album = line_value;
|
album = line_value;
|
||||||
|
|
||||||
// SONGWRITER
|
// SONGWRITER
|
||||||
} else if (line_name == kSongWriter) {
|
} else if (line_name == kSongWriter) {
|
||||||
|
|
||||||
album_composer = line_value;
|
album_composer = line_value;
|
||||||
|
|
||||||
// FILE
|
// FILE
|
||||||
} else if (line_name == kFile) {
|
} else if (line_name == kFile) {
|
||||||
|
|
||||||
file = QDir::isAbsolutePath(line_value)
|
file = QDir::isAbsolutePath(line_value)
|
||||||
? line_value
|
? line_value
|
||||||
: dir.absoluteFilePath(line_value);
|
: dir.absoluteFilePath(line_value);
|
||||||
@ -127,7 +122,6 @@ SongList CueParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
|
|
||||||
// end of the header -> go into the track mode
|
// end of the header -> go into the track mode
|
||||||
} else if (line_name == kTrack) {
|
} else if (line_name == kTrack) {
|
||||||
|
|
||||||
files++;
|
files++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -166,7 +160,6 @@ SongList CueParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
splitted.size() > 2 ? splitted[2].toLower() : "";
|
splitted.size() > 2 ? splitted[2].toLower() : "";
|
||||||
|
|
||||||
if (line_name == kTrack) {
|
if (line_name == kTrack) {
|
||||||
|
|
||||||
// the beginning of another track's definition - we're saving the
|
// the beginning of another track's definition - we're saving the
|
||||||
// current one
|
// current one
|
||||||
// for later (if it's valid of course)
|
// for later (if it's valid of course)
|
||||||
@ -187,33 +180,26 @@ SongList CueParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else if (line_name == kIndex) {
|
} else if (line_name == kIndex) {
|
||||||
|
|
||||||
// we need the index's position field
|
// we need the index's position field
|
||||||
if (!line_additional.isEmpty()) {
|
if (!line_additional.isEmpty()) {
|
||||||
|
|
||||||
// if there's none "01" index, we'll just take the first one
|
// if there's none "01" index, we'll just take the first one
|
||||||
// also, we'll take the "01" index even if it's the last one
|
// also, we'll take the "01" index even if it's the last one
|
||||||
if (line_value == "01" || index.isEmpty()) {
|
if (line_value == "01" || index.isEmpty()) {
|
||||||
|
|
||||||
index = line_additional;
|
index = line_additional;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (line_name == kPerformer) {
|
} else if (line_name == kPerformer) {
|
||||||
|
|
||||||
artist = line_value;
|
artist = line_value;
|
||||||
|
|
||||||
} else if (line_name == kTitle) {
|
} else if (line_name == kTitle) {
|
||||||
|
|
||||||
title = line_value;
|
title = line_value;
|
||||||
|
|
||||||
} else if (line_name == kSongWriter) {
|
} else if (line_name == kSongWriter) {
|
||||||
|
|
||||||
composer = line_value;
|
composer = line_value;
|
||||||
|
|
||||||
// end of track's for the current file -> parse next one
|
// end of track's for the current file -> parse next one
|
||||||
} else if (line_name == kFile) {
|
} else if (line_name == kFile) {
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -351,8 +337,7 @@ qint64 CueParser::IndexToMarker(const QString& index) const {
|
|||||||
return (frames * kNsecPerSec) / 75;
|
return (frames * kNsecPerSec) / 75;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CueParser::Save(const SongList& songs, QIODevice* device,
|
void CueParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
|
||||||
const QDir& dir,
|
|
||||||
Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
@ -53,8 +53,7 @@ class CueParser : public ParserBase {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -104,8 +104,7 @@ bool M3UParser::ParseMetadata(const QString& line,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void M3UParser::Save(const SongList& songs, QIODevice* device,
|
void M3UParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
|
||||||
const QDir& dir,
|
|
||||||
Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
device->write("#EXTM3U\n");
|
device->write("#EXTM3U\n");
|
||||||
|
|
||||||
|
@ -41,8 +41,7 @@ class M3UParser : public ParserBase {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -86,8 +86,7 @@ Song ParserBase::LoadSong(const QString& filename_or_url, qint64 beginning,
|
|||||||
return song;
|
return song;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ParserBase::URLOrFilename(const QUrl& url,
|
QString ParserBase::URLOrFilename(const QUrl& url, const QDir& dir,
|
||||||
const QDir& dir,
|
|
||||||
Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
if (url.scheme() != "file") return url.toString();
|
if (url.scheme() != "file") return url.toString();
|
||||||
|
|
||||||
|
@ -51,9 +51,9 @@ class ParserBase : public QObject {
|
|||||||
// from the parser's point of view).
|
// from the parser's point of view).
|
||||||
virtual SongList Load(QIODevice* device, const QString& playlist_path = "",
|
virtual SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const = 0;
|
const QDir& dir = QDir()) const = 0;
|
||||||
virtual void Save(const SongList& songs, QIODevice* device,
|
virtual void Save(
|
||||||
const QDir& dir = QDir(),
|
const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const = 0;
|
Playlist::Path path_type = Playlist::Path_Automatic) const = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Loads a song. If filename_or_url is a URL (with a scheme other than
|
// Loads a song. If filename_or_url is a URL (with a scheme other than
|
||||||
|
@ -130,8 +130,7 @@ SongList PlaylistParser::LoadFromDevice(QIODevice* device,
|
|||||||
return parser->Load(device, path_hint, dir_hint);
|
return parser->Load(device, path_hint, dir_hint);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistParser::Save(const SongList& songs,
|
void PlaylistParser::Save(const SongList& songs, const QString& filename,
|
||||||
const QString& filename,
|
|
||||||
Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
QFileInfo info(filename);
|
QFileInfo info(filename);
|
||||||
|
|
||||||
|
@ -49,7 +49,8 @@ class PlaylistParser : public QObject {
|
|||||||
SongList LoadFromDevice(QIODevice* device,
|
SongList LoadFromDevice(QIODevice* device,
|
||||||
const QString& path_hint = QString(),
|
const QString& path_hint = QString(),
|
||||||
const QDir& dir_hint = QDir()) const;
|
const QDir& dir_hint = QDir()) const;
|
||||||
void Save(const SongList& songs, const QString& filename, Playlist::Path) const;
|
void Save(const SongList& songs, const QString& filename,
|
||||||
|
Playlist::Path) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString FilterForParser(const ParserBase* parser,
|
QString FilterForParser(const ParserBase* parser,
|
||||||
|
@ -61,8 +61,8 @@ SongList PLSParser::Load(QIODevice* device, const QString& playlist_path,
|
|||||||
return songs.values();
|
return songs.values();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PLSParser::Save(const SongList& songs, QIODevice* device,
|
void PLSParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
|
||||||
const QDir& dir, Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
QTextStream s(device);
|
QTextStream s(device);
|
||||||
s << "[playlist]" << endl;
|
s << "[playlist]" << endl;
|
||||||
s << "Version=2" << endl;
|
s << "Version=2" << endl;
|
||||||
@ -70,7 +70,8 @@ void PLSParser::Save(const SongList& songs, QIODevice* device,
|
|||||||
|
|
||||||
int n = 1;
|
int n = 1;
|
||||||
for (const Song& song : songs) {
|
for (const Song& song : songs) {
|
||||||
s << "File" << n << "=" << URLOrFilename(song.url(), dir, path_type) << endl;
|
s << "File" << n << "=" << URLOrFilename(song.url(), dir, path_type)
|
||||||
|
<< endl;
|
||||||
s << "Title" << n << "=" << song.title() << endl;
|
s << "Title" << n << "=" << song.title() << endl;
|
||||||
s << "Length" << n << "=" << song.length_nanosec() / kNsecPerSec << endl;
|
s << "Length" << n << "=" << song.length_nanosec() / kNsecPerSec << endl;
|
||||||
++n;
|
++n;
|
||||||
|
@ -33,8 +33,7 @@ class PLSParser : public ParserBase {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -76,8 +76,8 @@ void WplParser::ParseSeq(const QDir& dir, QXmlStreamReader* reader,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WplParser::Save(const SongList& songs, QIODevice* device,
|
void WplParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
|
||||||
const QDir& dir, Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
QXmlStreamWriter writer(device);
|
QXmlStreamWriter writer(device);
|
||||||
writer.setAutoFormatting(true);
|
writer.setAutoFormatting(true);
|
||||||
writer.setAutoFormattingIndent(2);
|
writer.setAutoFormattingIndent(2);
|
||||||
|
@ -102,8 +102,8 @@ return_song:
|
|||||||
return song;
|
return song;
|
||||||
}
|
}
|
||||||
|
|
||||||
void XSPFParser::Save(const SongList& songs, QIODevice* device,
|
void XSPFParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
|
||||||
const QDir& dir, Playlist::Path path_type) const {
|
Playlist::Path path_type) const {
|
||||||
QFileInfo file;
|
QFileInfo file;
|
||||||
QXmlStreamWriter writer(device);
|
QXmlStreamWriter writer(device);
|
||||||
writer.setAutoFormatting(true);
|
writer.setAutoFormatting(true);
|
||||||
@ -120,7 +120,8 @@ void XSPFParser::Save(const SongList& songs, QIODevice* device,
|
|||||||
|
|
||||||
StreamElement tracklist("trackList", &writer);
|
StreamElement tracklist("trackList", &writer);
|
||||||
for (const Song& song : songs) {
|
for (const Song& song : songs) {
|
||||||
QString filename_or_url = URLOrFilename(song.url(), dir, path_type).toUtf8();
|
QString filename_or_url =
|
||||||
|
URLOrFilename(song.url(), dir, path_type).toUtf8();
|
||||||
|
|
||||||
StreamElement track("track", &writer);
|
StreamElement track("track", &writer);
|
||||||
writer.writeTextElement("location", filename_or_url);
|
writer.writeTextElement("location", filename_or_url);
|
||||||
|
@ -38,8 +38,7 @@ class XSPFParser : public XMLParser {
|
|||||||
|
|
||||||
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
||||||
const QDir& dir = QDir()) const;
|
const QDir& dir = QDir()) const;
|
||||||
void Save(const SongList& songs, QIODevice* device,
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
||||||
const QDir& dir = QDir(),
|
|
||||||
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -231,23 +231,23 @@ void TranscodeDialog::Add() {
|
|||||||
|
|
||||||
void TranscodeDialog::Import() {
|
void TranscodeDialog::Import() {
|
||||||
QString path = QFileDialog::getExistingDirectory(
|
QString path = QFileDialog::getExistingDirectory(
|
||||||
this, tr("Open a directory to import music from"),
|
this, tr("Open a directory to import music from"), last_import_dir_,
|
||||||
last_import_dir_, QFileDialog::ShowDirsOnly);
|
QFileDialog::ShowDirsOnly);
|
||||||
|
|
||||||
if (path.isEmpty()) return;
|
if (path.isEmpty()) return;
|
||||||
|
|
||||||
QStringList filenames;
|
QStringList filenames;
|
||||||
QStringList audioTypes = QString(FileView::kFileFilter).split(" ",
|
QStringList audioTypes =
|
||||||
QString::SkipEmptyParts);
|
QString(FileView::kFileFilter).split(" ", QString::SkipEmptyParts);
|
||||||
QDirIterator files(path, audioTypes, QDir::Files | QDir::Readable,
|
QDirIterator files(path, audioTypes, QDir::Files | QDir::Readable,
|
||||||
QDirIterator::Subdirectories);
|
QDirIterator::Subdirectories);
|
||||||
|
|
||||||
while (files.hasNext()) {
|
while (files.hasNext()) {
|
||||||
filenames << files.next();
|
filenames << files.next();
|
||||||
}
|
}
|
||||||
|
|
||||||
SetFilenames(filenames);
|
SetFilenames(filenames);
|
||||||
|
|
||||||
last_import_dir_ = path;
|
last_import_dir_ = path;
|
||||||
QSettings settings;
|
QSettings settings;
|
||||||
settings.beginGroup(kSettingsGroup);
|
settings.beginGroup(kSettingsGroup);
|
||||||
|
@ -84,7 +84,6 @@
|
|||||||
#include "internet/seafilesettingspage.h"
|
#include "internet/seafilesettingspage.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#include <QAbstractButton>
|
#include <QAbstractButton>
|
||||||
#include <QDesktopWidget>
|
#include <QDesktopWidget>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
@ -194,8 +193,6 @@ SettingsDialog::SettingsDialog(Application* app, BackgroundStreams* streams,
|
|||||||
AddPage(Page_Seafile, new SeafileSettingsPage(this), providers);
|
AddPage(Page_Seafile, new SeafileSettingsPage(this), providers);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
AddPage(Page_Magnatune, new MagnatuneSettingsPage(this), providers);
|
AddPage(Page_Magnatune, new MagnatuneSettingsPage(this), providers);
|
||||||
AddPage(Page_DigitallyImported, new DigitallyImportedSettingsPage(this),
|
AddPage(Page_DigitallyImported, new DigitallyImportedSettingsPage(this),
|
||||||
providers);
|
providers);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user