-
Notifications
You must be signed in to change notification settings - Fork 689
/
Copy pathparserbase.h
84 lines (67 loc) · 3.13 KB
/
parserbase.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* This file is part of Clementine.
Copyright 2010, 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 PARSERBASE_H
#define PARSERBASE_H
#include <QDir>
#include <QObject>
#include "core/song.h"
#include "playlist/playlist.h"
class LibraryBackendInterface;
class ParserBase : public QObject {
Q_OBJECT
public:
ParserBase(LibraryBackendInterface* library, QObject* parent = nullptr);
virtual QString name() const = 0;
virtual QStringList file_extensions() const = 0;
virtual QString mime_type() const { return QString(); }
virtual bool TryMagic(const QByteArray& data) const = 0;
// Loads all songs from playlist found at path 'playlist_path' in directory
// 'dir'.
// The 'device' argument is an opened and ready to read from representation of
// this playlist.
// This method might not return all of the songs found in the playlist. Any
// playlist
// parser may decide to leave out some entries if it finds them incomplete or
// invalid.
// This means that the final resulting SongList should be considered valid (at
// least
// from the parser's point of view).
virtual SongList Load(QIODevice* device, const QString& playlist_path = "",
const QDir& dir = QDir()) const = 0;
virtual void Save(
const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
Playlist::Path path_type = Playlist::Path_Automatic) const = 0;
signals:
void Error(const QString& msg) const;
protected:
// Loads a song. If filename_or_url is a URL (with a scheme other than
// "file") then it is set on the song and the song marked as a stream.
// If it is a filename or a file:// URL then it is made absolute and canonical
// and set as a file:// url on the song. Also sets the song's metadata by
// searching in the Library, or loading from the file as a fallback.
// This function should always be used when loading a playlist.
Song LoadSong(const QString& filename_or_url, qint64 beginning,
const QDir& dir) const;
void LoadSong(const QString& filename_or_url, qint64 beginning,
const QDir& dir, Song* song) const;
// If the URL is a file:// URL then returns its path, absolute or relative to
// the directory depending on the path_type option.
// Otherwise returns the URL as is.
// This function should always be used when saving a playlist.
QString URLOrFilename(const QUrl& url, const QDir& dir,
Playlist::Path path_type) const;
private:
LibraryBackendInterface* library_;
};
#endif // PARSERBASE_H