Skip to content

Commit

Permalink
Switch to using document URI to store managed files (#288)
Browse files Browse the repository at this point in the history
* Switch to using document URI to store managed files

We also have to normalise document URI to lowercase on windows/mac to deal with case insensitive file systems

We leave "getTextDocumentFromModuleName" for simplicity

* Fix tests

* Update changelog
  • Loading branch information
JohnnyMorganz committed Feb 9, 2023
1 parent 6a812d4 commit 728e9ad
Show file tree
Hide file tree
Showing 18 changed files with 82 additions and 110 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed

- Changed internal representation of documents to reduce the likelihood of Request Failed for "No managed text document"

## [1.16.2] - 2023-02-01

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/DocumentationParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ std::vector<std::string> WorkspaceFolder::getComments(const Luau::ModuleName& mo
return {};

// Get relevant text document
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocumentFromModuleName(moduleName);
bool tempDocument = false;
if (!textDocument)
{
Expand Down
12 changes: 2 additions & 10 deletions src/LanguageServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,16 +476,8 @@ void LanguageServer::recomputeDiagnostics(WorkspaceFolderPtr& workspace, const C
// Recompute diagnostics for all currently opened files
else
{
for (const auto& [file, document] : workspace->fileResolver.managedFiles)
{
auto filePath = workspace->fileResolver.resolveToRealPath(file);
if (filePath)
{

auto uri = Uri::file(*filePath);
this->pushDiagnostics(workspace, uri, document.version());
}
}
for (const auto& [_, document] : workspace->fileResolver.managedFiles)
this->pushDiagnostics(workspace, document.uri(), document.version());
}
}
else
Expand Down
64 changes: 14 additions & 50 deletions src/Workspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,54 +9,41 @@

void WorkspaceFolder::openTextDocument(const lsp::DocumentUri& uri, const lsp::DidOpenTextDocumentParams& params)
{
auto moduleName = fileResolver.getModuleName(uri);
auto normalisedUri = fileResolver.normalisedUriString(uri);

fileResolver.managedFiles.emplace(
std::make_pair(moduleName, TextDocument(uri, params.textDocument.languageId, params.textDocument.version, params.textDocument.text)));
std::make_pair(normalisedUri, TextDocument(uri, params.textDocument.languageId, params.textDocument.version, params.textDocument.text)));

// Mark the file as dirty as we don't know what changes were made to it
auto moduleName = fileResolver.getModuleName(uri);
frontend.markDirty(moduleName);
}

void WorkspaceFolder::updateTextDocument(
const lsp::DocumentUri& uri, const lsp::DidChangeTextDocumentParams& params, std::vector<Luau::ModuleName>* markedDirty)
{
auto moduleName = fileResolver.getModuleName(uri);
auto normalisedUri = fileResolver.normalisedUriString(uri);

if (!contains(fileResolver.managedFiles, moduleName))
if (!contains(fileResolver.managedFiles, normalisedUri))
{
// Check if we have the original file URI stored (https://github.com/JohnnyMorganz/luau-lsp/issues/26)
// TODO: can be potentially removed when server generates sourcemap
auto fsPath = uri.fsPath().generic_string();
if (fsPath != moduleName && contains(fileResolver.managedFiles, fsPath))
{
// Change the managed file key to use the new modulename
auto nh = fileResolver.managedFiles.extract(fsPath);
nh.key() = moduleName;
fileResolver.managedFiles.insert(std::move(nh));
}
else
{
client->sendLogMessage(lsp::MessageType::Error, "Text Document not loaded locally: " + uri.toString());
return;
}
client->sendLogMessage(lsp::MessageType::Error, "Text Document not loaded locally: " + uri.toString());
return;
}
auto& textDocument = fileResolver.managedFiles.at(moduleName);
auto& textDocument = fileResolver.managedFiles.at(normalisedUri);
textDocument.update(params.contentChanges, params.textDocument.version);

// Mark the module dirty for the typechecker
auto moduleName = fileResolver.getModuleName(uri);
frontend.markDirty(moduleName, markedDirty);
}

void WorkspaceFolder::closeTextDocument(const lsp::DocumentUri& uri)
{
auto config = client->getConfiguration(rootUri);
auto moduleName = fileResolver.getModuleName(uri);
fileResolver.managedFiles.erase(moduleName);

// Clear out base uri fsPath as well, in case we managed it like that
// TODO: can be potentially removed when server generates sourcemap
fileResolver.managedFiles.erase(uri.fsPath().generic_string());
fileResolver.managedFiles.erase(fileResolver.normalisedUriString(uri));

// Mark the module as dirty as we no longer track its changes
auto config = client->getConfiguration(rootUri);
auto moduleName = fileResolver.getModuleName(uri);
frontend.markDirty(moduleName);

// Refresh workspace diagnostics to clear diagnostics on ignored files
Expand Down Expand Up @@ -137,29 +124,6 @@ bool WorkspaceFolder::updateSourceMap()
frontend.typeChecker, instanceTypes, fileResolver, /* TODO - expressiveTypes: */ config.diagnostics.strictDatamodelTypes);
types::registerInstanceTypes(frontend.typeCheckerForAutocomplete, instanceTypes, fileResolver, /* TODO - expressiveTypes: */ true);

// Update managed file paths as they may be converted to virtual
// Check if we have the original file URIs stored (https://github.com/JohnnyMorganz/luau-lsp/issues/26)
std::vector<std::pair<Luau::ModuleName, TextDocument>> movedFiles;
for (auto it = fileResolver.managedFiles.begin(); it != fileResolver.managedFiles.end();)
{
if (!fileResolver.isVirtualPath(it->first))
{
if (auto virtualPath = fileResolver.resolveToVirtualPath(it->first); virtualPath && virtualPath != it->first)
{
// Store the new ModuleName pairing into a vector and remove the old key
movedFiles.emplace_back(std::make_pair(*virtualPath, it->second));
it = fileResolver.managedFiles.erase(it);
continue; // Ensure we continue so we don't increment iterator and skip next element
}
}

it++;
}

// Add any new pairings back into the map
for (auto& pair : movedFiles)
fileResolver.managedFiles.emplace(pair);

return true;
}
else
Expand Down
36 changes: 24 additions & 12 deletions src/WorkspaceFileResolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,33 @@ Luau::ModuleName WorkspaceFileResolver::getModuleName(const Uri& name)

return fsPath;
}
const TextDocument* WorkspaceFileResolver::getTextDocument(const Luau::ModuleName& name) const

