media library: add support for locating unknown tags/albums

master
Trygve Aaberge 11 years ago committed by Andrzej Rybczak
parent 2082a4a9a3
commit bfbafc3312
  1. 143
      src/media_library.cpp

@ -77,6 +77,9 @@ bool TagEntryMatcher(const boost::regex &rx, const MediaLibrary::PrimaryTag &tag
bool AlbumEntryMatcher(const boost::regex &rx, const NC::Menu<AlbumEntry>::Item &item, bool filter); bool AlbumEntryMatcher(const boost::regex &rx, const NC::Menu<AlbumEntry>::Item &item, bool filter);
bool SongEntryMatcher(const boost::regex &rx, const MPD::Song &s); bool SongEntryMatcher(const boost::regex &rx, const MPD::Song &s);
bool MoveToTag(MediaLibrary &ml, const std::string &primary_tag, bool tags_changed);
bool MoveToAlbum(MediaLibrary &ml, const std::string &primary_tag, const MPD::Song &s, bool albums_changed);
struct SortSongs { struct SortSongs {
typedef NC::Menu<MPD::Song>::Item SongItem; typedef NC::Menu<MPD::Song>::Item SongItem;
@ -907,46 +910,77 @@ void MediaLibrary::LocateSong(const MPD::Song &s)
{ {
if (Tags.empty()) if (Tags.empty())
update(); update();
if (primary_tag != Tags.current()->value().tag())
if (!MoveToTag(*this, primary_tag, false))
{ {
for (size_t i = 0; i < Tags.size(); ++i) // The tag could not be found. Since this was called from an existing
{ // song, the tag should exist in the library, but it was not listed by
if (primary_tag == Tags[i].value().tag()) // list/listallinfo. This is the case with some players where it is not
{ // possible to list all of the library, e.g. mopidy with mopidy-spotify.
Tags.highlight(i); // To workaround this we simply insert the missing tag.
Albums.clear(); Tags.addItem(PrimaryTag(primary_tag, s.getMTime()));
Songs.clear(); std::sort(Tags.beginV(), Tags.endV(), SortPrimaryTags());
break; Tags.refresh();
} MoveToTag(*this, primary_tag, true);
}
} }
} }
if (Albums.empty()) if (Albums.empty())
update(); update();
std::string album = s.getAlbum(); // When you locate a song in the media library, if no albums or no songs
std::string date = s.getDate(); // are found, set the active column to the previous one (tags if no albums,
if ((hasTwoColumns && Albums.current()->value().entry().tag() != primary_tag) // and albums if no songs). This makes sure that the active column is not
|| album != Albums.current()->value().entry().album() // empty, which may make it impossible to move out of.
|| date != Albums.current()->value().entry().date()) //
// The problem was if you highlight some song in the rightmost column in
// the media browser and then go to some other window and select locate
// song. If the tag or album it looked up in the media library was
// empty, the selection would stay in the songs column while it was empty.
// This made the selection impossible to change.
//
// This only is a problem if a song has some tag or album for which the
// find command doesn't return any results. This should never really happen
// unless there is some inconsistency in the player. However, it may
// happen, so we need to handle it.
//
// Note: We don't want to return when no albums are found in two column
// mode. In this case, we try to insert the album, as we do with tags when
// they are not found.
if (!hasTwoColumns && Albums.empty())
{ {
for (size_t i = 0; i < Albums.size(); ++i) Tags.setHighlightColor(Config.active_column_color);
{ Albums.setHighlightColor(Config.main_highlight_color);
if ((!hasTwoColumns || Albums[i].value().entry().tag() == primary_tag) Songs.setHighlightColor(Config.main_highlight_color);
&& album == Albums[i].value().entry().album() w = &Tags;
&& date == Albums[i].value().entry().date()) refresh();
{ return;
Albums.highlight(i); }
Songs.clear();
break; if (hasTwoColumns && !MoveToAlbum(*this, primary_tag, s, false))
} {
} // The album could not be found, insert it if in two column mode.
// See comment about tags not found above. This is the equivalent
// for two column mode.
Albums.addItem(AlbumEntry(Album(primary_tag, s.getAlbum(), s.getDate(), s.getMTime())));
std::sort(Albums.beginV(), Albums.endV(), SortAlbumEntries());
Albums.refresh();
MoveToAlbum(*this, primary_tag, s, true);
} }
if (Songs.empty()) if (Songs.empty())
update(); update();
if (Songs.empty())
{
Tags.setHighlightColor(Config.main_highlight_color);
Albums.setHighlightColor(Config.active_column_color);
Songs.setHighlightColor(Config.main_highlight_color);
w = &Albums;
refresh();
return;
}
if (s != Songs.current()->value()) if (s != Songs.current()->value())
{ {
for (size_t i = 0; i < Songs.size(); ++i) for (size_t i = 0; i < Songs.size(); ++i)
@ -1062,4 +1096,59 @@ bool SongEntryMatcher(const boost::regex &rx, const MPD::Song &s)
return boost::regex_search(SongToString(s), rx); return boost::regex_search(SongToString(s), rx);
} }
bool MoveToTag(MediaLibrary &ml, const std::string &primary_tag, bool tags_changed)
{
if (primary_tag == ml.Tags.current()->value().tag())
{
if (tags_changed)
{
ml.Albums.clear();
ml.Songs.clear();
}
return true;
}
for (size_t i = 0; i < ml.Tags.size(); ++i)
{
if (primary_tag == ml.Tags[i].value().tag())
{
ml.Tags.highlight(i);
ml.Albums.clear();
ml.Songs.clear();
return true;
}
}
return false;
}
bool MoveToAlbum(MediaLibrary &ml, const std::string &primary_tag, const MPD::Song &s, bool albums_changed)
{
std::string album = s.getAlbum();
std::string date = s.getDate();
if ((!hasTwoColumns || ml.Albums.current()->value().entry().tag() == primary_tag)
&& album == ml.Albums.current()->value().entry().album()
&& date == ml.Albums.current()->value().entry().date())
{
if (albums_changed)
ml.Songs.clear();
return true;
}
for (size_t i = 0; i < ml.Albums.size(); ++i)
{
if ((!hasTwoColumns || ml.Albums[i].value().entry().tag() == primary_tag)
&& album == ml.Albums[i].value().entry().album()
&& date == ml.Albums[i].value().entry().date())
{
ml.Albums.highlight(i);
ml.Songs.clear();
return true;
}
}
return false;
}
} }

Loading…
Cancel
Save