2013-02-23 00:02:02 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2013, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TAGREADER_H
|
|
|
|
#define TAGREADER_H
|
|
|
|
|
|
|
|
#include <QByteArray>
|
2020-07-07 17:56:51 +02:00
|
|
|
#include <QFileInfo>
|
2013-02-23 00:02:02 +01:00
|
|
|
|
|
|
|
#include <taglib/xiphcomment.h>
|
2019-08-02 17:24:26 +02:00
|
|
|
#include <memory>
|
2013-02-23 00:02:02 +01:00
|
|
|
|
2021-03-16 06:35:17 +01:00
|
|
|
#include "clementine-config.h"
|
2013-02-23 00:02:02 +01:00
|
|
|
#include "tagreadermessages.pb.h"
|
|
|
|
|
|
|
|
class QString;
|
|
|
|
class QTextCodec;
|
|
|
|
class QUrl;
|
|
|
|
|
|
|
|
namespace TagLib {
|
2014-02-07 16:34:20 +01:00
|
|
|
class FileRef;
|
|
|
|
class String;
|
2013-02-23 00:02:02 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
namespace ID3v2 {
|
|
|
|
class Tag;
|
|
|
|
class PopularimeterFrame;
|
|
|
|
}
|
2013-02-23 00:02:02 +01:00
|
|
|
}
|
|
|
|
|
2019-08-02 17:24:26 +02:00
|
|
|
class FileRefFactory {
|
|
|
|
public:
|
|
|
|
virtual ~FileRefFactory() {}
|
|
|
|
virtual TagLib::FileRef* GetFileRef(const QString& filename) = 0;
|
|
|
|
};
|
2013-02-23 00:02:02 +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)
|
|
|
|
*/
|
|
|
|
class TagReader {
|
|
|
|
public:
|
|
|
|
TagReader();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void ReadFile(const QString& filename,
|
2021-02-20 22:20:04 +01:00
|
|
|
cpb::tagreader::SongMetadata* song) const;
|
2014-02-07 16:34:20 +01:00
|
|
|
bool SaveFile(const QString& filename,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2013-02-24 17:45:25 +01:00
|
|
|
// Returns false if something went wrong; returns true otherwise (might
|
|
|
|
// returns true if the file exists but nothing has been written inside because
|
|
|
|
// statistics tag format is not supported for this kind of file)
|
2014-02-07 16:34:20 +01:00
|
|
|
bool SaveSongStatisticsToFile(const QString& filename,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2014-02-07 16:34:20 +01:00
|
|
|
bool SaveSongRatingToFile(const QString& filename,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2013-03-30 23:42:29 +01:00
|
|
|
|
2013-02-23 00:02:02 +01:00
|
|
|
bool IsMediaFile(const QString& filename) const;
|
|
|
|
QByteArray LoadEmbeddedArt(const QString& filename) const;
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#ifdef HAVE_GOOGLE_DRIVE
|
|
|
|
bool ReadCloudFile(const QUrl& download_url, const QString& title, int size,
|
|
|
|
const QString& mime_type, const QString& access_token,
|
2021-02-20 22:20:04 +01:00
|
|
|
cpb::tagreader::SongMetadata* song) const;
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // HAVE_GOOGLE_DRIVE
|
2013-02-23 00:02:02 +01:00
|
|
|
|
|
|
|
static void Decode(const TagLib::String& tag, const QTextCodec* codec,
|
|
|
|
std::string* output);
|
|
|
|
static void Decode(const QString& tag, const QTextCodec* codec,
|
|
|
|
std::string* output);
|
|
|
|
|
|
|
|
void ParseFMPSFrame(const QString& name, const QString& value,
|
2021-02-20 22:20:04 +01:00
|
|
|
cpb::tagreader::SongMetadata* song) const;
|
2013-02-23 00:02:02 +01:00
|
|
|
void ParseOggTag(const TagLib::Ogg::FieldListMap& map,
|
2014-02-07 16:34:20 +01:00
|
|
|
const QTextCodec* codec, QString* disc, QString* compilation,
|
2021-02-20 22:20:04 +01:00
|
|
|
cpb::tagreader::SongMetadata* song) const;
|
2013-03-02 00:03:51 +01:00
|
|
|
void SetVorbisComments(TagLib::Ogg::XiphComment* vorbis_comments,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2014-02-07 16:34:20 +01:00
|
|
|
void SetFMPSStatisticsVorbisComments(
|
|
|
|
TagLib::Ogg::XiphComment* vorbis_comments,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2015-06-10 21:23:40 +02:00
|
|
|
void SetFMPSRatingVorbisComments(
|
|
|
|
TagLib::Ogg::XiphComment* vorbis_comments,
|
2021-02-20 22:20:04 +01:00
|
|
|
const cpb::tagreader::SongMetadata& song) const;
|
2013-03-02 00:03:51 +01:00
|
|
|
|
2021-02-20 22:20:04 +01:00
|
|
|
void GuessArtistAndTitle(cpb::tagreader::SongMetadata* song) const;
|
|
|
|
void GuessAlbum(const QFileInfo &info, cpb::tagreader::SongMetadata* song) const;
|
2020-05-22 03:36:40 +02:00
|
|
|
|
2021-02-20 22:20:04 +01:00
|
|
|
cpb::tagreader::SongMetadata_Type GuessFileType(
|
2015-06-10 21:23:40 +02:00
|
|
|
TagLib::FileRef* fileref) const;
|
2013-02-23 00:02:02 +01:00
|
|
|
|
2013-02-23 20:12:17 +01:00
|
|
|
void SetUserTextFrame(const QString& description, const QString& value,
|
|
|
|
TagLib::ID3v2::Tag* tag) const;
|
2014-02-07 16:34:20 +01:00
|
|
|
void SetUserTextFrame(const std::string& description,
|
|
|
|
const std::string& value,
|
2013-02-23 20:12:17 +01:00
|
|
|
TagLib::ID3v2::Tag* tag) const;
|
|
|
|
|
2013-02-23 00:02:02 +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;
|
2015-06-10 21:23:40 +02:00
|
|
|
void SetUnsyncLyricsFrame(const std::string& value,
|
|
|
|
TagLib::ID3v2::Tag* tag) const;
|
2013-02-23 00:02:02 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2013-03-03 00:18:59 +01:00
|
|
|
static const char* kMP4_FMPS_Rating_ID;
|
|
|
|
static const char* kMP4_FMPS_Playcount_ID;
|
2013-03-15 22:54:59 +01:00
|
|
|
static const char* kMP4_FMPS_Score_ID;
|
2014-02-07 16:34:20 +01:00
|
|
|
// Returns a float in [0.0..1.0] corresponding to the rating range we use in
|
|
|
|
// Clementine
|
2013-02-28 02:17:15 +01:00
|
|
|
static float ConvertPOPMRating(const int POPM_rating);
|
|
|
|
// Reciprocal
|
|
|
|
static int ConvertToPOPMRating(const float rating);
|
2014-02-07 16:34:20 +01:00
|
|
|
static TagLib::ID3v2::PopularimeterFrame* GetPOPMFrameFromTag(
|
|
|
|
TagLib::ID3v2::Tag* tag);
|
2013-02-28 02:17:15 +01:00
|
|
|
|
2019-08-02 17:24:26 +02:00
|
|
|
std::unique_ptr<FileRefFactory> factory_;
|
2013-02-23 00:02:02 +01:00
|
|
|
|
|
|
|
const std::string kEmbeddedCover;
|
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // TAGREADER_H
|