strawberry-audio-player-win.../ext/libstrawberry-tagreader/tagreadertaglib.h

83 lines
3.0 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/* This file is part of Strawberry.
Copyright 2013, David Sansome <me@davidsansome.com>
2021-04-10 07:32:38 +02:00
Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
Strawberry 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 3 of the License, or
(at your option) any later version.
Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TAGREADERTAGLIB_H
#define TAGREADERTAGLIB_H
2018-02-27 18:06:05 +01:00
#include "config.h"
#include <string>
2018-02-27 18:06:05 +01:00
#include <QByteArray>
#include <QString>
2018-02-27 18:06:05 +01:00
2020-04-24 00:01:23 +02:00
#include <taglib/tstring.h>
#include <taglib/fileref.h>
2018-02-27 18:06:05 +01:00
#include <taglib/xiphcomment.h>
2019-03-22 23:13:49 +01:00
#include <taglib/apetag.h>
#include <taglib/apefile.h>
2020-04-24 00:01:23 +02:00
#include <taglib/id3v2tag.h>
2018-02-27 18:06:05 +01:00
#include "tagreaderbase.h"
2018-02-27 18:06:05 +01:00
#include "tagreadermessages.pb.h"
class FileRefFactory;
/*
2018-02-27 18:06:05 +01:00
* This class holds all useful methods to read and write tags from/to files.
* You should not use it directly in the main process but rather use a TagReaderWorker process (using TagReaderClient)
2018-02-27 18:06:05 +01:00
*/
class TagReaderTagLib : public TagReaderBase {
2018-02-27 18:06:05 +01:00
public:
explicit TagReaderTagLib();
~TagReaderTagLib();
2018-02-27 18:06:05 +01:00
bool IsMediaFile(const QString &filename) const override;
2019-03-22 23:13:49 +01:00
void ReadFile(const QString &filename, spb::tagreader::SongMetadata *song) const override;
bool SaveFile(const QString &filename, const spb::tagreader::SongMetadata &song) const override;
2018-02-27 18:06:05 +01:00
QByteArray LoadEmbeddedArt(const QString &filename) const override;
bool SaveEmbeddedArt(const QString &filename, const QByteArray &data) override;
private:
spb::tagreader::SongMetadata_FileType GuessFileType(TagLib::FileRef *fileref) const;
2018-02-27 18:06:05 +01:00
2020-11-04 18:16:23 +01:00
static void Decode(const TagLib::String &tag, std::string *output);
static void Decode(const QString &tag, std::string *output);
2018-02-27 18:06:05 +01:00
2021-02-20 17:06:55 +01:00
void ParseOggTag(const TagLib::Ogg::FieldListMap &map, QString *disc, QString *compilation, spb::tagreader::SongMetadata *song) const;
void ParseAPETag(const TagLib::APE::ItemListMap &map, QString *disc, QString *compilation, spb::tagreader::SongMetadata *song) const;
2018-02-27 18:06:05 +01:00
2021-02-20 17:06:55 +01:00
void SetVorbisComments(TagLib::Ogg::XiphComment *vorbis_comments, const spb::tagreader::SongMetadata &song) const;
void SaveAPETag(TagLib::APE::Tag *tag, const spb::tagreader::SongMetadata &song) const;
2018-02-27 18:06:05 +01:00
void SetTextFrame(const char *id, const QString &value, TagLib::ID3v2::Tag *tag) const;
void SetTextFrame(const char *id, const std::string &value, TagLib::ID3v2::Tag *tag) const;
void SetUnsyncLyricsFrame(const std::string& value, TagLib::ID3v2::Tag* tag) const;
2018-02-27 18:06:05 +01:00
QByteArray LoadEmbeddedAPEArt(const TagLib::APE::ItemListMap &map) const;
2019-03-22 23:13:49 +01:00
private:
2018-02-27 18:06:05 +01:00
FileRefFactory *factory_;
2021-08-25 02:56:30 +02:00
Q_DISABLE_COPY(TagReaderTagLib)
2018-02-27 18:06:05 +01:00
};
#endif // TAGREADERTAGLIB_H