73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2013 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
*/
|
|
/*
|
|
* Copyright (c) 2008 Sander Knopper (sander AT knopper DOT tk) and
|
|
* Roeland Douma (roeland AT rullzer DOT com)
|
|
*
|
|
* This file is part of QtMPC.
|
|
*
|
|
* QtMPC 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* QtMPC 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 QtMPC. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MPD_PARSE_UTILS_H
|
|
#define MPD_PARSE_UTILS_H
|
|
|
|
#include <QString>
|
|
|
|
class Song;
|
|
class Playlist;
|
|
class DirViewItemRoot;
|
|
class MusicLibraryItemRoot;
|
|
class Output;
|
|
class MPDStatsValues;
|
|
class MPDStatusValues;
|
|
|
|
namespace MPDParseUtils
|
|
{
|
|
extern void enableDebug();
|
|
|
|
struct IdPos {
|
|
IdPos(qint32 i, quint32 p)
|
|
: id(i)
|
|
, pos(p) {
|
|
}
|
|
qint32 id;
|
|
quint32 pos;
|
|
};
|
|
extern QList<Playlist> parsePlaylists(const QByteArray &data);
|
|
extern MPDStatsValues parseStats(const QByteArray &data);
|
|
extern MPDStatusValues parseStatus(const QByteArray &data);
|
|
extern Song parseSong(const QByteArray &data, bool isPlayQueue);
|
|
extern QList<Song> parseSongs(const QByteArray &data);
|
|
extern QList<IdPos> parseChanges(const QByteArray &data);
|
|
extern QStringList parseUrlHandlers(const QByteArray &data);
|
|
extern bool groupSingle();
|
|
extern void setGroupSingle(bool g);
|
|
extern bool groupMultiple();
|
|
extern void setGroupMultiple(bool g);
|
|
extern MusicLibraryItemRoot * parseLibraryItems(const QByteArray &data, const QString &mpdDir, long mpdVersion);
|
|
extern DirViewItemRoot * parseDirViewItems(const QByteArray &data);
|
|
extern QList<Output> parseOuputs(const QByteArray &data);
|
|
extern QString formatDuration(const quint32 totalseconds);
|
|
extern QString addStreamName(const QString &url, const QString &name);
|
|
extern QString getStreamName(const QString &url);
|
|
extern QString getAndRemoveStreamName(QString &url);
|
|
};
|
|
|
|
#endif
|