ccls/src/messages/workspace_didChangeWatchedFiles.cc

69 lines
2.1 KiB
C++
Raw Normal View History

2018-01-26 07:04:07 +00:00
#include "clang_complete.h"
#include "message_handler.h"
2018-01-26 07:04:07 +00:00
#include "project.h"
2018-05-28 00:50:02 +00:00
#include "pipeline.hh"
2018-01-26 07:04:07 +00:00
#include "working_files.h"
2018-05-28 00:50:02 +00:00
using namespace ccls;
2018-01-26 07:04:07 +00:00
namespace {
MethodType kMethodType = "workspace/didChangeWatchedFiles";
enum class lsFileChangeType {
Created = 1,
Changed = 2,
Deleted = 3,
};
2018-01-30 00:35:01 +00:00
MAKE_REFLECT_TYPE_PROXY(lsFileChangeType);
struct lsFileEvent {
lsDocumentUri uri;
lsFileChangeType type;
};
MAKE_REFLECT_STRUCT(lsFileEvent, uri, type);
struct lsDidChangeWatchedFilesParams {
std::vector<lsFileEvent> changes;
};
MAKE_REFLECT_STRUCT(lsDidChangeWatchedFilesParams, changes);
2018-03-22 05:01:21 +00:00
struct In_WorkspaceDidChangeWatchedFiles : public NotificationInMessage {
MethodType GetMethodType() const override { return kMethodType; }
lsDidChangeWatchedFilesParams params;
};
MAKE_REFLECT_STRUCT(In_WorkspaceDidChangeWatchedFiles, params);
REGISTER_IN_MESSAGE(In_WorkspaceDidChangeWatchedFiles);
struct Handler_WorkspaceDidChangeWatchedFiles
: BaseMessageHandler<In_WorkspaceDidChangeWatchedFiles> {
MethodType GetMethodType() const override { return kMethodType; }
void Run(In_WorkspaceDidChangeWatchedFiles* request) override {
for (lsFileEvent& event : request->params.changes) {
2018-01-26 07:04:07 +00:00
std::string path = event.uri.GetPath();
Project::Entry entry;
{
std::lock_guard<std::mutex> lock(project->mutex_);
auto it = project->absolute_path_to_entry_index_.find(path);
if (it == project->absolute_path_to_entry_index_.end())
continue;
entry = project->entries[it->second];
}
2018-01-27 07:17:49 +00:00
bool is_interactive =
working_files->GetFileByFilename(entry.filename) != nullptr;
switch (event.type) {
case lsFileChangeType::Created:
2018-01-26 07:04:07 +00:00
case lsFileChangeType::Changed: {
2018-05-28 00:50:02 +00:00
pipeline::Index(path, entry.args, is_interactive);
if (is_interactive)
clang_complete->NotifySave(path);
break;
2018-01-26 07:04:07 +00:00
}
case lsFileChangeType::Deleted:
2018-05-28 00:50:02 +00:00
pipeline::Index(path, entry.args, is_interactive);
break;
}
}
}
};
REGISTER_MESSAGE_HANDLER(Handler_WorkspaceDidChangeWatchedFiles);
} // namespace