SongLoader.cxx 3.03 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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 "SongLoader.hxx"
#include "client/Client.hxx"
#include "db/DatabaseSong.hxx"
24
#include "storage/StorageInterface.hxx"
25 26 27 28 29 30 31 32 33 34 35
#include "ls.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/Traits.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "DetachedSong.hxx"
#include "PlaylistError.hxx"

#include <assert.h>
#include <string.h>

36 37 38
#ifdef ENABLE_DATABASE

SongLoader::SongLoader(const Client &_client)
39 40
	:client(&_client), db(_client.GetDatabase(IgnoreError())),
	 storage(_client.GetStorage()) {}
41 42 43

#endif

44 45 46 47
DetachedSong *
SongLoader::LoadFile(const char *path_utf8, Error &error) const
{
#ifdef ENABLE_DATABASE
48 49 50 51 52 53 54
	if (storage != nullptr) {
		const char *suffix = storage->MapToRelativeUTF8(path_utf8);
		if (suffix != nullptr)
			/* this path was relative to the music
			   directory - obtain it from the database */
			return LoadSong(suffix, error);
	}
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
#endif

	if (client != nullptr) {
		const auto path_fs = AllocatedPath::FromUTF8(path_utf8, error);
		if (path_fs.IsNull())
			return nullptr;

		if (!client->AllowFile(path_fs, error))
			return nullptr;
	}

	DetachedSong *song = new DetachedSong(path_utf8);
	if (!song->Update()) {
		error.Set(playlist_domain, int(PlaylistResult::NO_SUCH_SONG),
			  "No such file");
		delete song;
		return nullptr;
	}

	return song;
}

DetachedSong *
SongLoader::LoadSong(const char *uri_utf8, Error &error) const
{
80 81
#if !CLANG_CHECK_VERSION(3,6)
	/* disabled on clang due to -Wtautological-pointer-compare */
82
	assert(uri_utf8 != nullptr);
83
#endif
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

	if (memcmp(uri_utf8, "file:///", 8) == 0)
		/* absolute path */
		return LoadFile(uri_utf8 + 7, error);
	else if (PathTraitsUTF8::IsAbsolute(uri_utf8))
		/* absolute path */
		return LoadFile(uri_utf8, error);
	else if (uri_has_scheme(uri_utf8)) {
		/* remove URI */
		if (!uri_supported_scheme(uri_utf8)) {
			error.Set(playlist_domain,
				  int(PlaylistResult::NO_SUCH_SONG),
				  "Unsupported URI scheme");
			return nullptr;
		}

		return new DetachedSong(uri_utf8);
	} else {
		/* URI relative to the music directory */

#ifdef ENABLE_DATABASE
105
		if (db != nullptr)
106 107
			return DatabaseDetachSong(*db, *storage,
						  uri_utf8, error);
108 109
#endif

110 111 112 113 114
		error.Set(playlist_domain, int(PlaylistResult::NO_SUCH_SONG),
			  "No database");
		return nullptr;
	}
}