2020-05-03 00:30:09 -04:00
|
|
|
/*
|
2022-12-10 03:52:46 -05:00
|
|
|
* Copyright (c) 2020-2022, the SerenityOS developers.
|
2020-05-03 00:30:09 -04:00
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-03 00:30:09 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-01-24 06:49:55 -05:00
|
|
|
#include <AK/String.h>
|
2024-11-16 12:43:27 -05:00
|
|
|
#include <AK/Time.h>
|
2020-05-03 00:30:09 -04:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2022-12-15 08:31:38 -05:00
|
|
|
enum class HumanReadableBasedOn {
|
|
|
|
Base2,
|
|
|
|
Base10
|
|
|
|
};
|
|
|
|
|
2023-03-06 12:31:50 -05:00
|
|
|
enum class UseThousandsSeparator {
|
|
|
|
Yes,
|
|
|
|
No
|
|
|
|
};
|
|
|
|
|
2024-01-24 07:16:32 -05:00
|
|
|
String human_readable_size(u64 size, HumanReadableBasedOn based_on = HumanReadableBasedOn::Base2, UseThousandsSeparator use_thousands_separator = UseThousandsSeparator::No);
|
|
|
|
String human_readable_quantity(u64 quantity, HumanReadableBasedOn based_on = HumanReadableBasedOn::Base2, StringView unit = "B"sv, UseThousandsSeparator use_thousands_separator = UseThousandsSeparator::No);
|
2022-12-10 04:01:10 -05:00
|
|
|
|
2024-01-24 07:16:32 -05:00
|
|
|
String human_readable_size_long(u64 size, UseThousandsSeparator use_thousands_separator = UseThousandsSeparator::No);
|
2024-11-16 12:43:27 -05:00
|
|
|
String human_readable_time(Duration);
|
2024-01-24 06:49:55 -05:00
|
|
|
String human_readable_digital_time(i64 time_in_seconds);
|
2022-08-04 09:36:18 -04:00
|
|
|
|
2020-05-03 00:30:09 -04:00
|
|
|
}
|
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#if USING_AK_GLOBALLY
|
2022-08-04 09:36:18 -04:00
|
|
|
using AK::human_readable_digital_time;
|
2022-12-10 04:01:10 -05:00
|
|
|
using AK::human_readable_quantity;
|
2020-08-22 14:50:48 -04:00
|
|
|
using AK::human_readable_size;
|
2021-03-24 16:06:08 -04:00
|
|
|
using AK::human_readable_size_long;
|
2022-01-05 16:19:08 -05:00
|
|
|
using AK::human_readable_time;
|
2023-03-06 12:31:50 -05:00
|
|
|
using AK::UseThousandsSeparator;
|
2022-11-26 06:18:30 -05:00
|
|
|
#endif
|