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

79 lines
2.9 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 TAGREADER_H
#define TAGREADER_H
#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 "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)
2018-02-27 18:06:05 +01:00
*/
class TagReader {
public:
2020-06-26 23:30:30 +02:00
explicit TagReader();
2019-07-21 15:12:28 +02:00
~TagReader();
2018-02-27 18:06:05 +01:00
bool IsMediaFile(const QString &filename) const;
2021-02-20 17:06:55 +01:00
spb::tagreader::SongMetadata_FileType GuessFileType(TagLib::FileRef *fileref) const;
2019-03-22 23:13:49 +01:00
2021-02-20 17:06:55 +01:00
void ReadFile(const QString &filename, spb::tagreader::SongMetadata *song) const;
bool SaveFile(const QString &filename, const spb::tagreader::SongMetadata &song) const;
2018-02-27 18:06:05 +01:00
QByteArray LoadEmbeddedArt(const QString &filename) const;
2019-03-22 23:13:49 +01:00
QByteArray LoadEmbeddedAPEArt(const TagLib::APE::ItemListMap &map) const;
bool SaveEmbeddedArt(const QString &filename, const QByteArray &data);
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
2019-03-22 23:13:49 +01:00
private:
2018-02-27 18:06:05 +01:00
FileRefFactory *factory_;
const std::string kEmbeddedCover;
};
#endif // TAGREADER_H