2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2012-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
#include <array>
|
2015-06-12 22:41:36 +00:00
|
|
|
#include <cstdint> // int64_t
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
#include <QCoreApplication> // Q_DECLARE_TR_FUNCTIONS
|
2010-07-03 00:25:22 +00:00
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
class Speed;
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
class Formatter
|
2010-07-03 00:25:22 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Formatter)
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
2015-06-12 22:12:12 +00:00
|
|
|
enum Size
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
B,
|
|
|
|
KB,
|
|
|
|
MB,
|
|
|
|
GB,
|
2020-06-05 19:02:11 +00:00
|
|
|
TB,
|
|
|
|
|
|
|
|
NUM_SIZES
|
2015-06-12 22:12:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum Type
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
SPEED,
|
|
|
|
SIZE,
|
2020-06-05 19:02:11 +00:00
|
|
|
MEM,
|
|
|
|
|
|
|
|
NUM_TYPES
|
2015-06-12 22:12:12 +00:00
|
|
|
};
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2020-08-15 15:42:51 +00:00
|
|
|
static constexpr int SpeedBase = 1000;
|
|
|
|
static constexpr int SizeBase = 1000;
|
|
|
|
static constexpr int MemBase = 1024;
|
|
|
|
|
|
|
|
static Formatter& get();
|
|
|
|
|
|
|
|
QString memToString(int64_t bytes) const;
|
|
|
|
QString sizeToString(int64_t bytes) const;
|
2020-11-09 03:31:02 +00:00
|
|
|
QString sizeToString(uint64_t bytes) const;
|
2020-08-15 15:42:51 +00:00
|
|
|
QString speedToString(Speed const& speed) const;
|
|
|
|
QString percentToString(double x) const;
|
|
|
|
QString ratioToString(double ratio) const;
|
|
|
|
QString timeToString(int seconds) const;
|
|
|
|
QString uploadSpeedToString(Speed const& up) const;
|
|
|
|
QString downloadSpeedToString(Speed const& down) const;
|
|
|
|
QString unitStr(Type t, Size s) const;
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2020-08-15 15:42:51 +00:00
|
|
|
protected:
|
|
|
|
Formatter();
|
2010-07-07 00:30:42 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private:
|
2020-08-15 15:42:51 +00:00
|
|
|
std::array<std::array<QString, Formatter::NUM_SIZES>, Formatter::NUM_TYPES> const UnitStrings;
|
2010-07-03 00:25:22 +00:00
|
|
|
};
|