Branch data Line data Source code
1 : : // Copyright 2014 BitPay Inc.
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or https://opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <univalue.h>
6 : : #include <univalue_escapes.h>
7 : :
8 : : #include <memory>
9 : : #include <string>
10 : : #include <vector>
11 : :
12 : 5702957 : static std::string json_escape(const std::string& inS)
13 : : {
14 [ + - ]: 5702957 : std::string outS;
15 [ + - ]: 5702957 : outS.reserve(inS.size() * 2);
16 : :
17 [ + + ]: 792958024 : for (unsigned int i = 0; i < inS.size(); i++) {
18 [ + + ]: 787255067 : unsigned char ch = static_cast<unsigned char>(inS[i]);
19 : 787255067 : const char *escStr = escapes[ch];
20 : :
21 [ + + ]: 787255067 : if (escStr)
22 [ + - ]: 24608 : outS += escStr;
23 : : else
24 [ + - ]: 1574485526 : outS += static_cast<char>(ch);
25 : : }
26 : :
27 : 5702957 : return outS;
28 : 0 : }
29 : :
30 : : // NOLINTNEXTLINE(misc-no-recursion)
31 : 4826893 : std::string UniValue::write(unsigned int prettyIndent,
32 : : unsigned int indentLevel) const
33 : : {
34 [ + - ]: 4826893 : std::string s;
35 [ + - ]: 4826893 : s.reserve(1024);
36 : :
37 : 4826893 : unsigned int modIndent = indentLevel;
38 [ + + ]: 4826893 : if (modIndent == 0)
39 : 209511 : modIndent = 1;
40 : :
41 [ + + + + : 4826893 : switch (typ) {
+ + - ]
42 : 10788 : case VNULL:
43 [ + - ]: 10788 : s += "null";
44 : : break;
45 : 592461 : case VOBJ:
46 [ + - ]: 592461 : writeObject(prettyIndent, modIndent, s);
47 : : break;
48 : 191944 : case VARR:
49 [ + - ]: 191944 : writeArray(prettyIndent, modIndent, s);
50 : : break;
51 : 1754847 : case VSTR:
52 [ + - + - : 5264541 : s += "\"" + json_escape(val) + "\"";
+ - ]
53 : 1754847 : break;
54 : 1860987 : case VNUM:
55 [ + - ]: 1860987 : s += val;
56 : : break;
57 : 415866 : case VBOOL:
58 [ + + ]: 5242759 : s += (val == "1" ? "true" : "false");
59 : : break;
60 : : }
61 : :
62 : 4826893 : return s;
63 : 0 : }
64 : :
65 : 18435 : static void indentStr(unsigned int prettyIndent, unsigned int indentLevel, std::string& s)
66 : : {
67 : 18435 : s.append(prettyIndent * indentLevel, ' ');
68 : 18435 : }
69 : :
70 : : // NOLINTNEXTLINE(misc-no-recursion)
71 : 191944 : void UniValue::writeArray(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) const
72 : : {
73 : 191944 : s += "[";
74 [ + + ]: 191944 : if (prettyIndent)
75 : 2729 : s += "\n";
76 : :
77 [ + + ]: 859357 : for (unsigned int i = 0; i < values.size(); i++) {
78 [ + + ]: 667413 : if (prettyIndent)
79 : 7498 : indentStr(prettyIndent, indentLevel, s);
80 [ + - ]: 1334826 : s += values[i].write(prettyIndent, indentLevel + 1);
81 [ + + ]: 667413 : if (i != (values.size() - 1)) {
82 : 518485 : s += ",";
83 : : }
84 [ + + ]: 667413 : if (prettyIndent)
85 : 7498 : s += "\n";
86 : : }
87 : :
88 [ + + ]: 191944 : if (prettyIndent)
89 : 2729 : indentStr(prettyIndent, indentLevel - 1, s);
90 : 191944 : s += "]";
91 : 191944 : }
92 : :
93 : : // NOLINTNEXTLINE(misc-no-recursion)
94 : 592461 : void UniValue::writeObject(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) const
95 : : {
96 : 592461 : s += "{";
97 [ + + ]: 592461 : if (prettyIndent)
98 : 2473 : s += "\n";
99 : :
100 [ + + ]: 4540571 : for (unsigned int i = 0; i < keys.size(); i++) {
101 [ + + ]: 3948110 : if (prettyIndent)
102 : 5735 : indentStr(prettyIndent, indentLevel, s);
103 [ + - + - ]: 11844330 : s += "\"" + json_escape(keys[i]) + "\":";
104 [ + + ]: 3948110 : if (prettyIndent)
105 : 5735 : s += " ";
106 [ + - ]: 7896220 : s += values.at(i).write(prettyIndent, indentLevel + 1);
107 [ + + ]: 3948110 : if (i != (values.size() - 1))
108 : 3362898 : s += ",";
109 [ + + ]: 3948110 : if (prettyIndent)
110 : 5735 : s += "\n";
111 : : }
112 : :
113 [ + + ]: 592461 : if (prettyIndent)
114 : 2473 : indentStr(prettyIndent, indentLevel - 1, s);
115 : 592461 : s += "}";
116 : 592461 : }
117 : :
|