Add type formatting helpers

Created the <maxbase/format.hh> header that contains various helper
functions for formatting values into human readable forms. Currently only
binary to human readable size conversion is implemented.
This commit is contained in:
Markus Mäkelä
2018-10-17 13:22:23 +03:00
parent 6045c90bf0
commit 7d03bee648
4 changed files with 104 additions and 20 deletions

View File

@ -1,6 +1,7 @@
add_library(maxbase STATIC
atomic.cc
eventcount.cc
format.cc
log.cc
logger.cc
maxbase.cc

View File

@ -0,0 +1,68 @@
/*
* Copyright (c) 2018 MariaDB Corporation Ab
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
*
* Change Date: 2022-01-01
*
* On the date above, in accordance with the Business Source License, use
* of this software will be governed by version 2 or later of the General
* Public License.
*/
#include <maxbase/format.hh>
#include <cmath>
#include <cstdio>
namespace
{
const char* get_binary_size_suffix(int i)
{
switch (i)
{
case 0:
return "B";
case 1:
return "KiB";
case 2:
return "MiB";
case 3:
return "GiB";
case 4:
return "TiB";
case 5:
return "PiB";
case 6:
return "EiB";
case 7:
return "ZiB";
default:
return "YiB";
}
}
}
namespace maxbase
{
std::string to_binary_size(int64_t size)
{
// Calculate log1024(size) and round it up
int idx = ceil(log(size) / log(1024));
double num = size / pow(1024, idx);
char buf[200]; // Enough for all possible values
snprintf(buf, sizeof(buf), "%.2lf%s", num, get_binary_size_suffix(idx));
return buf;
}
}