/* This file is part of Strawberry. Copyright 2013, David Sansome Copyright 2018-2021, Jonas Kvinge 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 . */ #ifndef TAGREADERTAGLIB_H #define TAGREADERTAGLIB_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "tagreaderbase.h" #include "tagreadermessages.pb.h" class FileRefFactory; /* * 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) */ class TagReaderTagLib : public TagReaderBase { public: explicit TagReaderTagLib(); ~TagReaderTagLib(); bool IsMediaFile(const QString &filename) const override; bool ReadFile(const QString &filename, spb::tagreader::SongMetadata *song) const override; bool SaveFile(const spb::tagreader::SaveFileRequest &request) const override; QByteArray LoadEmbeddedArt(const QString &filename) const override; bool SaveEmbeddedArt(const spb::tagreader::SaveEmbeddedArtRequest &request) const override; bool SaveSongPlaycountToFile(const QString &filename, const spb::tagreader::SongMetadata &song) const override; bool SaveSongRatingToFile(const QString &filename, const spb::tagreader::SongMetadata &song) const override; static void Decode(const TagLib::String &tag, std::string *output); private: spb::tagreader::SongMetadata_FileType GuessFileType(TagLib::FileRef *fileref) const; 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; 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; 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 SetUserTextFrame(const QString &description, const QString &value, TagLib::ID3v2::Tag *tag) const; void SetUserTextFrame(const std::string &description, const std::string &value, TagLib::ID3v2::Tag *tag) const; void SetUnsyncLyricsFrame(const std::string &value, TagLib::ID3v2::Tag *tag) const; QByteArray LoadEmbeddedAPEArt(const TagLib::APE::ItemListMap &map) const; static TagLib::ID3v2::PopularimeterFrame *GetPOPMFrameFromTag(TagLib::ID3v2::Tag *tag); void SetPlaycount(TagLib::Ogg::XiphComment *xiph_comment, const spb::tagreader::SongMetadata &song) const; void SetPlaycount(TagLib::APE::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetPlaycount(TagLib::ID3v2::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetPlaycount(TagLib::MP4::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetPlaycount(TagLib::ASF::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetRating(TagLib::Ogg::XiphComment *xiph_comment, const spb::tagreader::SongMetadata &song) const; void SetRating(TagLib::APE::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetRating(TagLib::ID3v2::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetRating(TagLib::MP4::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetRating(TagLib::ASF::Tag *tag, const spb::tagreader::SongMetadata &song) const; void SetEmbeddedArt(TagLib::FLAC::File *flac_file, TagLib::Ogg::XiphComment *xiph_comment, const QByteArray &data) const; void SetEmbeddedArt(TagLib::Ogg::XiphComment *xiph_comment, const QByteArray &data) const; void SetEmbeddedArt(TagLib::MPEG::File *file_mp3, TagLib::ID3v2::Tag *tag, const QByteArray &data) const; void SetEmbeddedArt(TagLib::MP4::File *aac_file, TagLib::MP4::Tag *tag, const QByteArray &data) const; private: FileRefFactory *factory_; Q_DISABLE_COPY(TagReaderTagLib) }; #endif // TAGREADERTAGLIB_H