aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-20 09:18:33 +0100
committerMax Kellermann <max@duempel.org>2014-01-21 21:08:11 +0100
commit7471f65d952336ec18fba4c057b864615a5ce89b (patch)
treed9856c1c291716a727e93e3882b5b45c4bdc6573
parent5d4b450c52b3af92a03a8380a40dc703f0df4233 (diff)
downloadmpd-7471f65d952336ec18fba4c057b864615a5ce89b.tar.gz
mpd-7471f65d952336ec18fba4c057b864615a5ce89b.tar.xz
mpd-7471f65d952336ec18fba4c057b864615a5ce89b.zip
LightSong: add attribute "real_uri"
The UPnP database plugin can now show relative song URIs for remote songs.
-rw-r--r--src/DetachedSong.cxx1
-rw-r--r--src/LightSong.hxx10
-rw-r--r--src/Mapper.cxx2
-rw-r--r--src/db/UpnpDatabasePlugin.cxx42
4 files changed, 30 insertions, 25 deletions
diff --git a/src/DetachedSong.cxx b/src/DetachedSong.cxx
index 83106edee..6a54bc8ad 100644
--- a/src/DetachedSong.cxx
+++ b/src/DetachedSong.cxx
@@ -25,6 +25,7 @@
DetachedSong::DetachedSong(const LightSong &other)
:uri(other.GetURI().c_str()),
+ real_uri(other.real_uri),
tag(*other.tag),
mtime(other.mtime),
start_ms(other.start_ms), end_ms(other.end_ms) {}
diff --git a/src/LightSong.hxx b/src/LightSong.hxx
index b93d5876c..c0cd47749 100644
--- a/src/LightSong.hxx
+++ b/src/LightSong.hxx
@@ -47,6 +47,16 @@ struct LightSong {
const char *uri;
/**
+ * The "real" URI, the one to be used for opening the
+ * resource. If this attribute is empty, then #uri (and
+ * #directory) shall be used.
+ *
+ * This attribute is used for songs from the database which
+ * have a relative URI.
+ */
+ std::string real_uri;
+
+ /**
* Must not be nullptr.
*/
const Tag *tag;
diff --git a/src/Mapper.cxx b/src/Mapper.cxx
index c9ef4316b..f29fd0646 100644
--- a/src/Mapper.cxx
+++ b/src/Mapper.cxx
@@ -223,7 +223,7 @@ map_song_detach(const LightSong &song)
{
DetachedSong detached(song);
- if (detached.IsInDatabase()) {
+ if (detached.IsInDatabase() && !detached.HasRealURI()) {
const auto uri = song.GetURI();
detached.SetRealURI(PathTraitsUTF8::Build(music_dir_utf8.c_str(),
uri.c_str()));
diff --git a/src/db/UpnpDatabasePlugin.cxx b/src/db/UpnpDatabasePlugin.cxx
index a5ca07256..c778ca34e 100644
--- a/src/db/UpnpDatabasePlugin.cxx
+++ b/src/db/UpnpDatabasePlugin.cxx
@@ -50,27 +50,18 @@
static const char *const rootid = "0";
class UpnpSong : public LightSong {
- std::string uri2;
+ std::string uri2, real_uri2;
Tag tag2;
public:
- explicit UpnpSong(UPnPDirObject &&object)
- :uri2(std::move(object.url)), tag2(std::move(object.tag)) {
- directory = nullptr;
- uri = uri2.c_str();
- tag = &tag2;
- mtime = 0;
- start_ms = end_ms = 0;
- }
-
- UpnpSong(UPnPDirObject &&object, const char *_uri)
- :uri2(_uri == nullptr
- ? std::move(object.url)
- : std::string(_uri)),
+ UpnpSong(UPnPDirObject &&object, std::string &&_uri)
+ :uri2(std::move(_uri)),
+ real_uri2(std::move(object.url)),
tag2(std::move(object.tag)) {
directory = nullptr;
uri = uri2.c_str();
+ real_uri = real_uri2.c_str();
tag = &tag2;
mtime = 0;
start_ms = end_ms = 0;
@@ -247,7 +238,7 @@ UpnpDatabase::GetSong(const char *uri, Error &error) const
return nullptr;
}
- song = new UpnpSong(std::move(dirent));
+ song = new UpnpSong(std::move(dirent), uri);
}
if (song == nullptr)
error.Format(db_domain, DB_NOT_FOUND, "No such song: %s", uri);
@@ -366,14 +357,14 @@ UpnpDatabase::SearchSongs(ContentDirectoryService &server,
}
static bool
-visitSong(UPnPDirObject &&meta, const char *path,
+visitSong(UPnPDirObject &&meta, std::string &&path,
const DatabaseSelection &selection,
VisitSong visit_song, Error& error)
{
if (!visit_song)
return true;
- const UpnpSong song(std::move(meta), path);
+ const UpnpSong song(std::move(meta), std::move(path));
return !selection.Match(song) || visit_song(song, error);
}
@@ -382,7 +373,7 @@ visitSong(UPnPDirObject &&meta, const char *path,
* of "rootid" is arbitrary, any name that is not likely to be a top
* directory name would fit.
*/
-static const std::string
+static std::string
songPath(const std::string &servername,
const std::string &objid)
{
@@ -423,10 +414,9 @@ UpnpDatabase::SearchSongs(ContentDirectoryService &server,
// course, 'All Music' is very big.
// So we return synthetic and ugly paths based on the object id,
// which we later have to detect.
- std::string path = songPath(server.getFriendlyName(),
- dirent.m_id);
- //BuildPath(server, dirent, path);
- if (!visitSong(std::move(dirent), path.c_str(),
+ if (!visitSong(std::move(dirent),
+ songPath(server.getFriendlyName(),
+ dirent.m_id),
selection, visit_song,
error))
return false;
@@ -566,7 +556,10 @@ UpnpDatabase::VisitServer(ContentDirectoryService &server,
error))
return false;
- if (!visitSong(std::move(dirent), nullptr, selection,
+ std::string path = songPath(server.getFriendlyName(),
+ dirent.m_id);
+ if (!visitSong(std::move(dirent), path.c_str(),
+ selection,
visit_song, error))
return false;
}
@@ -597,7 +590,8 @@ UpnpDatabase::VisitServer(ContentDirectoryService &server,
switch (tdirent.item_class) {
case UPnPDirObject::ItemClass::MUSIC:
if (visit_song)
- return visitSong(std::move(tdirent), nullptr,
+ return visitSong(std::move(tdirent),
+ std::string(selection.uri),
selection, visit_song,
error);
break;