2018-08-21 05:27:52 +00:00
|
|
|
/* Copyright 2017-2018 ccls Authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==============================================================================*/
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
#include "message_handler.h"
|
2018-05-28 00:50:02 +00:00
|
|
|
#include "pipeline.hh"
|
2018-08-04 06:01:01 +00:00
|
|
|
#include "query_utils.h"
|
2018-05-28 00:50:02 +00:00
|
|
|
using namespace ccls;
|
2017-12-06 03:32:33 +00:00
|
|
|
|
2018-08-04 06:01:01 +00:00
|
|
|
#include <queue>
|
2018-05-26 05:48:58 +00:00
|
|
|
#include <unordered_set>
|
|
|
|
|
2017-12-06 05:03:38 +00:00
|
|
|
namespace {
|
2018-03-31 03:16:33 +00:00
|
|
|
MethodType kMethodType = "$ccls/inheritanceHierarchy";
|
2018-03-22 04:05:25 +00:00
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
struct In_CclsInheritanceHierarchy : public RequestInMessage {
|
2018-03-22 04:05:25 +00:00
|
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
2018-02-26 02:45:46 +00:00
|
|
|
struct Params {
|
2018-03-20 02:51:42 +00:00
|
|
|
// If id+kind are specified, expand a node; otherwise textDocument+position
|
|
|
|
// should be specified for building the root and |levels| of nodes below.
|
2018-02-26 02:45:46 +00:00
|
|
|
lsTextDocumentIdentifier textDocument;
|
|
|
|
lsPosition position;
|
2018-02-28 05:56:40 +00:00
|
|
|
|
2018-04-30 04:49:03 +00:00
|
|
|
Usr usr;
|
|
|
|
std::string id;
|
2018-02-28 05:56:40 +00:00
|
|
|
SymbolKind kind = SymbolKind::Invalid;
|
|
|
|
|
2018-02-26 02:45:46 +00:00
|
|
|
// true: derived classes/functions; false: base classes/functions
|
|
|
|
bool derived = false;
|
2018-04-06 00:00:07 +00:00
|
|
|
bool qualified = true;
|
2018-02-26 02:45:46 +00:00
|
|
|
int levels = 1;
|
2018-08-04 06:01:01 +00:00
|
|
|
bool flat = false;
|
|
|
|
} params;
|
2018-02-26 02:45:46 +00:00
|
|
|
};
|
|
|
|
|
2018-08-04 06:01:01 +00:00
|
|
|
MAKE_REFLECT_STRUCT(In_CclsInheritanceHierarchy::Params, textDocument, position,
|
|
|
|
id, kind, derived, qualified, levels, flat);
|
2018-03-31 03:16:33 +00:00
|
|
|
MAKE_REFLECT_STRUCT(In_CclsInheritanceHierarchy, id, params);
|
|
|
|
REGISTER_IN_MESSAGE(In_CclsInheritanceHierarchy);
|
2017-12-06 04:39:44 +00:00
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
struct Out_CclsInheritanceHierarchy
|
|
|
|
: public lsOutMessage<Out_CclsInheritanceHierarchy> {
|
2018-02-26 02:45:46 +00:00
|
|
|
struct Entry {
|
2018-04-30 04:49:03 +00:00
|
|
|
Usr usr;
|
|
|
|
std::string id;
|
2018-02-26 02:45:46 +00:00
|
|
|
SymbolKind kind;
|
2018-02-11 05:36:15 +00:00
|
|
|
std::string_view name;
|
2018-02-26 02:45:46 +00:00
|
|
|
lsLocation location;
|
|
|
|
// For unexpanded nodes, this is an upper bound because some entities may be
|
|
|
|
// undefined. If it is 0, there are no members.
|
|
|
|
int numChildren;
|
|
|
|
// Empty if the |levels| limit is reached.
|
|
|
|
std::vector<Entry> children;
|
2017-12-06 04:39:44 +00:00
|
|
|
};
|
|
|
|
lsRequestId id;
|
2018-03-31 03:16:33 +00:00
|
|
|
std::optional<Entry> result;
|
2017-12-06 04:39:44 +00:00
|
|
|
};
|
2018-08-09 17:08:14 +00:00
|
|
|
MAKE_REFLECT_STRUCT(Out_CclsInheritanceHierarchy::Entry, id, kind, name,
|
|
|
|
location, numChildren, children);
|
|
|
|
MAKE_REFLECT_STRUCT_MANDATORY_OPTIONAL(Out_CclsInheritanceHierarchy, jsonrpc,
|
|
|
|
id, result);
|
|
|
|
|
|
|
|
bool Expand(MessageHandler *m, Out_CclsInheritanceHierarchy::Entry *entry,
|
|
|
|
bool derived, bool qualified, int levels);
|
2018-02-26 02:45:46 +00:00
|
|
|
|
|
|
|
template <typename Q>
|
2018-08-09 17:08:14 +00:00
|
|
|
bool ExpandHelper(MessageHandler *m, Out_CclsInheritanceHierarchy::Entry *entry,
|
|
|
|
bool derived, bool qualified, int levels, Q &entity) {
|
|
|
|
const auto *def = entity.AnyDef();
|
2018-05-26 05:48:58 +00:00
|
|
|
if (def) {
|
|
|
|
entry->name = def->Name(qualified);
|
|
|
|
if (def->spell) {
|
|
|
|
if (auto loc = GetLsLocation(m->db, m->working_files, *def->spell))
|
|
|
|
entry->location = *loc;
|
2018-09-12 20:46:20 +00:00
|
|
|
} else if (entity.declarations.size()) {
|
|
|
|
if (auto loc = GetLsLocation(m->db, m->working_files, entity.declarations[0]))
|
|
|
|
entry->location = *loc;
|
2018-05-26 05:48:58 +00:00
|
|
|
}
|
|
|
|
} else if (!derived) {
|
2018-02-26 02:45:46 +00:00
|
|
|
entry->numChildren = 0;
|
|
|
|
return false;
|
2017-12-19 06:15:46 +00:00
|
|
|
}
|
2018-05-26 05:48:58 +00:00
|
|
|
std::unordered_set<Usr> seen;
|
2018-02-26 02:45:46 +00:00
|
|
|
if (derived) {
|
|
|
|
if (levels > 0) {
|
2018-04-30 04:49:03 +00:00
|
|
|
for (auto usr : entity.derived) {
|
2018-05-28 00:50:02 +00:00
|
|
|
if (!seen.insert(usr).second)
|
2018-05-26 05:48:58 +00:00
|
|
|
continue;
|
2018-03-31 03:16:33 +00:00
|
|
|
Out_CclsInheritanceHierarchy::Entry entry1;
|
2018-04-30 04:49:03 +00:00
|
|
|
entry1.id = std::to_string(usr);
|
|
|
|
entry1.usr = usr;
|
2018-02-26 02:45:46 +00:00
|
|
|
entry1.kind = entry->kind;
|
2018-04-06 00:00:07 +00:00
|
|
|
if (Expand(m, &entry1, derived, qualified, levels - 1))
|
2018-02-26 02:45:46 +00:00
|
|
|
entry->children.push_back(std::move(entry1));
|
|
|
|
}
|
|
|
|
entry->numChildren = int(entry->children.size());
|
2018-02-26 03:10:02 +00:00
|
|
|
} else
|
|
|
|
entry->numChildren = int(entity.derived.size());
|
2018-02-26 02:45:46 +00:00
|
|
|
} else {
|
|
|
|
if (levels > 0) {
|
2018-04-30 04:49:03 +00:00
|
|
|
for (auto usr : def->bases) {
|
2018-05-28 00:50:02 +00:00
|
|
|
if (!seen.insert(usr).second)
|
2018-05-26 05:48:58 +00:00
|
|
|
continue;
|
2018-03-31 03:16:33 +00:00
|
|
|
Out_CclsInheritanceHierarchy::Entry entry1;
|
2018-04-30 04:49:03 +00:00
|
|
|
entry1.id = std::to_string(usr);
|
|
|
|
entry1.usr = usr;
|
2018-02-26 02:45:46 +00:00
|
|
|
entry1.kind = entry->kind;
|
2018-04-06 00:00:07 +00:00
|
|
|
if (Expand(m, &entry1, derived, qualified, levels - 1))
|
2018-02-26 02:45:46 +00:00
|
|
|
entry->children.push_back(std::move(entry1));
|
|
|
|
}
|
|
|
|
entry->numChildren = int(entry->children.size());
|
2018-02-26 03:10:02 +00:00
|
|
|
} else
|
|
|
|
entry->numChildren = int(def->bases.size());
|
2018-02-26 02:45:46 +00:00
|
|
|
}
|
|
|
|
return true;
|
2017-12-06 04:39:44 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
bool Expand(MessageHandler *m, Out_CclsInheritanceHierarchy::Entry *entry,
|
|
|
|
bool derived, bool qualified, int levels) {
|
2018-02-26 02:45:46 +00:00
|
|
|
if (entry->kind == SymbolKind::Func)
|
2018-04-06 00:00:07 +00:00
|
|
|
return ExpandHelper(m, entry, derived, qualified, levels,
|
2018-04-30 04:49:03 +00:00
|
|
|
m->db->Func(entry->usr));
|
2018-02-26 02:45:46 +00:00
|
|
|
else
|
2018-04-06 00:00:07 +00:00
|
|
|
return ExpandHelper(m, entry, derived, qualified, levels,
|
2018-04-30 04:49:03 +00:00
|
|
|
m->db->Type(entry->usr));
|
2018-02-26 02:45:46 +00:00
|
|
|
}
|
2017-12-06 04:39:44 +00:00
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
struct Handler_CclsInheritanceHierarchy
|
|
|
|
: BaseMessageHandler<In_CclsInheritanceHierarchy> {
|
2018-03-22 04:05:25 +00:00
|
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
|
|
|
2018-03-31 03:16:33 +00:00
|
|
|
std::optional<Out_CclsInheritanceHierarchy::Entry>
|
2018-04-06 00:00:07 +00:00
|
|
|
BuildInitial(SymbolRef sym, bool derived, bool qualified, int levels) {
|
2018-03-31 03:16:33 +00:00
|
|
|
Out_CclsInheritanceHierarchy::Entry entry;
|
2018-04-30 04:49:03 +00:00
|
|
|
entry.id = std::to_string(sym.usr);
|
|
|
|
entry.usr = sym.usr;
|
2018-02-26 02:45:46 +00:00
|
|
|
entry.kind = sym.kind;
|
2018-04-06 00:00:07 +00:00
|
|
|
Expand(this, &entry, derived, qualified, levels);
|
2018-02-26 02:45:46 +00:00
|
|
|
return entry;
|
2017-12-06 04:39:44 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
void Run(In_CclsInheritanceHierarchy *request) override {
|
|
|
|
auto ¶ms = request->params;
|
2018-03-31 03:16:33 +00:00
|
|
|
Out_CclsInheritanceHierarchy out;
|
2017-12-06 03:32:33 +00:00
|
|
|
out.id = request->id;
|
|
|
|
|
2018-08-04 06:01:01 +00:00
|
|
|
if (!params.flat && params.id.size()) {
|
2018-04-30 04:49:03 +00:00
|
|
|
try {
|
|
|
|
params.usr = std::stoull(params.id);
|
|
|
|
} catch (...) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-31 03:16:33 +00:00
|
|
|
Out_CclsInheritanceHierarchy::Entry entry;
|
2018-04-30 04:49:03 +00:00
|
|
|
entry.id = std::to_string(params.usr);
|
|
|
|
entry.usr = params.usr;
|
2018-02-26 02:45:46 +00:00
|
|
|
entry.kind = params.kind;
|
2018-05-30 06:56:14 +00:00
|
|
|
if (((entry.kind == SymbolKind::Func && db->HasFunc(entry.usr)) ||
|
|
|
|
(entry.kind == SymbolKind::Type && db->HasType(entry.usr))) &&
|
2018-04-30 04:49:03 +00:00
|
|
|
Expand(this, &entry, params.derived, params.qualified, params.levels))
|
2018-02-26 02:45:46 +00:00
|
|
|
out.result = std::move(entry);
|
2018-02-28 05:56:40 +00:00
|
|
|
} else {
|
2018-08-09 17:08:14 +00:00
|
|
|
QueryFile *file;
|
2018-02-28 05:56:40 +00:00
|
|
|
if (!FindFileOrFail(db, project, request->id,
|
|
|
|
params.textDocument.uri.GetPath(), &file))
|
|
|
|
return;
|
2018-08-09 17:08:14 +00:00
|
|
|
WorkingFile *wfile = working_files->GetFileByFilename(file->def->path);
|
2018-02-28 05:56:40 +00:00
|
|
|
|
2018-05-28 00:50:02 +00:00
|
|
|
for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, params.position))
|
2018-02-28 05:56:40 +00:00
|
|
|
if (sym.kind == SymbolKind::Func || sym.kind == SymbolKind::Type) {
|
2018-04-06 00:00:07 +00:00
|
|
|
out.result = BuildInitial(sym, params.derived, params.qualified,
|
2018-02-28 05:56:40 +00:00
|
|
|
params.levels);
|
|
|
|
break;
|
|
|
|
}
|
2018-02-26 02:45:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:01:01 +00:00
|
|
|
if (!params.flat) {
|
|
|
|
pipeline::WriteStdout(kMethodType, out);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Out_LocationList out1;
|
|
|
|
out1.id = request->id;
|
|
|
|
if (out.result) {
|
|
|
|
std::queue<Out_CclsInheritanceHierarchy::Entry *> q;
|
|
|
|
for (auto &entry1 : out.result->children)
|
|
|
|
q.push(&entry1);
|
|
|
|
while (q.size()) {
|
|
|
|
auto *entry = q.front();
|
|
|
|
q.pop();
|
|
|
|
if (entry->location.uri.raw_uri.size())
|
|
|
|
out1.result.push_back({entry->location});
|
|
|
|
for (auto &entry1 : entry->children)
|
|
|
|
q.push(&entry1);
|
|
|
|
}
|
2018-08-24 03:33:58 +00:00
|
|
|
std::sort(out1.result.begin(), out1.result.end());
|
|
|
|
out1.result.erase(std::unique(out1.result.begin(), out1.result.end()),
|
|
|
|
out1.result.end());
|
2018-08-04 06:01:01 +00:00
|
|
|
}
|
|
|
|
pipeline::WriteStdout(kMethodType, out1);
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
};
|
2018-03-31 03:16:33 +00:00
|
|
|
REGISTER_MESSAGE_HANDLER(Handler_CclsInheritanceHierarchy);
|
2018-02-28 05:56:40 +00:00
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
} // namespace
|