mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-24 16:45:07 +00:00
fc1db06538
Delete method.{cc,h} Rename $ccls/setSkippedRanges to $ccls/publishSkippedRanges Rename $ccls/publishSemanticHighlighting to $ccls/publishSemanticHighlight; stableId -> id
84 lines
3.0 KiB
C++
84 lines
3.0 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.h"
|
|
#include "pipeline.hh"
|
|
#include "working_files.h"
|
|
using namespace ccls;
|
|
|
|
namespace {
|
|
MethodType kMethodType = "textDocument/codeAction";
|
|
|
|
struct In_TextDocumentCodeAction : public RequestMessage {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
|
|
// Contains additional diagnostic information about the context in which
|
|
// a code action is run.
|
|
struct lsCodeActionContext {
|
|
// An array of diagnostics.
|
|
std::vector<lsDiagnostic> diagnostics;
|
|
};
|
|
// Params for the CodeActionRequest
|
|
struct lsCodeActionParams {
|
|
// The document in which the command was invoked.
|
|
lsTextDocumentIdentifier textDocument;
|
|
// The range for which the command was invoked.
|
|
lsRange range;
|
|
// Context carrying additional information.
|
|
lsCodeActionContext context;
|
|
} params;
|
|
};
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentCodeAction::lsCodeActionContext,
|
|
diagnostics);
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentCodeAction::lsCodeActionParams, textDocument,
|
|
range, context);
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentCodeAction, id, params);
|
|
REGISTER_IN_MESSAGE(In_TextDocumentCodeAction);
|
|
|
|
struct lsCodeAction {
|
|
std::string title;
|
|
const char *kind = "quickfix";
|
|
lsWorkspaceEdit edit;
|
|
};
|
|
MAKE_REFLECT_STRUCT(lsCodeAction, title, kind, edit);
|
|
|
|
struct Handler_TextDocumentCodeAction
|
|
: BaseMessageHandler<In_TextDocumentCodeAction> {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
|
|
void Run(In_TextDocumentCodeAction *request) override {
|
|
const auto ¶ms = request->params;
|
|
WorkingFile *wfile =
|
|
working_files->GetFileByFilename(params.textDocument.uri.GetPath());
|
|
if (!wfile)
|
|
return;
|
|
std::vector<lsCodeAction> result;
|
|
std::vector<lsDiagnostic> diagnostics;
|
|
working_files->DoAction([&]() { diagnostics = wfile->diagnostics_; });
|
|
for (lsDiagnostic &diag : diagnostics)
|
|
if (diag.fixits_.size()) {
|
|
lsCodeAction &cmd = result.emplace_back();
|
|
cmd.title = "FixIt: " + diag.message;
|
|
auto &edit = cmd.edit.documentChanges.emplace_back();
|
|
edit.textDocument.uri = params.textDocument.uri;
|
|
edit.textDocument.version = wfile->version;
|
|
edit.edits = diag.fixits_;
|
|
}
|
|
pipeline::Reply(request->id, result);
|
|
}
|
|
};
|
|
REGISTER_MESSAGE_HANDLER(Handler_TextDocumentCodeAction);
|
|
} // namespace
|