2010-05-27 22:55:34 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-05-27 22:55:34 +02:00
|
|
|
|
|
|
|
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 ASXPARSER_H
|
|
|
|
#define ASXPARSER_H
|
|
|
|
|
|
|
|
#include "xmlparser.h"
|
|
|
|
|
|
|
|
class ASXParser : public XMLParser {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-02-10 16:03:54 +01:00
|
|
|
ASXParser(LibraryBackendInterface* library, QObject* parent = nullptr);
|
2010-05-27 22:55:34 +02:00
|
|
|
|
|
|
|
QString name() const { return "ASX"; }
|
|
|
|
QStringList file_extensions() const { return QStringList() << "asx"; }
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
bool TryMagic(const QByteArray& data) const;
|
2010-06-15 15:24:17 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
SongList Load(QIODevice* device, const QString& playlist_path = "",
|
2011-04-28 14:27:53 +02:00
|
|
|
const QDir& dir = QDir()) const;
|
2014-10-15 21:57:57 +02:00
|
|
|
void Save(const SongList& songs, QIODevice* device, const QDir& dir = QDir(),
|
2014-10-07 00:23:28 +02:00
|
|
|
Playlist::Path path_type = Playlist::Path_Automatic) const;
|
2010-05-27 22:55:34 +02:00
|
|
|
|
|
|
|
private:
|
2011-04-28 14:27:53 +02:00
|
|
|
Song ParseTrack(QXmlStreamReader* reader, const QDir& dir) const;
|
2010-05-27 22:55:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|