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-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-21 19:14:37 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-02-02 15:22:32 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2013-07-30 20:11:57 +02:00
|
|
|
#include "Tag.hxx"
|
2013-09-03 09:18:30 +02:00
|
|
|
#include "InputLegacy.hxx"
|
2013-07-28 13:18:48 +02:00
|
|
|
#include "DecoderPlugin.hxx"
|
2013-01-30 17:18:48 +01:00
|
|
|
#include "DecoderList.hxx"
|
2013-07-29 07:32:36 +02:00
|
|
|
#include "TagHandler.hxx"
|
2013-07-28 20:25:45 +02:00
|
|
|
#include "TagId3.hxx"
|
2013-07-28 20:31:27 +02:00
|
|
|
#include "ApeTag.hxx"
|
2013-01-02 22:42:12 +01:00
|
|
|
|
2009-10-12 22:30:50 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2009-12-31 17:18:10 +01:00
|
|
|
#include <stdio.h>
|
2009-10-12 22:30:50 +02:00
|
|
|
|
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-01-18 15:33:34 +01:00
|
|
|
assert((parent == NULL) == g_path_is_absolute(path_utf8));
|
|
|
|
assert(!uri_has_scheme(path_utf8));
|
|
|
|
assert(strchr(path_utf8, '\n') == NULL);
|
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 ?
|
|
|
|
if (parent != NULL && 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();
|
2009-10-12 22:30:50 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return song;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to load APE or ID3 tags from the specified file.
|
|
|
|
*/
|
2012-02-12 18:25:46 +01:00
|
|
|
static bool
|
|
|
|
tag_scan_fallback(const char *path,
|
|
|
|
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
|
|
|
{
|
|
|
|
const char *suffix;
|
|
|
|
const struct decoder_plugin *plugin;
|
|
|
|
struct stat st;
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream *is = NULL;
|
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
|
|
|
|
|
|
|
/* check if there's a suffix and a plugin */
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
suffix = uri_get_suffix(uri);
|
2009-10-12 22:30:50 +02:00
|
|
|
if (suffix == NULL)
|
|
|
|
return false;
|
|
|
|
|
2009-11-07 15:14:16 +01:00
|
|
|
plugin = decoder_plugin_from_suffix(suffix, NULL);
|
2009-10-12 22:30:50 +02:00
|
|
|
if (plugin == NULL)
|
|
|
|
return false;
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
const Path 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-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
|
|
|
tag = nullptr;
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-02-02 15:22:32 +01:00
|
|
|
if (!StatFile(path_fs, st) || !S_ISREG(st.st_mode)) {
|
2009-10-12 22:30:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
mtime = st.st_mtime;
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2009-10-12 22:30:50 +02:00
|
|
|
do {
|
2009-12-31 17:18:10 +01:00
|
|
|
/* load file tag */
|
2013-07-30 20:11:57 +02:00
|
|
|
tag = new Tag();
|
2013-01-17 00:56:57 +01:00
|
|
|
if (decoder_plugin_scan_file(plugin, path_fs.c_str(),
|
2013-07-28 13:25:12 +02:00
|
|
|
&full_tag_handler, tag))
|
2009-10-12 22:30:50 +02:00
|
|
|
break;
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
2013-07-28 13:25:12 +02:00
|
|
|
tag = nullptr;
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2009-12-31 17:18:10 +01:00
|
|
|
/* fall back to stream tag */
|
2012-02-11 19:12:02 +01:00
|
|
|
if (plugin->scan_stream != NULL) {
|
2009-12-31 17:18:10 +01:00
|
|
|
/* open the input_stream (if not already
|
|
|
|
open) */
|
2011-09-14 21:46:41 +02:00
|
|
|
if (is == NULL) {
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-01-17 00:56:57 +01:00
|
|
|
is = input_stream_open(path_fs.c_str(),
|
|
|
|
mutex, cond,
|
2013-08-10 18:02:44 +02:00
|
|
|
error);
|
2011-09-14 21:46:41 +02:00
|
|
|
}
|
2009-12-31 17:18:10 +01:00
|
|
|
|
|
|
|
/* now try the stream_tag() method */
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is != NULL) {
|
2013-07-30 20:11:57 +02:00
|
|
|
tag = new Tag();
|
2012-02-11 19:12:02 +01:00
|
|
|
if (decoder_plugin_scan_stream(plugin, is,
|
2012-02-12 18:32:26 +01:00
|
|
|
&full_tag_handler,
|
2013-07-28 13:25:12 +02:00
|
|
|
tag))
|
2009-12-31 17:18:10 +01:00
|
|
|
break;
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
2013-07-28 13:25:12 +02:00
|
|
|
tag = nullptr;
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
input_stream_lock_seek(is, 0, SEEK_SET, error);
|
2009-12-31 17:18:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-07 15:14:16 +01:00
|
|
|
plugin = decoder_plugin_from_suffix(suffix, plugin);
|
2009-10-12 22:30:50 +02:00
|
|
|
} while (plugin != NULL);
|
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is != NULL)
|
|
|
|
input_stream_close(is);
|
2009-12-31 17:18:10 +01:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
if (tag != nullptr && tag->IsEmpty())
|
2013-07-28 13:25:12 +02:00
|
|
|
tag_scan_fallback(path_fs.c_str(), &full_tag_handler, tag);
|
2009-10-12 22:30:50 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
return tag != nullptr;
|
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;
|
|
|
|
const struct decoder_plugin *plugin;
|
|
|
|
|
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);
|
2009-10-12 22:30:50 +02:00
|
|
|
if (suffix == NULL)
|
|
|
|
return false;
|
|
|
|
|
2013-05-27 19:37:35 +02:00
|
|
|
plugin = decoder_plugin_from_suffix(suffix, NULL);
|
2009-10-12 22:30:50 +02:00
|
|
|
if (plugin == NULL)
|
|
|
|
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;
|
|
|
|
}
|