#include "message_handler.h" #include "query_utils.h" #include "queue_manager.h" namespace { lsWorkspaceEdit BuildWorkspaceEdit(QueryDatabase* db, WorkingFiles* working_files, const std::vector& uses, const std::string& new_text) { std::unordered_map path_to_edit; for (Use use : uses) { optional ls_location = GetLsLocation(db, working_files, use); if (!ls_location) continue; QueryFileId file_id = db->GetFileId(use); if (path_to_edit.find(file_id) == path_to_edit.end()) { path_to_edit[file_id] = lsTextDocumentEdit(); QueryFile& file = db->files[file_id.id]; if (!file.def) continue; const std::string& path = file.def->path; path_to_edit[file_id].textDocument.uri = lsDocumentUri::FromPath(path); WorkingFile* working_file = working_files->GetFileByFilename(path); if (working_file) path_to_edit[file_id].textDocument.version = working_file->version; } lsTextEdit edit; edit.range = ls_location->range; edit.newText = new_text; // vscode complains if we submit overlapping text edits. auto& edits = path_to_edit[file_id].edits; if (std::find(edits.begin(), edits.end(), edit) == edits.end()) edits.push_back(edit); } lsWorkspaceEdit edit; for (const auto& changes : path_to_edit) edit.documentChanges.push_back(changes.second); return edit; } struct Ipc_TextDocumentRename : public RequestMessage { const static IpcId kIpcId = IpcId::TextDocumentRename; struct Params { // The document to format. lsTextDocumentIdentifier textDocument; // The position at which this request was sent. lsPosition position; // The new name of the symbol. If the given name is not valid the // request must return a [ResponseError](#ResponseError) with an // appropriate message set. std::string newName; }; Params params; }; MAKE_REFLECT_STRUCT(Ipc_TextDocumentRename::Params, textDocument, position, newName); MAKE_REFLECT_STRUCT(Ipc_TextDocumentRename, id, params); REGISTER_IPC_MESSAGE(Ipc_TextDocumentRename); struct Out_TextDocumentRename : public lsOutMessage { lsRequestId id; lsWorkspaceEdit result; }; MAKE_REFLECT_STRUCT(Out_TextDocumentRename, jsonrpc, id, result); struct TextDocumentRenameHandler : BaseMessageHandler { void Run(Ipc_TextDocumentRename* request) override { QueryFileId file_id; QueryFile* file; if (!FindFileOrFail(db, project, request->id, request->params.textDocument.uri.GetPath(), &file, &file_id)) { return; } WorkingFile* working_file = working_files->GetFileByFilename(file->def->path); Out_TextDocumentRename out; out.id = request->id; for (SymbolRef sym : FindSymbolsAtLocation(working_file, file, request->params.position)) { // Found symbol. Return references to rename. out.result = BuildWorkspaceEdit(db, working_files, GetUsesOfSymbol(db, sym, true), request->params.newName); break; } QueueManager::WriteStdout(IpcId::TextDocumentRename, out); } }; REGISTER_MESSAGE_HANDLER(TextDocumentRenameHandler); } // namespace