2017-02-22 08:52:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-08 22:54:36 +00:00
|
|
|
#include "file_consumer.h"
|
2017-04-05 08:06:18 +00:00
|
|
|
#include "position.h"
|
2017-03-14 08:33:39 +00:00
|
|
|
#include "serializer.h"
|
2017-04-05 08:06:18 +00:00
|
|
|
#include "utils.h"
|
2017-03-25 20:32:44 +00:00
|
|
|
#include "libclangmm/clangmm.h"
|
|
|
|
#include "libclangmm/Utility.h"
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-03-25 20:32:44 +00:00
|
|
|
#include <optional.h>
|
2017-02-22 08:52:00 +00:00
|
|
|
#include <rapidjson/writer.h>
|
|
|
|
#include <rapidjson/prettywriter.h>
|
|
|
|
#include <rapidjson/stringbuffer.h>
|
|
|
|
#include <rapidjson/document.h>
|
|
|
|
|
2017-03-25 20:32:44 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <iostream>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cassert>
|
|
|
|
#include <fstream>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2017-02-24 08:39:25 +00:00
|
|
|
struct IndexedTypeDef;
|
|
|
|
struct IndexedFuncDef;
|
|
|
|
struct IndexedVarDef;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
|
|
|
using namespace std::experimental;
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
2017-02-25 23:59:09 +00:00
|
|
|
struct Id {
|
|
|
|
uint64_t id;
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
Id() : id(0) {} // Needed for containers. Do not use directly.
|
2017-04-08 07:11:57 +00:00
|
|
|
explicit Id(uint64_t id) : id(id) {}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
bool operator==(const Id<T>& other) const { return id == other.id; }
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
bool operator<(const Id<T>& other) const { return id < other.id; }
|
2017-02-25 23:59:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace std {
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
|
|
|
struct hash<Id<T>> {
|
|
|
|
size_t operator()(const Id<T>& k) const { return hash<uint64_t>()(k.id); }
|
|
|
|
};
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator==(const Id<T>& a, const Id<T>& b) {
|
|
|
|
assert(a.group == b.group && "Cannot compare Ids from different groups");
|
|
|
|
return a.id == b.id;
|
|
|
|
}
|
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
using IndexTypeId = Id<IndexedTypeDef>;
|
|
|
|
using IndexFuncId = Id<IndexedFuncDef>;
|
|
|
|
using IndexVarId = Id<IndexedVarDef>;
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-03-13 06:03:54 +00:00
|
|
|
struct IdCache;
|
2017-03-11 02:24:51 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
2017-02-25 23:59:09 +00:00
|
|
|
struct Ref {
|
2017-04-13 07:47:47 +00:00
|
|
|
Id<T> id() const {
|
|
|
|
assert(has_id());
|
|
|
|
return id_;
|
|
|
|
}
|
|
|
|
bool has_id() const {
|
|
|
|
return id_.id != -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Id<T> id_;
|
2017-04-05 08:06:18 +00:00
|
|
|
Range loc;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
Ref() {} // For serialization.
|
2017-03-07 09:32:29 +00:00
|
|
|
|
2017-04-13 07:47:47 +00:00
|
|
|
Ref(Id<T> id, Range loc) : id_(id), loc(loc) {}
|
|
|
|
Ref(Range loc) : id_(Id<T>(-1)), loc(loc) {}
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator==(const Ref<T>& other) {
|
2017-04-13 07:47:47 +00:00
|
|
|
return id_ == other.id_ && loc == other.loc;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-03-17 07:58:41 +00:00
|
|
|
bool operator!=(const Ref<T>& other) { return !(*this == other); }
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator<(const Ref<T>& other) const {
|
|
|
|
return id < other.id && loc < other.loc;
|
2017-02-22 08:52:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator==(const Ref<T>& a, const Ref<T>& b) {
|
2017-04-13 07:47:47 +00:00
|
|
|
return a.id_ == b.id_ && a.loc == b.loc;
|
2017-02-22 08:52:00 +00:00
|
|
|
}
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename T>
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator!=(const Ref<T>& a, const Ref<T>& b) {
|
|
|
|
return !(a == b);
|
|
|
|
}
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-04-08 08:04:38 +00:00
|
|
|
using IndexFuncRef = Ref<IndexedFuncDef>;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
|
|
|
// TODO: skip as much forward-processing as possible when |is_system_def| is
|
|
|
|
// set to false.
|
|
|
|
// TODO: Either eliminate the defs created as a by-product of cross-referencing,
|
|
|
|
// or do not emit things we don't have definitions for.
|
|
|
|
|
2017-04-05 08:06:18 +00:00
|
|
|
template <typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
|
|
|
typename Range>
|
2017-02-25 06:08:14 +00:00
|
|
|
struct TypeDefDefinitionData {
|
2017-02-22 08:52:00 +00:00
|
|
|
// General metadata.
|
|
|
|
std::string usr;
|
|
|
|
std::string short_name;
|
|
|
|
std::string qualified_name;
|
|
|
|
|
|
|
|
// While a class/type can technically have a separate declaration/definition,
|
|
|
|
// it doesn't really happen in practice. The declaration never contains
|
|
|
|
// comments or insightful information. The user always wants to jump from
|
|
|
|
// the declaration to the definition - never the other way around like in
|
|
|
|
// functions and (less often) variables.
|
|
|
|
//
|
|
|
|
// It's also difficult to identify a `class Foo;` statement with the clang
|
|
|
|
// indexer API (it's doable using cursor AST traversal), so we don't bother
|
|
|
|
// supporting the feature.
|
2017-04-07 06:29:18 +00:00
|
|
|
optional<Range> definition_spelling;
|
2017-04-05 08:06:18 +00:00
|
|
|
optional<Range> definition_extent;
|
|
|
|
|
2017-02-22 08:52:00 +00:00
|
|
|
// If set, then this is the same underlying type as the given value (ie, this
|
|
|
|
// type comes from a using or typedef statement).
|
|
|
|
optional<TypeId> alias_of;
|
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
// Immediate parent types.
|
2017-02-22 08:52:00 +00:00
|
|
|
std::vector<TypeId> parents;
|
|
|
|
|
|
|
|
// Types, functions, and variables defined in this type.
|
|
|
|
std::vector<TypeId> types;
|
|
|
|
std::vector<FuncId> funcs;
|
|
|
|
std::vector<VarId> vars;
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
TypeDefDefinitionData() {} // For reflection.
|
2017-02-27 07:23:43 +00:00
|
|
|
TypeDefDefinitionData(const std::string& usr) : usr(usr) {}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-07 06:29:18 +00:00
|
|
|
bool operator==(const TypeDefDefinitionData<TypeId, FuncId, VarId, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return usr == other.usr && short_name == other.short_name &&
|
|
|
|
qualified_name == other.qualified_name &&
|
2017-04-05 08:06:18 +00:00
|
|
|
definition_spelling == other.definition_spelling &&
|
|
|
|
definition_extent == other.definition_extent &&
|
|
|
|
alias_of == other.alias_of &&
|
2017-03-17 07:58:41 +00:00
|
|
|
parents == other.parents && types == other.types &&
|
|
|
|
funcs == other.funcs && vars == other.vars;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 06:29:18 +00:00
|
|
|
bool operator!=(const TypeDefDefinitionData<TypeId, FuncId, VarId, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
2017-02-25 06:08:14 +00:00
|
|
|
};
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename TVisitor,
|
|
|
|
typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
2017-04-05 08:06:18 +00:00
|
|
|
typename Range>
|
2017-03-17 07:58:41 +00:00
|
|
|
void Reflect(TVisitor& visitor,
|
2017-04-07 06:29:18 +00:00
|
|
|
TypeDefDefinitionData<TypeId, FuncId, VarId, Range>& value) {
|
2017-03-14 08:33:39 +00:00
|
|
|
REFLECT_MEMBER_START();
|
|
|
|
REFLECT_MEMBER(usr);
|
|
|
|
REFLECT_MEMBER(short_name);
|
|
|
|
REFLECT_MEMBER(qualified_name);
|
|
|
|
REFLECT_MEMBER(definition);
|
|
|
|
REFLECT_MEMBER(alias_of);
|
|
|
|
REFLECT_MEMBER(parents);
|
|
|
|
REFLECT_MEMBER(types);
|
|
|
|
REFLECT_MEMBER(funcs);
|
|
|
|
REFLECT_MEMBER(vars);
|
|
|
|
REFLECT_MEMBER_END();
|
|
|
|
}
|
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
struct IndexedTypeDef {
|
2017-04-07 06:57:26 +00:00
|
|
|
using Def = TypeDefDefinitionData<IndexTypeId, IndexFuncId, IndexVarId, Range>;
|
2017-04-05 08:06:18 +00:00
|
|
|
Def def;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexTypeId id;
|
2017-02-27 07:23:43 +00:00
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
// Immediate derived types.
|
2017-04-07 06:57:26 +00:00
|
|
|
std::vector<IndexTypeId> derived;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
// Declared variables of this type.
|
|
|
|
// TODO: this needs a lot more work and lots of tests.
|
|
|
|
// TODO: add instantiation on ctor / dtor, do not add instantiation if type is ptr
|
2017-04-07 06:57:26 +00:00
|
|
|
std::vector<IndexVarId> instantiations;
|
2017-04-03 01:34:15 +00:00
|
|
|
|
2017-02-22 08:52:00 +00:00
|
|
|
// Every usage, useful for things like renames.
|
|
|
|
// NOTE: Do not insert directly! Use AddUsage instead.
|
2017-04-05 08:06:18 +00:00
|
|
|
std::vector<Range> uses;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
IndexedTypeDef() : def("") {} // For serialization
|
2017-03-07 09:32:29 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexedTypeDef(IndexTypeId id, const std::string& usr);
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
bool HasInterestingState() const {
|
|
|
|
return
|
2017-04-05 08:06:18 +00:00
|
|
|
def.definition_spelling ||
|
|
|
|
def.definition_extent ||
|
2017-04-03 01:34:15 +00:00
|
|
|
!derived.empty() ||
|
|
|
|
!instantiations.empty() ||
|
|
|
|
!uses.empty();
|
|
|
|
}
|
|
|
|
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator<(const IndexedTypeDef& other) const {
|
2017-02-27 07:23:43 +00:00
|
|
|
return def.usr < other.def.usr;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-02-22 08:52:00 +00:00
|
|
|
};
|
|
|
|
|
2017-03-25 20:40:04 +00:00
|
|
|
MAKE_HASHABLE(IndexedTypeDef, t.def.usr);
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-05 08:06:18 +00:00
|
|
|
template <typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
|
|
|
typename FuncRef,
|
|
|
|
typename Range>
|
2017-02-25 06:08:14 +00:00
|
|
|
struct FuncDefDefinitionData {
|
2017-02-22 08:52:00 +00:00
|
|
|
// General metadata.
|
|
|
|
std::string usr;
|
|
|
|
std::string short_name;
|
|
|
|
std::string qualified_name;
|
2017-04-07 06:29:18 +00:00
|
|
|
optional<Range> definition_spelling;
|
2017-04-05 08:06:18 +00:00
|
|
|
optional<Range> definition_extent;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
|
|
|
// Type which declares this one (ie, it is a method)
|
|
|
|
optional<TypeId> declaring_type;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-02-22 08:52:00 +00:00
|
|
|
// Method this method overrides.
|
|
|
|
optional<FuncId> base;
|
|
|
|
|
|
|
|
// Local variables defined in this function.
|
|
|
|
std::vector<VarId> locals;
|
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
// Functions that this function calls.
|
|
|
|
std::vector<FuncRef> callees;
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
FuncDefDefinitionData() {} // For reflection.
|
2017-02-27 07:23:43 +00:00
|
|
|
FuncDefDefinitionData(const std::string& usr) : usr(usr) {
|
2017-03-17 07:58:41 +00:00
|
|
|
// assert(usr.size() > 0);
|
2017-02-25 06:08:14 +00:00
|
|
|
}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
bool operator==(
|
2017-04-07 06:29:18 +00:00
|
|
|
const FuncDefDefinitionData<TypeId, FuncId, VarId, FuncRef, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return usr == other.usr && short_name == other.short_name &&
|
|
|
|
qualified_name == other.qualified_name &&
|
2017-04-05 08:06:18 +00:00
|
|
|
definition_spelling == other.definition_spelling &&
|
|
|
|
definition_extent == other.definition_extent &&
|
2017-03-17 07:58:41 +00:00
|
|
|
declaring_type == other.declaring_type && base == other.base &&
|
|
|
|
locals == other.locals && callees == other.callees;
|
|
|
|
}
|
|
|
|
bool operator!=(
|
2017-04-07 06:29:18 +00:00
|
|
|
const FuncDefDefinitionData<TypeId, FuncId, VarId, FuncRef, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return !(*this == other);
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-02-25 06:08:14 +00:00
|
|
|
};
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename TVisitor,
|
|
|
|
typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
|
|
|
typename FuncRef,
|
2017-04-05 08:06:18 +00:00
|
|
|
typename Range>
|
2017-03-17 07:58:41 +00:00
|
|
|
void Reflect(
|
|
|
|
TVisitor& visitor,
|
2017-04-07 06:29:18 +00:00
|
|
|
FuncDefDefinitionData<TypeId, FuncId, VarId, FuncRef, Range>& value) {
|
2017-03-14 08:33:39 +00:00
|
|
|
REFLECT_MEMBER_START();
|
|
|
|
REFLECT_MEMBER(usr);
|
|
|
|
REFLECT_MEMBER(short_name);
|
|
|
|
REFLECT_MEMBER(qualified_name);
|
|
|
|
REFLECT_MEMBER(definition);
|
|
|
|
REFLECT_MEMBER(declaring_type);
|
|
|
|
REFLECT_MEMBER(base);
|
|
|
|
REFLECT_MEMBER(locals);
|
|
|
|
REFLECT_MEMBER(callees);
|
|
|
|
REFLECT_MEMBER_END();
|
|
|
|
}
|
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
struct IndexedFuncDef {
|
2017-04-08 08:04:38 +00:00
|
|
|
using Def = FuncDefDefinitionData<IndexTypeId, IndexFuncId, IndexVarId, IndexFuncRef, Range>;
|
2017-04-05 08:06:18 +00:00
|
|
|
Def def;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexFuncId id;
|
2017-02-27 07:23:43 +00:00
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
// Places the function is forward-declared.
|
2017-04-05 08:06:18 +00:00
|
|
|
std::vector<Range> declarations;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
|
|
|
// Methods which directly override this one.
|
2017-04-07 06:57:26 +00:00
|
|
|
std::vector<IndexFuncId> derived;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-04-13 07:47:47 +00:00
|
|
|
// Calls/usages of this function. If the call is coming from outside a
|
|
|
|
// function context then the FuncRef will not have an associated id.
|
|
|
|
//
|
|
|
|
// To get all usages, also include the ranges inside of declarations and
|
|
|
|
// def.definition_spelling.
|
2017-04-08 08:04:38 +00:00
|
|
|
std::vector<IndexFuncRef> callers;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
IndexedFuncDef() {} // For reflection.
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexedFuncDef(IndexFuncId id, const std::string& usr) : def(usr), id(id) {
|
2017-03-17 07:58:41 +00:00
|
|
|
// assert(usr.size() > 0);
|
2017-02-22 08:52:00 +00:00
|
|
|
}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
bool HasInterestingState() const {
|
|
|
|
return
|
2017-04-05 08:06:18 +00:00
|
|
|
def.definition_spelling ||
|
|
|
|
def.definition_extent ||
|
2017-04-03 01:34:15 +00:00
|
|
|
!def.callees.empty() ||
|
|
|
|
!declarations.empty() ||
|
|
|
|
!derived.empty() ||
|
2017-04-13 07:47:47 +00:00
|
|
|
!callers.empty();
|
2017-04-03 01:34:15 +00:00
|
|
|
}
|
|
|
|
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator<(const IndexedFuncDef& other) const {
|
2017-02-27 07:23:43 +00:00
|
|
|
return def.usr < other.def.usr;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-02-22 08:52:00 +00:00
|
|
|
};
|
2017-03-25 20:40:04 +00:00
|
|
|
MAKE_HASHABLE(IndexedFuncDef, t.def.usr);
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-05 08:06:18 +00:00
|
|
|
template <typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
|
|
|
typename Range>
|
2017-02-25 06:08:14 +00:00
|
|
|
struct VarDefDefinitionData {
|
2017-02-22 08:52:00 +00:00
|
|
|
// General metadata.
|
|
|
|
std::string usr;
|
|
|
|
std::string short_name;
|
|
|
|
std::string qualified_name;
|
2017-04-05 08:06:18 +00:00
|
|
|
optional<Range> declaration;
|
|
|
|
// TODO: definitions should be a list of ranges, since there can be more
|
|
|
|
// than one - when??
|
2017-04-07 06:29:18 +00:00
|
|
|
optional<Range> definition_spelling;
|
2017-04-05 08:06:18 +00:00
|
|
|
optional<Range> definition_extent;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
|
|
|
// Type of the variable.
|
|
|
|
optional<TypeId> variable_type;
|
|
|
|
|
|
|
|
// Type which declares this one (ie, it is a method)
|
|
|
|
optional<TypeId> declaring_type;
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
VarDefDefinitionData() {} // For reflection.
|
2017-02-27 07:23:43 +00:00
|
|
|
VarDefDefinitionData(const std::string& usr) : usr(usr) {}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-07 06:29:18 +00:00
|
|
|
bool operator==(const VarDefDefinitionData<TypeId, FuncId, VarId, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return usr == other.usr && short_name == other.short_name &&
|
|
|
|
qualified_name == other.qualified_name &&
|
2017-04-05 08:06:18 +00:00
|
|
|
declaration == other.declaration &&
|
|
|
|
definition_spelling == other.definition_spelling &&
|
|
|
|
definition_extent == other.definition_extent &&
|
2017-03-17 07:58:41 +00:00
|
|
|
variable_type == other.variable_type &&
|
|
|
|
declaring_type == other.declaring_type;
|
|
|
|
}
|
2017-04-07 06:29:18 +00:00
|
|
|
bool operator!=(const VarDefDefinitionData<TypeId, FuncId, VarId, Range>&
|
2017-03-17 07:58:41 +00:00
|
|
|
other) const {
|
|
|
|
return !(*this == other);
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-02-25 06:08:14 +00:00
|
|
|
};
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
template <typename TVisitor,
|
|
|
|
typename TypeId,
|
|
|
|
typename FuncId,
|
|
|
|
typename VarId,
|
2017-04-05 08:06:18 +00:00
|
|
|
typename Range>
|
2017-03-17 07:58:41 +00:00
|
|
|
void Reflect(TVisitor& visitor,
|
2017-04-07 06:29:18 +00:00
|
|
|
VarDefDefinitionData<TypeId, FuncId, VarId, Range>& value) {
|
2017-03-14 08:33:39 +00:00
|
|
|
REFLECT_MEMBER_START();
|
|
|
|
REFLECT_MEMBER(usr);
|
|
|
|
REFLECT_MEMBER(short_name);
|
|
|
|
REFLECT_MEMBER(qualified_name);
|
2017-04-05 08:06:18 +00:00
|
|
|
REFLECT_MEMBER(definition_spelling);
|
|
|
|
REFLECT_MEMBER(definition_extent);
|
2017-03-14 08:33:39 +00:00
|
|
|
REFLECT_MEMBER(variable_type);
|
|
|
|
REFLECT_MEMBER(declaring_type);
|
|
|
|
REFLECT_MEMBER_END();
|
|
|
|
}
|
|
|
|
|
2017-02-25 06:08:14 +00:00
|
|
|
struct IndexedVarDef {
|
2017-04-07 06:57:26 +00:00
|
|
|
using Def = VarDefDefinitionData<IndexTypeId, IndexFuncId, IndexVarId, Range>;
|
2017-04-05 08:06:18 +00:00
|
|
|
Def def;
|
2017-02-25 06:08:14 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexVarId id;
|
2017-02-27 07:23:43 +00:00
|
|
|
|
2017-02-22 08:52:00 +00:00
|
|
|
// Usages.
|
2017-04-05 08:06:18 +00:00
|
|
|
std::vector<Range> uses;
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
IndexedVarDef() : def("") {} // For serialization
|
2017-03-07 09:32:29 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexedVarDef(IndexVarId id, const std::string& usr) : def(usr), id(id) {
|
2017-03-17 07:58:41 +00:00
|
|
|
// assert(usr.size() > 0);
|
2017-02-22 08:52:00 +00:00
|
|
|
}
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
bool HasInterestingState() const {
|
|
|
|
return
|
2017-04-05 08:06:18 +00:00
|
|
|
def.definition_spelling ||
|
|
|
|
def.definition_extent ||
|
2017-04-03 01:34:15 +00:00
|
|
|
!uses.empty();
|
|
|
|
}
|
|
|
|
|
2017-02-25 23:59:09 +00:00
|
|
|
bool operator<(const IndexedVarDef& other) const {
|
2017-02-27 07:23:43 +00:00
|
|
|
return def.usr < other.def.usr;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-02-22 08:52:00 +00:00
|
|
|
};
|
2017-03-25 20:40:04 +00:00
|
|
|
MAKE_HASHABLE(IndexedVarDef, t.def.usr);
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-02-26 19:45:59 +00:00
|
|
|
struct IdCache {
|
2017-04-03 01:34:15 +00:00
|
|
|
std::string primary_file;
|
2017-04-07 06:57:26 +00:00
|
|
|
std::unordered_map<std::string, IndexTypeId> usr_to_type_id;
|
|
|
|
std::unordered_map<std::string, IndexFuncId> usr_to_func_id;
|
|
|
|
std::unordered_map<std::string, IndexVarId> usr_to_var_id;
|
|
|
|
std::unordered_map<IndexTypeId, std::string> type_id_to_usr;
|
|
|
|
std::unordered_map<IndexFuncId, std::string> func_id_to_usr;
|
|
|
|
std::unordered_map<IndexVarId, std::string> var_id_to_usr;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
IdCache(const std::string& primary_file);
|
2017-04-05 08:06:18 +00:00
|
|
|
|
2017-04-08 23:16:30 +00:00
|
|
|
Range Resolve(const CXSourceRange& range, bool interesting);
|
|
|
|
Range ResolveSpelling(const CXCursor& cx_cursor, bool interesting);
|
|
|
|
Range ResolveExtent(const CXCursor& cx_cursor, bool interesting);
|
2017-02-25 23:59:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IndexedFile {
|
2017-02-28 06:41:42 +00:00
|
|
|
IdCache id_cache;
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-02-27 07:23:43 +00:00
|
|
|
std::string path;
|
|
|
|
|
2017-04-11 05:26:27 +00:00
|
|
|
std::vector<std::string> dependencies;
|
2017-02-23 08:18:54 +00:00
|
|
|
std::vector<IndexedTypeDef> types;
|
|
|
|
std::vector<IndexedFuncDef> funcs;
|
|
|
|
std::vector<IndexedVarDef> vars;
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-02-28 06:41:42 +00:00
|
|
|
IndexedFile(const std::string& path);
|
2017-02-22 08:52:00 +00:00
|
|
|
|
2017-04-07 06:57:26 +00:00
|
|
|
IndexTypeId ToTypeId(const std::string& usr);
|
|
|
|
IndexFuncId ToFuncId(const std::string& usr);
|
|
|
|
IndexVarId ToVarId(const std::string& usr);
|
|
|
|
IndexTypeId ToTypeId(const CXCursor& usr);
|
|
|
|
IndexFuncId ToFuncId(const CXCursor& usr);
|
|
|
|
IndexVarId ToVarId(const CXCursor& usr);
|
|
|
|
IndexedTypeDef* Resolve(IndexTypeId id);
|
|
|
|
IndexedFuncDef* Resolve(IndexFuncId id);
|
|
|
|
IndexedVarDef* Resolve(IndexVarId id);
|
2017-02-22 08:52:00 +00:00
|
|
|
|
|
|
|
std::string ToString();
|
|
|
|
};
|
|
|
|
|
2017-04-13 06:01:42 +00:00
|
|
|
std::vector<std::unique_ptr<IndexedFile>> Parse(FileConsumer::SharedState* file_consumer_shared, std::string filename, std::vector<std::string> args, bool dump_ast = false);
|