1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 10:57:35 +00:00

AK+FileManager: Move out human_readable_size to AK::NumberFormat

This commit is contained in:
AnotherTest 2020-05-03 09:00:09 +04:30 committed by Andreas Kling
parent 6fcb6baa69
commit c6825a96c7
2 changed files with 56 additions and 20 deletions

View file

@ -26,6 +26,7 @@
#include "DirectoryView.h"
#include <AK/FileSystemPath.h>
#include <AK/NumberFormat.h>
#include <AK/StringBuilder.h>
#include <AK/URL.h>
#include <LibCore/DesktopServices.h>
@ -33,24 +34,6 @@
#include <stdio.h>
#include <unistd.h>
// FIXME: Remove this hackery once printf() supports floats.
static String number_string_with_one_decimal(float number, const char* suffix)
{
float decimals = number - (int)number;
return String::format("%d.%d %s", (int)number, (int)(decimals * 10), suffix);
}
static String human_readable_size(size_t size)
{
if (size < 1 * KB)
return String::format("%zu bytes", size);
if (size < 1 * MB)
return number_string_with_one_decimal((float)size / (float)KB, "KB");
if (size < 1 * GB)
return number_string_with_one_decimal((float)size / (float)MB, "MB");
return number_string_with_one_decimal((float)size / (float)GB, "GB");
}
void DirectoryView::handle_activation(const GUI::ModelIndex& index)
{
if (!index.is_valid())
@ -98,9 +81,9 @@ DirectoryView::DirectoryView()
open(m_path_history.at(m_path_history_position));
else
quit = true;
if (on_error)
on_error(error, error_string, quit);
on_error(error, error_string, quit);
};
m_model->on_complete = [this] {