2018-01-22 19:48:20 +08:00
|
|
|
//===---- URI.h - File URIs with schemes -------------------------*- C++-*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-01-22 19:48:20 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "URI.h"
|
2020-09-14 17:33:12 +08:00
|
|
|
#include "support/Logger.h"
|
2018-09-25 19:47:14 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2018-01-22 19:48:20 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2018-09-25 18:47:46 +08:00
|
|
|
#include "llvm/Support/FormatVariadic.h"
|
2018-01-22 19:48:20 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2018-09-25 18:47:46 +08:00
|
|
|
#include <algorithm>
|
2018-01-22 19:48:20 +08:00
|
|
|
|
|
|
|
LLVM_INSTANTIATE_REGISTRY(clang::clangd::URISchemeRegistry)
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
namespace {
|
|
|
|
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
bool isWindowsPath(llvm::StringRef Path) {
|
|
|
|
return Path.size() > 1 && llvm::isAlpha(Path[0]) && Path[1] == ':';
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isNetworkPath(llvm::StringRef Path) {
|
|
|
|
return Path.size() > 2 && Path[0] == Path[1] &&
|
|
|
|
llvm::sys::path::is_separator(Path[0]);
|
|
|
|
}
|
|
|
|
|
Remove \brief commands from doxygen comments.
Summary:
We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.
Patch produced by
for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done
[This is analogous to LLVM r331272 and CFE r331834]
Subscribers: srhines, nemanjai, javed.absar, kbarton, MaskRay, jkorous, arphaman, jfb, kadircet, jsji, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D66578
llvm-svn: 369643
2019-08-22 19:32:57 +08:00
|
|
|
/// This manages file paths in the file system. All paths in the scheme
|
2018-01-22 19:48:20 +08:00
|
|
|
/// are absolute (with leading '/').
|
2018-11-28 18:30:42 +08:00
|
|
|
/// Note that this scheme is hardcoded into the library and not registered in
|
|
|
|
/// registry.
|
2018-01-22 19:48:20 +08:00
|
|
|
class FileSystemScheme : public URIScheme {
|
|
|
|
public:
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<std::string>
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
getAbsolutePath(llvm::StringRef Authority, llvm::StringRef Body,
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::StringRef /*HintPath*/) const override {
|
2018-01-22 19:48:20 +08:00
|
|
|
if (!Body.startswith("/"))
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("File scheme: expect body to be an absolute path starting "
|
|
|
|
"with '/': {0}",
|
|
|
|
Body);
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
llvm::SmallString<128> Path;
|
|
|
|
if (!Authority.empty()) {
|
|
|
|
// Windows UNC paths e.g. file://server/share => \\server\share
|
|
|
|
("//" + Authority).toVector(Path);
|
|
|
|
} else if (isWindowsPath(Body.substr(1))) {
|
|
|
|
// Windows paths e.g. file:///X:/path => X:\path
|
2018-01-22 19:48:20 +08:00
|
|
|
Body.consume_front("/");
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
}
|
|
|
|
Path.append(Body);
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::sys::path::native(Path);
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
return std::string(Path);
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<URI>
|
|
|
|
uriFromAbsolutePath(llvm::StringRef AbsolutePath) const override {
|
2018-01-22 19:48:20 +08:00
|
|
|
std::string Body;
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
llvm::StringRef Authority;
|
|
|
|
llvm::StringRef Root = llvm::sys::path::root_name(AbsolutePath);
|
|
|
|
if (isNetworkPath(Root)) {
|
|
|
|
// Windows UNC paths e.g. \\server\share => file://server/share
|
|
|
|
Authority = Root.drop_front(2);
|
|
|
|
AbsolutePath.consume_front(Root);
|
|
|
|
} else if (isWindowsPath(Root)) {
|
|
|
|
// Windows paths e.g. X:\path => file:///X:/path
|
2018-01-22 19:48:20 +08:00
|
|
|
Body = "/";
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
}
|
2019-01-07 23:45:19 +08:00
|
|
|
Body += llvm::sys::path::convert_to_slash(AbsolutePath);
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
return URI("file", Authority, Body);
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<std::unique_ptr<URIScheme>>
|
|
|
|
findSchemeByName(llvm::StringRef Scheme) {
|
2018-11-28 18:30:42 +08:00
|
|
|
if (Scheme == "file")
|
2019-08-15 07:52:23 +08:00
|
|
|
return std::make_unique<FileSystemScheme>();
|
2018-11-28 18:30:42 +08:00
|
|
|
|
2020-06-19 07:40:00 +08:00
|
|
|
for (const auto &URIScheme : URISchemeRegistry::entries()) {
|
|
|
|
if (URIScheme.getName() != Scheme)
|
2018-01-22 19:48:20 +08:00
|
|
|
continue;
|
2020-06-19 07:40:00 +08:00
|
|
|
return URIScheme.instantiate();
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("Can't find scheme: {0}", Scheme);
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool shouldEscape(unsigned char C) {
|
|
|
|
// Unreserved characters.
|
2018-02-07 20:12:06 +08:00
|
|
|
if ((C >= 'a' && C <= 'z') || (C >= 'A' && C <= 'Z') ||
|
|
|
|
(C >= '0' && C <= '9'))
|
2018-01-22 19:48:20 +08:00
|
|
|
return false;
|
|
|
|
switch (C) {
|
|
|
|
case '-':
|
|
|
|
case '_':
|
|
|
|
case '.':
|
|
|
|
case '~':
|
|
|
|
case '/': // '/' is only reserved when parsing.
|
2018-10-09 18:29:54 +08:00
|
|
|
// ':' is only reserved for relative URI paths, which clangd doesn't produce.
|
|
|
|
case ':':
|
2018-01-22 19:48:20 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Encodes a string according to percent-encoding.
|
|
|
|
/// - Unreserved characters are not escaped.
|
|
|
|
/// - Reserved characters always escaped with exceptions like '/'.
|
|
|
|
/// - All other characters are escaped.
|
2019-07-08 10:46:21 +08:00
|
|
|
void percentEncode(llvm::StringRef Content, std::string &Out) {
|
2018-01-22 19:48:20 +08:00
|
|
|
for (unsigned char C : Content)
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
if (shouldEscape(C)) {
|
2019-07-08 10:46:21 +08:00
|
|
|
Out.push_back('%');
|
|
|
|
Out.push_back(llvm::hexdigit(C / 16));
|
|
|
|
Out.push_back(llvm::hexdigit(C % 16));
|
[clangd] Fix conversion from Windows UNC paths to file URI format.
Summary:
The fix improves handling of Windows UNC paths to align with Appendix E. Nonstandard Syntax Variations of RFC 8089.
Before this fix it was difficult to use Windows UNC paths in compile_commands.json database as such paths were converted to file URIs using 'file:////auth/share/file.cpp' notation instead of recommended 'file://auth/share/file.cpp'.
As an example, VS.Code cannot understand file URIs with 4 starting slashes, thus such features as go-to-definition, jump-to-file, hover tooltip, etc. stop working. This also applicable to files which reside on Windows network-mapped drives because clangd internally resolves file paths to real paths in some cases and such paths get resolved to UNC paths.
Reviewers: sammccall, kadircet
Reviewed By: sammccall
Subscribers: ormris, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, kbobyrev, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D84172
2020-07-22 18:13:08 +08:00
|
|
|
} else {
|
|
|
|
Out.push_back(C);
|
|
|
|
}
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Decodes a string according to percent-encoding.
|
2019-01-07 23:45:19 +08:00
|
|
|
std::string percentDecode(llvm::StringRef Content) {
|
2018-01-22 19:48:20 +08:00
|
|
|
std::string Result;
|
|
|
|
for (auto I = Content.begin(), E = Content.end(); I != E; ++I) {
|
|
|
|
if (*I != '%') {
|
|
|
|
Result += *I;
|
|
|
|
continue;
|
|
|
|
}
|
2019-01-07 23:45:19 +08:00
|
|
|
if (*I == '%' && I + 2 < Content.end() && llvm::isHexDigit(*(I + 1)) &&
|
|
|
|
llvm::isHexDigit(*(I + 2))) {
|
|
|
|
Result.push_back(llvm::hexFromNibbles(*(I + 1), *(I + 2)));
|
2018-01-22 19:48:20 +08:00
|
|
|
I += 2;
|
|
|
|
} else
|
|
|
|
Result.push_back(*I);
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
bool isValidScheme(llvm::StringRef Scheme) {
|
2018-09-25 18:47:46 +08:00
|
|
|
if (Scheme.empty())
|
|
|
|
return false;
|
2019-01-07 23:45:19 +08:00
|
|
|
if (!llvm::isAlpha(Scheme[0]))
|
2018-09-25 18:47:46 +08:00
|
|
|
return false;
|
|
|
|
return std::all_of(Scheme.begin() + 1, Scheme.end(), [](char C) {
|
2019-01-07 23:45:19 +08:00
|
|
|
return llvm::isAlnum(C) || C == '+' || C == '.' || C == '-';
|
2018-09-25 18:47:46 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:48:20 +08:00
|
|
|
} // namespace
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
URI::URI(llvm::StringRef Scheme, llvm::StringRef Authority,
|
|
|
|
llvm::StringRef Body)
|
2018-01-29 23:37:46 +08:00
|
|
|
: Scheme(Scheme), Authority(Authority), Body(Body) {
|
|
|
|
assert(!Scheme.empty());
|
|
|
|
assert((Authority.empty() || Body.startswith("/")) &&
|
|
|
|
"URI body must start with '/' when authority is present.");
|
2018-01-22 19:48:20 +08:00
|
|
|
}
|
|
|
|
|
2018-01-29 23:37:46 +08:00
|
|
|
std::string URI::toString() const {
|
2018-01-22 19:48:20 +08:00
|
|
|
std::string Result;
|
2019-07-08 10:46:21 +08:00
|
|
|
percentEncode(Scheme, Result);
|
|
|
|
Result.push_back(':');
|
2018-01-22 19:48:20 +08:00
|
|
|
if (Authority.empty() && Body.empty())
|
2019-07-08 10:46:21 +08:00
|
|
|
return Result;
|
2018-01-22 19:48:20 +08:00
|
|
|
// If authority if empty, we only print body if it starts with "/"; otherwise,
|
|
|
|
// the URI is invalid.
|
2019-01-07 23:45:19 +08:00
|
|
|
if (!Authority.empty() || llvm::StringRef(Body).startswith("/"))
|
2019-07-08 10:46:21 +08:00
|
|
|
{
|
|
|
|
Result.append("//");
|
|
|
|
percentEncode(Authority, Result);
|
|
|
|
}
|
|
|
|
percentEncode(Body, Result);
|
2018-01-22 19:48:20 +08:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<URI> URI::parse(llvm::StringRef OrigUri) {
|
2018-01-29 23:37:46 +08:00
|
|
|
URI U;
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::StringRef Uri = OrigUri;
|
2018-01-22 19:48:20 +08:00
|
|
|
|
|
|
|
auto Pos = Uri.find(':');
|
2019-01-07 23:45:19 +08:00
|
|
|
if (Pos == llvm::StringRef::npos)
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("Scheme must be provided in URI: {0}", OrigUri);
|
2018-09-25 18:47:46 +08:00
|
|
|
auto SchemeStr = Uri.substr(0, Pos);
|
|
|
|
U.Scheme = percentDecode(SchemeStr);
|
|
|
|
if (!isValidScheme(U.Scheme))
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("Invalid scheme: {0} (decoded: {1})", SchemeStr, U.Scheme);
|
2018-01-22 19:48:20 +08:00
|
|
|
Uri = Uri.substr(Pos + 1);
|
|
|
|
if (Uri.consume_front("//")) {
|
|
|
|
Pos = Uri.find('/');
|
|
|
|
U.Authority = percentDecode(Uri.substr(0, Pos));
|
|
|
|
Uri = Uri.substr(Pos);
|
|
|
|
}
|
|
|
|
U.Body = percentDecode(Uri);
|
|
|
|
return U;
|
|
|
|
}
|
|
|
|
|
2019-09-23 22:39:37 +08:00
|
|
|
llvm::Expected<std::string> URI::resolve(llvm::StringRef FileURI,
|
|
|
|
llvm::StringRef HintPath) {
|
|
|
|
auto Uri = URI::parse(FileURI);
|
|
|
|
if (!Uri)
|
|
|
|
return Uri.takeError();
|
|
|
|
auto Path = URI::resolve(*Uri, HintPath);
|
|
|
|
if (!Path)
|
|
|
|
return Path.takeError();
|
|
|
|
return *Path;
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<URI> URI::create(llvm::StringRef AbsolutePath,
|
|
|
|
llvm::StringRef Scheme) {
|
|
|
|
if (!llvm::sys::path::is_absolute(AbsolutePath))
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("Not a valid absolute path: {0}", AbsolutePath);
|
2018-01-22 19:48:20 +08:00
|
|
|
auto S = findSchemeByName(Scheme);
|
|
|
|
if (!S)
|
|
|
|
return S.takeError();
|
|
|
|
return S->get()->uriFromAbsolutePath(AbsolutePath);
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
URI URI::create(llvm::StringRef AbsolutePath) {
|
|
|
|
if (!llvm::sys::path::is_absolute(AbsolutePath))
|
[clangd] Cleanup: stop passing around list of supported URI schemes.
Summary:
Instead of passing around a list of supported URI schemes in clangd, we
expose an interface to convert a path to URI using any compatible scheme
that has been registered. It favors customized schemes and falls
back to "file" when no other scheme works.
Changes in this patch are:
- URI::create(AbsPath, URISchemes) -> URI::create(AbsPath). The new API finds a
compatible scheme from the registry.
- Remove URISchemes option everywhere (ClangdServer, SymbolCollecter, FileIndex etc).
- Unit tests will use "unittest" by default.
- Move "test" scheme from ClangdLSPServer to ClangdMain.cpp, and only
register the test scheme when lit-test or enable-lit-scheme is set.
(The new flag is added to make lit protocol.test work; I wonder if there
is alternative here.)
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D54800
llvm-svn: 347467
2018-11-22 23:02:05 +08:00
|
|
|
llvm_unreachable(
|
|
|
|
("Not a valid absolute path: " + AbsolutePath).str().c_str());
|
|
|
|
for (auto &Entry : URISchemeRegistry::entries()) {
|
|
|
|
auto URI = Entry.instantiate()->uriFromAbsolutePath(AbsolutePath);
|
2018-09-06 20:54:43 +08:00
|
|
|
// For some paths, conversion to different URI schemes is impossible. These
|
|
|
|
// should be just skipped.
|
|
|
|
if (!URI) {
|
|
|
|
// Ignore the error.
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::consumeError(URI.takeError());
|
2018-09-06 20:54:43 +08:00
|
|
|
continue;
|
|
|
|
}
|
[clangd] Cleanup: stop passing around list of supported URI schemes.
Summary:
Instead of passing around a list of supported URI schemes in clangd, we
expose an interface to convert a path to URI using any compatible scheme
that has been registered. It favors customized schemes and falls
back to "file" when no other scheme works.
Changes in this patch are:
- URI::create(AbsPath, URISchemes) -> URI::create(AbsPath). The new API finds a
compatible scheme from the registry.
- Remove URISchemes option everywhere (ClangdServer, SymbolCollecter, FileIndex etc).
- Unit tests will use "unittest" by default.
- Move "test" scheme from ClangdLSPServer to ClangdMain.cpp, and only
register the test scheme when lit-test or enable-lit-scheme is set.
(The new flag is added to make lit protocol.test work; I wonder if there
is alternative here.)
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D54800
llvm-svn: 347467
2018-11-22 23:02:05 +08:00
|
|
|
return std::move(*URI);
|
2018-09-06 20:54:43 +08:00
|
|
|
}
|
[clangd] Cleanup: stop passing around list of supported URI schemes.
Summary:
Instead of passing around a list of supported URI schemes in clangd, we
expose an interface to convert a path to URI using any compatible scheme
that has been registered. It favors customized schemes and falls
back to "file" when no other scheme works.
Changes in this patch are:
- URI::create(AbsPath, URISchemes) -> URI::create(AbsPath). The new API finds a
compatible scheme from the registry.
- Remove URISchemes option everywhere (ClangdServer, SymbolCollecter, FileIndex etc).
- Unit tests will use "unittest" by default.
- Move "test" scheme from ClangdLSPServer to ClangdMain.cpp, and only
register the test scheme when lit-test or enable-lit-scheme is set.
(The new flag is added to make lit protocol.test work; I wonder if there
is alternative here.)
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D54800
llvm-svn: 347467
2018-11-22 23:02:05 +08:00
|
|
|
// Fallback to file: scheme which should work for any paths.
|
|
|
|
return URI::createFile(AbsolutePath);
|
2018-09-06 20:54:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
URI URI::createFile(llvm::StringRef AbsolutePath) {
|
2018-11-28 18:30:42 +08:00
|
|
|
auto U = FileSystemScheme().uriFromAbsolutePath(AbsolutePath);
|
2018-01-29 23:37:46 +08:00
|
|
|
if (!U)
|
|
|
|
llvm_unreachable(llvm::toString(U.takeError()).c_str());
|
|
|
|
return std::move(*U);
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<std::string> URI::resolve(const URI &Uri,
|
|
|
|
llvm::StringRef HintPath) {
|
2018-01-22 19:48:20 +08:00
|
|
|
auto S = findSchemeByName(Uri.Scheme);
|
|
|
|
if (!S)
|
|
|
|
return S.takeError();
|
|
|
|
return S->get()->getAbsolutePath(Uri.Authority, Uri.Body, HintPath);
|
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<std::string> URI::resolvePath(llvm::StringRef AbsPath,
|
|
|
|
llvm::StringRef HintPath) {
|
|
|
|
if (!llvm::sys::path::is_absolute(AbsPath))
|
2018-11-28 18:30:42 +08:00
|
|
|
llvm_unreachable(("Not a valid absolute path: " + AbsPath).str().c_str());
|
|
|
|
for (auto &Entry : URISchemeRegistry::entries()) {
|
2019-01-03 21:28:05 +08:00
|
|
|
auto S = Entry.instantiate();
|
2018-11-28 18:30:42 +08:00
|
|
|
auto U = S->uriFromAbsolutePath(AbsPath);
|
|
|
|
// For some paths, conversion to different URI schemes is impossible. These
|
|
|
|
// should be just skipped.
|
|
|
|
if (!U) {
|
|
|
|
// Ignore the error.
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::consumeError(U.takeError());
|
2018-11-28 18:30:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return S->getAbsolutePath(U->Authority, U->Body, HintPath);
|
|
|
|
}
|
|
|
|
// Fallback to file: scheme which doesn't do any canonicalization.
|
2020-01-29 03:23:46 +08:00
|
|
|
return std::string(AbsPath);
|
2018-11-28 18:30:42 +08:00
|
|
|
}
|
|
|
|
|
2019-01-07 23:45:19 +08:00
|
|
|
llvm::Expected<std::string> URI::includeSpelling(const URI &Uri) {
|
2018-04-09 23:09:44 +08:00
|
|
|
auto S = findSchemeByName(Uri.Scheme);
|
|
|
|
if (!S)
|
|
|
|
return S.takeError();
|
|
|
|
return S->get()->getIncludeSpelling(Uri);
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:48:20 +08:00
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|