VorbisComments.cxx 2.49 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20
#include "VorbisComments.hxx"
21
#include "VorbisPicture.hxx"
22
#include "ScanVorbisComment.hxx"
23 24
#include "tag/Handler.hxx"
#include "tag/Builder.hxx"
25
#include "tag/Tag.hxx"
26
#include "tag/VorbisComment.hxx"
27
#include "tag/ReplayGain.hxx"
28
#include "ReplayGainInfo.hxx"
29
#include "util/StringView.hxx"
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#include "config.h"

#ifndef HAVE_TREMOR
#include <vorbis/codec.h>
#else
#include <tremor/ivorbiscodec.h>
#endif /* HAVE_TREMOR */

template<typename F>
static void
ForEachUserComment(const vorbis_comment &vc, F &&f)
{
	const char *const*const user_comments = vc.user_comments;
	const int*const comment_lengths = vc.comment_lengths;

	const size_t n = vc.comments;
	for (size_t i = 0; i < n; ++i)
		f(StringView{user_comments[i], size_t(comment_lengths[i])});
}
49

50
bool
51 52
VorbisCommentToReplayGain(ReplayGainInfo &rgi,
			  const vorbis_comment &vc) noexcept
53
{
54 55
	rgi.Clear();

56 57
	bool found = false;

58 59
	ForEachUserComment(vc, [&](StringView s){
		if (ParseReplayGainVorbis(rgi, s.data))
60
			found = true;
61
	});
62 63 64 65 66

	return found;
}

static void
67
vorbis_scan_comment(StringView comment, TagHandler &handler) noexcept
68
{
69 70 71 72 73 74
	const auto picture_b64 = handler.WantPicture()
		? GetVorbisCommentValue(comment, "METADATA_BLOCK_PICTURE")
		: nullptr;
	if (!picture_b64.IsNull())
		return ScanVorbisPicture(picture_b64, handler);

75
	ScanVorbisComment(comment, handler);
76 77
}

78
void
79
VorbisCommentScan(const vorbis_comment &vc, TagHandler &handler) noexcept
80
{
81 82 83
	ForEachUserComment(vc, [&](StringView s){
		vorbis_scan_comment(s, handler);
	});
84 85
}

86
std::unique_ptr<Tag>
87
VorbisCommentToTag(const vorbis_comment &vc) noexcept
88
{
89
	TagBuilder tag_builder;
90
	AddTagHandler h(tag_builder);
91
	VorbisCommentScan(vc, h);
92
	return tag_builder.empty()
93
		? nullptr
94
		: tag_builder.CommitNew();
95
}