2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +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/>.
|
|
|
|
*/
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#ifndef UTILITIES_H
|
|
|
|
#define UTILITIES_H
|
2010-03-23 15:07:05 +01:00
|
|
|
|
2010-10-25 01:46:05 +02:00
|
|
|
#include <QColor>
|
2010-10-17 22:53:15 +02:00
|
|
|
#include <QLocale>
|
2011-09-01 23:45:47 +02:00
|
|
|
#include <QCryptographicHash>
|
2011-07-26 14:02:59 +02:00
|
|
|
#include <QSize>
|
2010-05-10 23:50:31 +02:00
|
|
|
#include <QString>
|
2011-10-26 14:54:24 +02:00
|
|
|
#include <QUrl>
|
2010-03-23 15:07:05 +01:00
|
|
|
|
2010-08-23 21:13:27 +02:00
|
|
|
#include <boost/scoped_array.hpp>
|
|
|
|
|
2010-08-10 21:42:43 +02:00
|
|
|
class QIODevice;
|
2011-10-15 21:48:48 +02:00
|
|
|
class QMouseEvent;
|
2012-01-07 22:51:02 +01:00
|
|
|
class QXmlStreamReader;
|
2012-01-20 00:33:16 +01:00
|
|
|
struct QMetaObject;
|
2010-08-10 21:42:43 +02:00
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
namespace Utilities {
|
|
|
|
QString PrettyTime(int seconds);
|
2011-02-21 21:59:30 +01:00
|
|
|
QString PrettyTimeDelta(int seconds);
|
2011-02-13 19:34:30 +01:00
|
|
|
QString PrettyTimeNanosec(qint64 nanoseconds);
|
2010-07-03 23:05:55 +02:00
|
|
|
QString PrettySize(quint64 bytes);
|
2011-07-26 14:02:59 +02:00
|
|
|
QString PrettySize(const QSize& size);
|
2010-06-12 23:20:53 +02:00
|
|
|
QString WordyTime(quint64 seconds);
|
2011-02-13 19:34:30 +01:00
|
|
|
QString WordyTimeNanosec(qint64 nanoseconds);
|
2010-10-17 22:53:15 +02:00
|
|
|
QString Ago(int seconds_since_epoch, const QLocale& locale);
|
2010-07-30 00:16:12 +02:00
|
|
|
|
2010-10-25 01:46:05 +02:00
|
|
|
QString ColorToRgba(const QColor& color);
|
|
|
|
|
2010-07-30 00:16:12 +02:00
|
|
|
quint64 FileSystemCapacity(const QString& path);
|
|
|
|
quint64 FileSystemFreeSpace(const QString& path);
|
2010-08-01 16:13:27 +02:00
|
|
|
|
2011-01-28 22:43:10 +01:00
|
|
|
QString MakeTempDir(const QString template_name = QString());
|
2010-08-01 16:13:27 +02:00
|
|
|
void RemoveRecursive(const QString& path);
|
2011-01-19 00:10:22 +01:00
|
|
|
bool CopyRecursive(const QString& source, const QString& destination);
|
2010-08-10 21:42:43 +02:00
|
|
|
bool Copy(QIODevice* source, QIODevice* destination);
|
2010-12-09 13:34:08 +01:00
|
|
|
|
2011-10-26 14:54:24 +02:00
|
|
|
void OpenInFileBrowser(const QList<QUrl>& filenames);
|
2011-03-17 20:52:21 +01:00
|
|
|
|
2011-09-01 23:45:47 +02:00
|
|
|
enum HashFunction {
|
|
|
|
Md5_Algo,
|
|
|
|
Sha256_Algo,
|
|
|
|
};
|
|
|
|
QByteArray Hmac(const QByteArray& key, const QByteArray& data, HashFunction algo);
|
|
|
|
QByteArray HmacMd5(const QByteArray& key, const QByteArray& data);
|
2011-07-23 20:33:00 +02:00
|
|
|
QByteArray HmacSha256(const QByteArray& key, const QByteArray& data);
|
|
|
|
QByteArray Sha256(const QByteArray& data);
|
|
|
|
|
2010-12-09 13:34:08 +01:00
|
|
|
|
2011-11-28 19:11:09 +01:00
|
|
|
// Picks an unused ephemeral port number. Doesn't hold the port open so
|
|
|
|
// there's the obvious race condition
|
|
|
|
quint16 PickUnusedPort();
|
|
|
|
|
|
|
|
|
2011-10-15 21:48:48 +02:00
|
|
|
// Forwards a mouse event to a different widget, remapping the event's widget
|
|
|
|
// coordinates relative to those of the target widget.
|
|
|
|
void ForwardMouseEvent(const QMouseEvent* e, QWidget* target);
|
|
|
|
|
|
|
|
// Checks if the mouse event was inside the widget's rectangle.
|
|
|
|
bool IsMouseEventInWidget(const QMouseEvent* e, const QWidget* widget);
|
|
|
|
|
2012-01-07 22:51:02 +01:00
|
|
|
// Reads all children of the current element, and returns with the stream
|
|
|
|
// reader either on the EndElement for the current element, or the end of the
|
|
|
|
// file - whichever came first.
|
|
|
|
void ConsumeCurrentElement(QXmlStreamReader* reader);
|
|
|
|
|
2012-03-04 21:47:58 +01:00
|
|
|
// Advances the stream reader until it finds an element with the given name.
|
|
|
|
// Returns false if the end of the document was reached before finding a
|
|
|
|
// matching element.
|
|
|
|
bool ParseUntilElement(QXmlStreamReader* reader, const QString& name);
|
|
|
|
|
|
|
|
// Parses a string containing an RFC822 time and date.
|
|
|
|
QDateTime ParseRFC822DateTime(const QString& text);
|
|
|
|
|
2012-03-05 19:15:45 +01:00
|
|
|
// Replaces some HTML entities with their normal characters.
|
|
|
|
QString DecodeHtmlEntities(const QString& text);
|
|
|
|
|
2012-01-16 15:22:30 +01:00
|
|
|
// Shortcut for getting a Qt-aware enum value as a string.
|
|
|
|
// Pass in the QMetaObject of the class that owns the enum, the string name of
|
|
|
|
// the enum and a valid value from that enum.
|
|
|
|
const char* EnumToString(const QMetaObject& meta, const char* name, int value);
|
|
|
|
|
2012-03-04 21:47:58 +01:00
|
|
|
QStringList Prepend(const QString& text, const QStringList& list);
|
|
|
|
QStringList Updateify(const QStringList& list);
|
|
|
|
|
2012-01-07 22:51:02 +01:00
|
|
|
|
2010-12-09 13:34:08 +01:00
|
|
|
enum ConfigPath {
|
2010-12-09 14:06:00 +01:00
|
|
|
Path_Root,
|
|
|
|
Path_AlbumCovers,
|
|
|
|
Path_NetworkCache,
|
|
|
|
Path_GstreamerRegistry,
|
2010-12-14 16:00:46 +01:00
|
|
|
Path_DefaultMusicLibrary,
|
2011-04-29 21:44:51 +02:00
|
|
|
Path_LocalSpotifyBlob,
|
2010-12-09 13:34:08 +01:00
|
|
|
};
|
|
|
|
QString GetConfigPath(ConfigPath config);
|
2011-11-09 13:59:25 +01:00
|
|
|
|
|
|
|
// Returns the minor version of OS X (ie. 6 for Snow Leopard, 7 for Lion).
|
|
|
|
qint32 GetMacVersion();
|
2012-02-26 16:05:46 +01:00
|
|
|
|
|
|
|
// Borrowed from schedutils
|
|
|
|
enum IoPriority {
|
|
|
|
IOPRIO_CLASS_NONE = 0,
|
|
|
|
IOPRIO_CLASS_RT,
|
|
|
|
IOPRIO_CLASS_BE,
|
|
|
|
IOPRIO_CLASS_IDLE,
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
IOPRIO_WHO_PROCESS = 1,
|
|
|
|
IOPRIO_WHO_PGRP,
|
|
|
|
IOPRIO_WHO_USER,
|
|
|
|
};
|
|
|
|
static const int IOPRIO_CLASS_SHIFT = 13;
|
|
|
|
|
|
|
|
int SetThreadIOPriority(IoPriority priority);
|
|
|
|
int GetThreadId();
|
2012-03-09 16:25:49 +01:00
|
|
|
|
|
|
|
// Returns true if this machine has a battery.
|
|
|
|
bool IsLaptop();
|
2010-05-10 23:50:31 +02:00
|
|
|
}
|
|
|
|
|
2010-08-23 21:13:27 +02:00
|
|
|
class ScopedWCharArray {
|
|
|
|
public:
|
|
|
|
ScopedWCharArray(const QString& str);
|
|
|
|
|
|
|
|
QString ToString() const { return QString::fromWCharArray(data_.get()); }
|
|
|
|
|
|
|
|
wchar_t* get() const { return data_.get(); }
|
|
|
|
operator wchar_t*() const { return get(); }
|
|
|
|
|
|
|
|
int characters() const { return chars_; }
|
2010-08-28 15:52:29 +02:00
|
|
|
int bytes() const { return (chars_ + 1) * sizeof(wchar_t); }
|
2010-08-23 21:13:27 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(ScopedWCharArray);
|
|
|
|
|
|
|
|
int chars_;
|
|
|
|
boost::scoped_array<wchar_t> data_;
|
|
|
|
};
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#endif // UTILITIES_H
|