Coverage Report

Created: 2023-09-25 07:18

/src/json_proto_converter.cc
Line
Count
Source (jump to first uncovered line)
1
// Copyright 2020 Google Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
//
15
////////////////////////////////////////////////////////////////////////////////
16
17
#include "json_proto_converter.h"
18
19
namespace json_proto {
20
21
795
void JsonProtoConverter::AppendArray(const ArrayValue& array_value) {
22
795
  data_ << '[';
23
795
  bool need_comma = false;
24
5.10k
  for (const auto& value : array_value.value()) {
25
    // Trailing comma inside of an array makes JSON invalid, avoid adding that.
26
5.10k
    if (need_comma)
27
4.69k
      data_ << ',';
28
412
    else
29
412
      need_comma = true;
30
31
5.10k
    AppendValue(value);
32
5.10k
  }
33
795
  data_ << ']';
34
795
}
35
36
1.55k
void JsonProtoConverter::AppendNumber(const NumberValue& number_value) {
37
1.55k
  if (number_value.has_float_value()) {
38
409
    data_ << number_value.float_value().value();
39
1.14k
  } else if (number_value.has_exponent_value()) {
40
445
    auto value = number_value.exponent_value();
41
445
    data_ << value.base();
42
445
    data_ << (value.use_uppercase() ? 'E' : 'e');
43
445
    data_ << value.exponent();
44
698
  } else if (number_value.has_exponent_frac_value()) {
45
231
    auto value = number_value.exponent_value();
46
231
    data_ << value.base();
47
231
    data_ << (value.use_uppercase() ? 'E' : 'e');
48
231
    data_ << value.exponent();
49
467
  } else {
50
467
    data_ << number_value.integer_value().value();
51
467
  }
52
1.55k
}
53
54
3.76k
void JsonProtoConverter::AppendObject(const JsonObject& json_object) {
55
3.76k
  data_ << '{' << '"' << json_object.name() << '"' << ':';
56
3.76k
  AppendValue(json_object.value());
57
3.76k
  data_ << '}';
58
3.76k
}
59
60
8.87k
void JsonProtoConverter::AppendValue(const JsonValue& json_value) {
61
8.87k
  if (json_value.has_object_value()) {
62
748
    AppendObject(json_value.object_value());
63
8.12k
  } else if (json_value.has_array_value()) {
64
795
    AppendArray(json_value.array_value());
65
7.33k
  } else if (json_value.has_number_value()) {
66
1.55k
    AppendNumber(json_value.number_value());
67
5.77k
  } else if (json_value.has_string_value()) {
68
631
    data_ << '"' << json_value.string_value().value() << '"';
69
5.14k
  } else if (json_value.has_boolean_value()) {
70
203
    data_ << (json_value.boolean_value().value() ? "true" : "false");
71
4.94k
  } else {
72
4.94k
    data_ << "null";
73
4.94k
  }
74
8.87k
}
75
76
3.01k
std::string JsonProtoConverter::Convert(const JsonObject& json_object) {
77
3.01k
  AppendObject(json_object);
78
3.01k
  return data_.str();
79
3.01k
}
80
81
std::string JsonProtoConverter::Convert(
82
0
    const json_proto::ArrayValue& json_array) {
83
0
  AppendArray(json_array);
84
0
  return data_.str();
85
0
}
86
87
}  // namespace json_proto