2014-10-25 18:33:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2015-09-20 02:03:12 +00:00
|
|
|
#include <DB/IO/WriteBuffer.h>
|
2014-10-25 18:33:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// Выводит переданный размер в байтах в виде 123.45 GiB.
|
2015-09-20 02:03:12 +00:00
|
|
|
void formatReadableSizeWithBinarySuffix(double value, DB::WriteBuffer & out, int precision = 2);
|
2014-10-25 18:33:52 +00:00
|
|
|
std::string formatReadableSizeWithBinarySuffix(double value, int precision = 2);
|
|
|
|
|
|
|
|
/// Выводит переданный размер в байтах в виде 132.55 GB.
|
2015-09-20 02:03:12 +00:00
|
|
|
void formatReadableSizeWithDecimalSuffix(double value, DB::WriteBuffer & out, int precision = 2);
|
2014-10-25 18:33:52 +00:00
|
|
|
std::string formatReadableSizeWithDecimalSuffix(double value, int precision = 2);
|
|
|
|
|
|
|
|
/// Выводит число в виде 123.45 billion.
|
2015-09-20 02:03:12 +00:00
|
|
|
void formatReadableQuantity(double value, DB::WriteBuffer & out, int precision = 2);
|
2014-10-25 18:33:52 +00:00
|
|
|
std::string formatReadableQuantity(double value, int precision = 2);
|