2020-05-03 04:30:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, The SerenityOS developers.
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-03 04:30:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-08-15 18:05:46 +00:00
|
|
|
// FIXME: Remove this hackery once printf() supports floats.
|
2021-03-17 17:34:13 +00:00
|
|
|
static String number_string_with_one_decimal(u64 number, u64 unit, const char* suffix)
|
2020-05-03 04:30:09 +00:00
|
|
|
{
|
2020-08-22 22:35:36 +00:00
|
|
|
int decimal = (number % unit) * 10 / unit;
|
2020-10-07 12:02:42 +00:00
|
|
|
return String::formatted("{}.{} {}", number / unit, decimal, suffix);
|
2020-05-03 04:30:09 +00:00
|
|
|
}
|
|
|
|
|
2021-03-17 17:34:13 +00:00
|
|
|
static inline String human_readable_size(u64 size)
|
2020-05-03 04:30:09 +00: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 17:55:00 +00:00
|
|
|
if (size < 1 * KiB)
|
2020-10-07 12:02:42 +00: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 17:55:00 +00:00
|
|
|
if (size < 1 * MiB)
|
2020-08-22 22:35:36 +00: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 17:55:00 +00:00
|
|
|
if (size < 1 * GiB)
|
2020-08-22 22:35:36 +00:00
|
|
|
return number_string_with_one_decimal(size, MiB, "MiB");
|
2021-03-17 17:34:13 +00: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 04:30:09 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 20:06:08 +00: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);
|
|
|
|
}
|
|
|
|
|
2020-05-03 04:30:09 +00:00
|
|
|
}
|
|
|
|
|
2020-08-22 18:50:48 +00:00
|
|
|
using AK::human_readable_size;
|
2021-03-24 20:06:08 +00:00
|
|
|
using AK::human_readable_size_long;
|