2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* 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 ASXPARSER_H
|
|
|
|
#define ASXPARSER_H
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2020-02-08 15:03:11 +01:00
|
|
|
#include <QDir>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "core/song.h"
|
2022-05-13 23:14:56 +02:00
|
|
|
#include "settings/playlistsettingspage.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
#include "xmlparser.h"
|
|
|
|
|
2020-02-08 15:03:11 +01:00
|
|
|
class QIODevice;
|
|
|
|
class QXmlStreamReader;
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
class CollectionBackendInterface;
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
class ASXParser : public XMLParser {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-04-07 16:49:15 +02:00
|
|
|
explicit ASXParser(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 "ASX"; }
|
|
|
|
QStringList file_extensions() const override { return QStringList() << "asx"; }
|
2022-05-13 23:14:56 +02:00
|
|
|
bool load_supported() const override { return true; }
|
|
|
|
bool save_supported() const override { return true; }
|
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
|
|
|
|
2021-04-25 21:16:44 +02: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
|
|
|
|
|
|
|
private:
|
2021-04-25 21:16:44 +02:00
|
|
|
Song ParseTrack(QXmlStreamReader *reader, const QDir &dir, const bool collection_search) const;
|
2018-02-27 18:06:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|