aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Real.cc
blob: 396ea25fb58ff2ac703ff71facb2c3095e0828f9 (plain) (blame)
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
#include <qpdf/QPDF_Real.hh>

#include <qpdf/QUtil.hh>

QPDF_Real::QPDF_Real(std::string const& val) :
    val(val)
{
}

QPDF_Real::QPDF_Real(double value, int decimal_places) :
    val(QUtil::double_to_string(value, decimal_places))
{
}

QPDF_Real::~QPDF_Real()
{
}

std::string
QPDF_Real::unparse()
{
    return this->val;
}

JSON
QPDF_Real::getJSON()
{
    // While PDF allows .x or -.x, JSON does not. Rather than
    // converting from string to double and back, just handle this as a
    // special case for JSON.
    std::string result;
    if (this->val.length() == 0)
    {
        // Can't really happen...
        result = "0";
    }
    else if (this->val.at(0) == '.')
    {
        result = "0" + this->val;
    }
    else if ((this->val.length() >= 2) &&
             (this->val.at(0) == '-') &&
             (this->val.at(1) == '.'))
    {
        result = "-0." + this->val.substr(2);
    }
    else
    {
        result = this->val;
    }
    return JSON::makeNumber(result);
}

QPDFObject::object_type_e
QPDF_Real::getTypeCode() const
{
    return QPDFObject::ot_real;
}

char const*
QPDF_Real::getTypeName() const
{
    return "real";
}

std::string
QPDF_Real::getVal()
{
    return this->val;
}