LCOV - code coverage report
Current view: top level - src/univalue/lib - univalue_write.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 97.2 % 71 69
Test Date: 2025-01-22 04:09:46 Functions: 100.0 % 5 5
Branches: 76.6 % 77 59

             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                 :     4883175 : static std::string json_escape(const std::string& inS)
      13                 :             : {
      14         [ +  - ]:     4883175 :     std::string outS;
      15         [ +  - ]:     4883175 :     outS.reserve(inS.size() * 2);
      16                 :             : 
      17         [ +  + ]:    89268979 :     for (unsigned int i = 0; i < inS.size(); i++) {
      18         [ +  + ]:    84385804 :         unsigned char ch = static_cast<unsigned char>(inS[i]);
      19                 :    84385804 :         const char *escStr = escapes[ch];
      20                 :             : 
      21         [ +  + ]:    84385804 :         if (escStr)
      22         [ +  - ]:      167623 :             outS += escStr;
      23                 :             :         else
      24         [ +  - ]:   168603985 :             outS += static_cast<char>(ch);
      25                 :             :     }
      26                 :             : 
      27                 :     4883175 :     return outS;
      28                 :           0 : }
      29                 :             : 
      30                 :             : // NOLINTNEXTLINE(misc-no-recursion)
      31                 :     5708951 : std::string UniValue::write(unsigned int prettyIndent,
      32                 :             :                             unsigned int indentLevel) const
      33                 :             : {
      34         [ +  - ]:     5708951 :     std::string s;
      35         [ +  - ]:     5708951 :     s.reserve(1024);
      36                 :             : 
      37                 :     5708951 :     unsigned int modIndent = indentLevel;
      38         [ +  + ]:     5708951 :     if (modIndent == 0)
      39                 :       10714 :         modIndent = 1;
      40                 :             : 
      41   [ +  +  +  +  :     5708951 :     switch (typ) {
                +  +  - ]
      42                 :        6939 :     case VNULL:
      43         [ +  - ]:        6939 :         s += "null";
      44                 :             :         break;
      45                 :      955239 :     case VOBJ:
      46         [ +  - ]:      955239 :         writeObject(prettyIndent, modIndent, s);
      47                 :             :         break;
      48                 :      178098 :     case VARR:
      49         [ +  - ]:      178098 :         writeArray(prettyIndent, modIndent, s);
      50                 :             :         break;
      51                 :      971580 :     case VSTR:
      52   [ +  -  +  -  :     2914740 :         s += "\"" + json_escape(val) + "\"";
                   +  - ]
      53                 :      971580 :         break;
      54                 :     3595477 :     case VNUM:
      55         [ +  - ]:     3595477 :         s += val;
      56                 :             :         break;
      57                 :        1618 :     case VBOOL:
      58         [ +  + ]:     5710569 :         s += (val == "1" ? "true" : "false");
      59                 :             :         break;
      60                 :             :     }
      61                 :             : 
      62                 :     5708951 :     return s;
      63                 :           0 : }
      64                 :             : 
      65                 :     5645294 : static void indentStr(unsigned int prettyIndent, unsigned int indentLevel, std::string& s)
      66                 :             : {
      67                 :     5645294 :     s.append(prettyIndent * indentLevel, ' ');
      68                 :     5645294 : }
      69                 :             : 
      70                 :             : // NOLINTNEXTLINE(misc-no-recursion)
      71                 :      178098 : void UniValue::writeArray(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) const
      72                 :             : {
      73                 :      178098 :     s += "[";
      74         [ +  + ]:      178098 :     if (prettyIndent)
      75                 :       21798 :         s += "\n";
      76                 :             : 
      77         [ +  + ]:     1942942 :     for (unsigned int i = 0; i < values.size(); i++) {
      78         [ +  + ]:     1764844 :         if (prettyIndent)
      79                 :      926329 :             indentStr(prettyIndent, indentLevel, s);
      80         [ +  - ]:     3529688 :         s += values[i].write(prettyIndent, indentLevel + 1);
      81         [ +  + ]:     1764844 :         if (i != (values.size() - 1)) {
      82                 :     1740002 :             s += ",";
      83                 :             :         }
      84         [ +  + ]:     1764844 :         if (prettyIndent)
      85                 :      926329 :             s += "\n";
      86                 :             :     }
      87                 :             : 
      88         [ +  + ]:      178098 :     if (prettyIndent)
      89                 :       21798 :         indentStr(prettyIndent, indentLevel - 1, s);
      90                 :      178098 :     s += "]";
      91                 :      178098 : }
      92                 :             : 
      93                 :             : // NOLINTNEXTLINE(misc-no-recursion)
      94                 :      955239 : void UniValue::writeObject(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) const
      95                 :             : {
      96                 :      955239 :     s += "{";
      97         [ +  + ]:      955239 :     if (prettyIndent)
      98                 :      948178 :         s += "\n";
      99                 :             : 
     100         [ +  + ]:     4866834 :     for (unsigned int i = 0; i < keys.size(); i++) {
     101         [ +  + ]:     3911595 :         if (prettyIndent)
     102                 :     3748989 :             indentStr(prettyIndent, indentLevel, s);
     103   [ +  -  +  - ]:    11734785 :         s += "\"" + json_escape(keys[i]) + "\":";
     104         [ +  + ]:     3911595 :         if (prettyIndent)
     105                 :     3748989 :             s += " ";
     106         [ +  - ]:     7823190 :         s += values.at(i).write(prettyIndent, indentLevel + 1);
     107         [ +  + ]:     3911595 :         if (i != (values.size() - 1))
     108                 :     2962149 :             s += ",";
     109         [ +  + ]:     3911595 :         if (prettyIndent)
     110                 :     3748989 :             s += "\n";
     111                 :             :     }
     112                 :             : 
     113         [ +  + ]:      955239 :     if (prettyIndent)
     114                 :      948178 :         indentStr(prettyIndent, indentLevel - 1, s);
     115                 :      955239 :     s += "}";
     116                 :      955239 : }
     117                 :             : 
        

Generated by: LCOV version 2.0-1