2010-12-04 23:27:58 +01:00
|
|
|
/* This file is part of Clementine.
|
2014-11-02 19:36:21 +01:00
|
|
|
Copyright 2010, Paweł Bara <keirangtp@gmail.com>
|
|
|
|
Copyright 2010-2011, David Sansome <me@davidsansome.com>
|
|
|
|
Copyright 2012, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2010-12-04 23:27:58 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#ifndef CORE_MPRIS_COMMON_H_
|
|
|
|
#define CORE_MPRIS_COMMON_H_
|
2010-12-04 23:27:58 +01:00
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QVariantMap>
|
|
|
|
|
|
|
|
namespace mpris {
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
inline void AddMetadata(const QString& key, const QString& metadata,
|
|
|
|
QVariantMap* map) {
|
|
|
|
if (!metadata.isEmpty()) (*map)[key] = metadata;
|
2010-12-04 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
inline void AddMetadataAsList(const QString& key, const QString& metadata,
|
|
|
|
QVariantMap* map) {
|
|
|
|
if (!metadata.isEmpty()) (*map)[key] = QStringList() << metadata;
|
2010-12-13 00:20:41 +01:00
|
|
|
}
|
|
|
|
|
2010-12-04 23:27:58 +01:00
|
|
|
inline void AddMetadata(const QString& key, int metadata, QVariantMap* map) {
|
2014-02-07 16:34:20 +01:00
|
|
|
if (metadata > 0) (*map)[key] = metadata;
|
2010-12-04 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2012-10-15 11:40:18 +02:00
|
|
|
inline void AddMetadata(const QString& key, qint64 metadata, QVariantMap* map) {
|
2014-02-07 16:34:20 +01:00
|
|
|
if (metadata > 0) (*map)[key] = metadata;
|
2012-10-15 11:40:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void AddMetadata(const QString& key, double metadata, QVariantMap* map) {
|
2014-02-07 16:34:20 +01:00
|
|
|
if (metadata != 0.0) (*map)[key] = metadata;
|
2012-10-15 11:40:18 +02:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
inline void AddMetadata(const QString& key, const QDateTime& metadata,
|
|
|
|
QVariantMap* map) {
|
|
|
|
if (metadata.isValid()) (*map)[key] = metadata;
|
2010-12-04 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2011-10-16 22:57:53 +02:00
|
|
|
inline QString AsMPRISDateTimeType(uint time) {
|
|
|
|
return time != -1 ? QDateTime::fromTime_t(time).toString(Qt::ISODate) : "";
|
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
} // namespace mpris
|
2010-12-04 23:27:58 +01:00
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#endif // CORE_MPRIS_COMMON_H_
|