2009-09-24 21:39:46 +02:00
|
|
|
/*
|
2013-01-02 19:22:15 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-09-24 21:39:46 +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:13:24 +01:00
|
|
|
#include "config.h" /* must be first for large file support */
|
2013-01-02 19:22:15 +01:00
|
|
|
#include "UpdateWalk.hxx"
|
|
|
|
#include "UpdateIO.hxx"
|
|
|
|
#include "UpdateDatabase.hxx"
|
|
|
|
#include "UpdateSong.hxx"
|
|
|
|
#include "UpdateArchive.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "UpdateDomain.hxx"
|
2013-01-02 20:56:21 +01:00
|
|
|
#include "DatabaseLock.hxx"
|
2013-01-03 00:25:15 +01:00
|
|
|
#include "DatabaseSimple.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-01-02 20:25:20 +01:00
|
|
|
#include "PlaylistVector.hxx"
|
2013-01-26 01:04:02 +01:00
|
|
|
#include "PlaylistRegistry.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-03 09:51:35 +01:00
|
|
|
#include "ExcludeList.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
|
|
|
#include "ConfigOption.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:23:57 +01:00
|
|
|
#include "fs/FileSystem.hxx"
|
2013-05-05 10:58:07 +02:00
|
|
|
#include "fs/DirectoryReader.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2012-06-13 21:28:26 +02:00
|
|
|
bool walk_discard;
|
|
|
|
bool modified;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
|
2013-10-20 13:48:39 +02:00
|
|
|
static constexpr bool DEFAULT_FOLLOW_INSIDE_SYMLINKS = true;
|
|
|
|
static constexpr bool DEFAULT_FOLLOW_OUTSIDE_SYMLINKS = true;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
static bool follow_inside_symlinks;
|
|
|
|
static bool follow_outside_symlinks;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
update_walk_global_init(void)
|
|
|
|
{
|
|
|
|
#ifndef WIN32
|
|
|
|
follow_inside_symlinks =
|
|
|
|
config_get_bool(CONF_FOLLOW_INSIDE_SYMLINKS,
|
|
|
|
DEFAULT_FOLLOW_INSIDE_SYMLINKS);
|
|
|
|
|
|
|
|
follow_outside_symlinks =
|
|
|
|
config_get_bool(CONF_FOLLOW_OUTSIDE_SYMLINKS,
|
|
|
|
DEFAULT_FOLLOW_OUTSIDE_SYMLINKS);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
update_walk_global_finish(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
directory_set_stat(Directory &dir, const struct stat *st)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
dir.inode = st->st_ino;
|
|
|
|
dir.device = st->st_dev;
|
|
|
|
dir.have_stat = true;
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
2009-10-16 18:11:43 +02:00
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
remove_excluded_from_directory(Directory &directory,
|
2013-01-03 10:01:34 +01:00
|
|
|
const ExcludeList &exclude_list)
|
2009-10-16 18:11:43 +02:00
|
|
|
{
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *child, *n;
|
2012-01-24 18:20:58 +01:00
|
|
|
directory_for_each_child_safe(child, n, directory) {
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto name_fs = AllocatedPath::FromUTF8(child->GetName());
|
2009-10-16 18:11:43 +02:00
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
if (name_fs.IsNull() || exclude_list.Check(name_fs)) {
|
2009-10-16 18:11:43 +02:00
|
|
|
delete_directory(child);
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song, *ns;
|
2012-01-24 21:33:09 +01:00
|
|
|
directory_for_each_song_safe(song, ns, directory) {
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(song->parent == &directory);
|
2009-10-16 18:11:43 +02:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto name_fs = AllocatedPath::FromUTF8(song->uri);
|
2013-05-05 10:58:07 +02:00
|
|
|
if (name_fs.IsNull() || exclude_list.Check(name_fs)) {
|
2012-01-24 21:33:09 +01:00
|
|
|
delete_song(directory, song);
|
|
|
|
modified = true;
|
|
|
|
}
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
2012-01-31 22:12:14 +01:00
|
|
|
|
|
|
|
db_unlock();
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
purge_deleted_from_directory(Directory &directory)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *child, *n;
|
2012-01-24 18:20:58 +01:00
|
|
|
directory_for_each_child_safe(child, n, directory) {
|
2013-10-19 18:48:38 +02:00
|
|
|
if (directory_exists(*child))
|
2009-09-24 21:39:46 +02:00
|
|
|
continue;
|
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2012-01-24 18:20:58 +01:00
|
|
|
delete_directory(child);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song, *ns;
|
2012-01-24 21:33:09 +01:00
|
|
|
directory_for_each_song_safe(song, ns, directory) {
|
2013-10-19 18:48:38 +02:00
|
|
|
const auto path = map_song_fs(*song);
|
2013-02-02 15:23:57 +01:00
|
|
|
if (path.IsNull() || !FileExists(path)) {
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2012-01-24 21:33:09 +01:00
|
|
|
delete_song(directory, song);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2012-01-24 21:33:09 +01:00
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
}
|
2010-07-21 08:58:15 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
for (auto i = directory.playlists.begin(),
|
|
|
|
end = directory.playlists.end();
|
2013-01-02 22:16:52 +01:00
|
|
|
i != end;) {
|
|
|
|
if (!directory_child_is_regular(directory, i->name.c_str())) {
|
2012-02-13 19:25:03 +01:00
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
i = directory.playlists.erase(i);
|
2012-02-13 19:25:03 +01:00
|
|
|
db_unlock();
|
2013-01-02 22:16:52 +01:00
|
|
|
} else
|
|
|
|
++i;
|
2010-07-21 08:58:15 +02:00
|
|
|
}
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 08:33:44 +02:00
|
|
|
#ifndef WIN32
|
2009-09-24 21:39:46 +02:00
|
|
|
static int
|
2013-10-19 18:48:38 +02:00
|
|
|
update_directory_stat(Directory &directory)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
|
|
|
struct stat st;
|
2012-06-13 20:48:30 +02:00
|
|
|
if (stat_directory(directory, &st) < 0)
|
2009-09-24 21:39:46 +02:00
|
|
|
return -1;
|
|
|
|
|
2012-06-13 20:48:30 +02:00
|
|
|
directory_set_stat(directory, &st);
|
2009-09-24 21:39:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2010-05-19 07:48:52 +02:00
|
|
|
#endif
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
static int
|
2013-01-02 23:06:20 +01:00
|
|
|
find_inode_ancestor(Directory *parent, ino_t inode, dev_t device)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-10-15 08:33:44 +02:00
|
|
|
#ifndef WIN32
|
2009-09-24 21:39:46 +02:00
|
|
|
while (parent) {
|
2013-10-19 18:48:38 +02:00
|
|
|
if (!parent->have_stat && update_directory_stat(*parent) < 0)
|
2009-09-24 21:39:46 +02:00
|
|
|
return -1;
|
2012-06-13 20:48:30 +02:00
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
if (parent->inode == inode && parent->device == device) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogDebug(update_domain, "recursive directory found");
|
2009-09-24 21:39:46 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2012-06-13 20:48:30 +02:00
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
parent = parent->parent;
|
|
|
|
}
|
2010-05-19 07:48:52 +02:00
|
|
|
#else
|
|
|
|
(void)parent;
|
|
|
|
(void)inode;
|
|
|
|
(void)device;
|
|
|
|
#endif
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-13 21:33:23 +02:00
|
|
|
static bool
|
2013-10-19 18:48:38 +02:00
|
|
|
update_playlist_file2(Directory &directory,
|
2012-06-13 21:33:23 +02:00
|
|
|
const char *name, const char *suffix,
|
|
|
|
const struct stat *st)
|
|
|
|
{
|
|
|
|
if (!playlist_suffix_supported(suffix))
|
|
|
|
return false;
|
|
|
|
|
2013-01-02 22:04:03 +01:00
|
|
|
PlaylistInfo pi(name, st->st_mtime);
|
|
|
|
|
2012-06-13 21:33:23 +02:00
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
if (directory.playlists.UpdateOrInsert(std::move(pi)))
|
2012-06-13 21:33:23 +02:00
|
|
|
modified = true;
|
|
|
|
db_unlock();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-10-19 18:48:38 +02:00
|
|
|
update_regular_file(Directory &directory,
|
2009-09-24 21:39:46 +02:00
|
|
|
const char *name, const struct stat *st)
|
|
|
|
{
|
|
|
|
const char *suffix = uri_get_suffix(name);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (suffix == nullptr)
|
2012-06-13 21:33:23 +02:00
|
|
|
return false;
|
2010-07-21 08:58:15 +02:00
|
|
|
|
2012-06-13 22:14:16 +02:00
|
|
|
return update_song_file(directory, name, suffix, st) ||
|
2012-06-13 21:28:26 +02:00
|
|
|
update_archive_file(directory, name, suffix, st) ||
|
2012-06-13 21:33:23 +02:00
|
|
|
update_playlist_file2(directory, name, suffix, st);
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-10-19 18:48:38 +02:00
|
|
|
update_directory(Directory &directory, const struct stat *st);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
update_directory_child(Directory &directory,
|
2012-06-13 20:48:30 +02:00
|
|
|
const char *name, const struct stat *st)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(strchr(name, '/') == nullptr);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
if (S_ISREG(st->st_mode)) {
|
|
|
|
update_regular_file(directory, name, st);
|
|
|
|
} else if (S_ISDIR(st->st_mode)) {
|
2013-10-19 18:48:38 +02:00
|
|
|
if (find_inode_ancestor(&directory, st->st_ino, st->st_dev))
|
2009-09-24 21:39:46 +02:00
|
|
|
return;
|
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
Directory *subdir = directory.MakeChild(name);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(&directory == subdir->parent);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (!update_directory(*subdir, st)) {
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2009-09-24 21:39:46 +02:00
|
|
|
delete_directory(subdir);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
}
|
2009-09-24 21:39:46 +02:00
|
|
|
} else {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(update_domain,
|
|
|
|
"%s is not a directory, archive or music", name);
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we don't look at "." / ".." nor files with newlines in their name */
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_pure
|
2013-10-17 21:59:35 +02:00
|
|
|
static bool skip_path(Path path_fs)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-05-05 10:58:07 +02:00
|
|
|
const char *path = path_fs.c_str();
|
2009-09-24 21:39:46 +02:00
|
|
|
return (path[0] == '.' && path[1] == 0) ||
|
|
|
|
(path[0] == '.' && path[1] == '.' && path[2] == 0) ||
|
2013-10-19 18:19:03 +02:00
|
|
|
strchr(path, '\n') != nullptr;
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_pure
|
2009-09-24 21:39:46 +02:00
|
|
|
static bool
|
2013-01-02 23:06:20 +01:00
|
|
|
skip_symlink(const Directory *directory, const char *utf8_name)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
|
|
|
#ifndef WIN32
|
2013-10-19 18:48:38 +02:00
|
|
|
const auto path_fs = map_directory_child_fs(*directory, utf8_name);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2009-09-24 21:39:46 +02:00
|
|
|
return true;
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto target = ReadLink(path_fs);
|
2013-05-05 10:58:07 +02:00
|
|
|
if (target.IsNull())
|
2009-09-24 21:39:46 +02:00
|
|
|
/* don't skip if this is not a symlink */
|
|
|
|
return errno != EINVAL;
|
|
|
|
|
|
|
|
if (!follow_inside_symlinks && !follow_outside_symlinks) {
|
|
|
|
/* ignore all symlinks */
|
|
|
|
return true;
|
|
|
|
} else if (follow_inside_symlinks && follow_outside_symlinks) {
|
|
|
|
/* consider all symlinks */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
const char *target_str = target.c_str();
|
|
|
|
|
2013-12-04 22:53:43 +01:00
|
|
|
if (PathTraitsFS::IsAbsolute(target_str)) {
|
2011-07-20 07:05:10 +02:00
|
|
|
/* if the symlink points to an absolute path, see if
|
|
|
|
that path is inside the music directory */
|
2013-05-05 10:58:07 +02:00
|
|
|
const char *relative = map_to_relative_path(target_str);
|
|
|
|
return relative > target_str
|
2011-07-20 07:05:10 +02:00
|
|
|
? !follow_inside_symlinks
|
|
|
|
: !follow_outside_symlinks;
|
|
|
|
}
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
const char *p = target_str;
|
2009-09-24 21:39:46 +02:00
|
|
|
while (*p == '.') {
|
2013-12-04 22:53:43 +01:00
|
|
|
if (p[1] == '.' && PathTraitsFS::IsSeparator(p[2])) {
|
2009-09-24 21:39:46 +02:00
|
|
|
/* "../" moves to parent directory */
|
|
|
|
directory = directory->parent;
|
2013-10-19 18:19:03 +02:00
|
|
|
if (directory == nullptr) {
|
2009-09-24 21:39:46 +02:00
|
|
|
/* we have moved outside the music
|
|
|
|
directory - skip this symlink
|
|
|
|
if such symlinks are not allowed */
|
|
|
|
return !follow_outside_symlinks;
|
|
|
|
}
|
|
|
|
p += 3;
|
2013-12-04 22:53:43 +01:00
|
|
|
} else if (PathTraitsFS::IsSeparator(p[1]))
|
2009-09-24 21:39:46 +02:00
|
|
|
/* eliminate "./" */
|
|
|
|
p += 2;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we are still in the music directory, so this symlink points
|
|
|
|
to a song which is already in the database - skip according
|
|
|
|
to the follow_inside_symlinks param*/
|
|
|
|
return !follow_inside_symlinks;
|
|
|
|
#else
|
|
|
|
/* no symlink checking on WIN32 */
|
|
|
|
|
|
|
|
(void)directory;
|
|
|
|
(void)utf8_name;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-10-19 18:48:38 +02:00
|
|
|
update_directory(Directory &directory, const struct stat *st)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
|
|
|
assert(S_ISDIR(st->st_mode));
|
|
|
|
|
|
|
|
directory_set_stat(directory, st);
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto path_fs = map_directory_fs(directory);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (path_fs.IsNull())
|
2009-09-24 21:39:46 +02:00
|
|
|
return false;
|
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
DirectoryReader reader(path_fs);
|
|
|
|
if (reader.HasFailed()) {
|
|
|
|
int error = errno;
|
|
|
|
const auto path_utf8 = path_fs.ToUTF8();
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatErrno(update_domain, error,
|
|
|
|
"Failed to open directory %s",
|
|
|
|
path_utf8.c_str());
|
2009-09-24 21:39:46 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-03 10:01:34 +01:00
|
|
|
ExcludeList exclude_list;
|
2013-10-17 21:59:35 +02:00
|
|
|
exclude_list.LoadFile(AllocatedPath::Build(path_fs, ".mpdignore"));
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-01-03 10:01:34 +01:00
|
|
|
if (!exclude_list.IsEmpty())
|
2009-10-16 18:11:43 +02:00
|
|
|
remove_excluded_from_directory(directory, exclude_list);
|
|
|
|
|
2012-06-13 20:48:30 +02:00
|
|
|
purge_deleted_from_directory(directory);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
while (reader.ReadEntry()) {
|
2013-01-23 21:26:38 +01:00
|
|
|
std::string utf8;
|
2009-09-24 21:39:46 +02:00
|
|
|
struct stat st2;
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto entry = reader.GetEntry();
|
2013-05-05 10:58:07 +02:00
|
|
|
|
|
|
|
if (skip_path(entry) || exclude_list.Check(entry))
|
2009-09-24 21:39:46 +02:00
|
|
|
continue;
|
|
|
|
|
2013-05-05 10:58:07 +02:00
|
|
|
utf8 = entry.ToUTF8();
|
2013-01-23 21:26:38 +01:00
|
|
|
if (utf8.empty())
|
2009-10-31 18:23:56 +01:00
|
|
|
continue;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (skip_symlink(&directory, utf8.c_str())) {
|
2013-01-23 21:26:38 +01:00
|
|
|
modified |= delete_name_in(directory, utf8.c_str());
|
2009-09-24 21:39:46 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-01-23 21:26:38 +01:00
|
|
|
if (stat_directory_child(directory, utf8.c_str(), &st2) == 0)
|
|
|
|
update_directory_child(directory, utf8.c_str(), &st2);
|
2009-09-24 21:39:46 +02:00
|
|
|
else
|
2013-01-23 21:26:38 +01:00
|
|
|
modified |= delete_name_in(directory, utf8.c_str());
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
directory.mtime = st->st_mtime;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
static Directory *
|
2013-10-19 18:48:38 +02:00
|
|
|
directory_make_child_checked(Directory &parent, const char *name_utf8)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
Directory *directory = parent.FindChild(name_utf8);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
2012-06-13 20:48:30 +02:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (directory != nullptr)
|
2009-09-24 21:39:46 +02:00
|
|
|
return directory;
|
|
|
|
|
2012-06-13 20:48:30 +02:00
|
|
|
struct stat st;
|
2012-01-24 19:07:11 +01:00
|
|
|
if (stat_directory_child(parent, name_utf8, &st) < 0 ||
|
2013-10-19 18:48:38 +02:00
|
|
|
find_inode_ancestor(&parent, st.st_ino, st.st_dev))
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (skip_symlink(&parent, name_utf8))
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2012-04-04 08:56:45 +02:00
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
/* if we're adding directory paths, make sure to delete filenames
|
|
|
|
with potentially the same name */
|
2012-01-31 22:12:14 +01:00
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
Song *conflicting = parent.FindSong(name_utf8);
|
2009-09-24 21:39:46 +02:00
|
|
|
if (conflicting)
|
|
|
|
delete_song(parent, conflicting);
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
directory = parent.CreateChild(name_utf8);
|
2012-01-31 22:12:14 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
directory_set_stat(*directory, &st);
|
2009-09-24 21:39:46 +02:00
|
|
|
return directory;
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
static Directory *
|
2012-06-13 20:48:30 +02:00
|
|
|
directory_make_uri_parent_checked(const char *uri)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *directory = db_get_root();
|
2012-06-13 20:48:30 +02:00
|
|
|
char *duplicated = g_strdup(uri);
|
2012-01-24 19:07:11 +01:00
|
|
|
char *name_utf8 = duplicated, *slash;
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
while ((slash = strchr(name_utf8, '/')) != nullptr) {
|
2009-09-24 21:39:46 +02:00
|
|
|
*slash = 0;
|
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
if (*name_utf8 == 0)
|
|
|
|
continue;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
directory = directory_make_child_checked(*directory,
|
|
|
|
name_utf8);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (directory == nullptr)
|
2009-09-24 21:39:46 +02:00
|
|
|
break;
|
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
name_utf8 = slash + 1;
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free(duplicated);
|
|
|
|
return directory;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-13 20:48:30 +02:00
|
|
|
update_uri(const char *uri)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *parent = directory_make_uri_parent_checked(uri);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (parent == nullptr)
|
2009-09-24 21:39:46 +02:00
|
|
|
return;
|
|
|
|
|
2013-12-04 22:53:43 +01:00
|
|
|
const char *name = PathTraitsUTF8::GetBase(uri);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
2012-06-13 20:48:30 +02:00
|
|
|
struct stat st;
|
2012-04-04 08:56:45 +02:00
|
|
|
if (!skip_symlink(parent, name) &&
|
2013-10-19 18:48:38 +02:00
|
|
|
stat_directory_child(*parent, name, &st) == 0)
|
|
|
|
update_directory_child(*parent, name, &st);
|
2009-09-24 21:39:46 +02:00
|
|
|
else
|
2013-10-19 18:48:38 +02:00
|
|
|
modified |= delete_name_in(*parent, name);
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-09-24 21:55:40 +02:00
|
|
|
update_walk(const char *path, bool discard)
|
2009-09-24 21:39:46 +02:00
|
|
|
{
|
2009-09-24 21:55:40 +02:00
|
|
|
walk_discard = discard;
|
2009-09-24 21:39:46 +02:00
|
|
|
modified = false;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (path != nullptr && !isRootDirectory(path)) {
|
2012-06-13 20:48:30 +02:00
|
|
|
update_uri(path);
|
2009-09-24 21:39:46 +02:00
|
|
|
} else {
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *directory = db_get_root();
|
2009-09-24 21:39:46 +02:00
|
|
|
struct stat st;
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (stat_directory(*directory, &st) == 0)
|
|
|
|
update_directory(*directory, &st);
|
2009-09-24 21:39:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return modified;
|
|
|
|
}
|