File: bignum_format_kind.md

package info (click to toggle)
jsoncons 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,584 kB
  • sloc: cpp: 136,382; sh: 33; makefile: 5
file content (95 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
### jsoncons::bignum_format_kind 

```cpp
#include <jsoncons/json_options.hpp>

enum class bignum_format_kind : uint8_t {raw, 
    number=raw,   (deprecated) 
    base10, 
    base64, 
    base64url};
```

Specifies `bignum` formatting. 

### Examples

#### Initializing with bigint


```cpp
#include <jsoncons/json.hpp>

using namespace jsoncons;

int main()
{
    std::string s = "-18446744073709551617";

    json j(bigint::from_string(s.c_str()));

    std::cout << "(1) " << print(j) << "\n\n";

    auto options2 = json_options{}
        .bignum_format(bignum_format_kind::raw);
    std::cout << "(2) " << print(j, options2) << "\n\n";

    auto options3 = json_options{}
        .bignum_format(bignum_format_kind::base64);
    std::cout << "(3) " << print(j, options3) << "\n\n";

    auto options4 = json_options{}
    .bignum_format(bignum_format_kind::base64url);
    std::cout << "(4) " << print(j, options4) << "\n\n";
}
```
Output:
```
(1) -18446744073709551617

(2) -18446744073709551617

(3) "~AQAAAAAAAAAA"

(4) "~AQAAAAAAAAAA"
```

#### Integer overflow during parsing

```cpp
#include <jsoncons/json.hpp>

using namespace jsoncons;

int main()
{
    std::string s = "-18446744073709551617";

    json j = json::parse(s);

    std::cout << "(1) " << print(j) << "\n\n";

    auto options2 = json_options{}
        .bignum_format(bignum_format_kind::raw);
    std::cout << "(2) " << print(j, options2) << "\n\n";

    auto options3 = json_options{}
        .bignum_format(bignum_format_kind::base64);
    std::cout << "(3) " << print(j, options3) << "\n\n";

    auto options4 = json_options{}
        .bignum_format(bignum_format_kind::base64url);
    std::cout << "(4) " << print(j, options4) << "\n\n";
}
```
Output:
```
(1) -18446744073709551617

(2) -18446744073709551617

(3) "~AQAAAAAAAAAA"

(4) "~AQAAAAAAAAAA"
```