|
| 1 | +// Copyright 2016 the V8 project authors. All rights reserved. |
| 2 | +// Use of this source code is governed by a BSD-style license that can be |
| 3 | +// found in the LICENSE file. |
| 4 | + |
| 5 | +#include "tracing/traced_value.h" |
| 6 | + |
| 7 | +#include <math.h> |
| 8 | +#include <sstream> |
| 9 | +#include <stdio.h> |
| 10 | +#include <string> |
| 11 | + |
| 12 | +#if defined(NODE_HAVE_I18N_SUPPORT) |
| 13 | +#include <unicode/utf8.h> |
| 14 | +#include <unicode/utypes.h> |
| 15 | +#endif |
| 16 | + |
| 17 | +#if defined(_STLP_VENDOR_CSTD) |
| 18 | +// STLPort doesn't import fpclassify into the std namespace. |
| 19 | +#define FPCLASSIFY_NAMESPACE |
| 20 | +#else |
| 21 | +#define FPCLASSIFY_NAMESPACE std |
| 22 | +#endif |
| 23 | + |
| 24 | +namespace node { |
| 25 | +namespace tracing { |
| 26 | + |
| 27 | +namespace { |
| 28 | + |
| 29 | +std::string EscapeString(const char* value) { |
| 30 | + std::string result; |
| 31 | + result += '"'; |
| 32 | + char number_buffer[10]; |
| 33 | +#if defined(NODE_HAVE_I18N_SUPPORT) |
| 34 | + int32_t len = strlen(value); |
| 35 | + int32_t p = 0; |
| 36 | + int32_t i = 0; |
| 37 | + for (; i < len; p = i) { |
| 38 | + UChar32 c; |
| 39 | + U8_NEXT_OR_FFFD(value, i, len, c); |
| 40 | + switch (c) { |
| 41 | + case '\b': result += "\\b"; break; |
| 42 | + case '\f': result += "\\f"; break; |
| 43 | + case '\n': result += "\\n"; break; |
| 44 | + case '\r': result += "\\r"; break; |
| 45 | + case '\t': result += "\\t"; break; |
| 46 | + case '\\': result += "\\\\"; break; |
| 47 | + case '"': result += "\\\""; break; |
| 48 | + default: |
| 49 | + if (c < 32 || c > 126) { |
| 50 | + snprintf( |
| 51 | + number_buffer, arraysize(number_buffer), "\\u%04X", |
| 52 | + static_cast<uint16_t>(static_cast<uint16_t>(c))); |
| 53 | + result += number_buffer; |
| 54 | + } else { |
| 55 | + result.append(value + p, i - p); |
| 56 | + } |
| 57 | + } |
| 58 | + } |
| 59 | +#else |
| 60 | + // If we do not have ICU, use a modified version of the non-UTF8 aware |
| 61 | + // code from V8's own TracedValue implementation. Note, however, This |
| 62 | + // will not produce correctly serialized results for UTF8 values. |
| 63 | + while (*value) { |
| 64 | + char c = *value++; |
| 65 | + switch (c) { |
| 66 | + case '\b': result += "\\b"; break; |
| 67 | + case '\f': result += "\\f"; break; |
| 68 | + case '\n': result += "\\n"; break; |
| 69 | + case '\r': result += "\\r"; break; |
| 70 | + case '\t': result += "\\t"; break; |
| 71 | + case '\\': result += "\\\\"; break; |
| 72 | + case '"': result += "\\\""; break; |
| 73 | + default: |
| 74 | + if (c < '\x20') { |
| 75 | + snprintf( |
| 76 | + number_buffer, arraysize(number_buffer), "\\u%04X", |
| 77 | + static_cast<unsigned>(static_cast<unsigned char>(c))); |
| 78 | + result += number_buffer; |
| 79 | + } else { |
| 80 | + result += c; |
| 81 | + } |
| 82 | + } |
| 83 | + } |
| 84 | +#endif // defined(NODE_HAVE_I18N_SUPPORT) |
| 85 | + result += '"'; |
| 86 | + return result; |
| 87 | +} |
| 88 | + |
| 89 | +std::string DoubleToCString(double v) { |
| 90 | + switch (FPCLASSIFY_NAMESPACE::fpclassify(v)) { |
| 91 | + case FP_NAN: return "\"NaN\""; |
| 92 | + case FP_INFINITE: return (v < 0.0 ? "\"-Infinity\"" : "\"Infinity\""); |
| 93 | + case FP_ZERO: return "0"; |
| 94 | + default: |
| 95 | + // This is a far less sophisticated version than the one used inside v8. |
| 96 | + std::ostringstream stream; |
| 97 | + stream.imbue(std::locale("C")); // Ignore locale |
| 98 | + stream << v; |
| 99 | + return stream.str(); |
| 100 | + } |
| 101 | +} |
| 102 | + |
| 103 | +} // namespace |
| 104 | + |
| 105 | +std::unique_ptr<TracedValue> TracedValue::Create() { |
| 106 | + return std::unique_ptr<TracedValue>(new TracedValue(false)); |
| 107 | +} |
| 108 | + |
| 109 | +std::unique_ptr<TracedValue> TracedValue::CreateArray() { |
| 110 | + return std::unique_ptr<TracedValue>(new TracedValue(true)); |
| 111 | +} |
| 112 | + |
| 113 | +TracedValue::TracedValue(bool root_is_array) : |
| 114 | + first_item_(true), root_is_array_(root_is_array) {} |
| 115 | + |
| 116 | +TracedValue::~TracedValue() {} |
| 117 | + |
| 118 | +void TracedValue::SetInteger(const char* name, int value) { |
| 119 | + WriteName(name); |
| 120 | + data_ += std::to_string(value); |
| 121 | +} |
| 122 | + |
| 123 | +void TracedValue::SetDouble(const char* name, double value) { |
| 124 | + WriteName(name); |
| 125 | + data_ += DoubleToCString(value); |
| 126 | +} |
| 127 | + |
| 128 | +void TracedValue::SetBoolean(const char* name, bool value) { |
| 129 | + WriteName(name); |
| 130 | + data_ += value ? "true" : "false"; |
| 131 | +} |
| 132 | + |
| 133 | +void TracedValue::SetNull(const char* name) { |
| 134 | + WriteName(name); |
| 135 | + data_ += "null"; |
| 136 | +} |
| 137 | + |
| 138 | +void TracedValue::SetString(const char* name, const char* value) { |
| 139 | + WriteName(name); |
| 140 | + data_ += EscapeString(value); |
| 141 | +} |
| 142 | + |
| 143 | +void TracedValue::BeginDictionary(const char* name) { |
| 144 | + WriteName(name); |
| 145 | + data_ += '{'; |
| 146 | + first_item_ = true; |
| 147 | +} |
| 148 | + |
| 149 | +void TracedValue::BeginArray(const char* name) { |
| 150 | + WriteName(name); |
| 151 | + data_ += '['; |
| 152 | + first_item_ = true; |
| 153 | +} |
| 154 | + |
| 155 | +void TracedValue::AppendInteger(int value) { |
| 156 | + WriteComma(); |
| 157 | + data_ += std::to_string(value); |
| 158 | +} |
| 159 | + |
| 160 | +void TracedValue::AppendDouble(double value) { |
| 161 | + WriteComma(); |
| 162 | + data_ += DoubleToCString(value); |
| 163 | +} |
| 164 | + |
| 165 | +void TracedValue::AppendBoolean(bool value) { |
| 166 | + WriteComma(); |
| 167 | + data_ += value ? "true" : "false"; |
| 168 | +} |
| 169 | + |
| 170 | +void TracedValue::AppendNull() { |
| 171 | + WriteComma(); |
| 172 | + data_ += "null"; |
| 173 | +} |
| 174 | + |
| 175 | +void TracedValue::AppendString(const char* value) { |
| 176 | + WriteComma(); |
| 177 | + data_ += EscapeString(value); |
| 178 | +} |
| 179 | + |
| 180 | +void TracedValue::BeginDictionary() { |
| 181 | + WriteComma(); |
| 182 | + data_ += '{'; |
| 183 | + first_item_ = true; |
| 184 | +} |
| 185 | + |
| 186 | +void TracedValue::BeginArray() { |
| 187 | + WriteComma(); |
| 188 | + data_ += '['; |
| 189 | + first_item_ = true; |
| 190 | +} |
| 191 | + |
| 192 | +void TracedValue::EndDictionary() { |
| 193 | + data_ += '}'; |
| 194 | + first_item_ = false; |
| 195 | +} |
| 196 | + |
| 197 | +void TracedValue::EndArray() { |
| 198 | + data_ += ']'; |
| 199 | + first_item_ = false; |
| 200 | +} |
| 201 | + |
| 202 | +void TracedValue::WriteComma() { |
| 203 | + if (first_item_) { |
| 204 | + first_item_ = false; |
| 205 | + } else { |
| 206 | + data_ += ','; |
| 207 | + } |
| 208 | +} |
| 209 | + |
| 210 | +void TracedValue::WriteName(const char* name) { |
| 211 | + WriteComma(); |
| 212 | + data_ += '"'; |
| 213 | + data_ += name; |
| 214 | + data_ += "\":"; |
| 215 | +} |
| 216 | + |
| 217 | +void TracedValue::AppendAsTraceFormat(std::string* out) const { |
| 218 | + *out += root_is_array_ ? '[' : '{'; |
| 219 | + *out += data_; |
| 220 | + *out += root_is_array_ ? ']' : '}'; |
| 221 | +} |
| 222 | + |
| 223 | +} // namespace tracing |
| 224 | +} // namespace node |
0 commit comments