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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
//===-- JSONGenerator.h ----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_TOOLS_DEBUGSERVER_SOURCE_JSONGENERATOR_H
#define LLDB_TOOLS_DEBUGSERVER_SOURCE_JSONGENERATOR_H
#include <iomanip>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
/// \class JSONGenerator JSONGenerator.h
/// A class which can construct structured data for the sole purpose
/// of printing it in JSON format.
///
/// A stripped down version of lldb's StructuredData objects which are much
/// general purpose. This variant is intended only for assembling information
/// and printing it as a JSON string.
class JSONGenerator {
public:
class Object;
class Array;
class Integer;
class Float;
class Boolean;
class String;
class Dictionary;
class Generic;
typedef std::shared_ptr<Object> ObjectSP;
typedef std::shared_ptr<Array> ArraySP;
typedef std::shared_ptr<Integer> IntegerSP;
typedef std::shared_ptr<Float> FloatSP;
typedef std::shared_ptr<Boolean> BooleanSP;
typedef std::shared_ptr<String> StringSP;
typedef std::shared_ptr<Dictionary> DictionarySP;
typedef std::shared_ptr<Generic> GenericSP;
enum class Type {
eTypeInvalid = -1,
eTypeNull = 0,
eTypeGeneric,
eTypeArray,
eTypeInteger,
eTypeFloat,
eTypeBoolean,
eTypeString,
eTypeDictionary
};
class Object : public std::enable_shared_from_this<Object> {
public:
Object(Type t = Type::eTypeInvalid) : m_type(t) {}
virtual ~Object() {}
virtual bool IsValid() const { return true; }
virtual void Clear() { m_type = Type::eTypeInvalid; }
Type GetType() const { return m_type; }
void SetType(Type t) { m_type = t; }
Array *GetAsArray() {
if (m_type == Type::eTypeArray)
return (Array *)this;
return NULL;
}
Dictionary *GetAsDictionary() {
if (m_type == Type::eTypeDictionary)
return (Dictionary *)this;
return NULL;
}
Integer *GetAsInteger() {
if (m_type == Type::eTypeInteger)
return (Integer *)this;
return NULL;
}
Float *GetAsFloat() {
if (m_type == Type::eTypeFloat)
return (Float *)this;
return NULL;
}
Boolean *GetAsBoolean() {
if (m_type == Type::eTypeBoolean)
return (Boolean *)this;
return NULL;
}
String *GetAsString() {
if (m_type == Type::eTypeString)
return (String *)this;
return NULL;
}
Generic *GetAsGeneric() {
if (m_type == Type::eTypeGeneric)
return (Generic *)this;
return NULL;
}
virtual void Dump(std::ostream &s) const = 0;
private:
Type m_type;
};
class Array : public Object {
public:
Array() : Object(Type::eTypeArray) {}
virtual ~Array() {}
void AddItem(ObjectSP item) { m_items.push_back(item); }
void Dump(std::ostream &s) const override {
s << "[";
const size_t arrsize = m_items.size();
for (size_t i = 0; i < arrsize; ++i) {
m_items[i]->Dump(s);
if (i + 1 < arrsize)
s << ",";
}
s << "]";
}
protected:
typedef std::vector<ObjectSP> collection;
collection m_items;
};
class Integer : public Object {
public:
Integer(uint64_t value = 0) : Object(Type::eTypeInteger), m_value(value) {}
virtual ~Integer() {}
void SetValue(uint64_t value) { m_value = value; }
void Dump(std::ostream &s) const override { s << m_value; }
protected:
uint64_t m_value;
};
class Float : public Object {
public:
Float(double d = 0.0) : Object(Type::eTypeFloat), m_value(d) {}
virtual ~Float() {}
void SetValue(double value) { m_value = value; }
void Dump(std::ostream &s) const override { s << m_value; }
protected:
double m_value;
};
class Boolean : public Object {
public:
Boolean(bool b = false) : Object(Type::eTypeBoolean), m_value(b) {}
virtual ~Boolean() {}
void SetValue(bool value) { m_value = value; }
void Dump(std::ostream &s) const override {
if (m_value)
s << "true";
else
s << "false";
}
protected:
bool m_value;
};
class String : public Object {
public:
String() : Object(Type::eTypeString), m_value() {}
String(const std::string &s) : Object(Type::eTypeString), m_value(s) {}
String(const std::string &&s) : Object(Type::eTypeString), m_value(s) {}
void SetValue(const std::string &string) { m_value = string; }
void Dump(std::ostream &s) const override {
std::string quoted;
const size_t strsize = m_value.size();
for (size_t i = 0; i < strsize; ++i) {
char ch = m_value[i];
if (ch == '"')
quoted.push_back('\\');
quoted.push_back(ch);
}
s << '"' << quoted.c_str() << '"';
}
protected:
std::string m_value;
};
class Dictionary : public Object {
public:
Dictionary() : Object(Type::eTypeDictionary), m_dict() {}
virtual ~Dictionary() {}
void AddItem(std::string key, ObjectSP value) {
m_dict.push_back(Pair(key, value));
}
void AddIntegerItem(std::string key, uint64_t value) {
AddItem(key, ObjectSP(new Integer(value)));
}
void AddFloatItem(std::string key, double value) {
AddItem(key, ObjectSP(new Float(value)));
}
void AddStringItem(std::string key, std::string value) {
AddItem(key, ObjectSP(new String(std::move(value))));
}
void AddBytesAsHexASCIIString(std::string key, const uint8_t *src,
size_t src_len) {
if (src && src_len) {
std::ostringstream strm;
for (size_t i = 0; i < src_len; i++)
strm << std::setfill('0') << std::hex << std::right << std::setw(2)
<< ((uint32_t)(src[i]));
AddItem(key, ObjectSP(new String(std::move(strm.str()))));
} else {
AddItem(key, ObjectSP(new String()));
}
}
void AddBooleanItem(std::string key, bool value) {
AddItem(key, ObjectSP(new Boolean(value)));
}
void Dump(std::ostream &s) const override {
bool have_printed_one_elem = false;
s << "{";
for (collection::const_iterator iter = m_dict.begin();
iter != m_dict.end(); ++iter) {
if (!have_printed_one_elem) {
have_printed_one_elem = true;
} else {
s << ",";
}
s << "\"" << iter->first.c_str() << "\":";
iter->second->Dump(s);
}
s << "}";
}
protected:
// Keep the dictionary as a vector so the dictionary doesn't reorder itself
// when you dump it
// We aren't accessing keys by name, so this won't affect performance
typedef std::pair<std::string, ObjectSP> Pair;
typedef std::vector<Pair> collection;
collection m_dict;
};
class Null : public Object {
public:
Null() : Object(Type::eTypeNull) {}
virtual ~Null() {}
bool IsValid() const override { return false; }
void Dump(std::ostream &s) const override { s << "null"; }
protected:
};
class Generic : public Object {
public:
explicit Generic(void *object = nullptr)
: Object(Type::eTypeGeneric), m_object(object) {}
void SetValue(void *value) { m_object = value; }
void *GetValue() const { return m_object; }
bool IsValid() const override { return m_object != nullptr; }
void Dump(std::ostream &s) const override;
private:
void *m_object;
};
}; // class JSONGenerator
#endif // LLDB_TOOLS_DEBUGSERVER_SOURCE_JSONGENERATOR_H
|