2014-01-15 18:25:58 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2014-01-15 18:25:58 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "DatabaseSong.hxx"
|
2014-02-07 00:29:07 +01:00
|
|
|
#include "LightSong.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "Interface.hxx"
|
2014-01-15 18:25:58 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2014-02-07 00:29:07 +01:00
|
|
|
#include "storage/StorageInterface.hxx"
|
2017-02-08 09:58:40 +01:00
|
|
|
#include "util/ScopeExit.hxx"
|
2014-02-07 00:29:07 +01:00
|
|
|
|
2014-10-01 23:38:17 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2014-02-07 00:29:07 +01:00
|
|
|
DetachedSong
|
2017-02-08 09:47:43 +01:00
|
|
|
DatabaseDetachSong(const Storage *storage, const LightSong &song)
|
2014-02-07 00:29:07 +01:00
|
|
|
{
|
|
|
|
DetachedSong detached(song);
|
|
|
|
assert(detached.IsInDatabase());
|
|
|
|
|
2017-02-08 09:47:43 +01:00
|
|
|
if (!detached.HasRealURI() && storage != nullptr) {
|
2014-02-07 00:29:07 +01:00
|
|
|
const auto uri = song.GetURI();
|
2017-02-08 09:47:43 +01:00
|
|
|
detached.SetRealURI(storage->MapUTF8(uri.c_str()));
|
2014-02-07 00:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return detached;
|
|
|
|
}
|
2014-01-15 18:25:58 +01:00
|
|
|
|
2017-02-08 09:58:20 +01:00
|
|
|
DetachedSong
|
2017-02-08 09:47:43 +01:00
|
|
|
DatabaseDetachSong(const Database &db, const Storage *storage, const char *uri)
|
2014-01-15 18:25:58 +01:00
|
|
|
{
|
2016-03-19 00:13:57 +01:00
|
|
|
const LightSong *tmp = db.GetSong(uri);
|
|
|
|
assert(tmp != nullptr);
|
2014-01-15 18:25:58 +01:00
|
|
|
|
2017-02-08 09:58:40 +01:00
|
|
|
AtScopeExit(&db, tmp) { db.ReturnSong(tmp); };
|
|
|
|
|
2017-02-08 09:58:20 +01:00
|
|
|
return DatabaseDetachSong(storage, *tmp);
|
2014-01-15 18:25:58 +01:00
|
|
|
}
|