const std::string WorkspaceFileResolver::normalisedUriString(const lsp::DocumentUri& uri) const
{
auto uriString = uri.toString();

// As windows/macOS is case insensitive, we lowercase the URI string for simplicitly and to handle
// normalisation issues
#if defined(_WIN32) || defined(__APPLE__)
uriString = toLower(uriString);
#endif

return uriString;
}

const TextDocument* WorkspaceFileResolver::getTextDocument(const lsp::DocumentUri& uri) const
{
auto it = managedFiles.find(name);
auto it = managedFiles.find(normalisedUriString(uri));
if (it != managedFiles.end())
return &it->second;

// HACK: attempting to solve "No managed text document"
// Check to see if we have the file stored using the URI instead
// https://github.com/JohnnyMorganz/luau-lsp/issues/26
if (auto fsPath = resolveToRealPath(name))
{
it = managedFiles.find(fsPath->generic_string());
if (it != managedFiles.end())
return &it->second;
}
return nullptr;
}

const TextDocument* WorkspaceFileResolver::getTextDocumentFromModuleName(const Luau::ModuleName& name) const
{
if (auto filePath = resolveToRealPath(name))
return getTextDocument(Uri::file(*filePath));

return nullptr;
}
Expand Down Expand Up @@ -124,7 +136,7 @@ std::optional<Luau::SourceCode> WorkspaceFileResolver::readSource(const Luau::Mo
sourceType = sourceCodeTypeFromPath(realFileName);
}

if (auto textDocument = getTextDocument(name))
if (auto textDocument = getTextDocumentFromModuleName(name))
{
source = textDocument->getText();
}
Expand Down
8 changes: 6 additions & 2 deletions src/include/LSP/WorkspaceFileResolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct WorkspaceFileResolver
PluginNodePtr pluginInfo;

