mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-11 03:12:14 +00:00
86 lines
2.7 KiB
C++
86 lines
2.7 KiB
C++
/* 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.
|
|
==============================================================================*/
|
|
|
|
#include "message_handler.hh"
|
|
#include "pipeline.hh"
|
|
#include "project.hh"
|
|
#include "query.hh"
|
|
|
|
namespace ccls {
|
|
REFLECT_STRUCT(IndexInclude, line, resolved_path);
|
|
REFLECT_STRUCT(QueryFile::Def, path, args, language, dependencies, includes,
|
|
skipped_ranges);
|
|
|
|
namespace {
|
|
struct Out_cclsInfo {
|
|
struct DB {
|
|
int files, funcs, types, vars;
|
|
} db;
|
|
struct Pipeline {
|
|
int pendingIndexRequests;
|
|
} pipeline;
|
|
struct Project {
|
|
int entries;
|
|
} project;
|
|
};
|
|
REFLECT_STRUCT(Out_cclsInfo::DB, files, funcs, types, vars);
|
|
REFLECT_STRUCT(Out_cclsInfo::Pipeline, pendingIndexRequests);
|
|
REFLECT_STRUCT(Out_cclsInfo::Project, entries);
|
|
REFLECT_STRUCT(Out_cclsInfo, db, pipeline, project);
|
|
} // namespace
|
|
|
|
void MessageHandler::ccls_info(EmptyParam &, ReplyOnce &reply) {
|
|
Out_cclsInfo result;
|
|
result.db.files = db->files.size();
|
|
result.db.funcs = db->funcs.size();
|
|
result.db.types = db->types.size();
|
|
result.db.vars = db->vars.size();
|
|
result.pipeline.pendingIndexRequests = pipeline::pending_index_requests;
|
|
result.project.entries = 0;
|
|
for (auto &[_, folder] : project->root2folder)
|
|
result.project.entries += folder.entries.size();
|
|
reply(result);
|
|
}
|
|
|
|
struct FileInfoParam : TextDocumentParam {
|
|
bool dependencies = false;
|
|
bool includes = false;
|
|
bool skipped_ranges = false;
|
|
};
|
|
REFLECT_STRUCT(FileInfoParam, textDocument, dependencies, includes,
|
|
skipped_ranges);
|
|
|
|
void MessageHandler::ccls_fileInfo(JsonReader &reader, ReplyOnce &reply) {
|
|
FileInfoParam param;
|
|
reflect(reader, param);
|
|
QueryFile *file = findFile(param.textDocument.uri.getPath());
|
|
if (!file)
|
|
return;
|
|
|
|
QueryFile::Def result;
|
|
// Expose some fields of |QueryFile::Def|.
|
|
result.path = file->def->path;
|
|
result.args = file->def->args;
|
|
result.language = file->def->language;
|
|
if (param.dependencies)
|
|
result.dependencies = file->def->dependencies;
|
|
if (param.includes)
|
|
result.includes = file->def->includes;
|
|
if (param.skipped_ranges)
|
|
result.skipped_ranges = file->def->skipped_ranges;
|
|
reply(result);
|
|
}
|
|
} // namespace ccls
|