2009-10-12 22:30:50 +02:00
|
|
|
/*
|
2013-01-02 22:42:12 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-10-12 22:30:50 +02: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.
|
|
|
|
*/
|
|
|
|
|
2009-11-11 14:15:34 +01:00
|
|
|
#include "config.h" /* must be first for large file support */
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2013-10-17 23:23:25 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2013-02-02 15:22:32 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2013-01-30 17:18:48 +01:00
|
|
|
#include "DecoderList.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2013-09-05 19:11:50 +02:00
|
|
|
#include "tag/TagBuilder.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/TagHandler.hxx"
|
2013-09-04 23:46:20 +02:00
|
|
|
#include "tag/TagId3.hxx"
|
|
|
|
#include "tag/ApeTag.hxx"
|
2013-10-21 21:05:59 +02:00
|
|
|
#include "TagFile.hxx"
|
2013-01-02 22:42:12 +01:00
|
|
|
|
2009-10-12 22:30:50 +02:00
|
|
|
#include <assert.h>
|
2013-10-17 22:07:59 +02:00
|
|
|
#include <string.h>
|
2009-10-12 22:30:50 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *
|
|
|
|
Song::LoadFile(const char *path_utf8, Directory *parent)
|
2009-10-12 22:30:50 +02:00
|
|
|
{
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song;
|
2009-10-12 22:30:50 +02:00
|
|
|
bool ret;
|
|
|
|
|
2013-12-04 22:53:43 +01:00
|
|
|
assert((parent == nullptr) == PathTraitsUTF8::IsAbsolute(path_utf8));
|
2013-01-18 15:33:34 +01:00
|
|
|
assert(!uri_has_scheme(path_utf8));
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(strchr(path_utf8, '\n') == nullptr);
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
song = NewFile(path_utf8, parent);
|
2009-10-12 22:30:50 +02:00
|
|
|
|
|
|
|
//in archive ?
|
2013-10-19 18:19:03 +02:00
|
|
|
if (parent != nullptr && parent->device == DEVICE_INARCHIVE) {
|
2013-07-28 13:25:12 +02:00
|
|
|
ret = song->UpdateFileInArchive();
|
2009-10-12 22:30:50 +02:00
|
|
|
} else {
|
2013-07-28 13:25:12 +02:00
|
|
|
ret = song->UpdateFile();
|
2009-10-12 22:30:50 +02:00
|
|
|
}
|
|
|
|
if (!ret) {
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-10-12 22:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return song;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to load APE or ID3 tags from the specified file.
|
|
|
|
*/
|
2012-02-12 18:25:46 +01:00
|
|
|
static bool
|
2013-10-26 15:14:54 +02:00
|
|
|
tag_scan_fallback(Path path,
|
2012-02-12 18:25:46 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2009-10-12 22:30:50 +02:00
|
|
|
{
|
2012-02-12 18:25:46 +01:00
|
|
|
return tag_ape_scan2(path, handler, handler_ctx) ||
|
|
|
|
tag_id3_scan(path, handler, handler_ctx);
|
2009-10-12 22:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-28 13:25:12 +02:00
|
|
|
Song::UpdateFile()
|
2009-10-12 22:30:50 +02:00
|
|
|
{
|
2013-07-28 13:25:12 +02:00
|
|
|
assert(IsFile());
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
const auto path_fs = map_song_fs(*this);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2009-10-12 22:30:50 +02:00
|
|
|
return false;
|
|
|
|
|
2013-10-21 21:05:59 +02:00
|
|
|
struct stat st;
|
|
|
|
if (!StatFile(path_fs, st) || !S_ISREG(st.st_mode))
|
2009-10-12 22:30:50 +02:00
|
|
|
return false;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder tag_builder;
|
2013-10-26 15:14:54 +02:00
|
|
|
if (!tag_file_scan(path_fs,
|
2013-12-29 16:16:04 +01:00
|
|
|
full_tag_handler, &tag_builder))
|
2013-09-05 19:11:50 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (tag_builder.IsEmpty())
|
2013-10-26 15:14:54 +02:00
|
|
|
tag_scan_fallback(path_fs, &full_tag_handler,
|
2013-09-05 19:11:50 +02:00
|
|
|
&tag_builder);
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-10-21 21:05:59 +02:00
|
|
|
mtime = st.st_mtime;
|
|
|
|
|
|
|
|
delete tag;
|
2013-09-05 19:11:50 +02:00
|
|
|
tag = tag_builder.Commit();
|
|
|
|
return true;
|
2009-10-12 22:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-28 13:25:12 +02:00
|
|
|
Song::UpdateFileInArchive()
|
2009-10-12 22:30:50 +02:00
|
|
|
{
|
|
|
|
const char *suffix;
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
assert(IsFile());
|
2009-10-12 22:30:50 +02:00
|
|
|
|
|
|
|
/* check if there's a suffix and a plugin */
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
suffix = uri_get_suffix(uri);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (suffix == nullptr)
|
2009-10-12 22:30:50 +02:00
|
|
|
return false;
|
|
|
|
|
2013-12-29 16:18:33 +01:00
|
|
|
if (!decoder_plugins_supports_suffix(suffix))
|
2009-10-12 22:30:50 +02:00
|
|
|
return false;
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
2009-10-12 22:30:50 +02:00
|
|
|
|
|
|
|
//accept every file that has music suffix
|
2011-03-31 21:43:53 +02:00
|
|
|
//because we don't support tag reading through
|
2009-10-12 22:30:50 +02:00
|
|
|
//input streams
|
2013-07-30 20:11:57 +02:00
|
|
|
tag = new Tag();
|
2009-10-12 22:30:50 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|