ccls/serializer.cc

251 lines
7.3 KiB
C++
Raw Normal View History

#include "serializer.h"
2017-02-24 08:39:25 +00:00
void Serialize(Writer& writer, const char* key, Location location) {
if (key) writer.Key(key);
std::string s = location.ToString();
writer.String(s.c_str());
}
void Serialize(Writer& writer, const char* key, optional<Location> location) {
if (location)
Serialize(writer, key, location.value());
}
void Serialize(Writer& writer, const char* key, const std::vector<Location>& locs) {
if (locs.size() == 0)
return;
if (key) writer.Key(key);
writer.StartArray();
for (const Location& loc : locs)
Serialize(writer, nullptr, loc);
writer.EndArray();
}
2017-03-01 08:36:11 +00:00
void Serialize(Writer& writer, const char* key, const std::string& value) {
if (value.size() == 0)
return;
if (key) writer.Key(key);
2017-03-01 08:36:11 +00:00
writer.String(value.c_str());
}
2017-03-01 08:36:11 +00:00
void Serialize(Writer& writer, const char* key, const std::vector<std::string>& value) {
if (value.size() == 0)
return;
if (key) writer.Key(key);
2017-03-01 08:36:11 +00:00
writer.StartArray();
2017-03-01 08:36:11 +00:00
for (const std::string& s : value)
writer.String(s.c_str());
writer.EndArray();
}
void Serialize(Writer& writer, const char* key, uint64_t value) {
if (key) writer.Key(key);
writer.Uint64(value);
}
void Serialize(Writer& writer, IndexedFile* file) {
2017-02-28 06:41:42 +00:00
auto it = file->id_cache.usr_to_type_id.find("");
if (it != file->id_cache.usr_to_type_id.end()) {
2017-02-25 06:08:14 +00:00
file->Resolve(it->second)->def.short_name = "<fundamental>";
assert(file->Resolve(it->second)->uses.size() == 0);
}
2017-03-02 18:25:40 +00:00
#define SERIALIZE(json_name, member_name) Serialize(writer, json_name, def.member_name)
writer.StartObject();
// Types
writer.Key("types");
writer.StartArray();
for (IndexedTypeDef& def : file->types) {
2017-02-26 01:08:05 +00:00
if (def.is_bad_def)
continue;
writer.StartObject();
2017-02-27 07:23:43 +00:00
SERIALIZE("id", id);
2017-02-25 06:08:14 +00:00
SERIALIZE("usr", def.usr);
SERIALIZE("short_name", def.short_name);
SERIALIZE("qualified_name", def.qualified_name);
SERIALIZE("definition", def.definition);
SERIALIZE("alias_of", def.alias_of);
SERIALIZE("parents", def.parents);
SERIALIZE("derived", derived);
SERIALIZE("types", def.types);
SERIALIZE("funcs", def.funcs);
SERIALIZE("vars", def.vars);
SERIALIZE("uses", uses);
writer.EndObject();
}
writer.EndArray();
// Functions
writer.Key("functions");
writer.StartArray();
for (IndexedFuncDef& def : file->funcs) {
2017-02-26 01:08:05 +00:00
if (def.is_bad_def)
continue;
writer.StartObject();
2017-02-27 07:23:43 +00:00
SERIALIZE("id", id);
2017-02-25 06:08:14 +00:00
SERIALIZE("usr", def.usr);
SERIALIZE("short_name", def.short_name);
SERIALIZE("qualified_name", def.qualified_name);
SERIALIZE("declarations", declarations);
SERIALIZE("definition", def.definition);
SERIALIZE("declaring_type", def.declaring_type);
SERIALIZE("base", def.base);
SERIALIZE("derived", derived);
SERIALIZE("locals", def.locals);
SERIALIZE("callers", callers);
SERIALIZE("callees", def.callees);
SERIALIZE("uses", uses);
writer.EndObject();
}
writer.EndArray();
// Variables
writer.Key("variables");
writer.StartArray();
for (IndexedVarDef& def : file->vars) {
2017-02-26 01:08:05 +00:00
if (def.is_bad_def)
continue;
writer.StartObject();
2017-02-27 07:23:43 +00:00
SERIALIZE("id", id);
2017-02-25 06:08:14 +00:00
SERIALIZE("usr", def.usr);
SERIALIZE("short_name", def.short_name);
SERIALIZE("qualified_name", def.qualified_name);
SERIALIZE("declaration", def.declaration);
SERIALIZE("definition", def.definition);
SERIALIZE("variable_type", def.variable_type);
SERIALIZE("declaring_type", def.declaring_type);
SERIALIZE("uses", uses);
writer.EndObject();
}
writer.EndArray();
writer.EndObject();
#undef WRITE
}
2017-02-28 08:37:20 +00:00
2017-03-02 18:25:40 +00:00
void Deserialize(const rapidjson::GenericValue<rapidjson::UTF8<>>& document, const char* name, std::string& output) {
2017-03-01 04:12:57 +00:00
auto it = document.FindMember(name);
if (it != document.MemberEnd())
2017-03-01 08:36:11 +00:00
output = it->value.GetString();
2017-02-28 08:37:20 +00:00
}
2017-03-02 18:25:40 +00:00
void Deserialize(const rapidjson::GenericValue<rapidjson::UTF8<>>& document, const char* name, std::vector<std::string>& output) {
2017-03-01 04:12:57 +00:00
auto it = document.FindMember(name);
if (it != document.MemberEnd()) {
2017-03-01 08:36:11 +00:00
for (auto& entry : it->value.GetArray())
output.push_back(entry.GetString());
2017-03-01 04:12:57 +00:00
}
}
2017-03-02 18:25:40 +00:00
void Deserialize(const rapidjson::GenericValue<rapidjson::UTF8<>>& document, const char* name, optional<Location>& output) {
2017-03-01 04:12:57 +00:00
auto it = document.FindMember(name);
if (it != document.MemberEnd())
2017-03-01 08:36:11 +00:00
output = Location(it->value.GetString()); // TODO: Location parsing not implemented in Location type.
2017-03-01 04:12:57 +00:00
}
2017-03-02 18:25:40 +00:00
void Deserialize(const rapidjson::GenericValue<rapidjson::UTF8<>>& document, const char* name, std::vector<Location>& output) {
2017-03-01 04:12:57 +00:00
auto it = document.FindMember(name);
if (it != document.MemberEnd()) {
for (auto& array_value : it->value.GetArray())
2017-03-01 08:36:11 +00:00
output.push_back(Location(array_value.GetString()));
2017-03-01 04:12:57 +00:00
}
2017-02-28 08:37:20 +00:00
}
2017-03-02 18:25:40 +00:00
void Deserialize(const Reader& reader, IndexedFile* file) {
#define DESERIALIZE(json_name, member_name) Deserialize(entry, json_name, def.member_name)
2017-03-01 04:12:57 +00:00
2017-03-02 18:25:40 +00:00
const auto& types = reader["types"].GetArray();
for (const auto& entry : types) {
2017-03-01 04:12:57 +00:00
TypeId id(entry["id"].GetInt64());
std::string usr = entry["usr"].GetString();
2017-02-28 08:37:20 +00:00
IndexedTypeDef def(id, usr);
2017-03-01 04:12:57 +00:00
def.is_bad_def = false;
DESERIALIZE("short_name", def.short_name);
DESERIALIZE("qualified_name", def.qualified_name);
DESERIALIZE("definition", def.definition);
DESERIALIZE("alias_of", def.alias_of);
DESERIALIZE("parents", def.parents);
DESERIALIZE("derived", derived);
DESERIALIZE("types", def.types);
DESERIALIZE("funcs", def.funcs);
DESERIALIZE("vars", def.vars);
DESERIALIZE("uses", uses);
2017-02-28 08:37:20 +00:00
file->types.push_back(def);
}
2017-03-01 04:12:57 +00:00
2017-03-02 18:25:40 +00:00
const auto& functions = reader["functions"].GetArray();
for (const auto& entry : functions) {
2017-03-01 04:12:57 +00:00
FuncId id(entry["id"].GetInt64());
std::string usr = entry["usr"].GetString();
IndexedFuncDef def(id, usr);
def.is_bad_def = false;
DESERIALIZE("short_name", def.short_name);
DESERIALIZE("qualified_name", def.qualified_name);
DESERIALIZE("declarations", declarations);
DESERIALIZE("definition", def.definition);
DESERIALIZE("declaring_type", def.declaring_type);
DESERIALIZE("base", def.base);
DESERIALIZE("derived", derived);
DESERIALIZE("locals", def.locals);
DESERIALIZE("callers", callers);
DESERIALIZE("callees", def.callees);
DESERIALIZE("uses", uses);
file->funcs.push_back(def);
}
2017-03-02 18:25:40 +00:00
const auto& vars = reader["variables"].GetArray();
for (const auto& entry : vars) {
2017-03-01 04:12:57 +00:00
VarId id(entry["id"].GetInt64());
std::string usr = entry["usr"].GetString();
IndexedVarDef def(id, usr);
def.is_bad_def = false;
DESERIALIZE("short_name", def.short_name);
DESERIALIZE("qualified_name", def.qualified_name);
DESERIALIZE("declaration", def.declaration);
DESERIALIZE("definition", def.definition);
DESERIALIZE("variable_type", def.variable_type);
DESERIALIZE("declaring_type", def.declaring_type);
DESERIALIZE("uses", uses);
file->vars.push_back(def);
}
#undef DESERIALIZE
}
std::string Serialize(IndexedFile* file) {
rapidjson::StringBuffer output;
2017-03-05 02:16:23 +00:00
Writer writer(output);
2017-03-01 04:12:57 +00:00
writer.SetFormatOptions(
rapidjson::PrettyFormatOptions::kFormatSingleLineArray);
writer.SetIndent(' ', 2);
Serialize(writer, file);
return output.GetString();
}
IndexedFile Deserialize(std::string path, std::string serialized) {
rapidjson::Document document;
document.Parse(serialized.c_str());
IndexedFile file(path);
Deserialize(document, &file);
return file;
}