// Currently opened files where content is managed by client
mutable std::unordered_map<Luau::ModuleName, TextDocument> managedFiles;
mutable std::unordered_map</* DocumentUri */ std::string, TextDocument> managedFiles;
mutable std::unordered_map<std::string, Luau::Config> configCache;
// Errors found when loading .luaurc files - only used for the CLI
mutable std::vector<std::pair<std::filesystem::path, std::string>> configErrors;
Expand All @@ -42,8 +42,12 @@ struct WorkspaceFileResolver
WorkspaceFileResolver(const Luau::Config defaultConfig)
: defaultConfig(defaultConfig){};

// Handle normalisation to simplify lookup
const std::string normalisedUriString(const lsp::DocumentUri& uri) const;

/// The file is managed by the client, so FS will be out of date
const TextDocument* getTextDocument(const Luau::ModuleName& name) const;
const TextDocument* getTextDocument(const lsp::DocumentUri& uri) const;
const TextDocument* getTextDocumentFromModuleName(const Luau::ModuleName& name) const;

/// The name points to a virtual path (i.e., game/ or ProjectRoot/)
bool isVirtualPath(const Luau::ModuleName& name) const
Expand Down
4 changes: 2 additions & 2 deletions src/operations/ColorProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ lsp::DocumentColorResult WorkspaceFolder::documentColor(const lsp::DocumentColor
return {};

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

// Run the type checker to ensure we are up to date
if (frontend.isDirty(moduleName))
Expand Down
6 changes: 3 additions & 3 deletions src/operations/Completion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static constexpr const char* Keywords = "7";
void WorkspaceFolder::endAutocompletion(const lsp::CompletionParams& params)
{
auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto document = fileResolver.getTextDocument(moduleName);
auto document = fileResolver.getTextDocument(params.textDocument.uri);
if (!document)
return;
auto position = document->convertPosition(params.position);
Expand Down Expand Up @@ -306,9 +306,9 @@ std::vector<lsp::CompletionItem> WorkspaceFolder::completion(const lsp::Completi
}

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

auto position = textDocument->convertPosition(params.position);
auto result = Luau::autocomplete(frontend, moduleName, position,
Expand Down
6 changes: 3 additions & 3 deletions src/operations/Diagnostics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lsp::DocumentDiagnosticReport WorkspaceFolder::documentDiagnostics(const lsp::Do
std::unordered_map<std::string /* lsp::DocumentUri */, std::vector<lsp::Diagnostic>> relatedDiagnostics;

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
return report; // Bail early with empty report - file was likely closed

Expand Down Expand Up @@ -47,7 +47,7 @@ lsp::DocumentDiagnosticReport WorkspaceFolder::documentDiagnostics(const lsp::Do
auto fileName = fileResolver.resolveToRealPath(error.moduleName);
if (!fileName || isIgnoredFile(*fileName, config))
continue;
auto diagnostic = createTypeErrorDiagnostic(error, &fileResolver, fileResolver.getTextDocument(error.moduleName));
auto diagnostic = createTypeErrorDiagnostic(error, &fileResolver, fileResolver.getTextDocumentFromModuleName(error.moduleName));
auto uri = Uri::file(*fileName);
auto& currentDiagnostics = relatedDiagnostics[uri.toString()];
currentDiagnostics.emplace_back(diagnostic);
Expand Down Expand Up @@ -105,7 +105,7 @@ lsp::WorkspaceDiagnosticReport WorkspaceFolder::workspaceDiagnostics(const lsp::
for (auto uri : files)
{
auto moduleName = fileResolver.getModuleName(uri);
auto document = fileResolver.getTextDocument(moduleName);
auto document = fileResolver.getTextDocument(uri);

lsp::WorkspaceDocumentDiagnosticReport documentReport;
documentReport.uri = uri;
Expand Down
4 changes: 2 additions & 2 deletions src/operations/DocumentSymbol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ struct DocumentSymbolsVisitor : public Luau::AstVisitor
std::optional<std::vector<lsp::DocumentSymbol>> WorkspaceFolder::documentSymbol(const lsp::DocumentSymbolParams& params)
{
auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

// Run the type checker to ensure we are up to date
if (frontend.isDirty(moduleName))
Expand Down
14 changes: 7 additions & 7 deletions src/operations/GotoDefinition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ lsp::DefinitionResult WorkspaceFolder::gotoDefinition(const lsp::DefinitionParam
lsp::DefinitionResult result;

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());
auto position = textDocument->convertPosition(params.position);

// Run the type checker to ensure we are up to date
Expand Down Expand Up @@ -102,8 +102,8 @@ lsp::DefinitionResult WorkspaceFolder::gotoDefinition(const lsp::DefinitionParam
{
if (auto file = fileResolver.resolveToRealPath(*definitionModuleName))
{
auto document = fileResolver.getTextDocument(*definitionModuleName);
auto uri = document ? document->uri() : Uri::file(*file);
auto document = fileResolver.getTextDocumentFromModuleName(*definitionModuleName);
auto uri = Uri::file(*file);
result.emplace_back(lsp::Location{uri, lsp::Range{toUTF16(document, location->begin), toUTF16(document, location->end)}});
}
}
Expand Down Expand Up @@ -142,7 +142,7 @@ lsp::DefinitionResult WorkspaceFolder::gotoDefinition(const lsp::DefinitionParam
else
return result;

referenceTextDocument = fileResolver.getTextDocument(*importedName);
referenceTextDocument = fileResolver.getTextDocumentFromModuleName(*importedName);
if (!referenceTextDocument)
{
// Open a temporary text document so we can perform operations on it
Expand Down Expand Up @@ -186,9 +186,9 @@ std::optional<lsp::Location> WorkspaceFolder::gotoTypeDefinition(const lsp::Type
// If its a type, then just find the definintion of that type (i.e. the type alias)

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());
auto position = textDocument->convertPosition(params.position);

// Run the type checker to ensure we are up to date
Expand Down
4 changes: 2 additions & 2 deletions src/operations/Hover.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ std::optional<lsp::Hover> WorkspaceFolder::hover(const lsp::HoverParams& params)
return std::nullopt;

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

auto position = textDocument->convertPosition(params.position);

Expand Down
4 changes: 2 additions & 2 deletions src/operations/InlayHints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@ lsp::InlayHintResult WorkspaceFolder::inlayHint(const lsp::InlayHintParams& para
auto config = client->getConfiguration(rootUri);

auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

std::vector<lsp::DocumentLink> result;

Expand Down
4 changes: 2 additions & 2 deletions src/operations/References.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ lsp::ReferenceResult WorkspaceFolder::references(const lsp::ReferenceParams& par
{
// TODO: currently we only support searching for a binding at a current position
auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

auto position = textDocument->convertPosition(params.position);

Expand Down
4 changes: 2 additions & 2 deletions src/operations/Rename.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ lsp::RenameResult WorkspaceFolder::rename(const lsp::RenameParams& params)

// TODO: currently we only support renaming local bindings in the current file
auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());
auto position = textDocument->convertPosition(params.position);

// Run the type checker to ensure we are up to date
Expand Down
4 changes: 2 additions & 2 deletions src/operations/SemanticTokens.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,9 @@ std::vector<size_t> packTokens(const TextDocument* textDocument, std::vector<Sem
std::optional<lsp::SemanticTokens> WorkspaceFolder::semanticTokens(const lsp::SemanticTokensParams& params)
{
auto moduleName = fileResolver.getModuleName(params.textDocument.uri);
auto textDocument = fileResolver.getTextDocument(moduleName);
auto textDocument = fileResolver.getTextDocument(params.textDocument.uri);
if (!textDocument)
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + moduleName);
throw JsonRpcException(lsp::ErrorCode::RequestFailed, "No managed text document for " + params.textDocument.uri.toString());

// Run the type checker to ensure we are up to date
if (frontend.isDirty(moduleName))
Expand Down
Loading

0 comments on commit 728e9ad

Please sign in to comment.