2018-09-28 05:16:42 +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.
|
|
|
|
==============================================================================*/
|
|
|
|
|
|
|
|
#include "clang_complete.hh"
|
2018-10-29 04:21:21 +00:00
|
|
|
#include "include_complete.hh"
|
2018-10-28 17:49:31 +00:00
|
|
|
#include "message_handler.hh"
|
2018-09-28 05:16:42 +00:00
|
|
|
#include "pipeline.hh"
|
2018-10-28 17:49:31 +00:00
|
|
|
#include "project.hh"
|
2018-10-29 04:21:21 +00:00
|
|
|
#include "working_files.hh"
|
2018-09-28 05:16:42 +00:00
|
|
|
|
2018-10-28 17:49:31 +00:00
|
|
|
namespace ccls {
|
|
|
|
void MessageHandler::textDocument_didChange(TextDocumentDidChangeParam ¶m) {
|
|
|
|
std::string path = param.textDocument.uri.GetPath();
|
2018-10-29 04:21:21 +00:00
|
|
|
wfiles->OnChange(param);
|
2018-10-28 17:49:31 +00:00
|
|
|
if (g_config->index.onChange)
|
|
|
|
pipeline::Index(path, {}, IndexMode::OnChange);
|
|
|
|
clang_complete->NotifyView(path);
|
|
|
|
if (g_config->diagnostics.onChange >= 0)
|
|
|
|
clang_complete->DiagnosticsUpdate(path, g_config->diagnostics.onChange);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageHandler::textDocument_didClose(TextDocumentParam ¶m) {
|
|
|
|
std::string path = param.textDocument.uri.GetPath();
|
2018-10-29 04:21:21 +00:00
|
|
|
wfiles->OnClose(param.textDocument);
|
2018-10-28 17:49:31 +00:00
|
|
|
clang_complete->OnClose(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageHandler::textDocument_didOpen(DidOpenTextDocumentParam ¶m) {
|
|
|
|
std::string path = param.textDocument.uri.GetPath();
|
2018-10-29 04:21:21 +00:00
|
|
|
WorkingFile *working_file = wfiles->OnOpen(param.textDocument);
|
2018-10-28 17:49:31 +00:00
|
|
|
if (std::optional<std::string> cached_file_contents =
|
|
|
|
pipeline::LoadIndexedContent(path))
|
|
|
|
working_file->SetIndexContent(*cached_file_contents);
|
|
|
|
|
|
|
|
ReplyOnce reply;
|
|
|
|
QueryFile *file = FindFile(reply, path);
|
|
|
|
if (file) {
|
|
|
|
EmitSkippedRanges(working_file, *file);
|
|
|
|
EmitSemanticHighlight(db, working_file, *file);
|
2018-09-28 05:16:42 +00:00
|
|
|
}
|
2018-10-28 17:49:31 +00:00
|
|
|
include_complete->AddFile(working_file->filename);
|
2018-09-28 05:16:42 +00:00
|
|
|
|
2018-10-28 17:49:31 +00:00
|
|
|
// Submit new index request if it is not a header file or there is no
|
|
|
|
// pending index request.
|
|
|
|
std::pair<LanguageId, bool> lang = lookupExtension(path);
|
|
|
|
if ((lang.first != LanguageId::Unknown && !lang.second) ||
|
|
|
|
!pipeline::pending_index_requests)
|
|
|
|
pipeline::Index(path, {}, IndexMode::Normal);
|
2018-09-28 05:16:42 +00:00
|
|
|
|
2018-10-28 17:49:31 +00:00
|
|
|
clang_complete->NotifyView(path);
|
|
|
|
}
|
2018-09-28 05:16:42 +00:00
|
|
|
|
2018-10-28 17:49:31 +00:00
|
|
|
void MessageHandler::textDocument_didSave(TextDocumentParam ¶m) {
|
|
|
|
const std::string &path = param.textDocument.uri.GetPath();
|
|
|
|
pipeline::Index(path, {}, IndexMode::Normal);
|
|
|
|
clang_complete->NotifySave(path);
|
|
|
|
}
|
|
|
|
} // namespace ccls
|