2020-05-03 07:30:09 +03:00
|
|
|
/*
|
2021-04-28 23:46:44 +03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-05-03 07:30:09 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-03 07:30:09 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-08-15 21:05:46 +03:00
|
|
|
// FIXME: Remove this hackery once printf() supports floats.
|
2021-03-17 20:34:13 +03:00
|
|
|
static String number_string_with_one_decimal(u64 number, u64 unit, const char* suffix)
|
2020-05-03 07:30:09 +03:00
|
|
|
{
|
2020-08-23 01:35:36 +03:00
|
|
|
int decimal = (number % unit) * 10 / unit;
|
2020-10-07 15:02:42 +03:00
|
|
|
return String::formatted("{}.{} {}", number / unit, decimal, suffix);
|
2020-05-03 07:30:09 +03:00
|
|
|
}
|
|
|
|
|
2021-03-17 20:34:13 +03:00
|
|
|
static inline String human_readable_size(u64 size)
|
2020-05-03 07:30:09 +03:00
|
|
|
{
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
if (size < 1 * KiB)
|
2020-10-07 15:02:42 +03:00
|
|
|
return String::formatted("{} B", size);
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
if (size < 1 * MiB)
|
2020-08-23 01:35:36 +03:00
|
|
|
return number_string_with_one_decimal(size, KiB, "KiB");
|
AK: Rename KB, MB, GB to KiB, MiB, GiB
The SI prefixes "k", "M", "G" mean "10^3", "10^6", "10^9".
The IEC prefixes "Ki", "Mi", "Gi" mean "2^10", "2^20", "2^30".
Let's use the correct name, at least in code.
Only changes the name of the constants, no other behavior change.
2020-08-15 20:55:00 +03:00
|
|
|
if (size < 1 * GiB)
|
2020-08-23 01:35:36 +03:00
|
|
|
return number_string_with_one_decimal(size, MiB, "MiB");
|
2021-03-17 20:34:13 +03:00
|
|
|
if (size < 1 * TiB)
|
|
|
|
return number_string_with_one_decimal(size, GiB, "GiB");
|
|
|
|
if (size < 1 * PiB)
|
|
|
|
return number_string_with_one_decimal(size, TiB, "TiB");
|
|
|
|
if (size < 1 * EiB)
|
|
|
|
return number_string_with_one_decimal(size, PiB, "PiB");
|
|
|
|
return number_string_with_one_decimal(size, EiB, "EiB");
|
2020-05-03 07:30:09 +03:00
|
|
|
}
|
|
|
|
|
2021-03-24 23:06:08 +03:00
|
|
|
static inline String human_readable_size_long(u64 size)
|
|
|
|
{
|
|
|
|
if (size < 1 * KiB)
|
|
|
|
return String::formatted("{} bytes", size);
|
|
|
|
else
|
|
|
|
return String::formatted("{} ({} bytes)", human_readable_size(size), size);
|
|
|
|
}
|
|
|
|
|
2022-01-06 00:19:08 +03:00
|
|
|
static inline String human_readable_time(i64 time_in_seconds)
|
|
|
|
{
|
|
|
|
auto hours = time_in_seconds / 3600;
|
|
|
|
time_in_seconds = time_in_seconds % 3600;
|
|
|
|
|
|
|
|
auto minutes = time_in_seconds / 60;
|
|
|
|
time_in_seconds = time_in_seconds % 60;
|
|
|
|
|
|
|
|
StringBuilder builder;
|
|
|
|
|
|
|
|
if (hours > 0)
|
|
|
|
builder.appendff("{} hour{} ", hours, hours == 1 ? "" : "s");
|
|
|
|
|
|
|
|
if (minutes > 0)
|
|
|
|
builder.appendff("{} minute{} ", minutes, minutes == 1 ? "" : "s");
|
|
|
|
|
|
|
|
builder.appendff("{} second{}", time_in_seconds, time_in_seconds == 1 ? "" : "s");
|
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
2020-05-03 07:30:09 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 21:50:48 +03:00
|
|
|
using AK::human_readable_size;
|
2021-03-24 23:06:08 +03:00
|
|
|
using AK::human_readable_size_long;
|
2022-01-06 00:19:08 +03:00
|
|
|
using AK::human_readable_time;
|