summaryrefslogtreecommitdiffstats
path: root/src/util/format_size.cpp
blob: 58b553a3ccb63cac56381b0cac72a34d76c63aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// SPDX-License-Identifier: GPL-2.0-or-later

#include "format_size.h"
#include <glibmm/ustring.h>
#include <sstream>

namespace Inkscape {
namespace Util {

Glib::ustring format_size(std::size_t value) {
    if (!value) {
        return Glib::ustring("0");
    }

    typedef std::vector<char> Digits;
    typedef std::vector<Digits *> Groups;

    Groups groups;

    Digits *digits;

    while (value) {
        unsigned places=3;
        digits = new Digits();
        digits->reserve(places);

        while ( value && places ) {
            digits->push_back('0' + (char)( value % 10 ));
            value /= 10;
            --places;
        }

        groups.push_back(digits);
    }

    Glib::ustring temp;

    while (true) {
        digits = groups.back();
        while (!digits->empty()) {
            temp.append(1, digits->back());
            digits->pop_back();
        }
        delete digits;

        groups.pop_back();
        if (groups.empty()) {
            break;
        }

        temp.append(",");
    }

    return temp;
}

Glib::ustring format_file_size(std::size_t value) {
    std::ostringstream ost;
    if (value < 1024) {
        ost << value << " B";
    }
    else {
        double size = value;
        int index = 0;
        do {
            size /= 1024;
            ++index;
        } while (size > 1024);

        static const char* unit[] = {"", "k", "M", "G", "T", "P", "E", "Z", "Y"};
        ost.precision(1);
        ost << std::fixed << size << ' ' << unit[index] << 'B';
    }
    return ost.str();
}

}} // namespace