strawberry-audio-player-win.../src/playlistparsers/cueparser.h

111 lines
3.8 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2021-03-20 21:14:47 +01:00
* Copyright 2019-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/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#ifndef CUEPARSER_H
#define CUEPARSER_H
#include "config.h"
#include <QtGlobal>
#include <QObject>
#include <QByteArray>
#include <QString>
#include <QStringList>
2020-02-08 15:03:11 +01:00
#include <QDir>
#include "core/song.h"
#include "settings/playlistsettingspage.h"
2018-02-27 18:06:05 +01:00
#include "parserbase.h"
2020-02-08 15:03:11 +01:00
class QIODevice;
class CollectionBackendInterface;
2018-02-27 18:06:05 +01:00
// This parser will try to detect the real encoding of a .cue file
2022-08-28 02:44:37 +02:00
// but there's a great chance it will fail, so it's probably best to assume that the parser is UTF compatible only.
2018-02-27 18:06:05 +01:00
class CueParser : public ParserBase {
Q_OBJECT
public:
static const char *kFileLineRegExp;
static const char *kIndexRegExp;
static const char *kPerformer;
static const char *kTitle;
static const char *kSongWriter;
static const char *kFile;
static const char *kTrack;
static const char *kIndex;
static const char *kAudioTrackType;
static const char *kRem;
static const char *kGenre;
static const char *kDate;
static const char *kDisc;
2018-10-02 00:38:52 +02:00
2020-04-07 16:49:15 +02:00
explicit CueParser(CollectionBackendInterface *collection, QObject *parent = nullptr);
2018-02-27 18:06:05 +01:00
2020-06-15 21:55:05 +02:00
QString name() const override { return "CUE"; }
QStringList file_extensions() const override { return QStringList() << "cue"; }
QString mime_type() const override { return "application/x-cue"; }
bool load_supported() const override { return true; }
bool save_supported() const override { return false; }
2018-02-27 18:06:05 +01:00
2020-06-15 21:55:05 +02:00
bool TryMagic(const QByteArray &data) const override;
2018-02-27 18:06:05 +01:00
SongList Load(QIODevice *device, const QString &playlist_path = "", const QDir &dir = QDir(), const bool collection_search = true) const override;
2023-02-18 14:09:27 +01:00
void Save(const SongList &songs, QIODevice *device, const QDir &dir = QDir(), const PlaylistSettingsPage::PathType path_type = PlaylistSettingsPage::PathType::Automatic) const override;
2018-02-27 18:06:05 +01:00
2021-11-27 20:28:00 +01:00
static QString FindCueFilename(const QString &filename);
2018-02-27 18:06:05 +01:00
private:
// A single TRACK entry in .cue file.
struct CueEntry {
QString file;
QString index;
QString title;
QString artist;
QString album_artist;
QString album;
QString composer;
QString album_composer;
QString genre;
QString date;
QString disc;
QString PrettyArtist() const { return artist.isEmpty() ? album_artist : artist; }
QString PrettyComposer() const { return composer.isEmpty() ? album_composer : composer; }
2020-04-23 21:07:17 +02:00
CueEntry(const QString &_file, const QString &_index, const QString &_title, const QString &_artist, const QString &_album_artist, const QString &_album, const QString &_composer, const QString &_album_composer, const QString &_genre, const QString &_date, const QString &_disc) :
file(_file), index(_index), title(_title), artist(_artist), album_artist(_album_artist), album(_album), composer(_composer), album_composer(_album_composer), genre(_genre), date(_date), disc(_disc) {}
2018-02-27 18:06:05 +01:00
};
2021-07-11 09:49:38 +02:00
static bool UpdateSong(const CueEntry &entry, const QString &next_index, Song *song);
static bool UpdateLastSong(const CueEntry &entry, Song *song);
2018-02-27 18:06:05 +01:00
2021-06-22 13:41:38 +02:00
static QStringList SplitCueLine(const QString &line);
static qint64 IndexToMarker(const QString &index);
2018-02-27 18:06:05 +01:00
};
#endif // CUEPARSER_H