Song.cxx 3.75 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20
#include "Song.hxx"
21
#include "ExportedSong.hxx"
22
#include "Directory.hxx"
23
#include "tag/Tag.hxx"
24
#include "tag/Builder.hxx"
25 26
#include "song/DetachedSong.hxx"
#include "song/LightSong.hxx"
27
#include "fs/Traits.hxx"
28 29
#include "time/ChronoUtil.hxx"
#include "util/IterableSplitString.hxx"
30

31
Song::Song(DetachedSong &&other, Directory &_parent) noexcept
32 33 34
	:parent(_parent),
	 filename(other.GetURI()),
	 tag(std::move(other.WritableTag())),
35 36 37
	 mtime(other.GetLastModified()),
	 start_time(other.GetStartTime()),
	 end_time(other.GetEndTime()),
38
	 audio_format(other.GetAudioFormat())
39
{
40 41
}

42 43 44 45 46 47 48 49
const char *
Song::GetFilenameSuffix() const noexcept
{
	return target.empty()
		? PathTraitsUTF8::GetFilenameSuffix(filename.c_str())
		: PathTraitsUTF8::GetPathSuffix(target.c_str());
}

50
std::string
51
Song::GetURI() const noexcept
Avuton Olrich's avatar
Avuton Olrich committed
52
{
53
	if (parent.IsRoot())
54
		return filename;
55
	else {
56
		const char *path = parent.GetPath();
57
		return PathTraitsUTF8::Build(path, filename);
58
	}
59
}
60

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
/**
 * Path name traversal of a #Directory.
 */
gcc_pure
static const Directory *
FindTargetDirectory(const Directory &base, StringView path) noexcept
{
	const auto *directory = &base;
	for (const StringView name : IterableSplitString(path, '/')) {
		if (name.empty() || name.Equals("."))
			continue;

		directory = name.Equals("..")
			? directory->parent
			: directory->FindChild(name);
		if (directory == nullptr)
			break;
	}

	return directory;
}

/**
 * Path name traversal of a #Song.
 */
gcc_pure
static const Song *
FindTargetSong(const Directory &_directory, StringView target) noexcept
{
	auto [path, last] = target.SplitLast('/');
	if (last == nullptr) {
		last = path;
		path = nullptr;
	}

	if (last.empty())
		return nullptr;

	const auto *directory = FindTargetDirectory(_directory, path);
	if (directory == nullptr)
		return nullptr;

	return directory->FindSong(last);
}

106
ExportedSong
107
Song::Export() const noexcept
108
{
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	const auto *target_song = !target.empty()
		? FindTargetSong(parent, (std::string_view)target)
		: nullptr;

	Tag merged_tag;
	if (target_song != nullptr) {
		/* if we found the target song (which may be the
		   underlying song file of a CUE file), merge the tags
		   from that song with this song's tags (from the CUE
		   file) */
		TagBuilder builder(tag);
		builder.Complement(target_song->tag);
		merged_tag = builder.Commit();
	}

	ExportedSong dest = merged_tag.IsDefined()
		? ExportedSong(filename.c_str(), std::move(merged_tag))
		: ExportedSong(filename.c_str(), tag);
127 128
	if (!parent.IsRoot())
		dest.directory = parent.GetPath();
129 130
	if (!target.empty())
		dest.real_uri = target.c_str();
131 132 133 134 135 136 137 138 139 140 141 142
	dest.mtime = IsNegative(mtime) && target_song != nullptr
		? target_song->mtime
		: mtime;
	dest.start_time = start_time.IsZero() && target_song != nullptr
		? target_song->start_time
		: start_time;
	dest.end_time = end_time.IsZero() && target_song != nullptr
		? target_song->end_time
		: end_time;
	dest.audio_format = audio_format.IsDefined() || target_song == nullptr
		? audio_format
		: target_song->audio_format;
143
	return dest;
144
}