forked from OSchip/llvm-project
240 lines
7.1 KiB
C++
240 lines
7.1 KiB
C++
//===---- URI.h - File URIs with schemes -------------------------*- C++-*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "URI.h"
|
|
#include "llvm/ADT/StringExtras.h"
|
|
#include "llvm/ADT/Twine.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/Format.h"
|
|
#include "llvm/Support/FormatVariadic.h"
|
|
#include "llvm/Support/Path.h"
|
|
#include <algorithm>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
|
|
LLVM_INSTANTIATE_REGISTRY(clang::clangd::URISchemeRegistry)
|
|
|
|
using namespace llvm;
|
|
namespace clang {
|
|
namespace clangd {
|
|
namespace {
|
|
|
|
inline Error make_string_error(const Twine &Message) {
|
|
return make_error<StringError>(Message, inconvertibleErrorCode());
|
|
}
|
|
|
|
/// \brief This manages file paths in the file system. All paths in the scheme
|
|
/// are absolute (with leading '/').
|
|
class FileSystemScheme : public URIScheme {
|
|
public:
|
|
static const char *Scheme;
|
|
|
|
Expected<std::string> getAbsolutePath(StringRef /*Authority*/, StringRef Body,
|
|
StringRef /*HintPath*/) const override {
|
|
if (!Body.startswith("/"))
|
|
return make_string_error("File scheme: expect body to be an absolute "
|
|
"path starting with '/': " +
|
|
Body);
|
|
// For Windows paths e.g. /X:
|
|
if (Body.size() > 2 && Body[0] == '/' && Body[2] == ':')
|
|
Body.consume_front("/");
|
|
SmallVector<char, 16> Path(Body.begin(), Body.end());
|
|
sys::path::native(Path);
|
|
return std::string(Path.begin(), Path.end());
|
|
}
|
|
|
|
Expected<URI> uriFromAbsolutePath(StringRef AbsolutePath) const override {
|
|
using namespace llvm::sys;
|
|
|
|
std::string Body;
|
|
// For Windows paths e.g. X:
|
|
if (AbsolutePath.size() > 1 && AbsolutePath[1] == ':')
|
|
Body = "/";
|
|
Body += path::convert_to_slash(AbsolutePath);
|
|
return URI(Scheme, /*Authority=*/"", Body);
|
|
}
|
|
};
|
|
|
|
const char *FileSystemScheme::Scheme = "file";
|
|
|
|
static URISchemeRegistry::Add<FileSystemScheme>
|
|
X(FileSystemScheme::Scheme,
|
|
"URI scheme for absolute paths in the file system.");
|
|
|
|
Expected<std::unique_ptr<URIScheme>> findSchemeByName(StringRef Scheme) {
|
|
for (auto I = URISchemeRegistry::begin(), E = URISchemeRegistry::end();
|
|
I != E; ++I) {
|
|
if (I->getName() != Scheme)
|
|
continue;
|
|
return I->instantiate();
|
|
}
|
|
return make_string_error("Can't find scheme: " + Scheme);
|
|
}
|
|
|
|
bool shouldEscape(unsigned char C) {
|
|
// Unreserved characters.
|
|
if ((C >= 'a' && C <= 'z') || (C >= 'A' && C <= 'Z') ||
|
|
(C >= '0' && C <= '9'))
|
|
return false;
|
|
switch (C) {
|
|
case '-':
|
|
case '_':
|
|
case '.':
|
|
case '~':
|
|
case '/': // '/' is only reserved when parsing.
|
|
// ':' is only reserved for relative URI paths, which clangd doesn't produce.
|
|
case ':':
|
|
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.
|
|
std::string percentEncode(StringRef Content) {
|
|
std::string Result;
|
|
raw_string_ostream OS(Result);
|
|
for (unsigned char C : Content)
|
|
if (shouldEscape(C))
|
|
OS << '%' << format_hex_no_prefix(C, 2, /*Upper = */ true);
|
|
else
|
|
OS << C;
|
|
|
|
OS.flush();
|
|
return Result;
|
|
}
|
|
|
|
/// Decodes a string according to percent-encoding.
|
|
std::string percentDecode(StringRef Content) {
|
|
std::string Result;
|
|
for (auto I = Content.begin(), E = Content.end(); I != E; ++I) {
|
|
if (*I != '%') {
|
|
Result += *I;
|
|
continue;
|
|
}
|
|
if (*I == '%' && I + 2 < Content.end() && isHexDigit(*(I + 1)) &&
|
|
isHexDigit(*(I + 2))) {
|
|
Result.push_back(hexFromNibbles(*(I + 1), *(I + 2)));
|
|
I += 2;
|
|
} else
|
|
Result.push_back(*I);
|
|
}
|
|
return Result;
|
|
}
|
|
|
|
bool isValidScheme(StringRef Scheme) {
|
|
if (Scheme.empty())
|
|
return false;
|
|
if (!isAlpha(Scheme[0]))
|
|
return false;
|
|
return std::all_of(Scheme.begin() + 1, Scheme.end(), [](char C) {
|
|
return isAlnum(C) || C == '+' || C == '.' || C == '-';
|
|
});
|
|
}
|
|
|
|
} // namespace
|
|
|
|
URI::URI(StringRef Scheme, StringRef Authority, StringRef Body)
|
|
: Scheme(Scheme), Authority(Authority), Body(Body) {
|
|
assert(!Scheme.empty());
|
|
assert((Authority.empty() || Body.startswith("/")) &&
|
|
"URI body must start with '/' when authority is present.");
|
|
}
|
|
|
|
std::string URI::toString() const {
|
|
std::string Result;
|
|
raw_string_ostream OS(Result);
|
|
OS << percentEncode(Scheme) << ":";
|
|
if (Authority.empty() && Body.empty())
|
|
return OS.str();
|
|
// If authority if empty, we only print body if it starts with "/"; otherwise,
|
|
// the URI is invalid.
|
|
if (!Authority.empty() || StringRef(Body).startswith("/"))
|
|
OS << "//" << percentEncode(Authority);
|
|
OS << percentEncode(Body);
|
|
OS.flush();
|
|
return Result;
|
|
}
|
|
|
|
Expected<URI> URI::parse(StringRef OrigUri) {
|
|
URI U;
|
|
StringRef Uri = OrigUri;
|
|
|
|
auto Pos = Uri.find(':');
|
|
if (Pos == StringRef::npos)
|
|
return make_string_error("Scheme must be provided in URI: " + OrigUri);
|
|
auto SchemeStr = Uri.substr(0, Pos);
|
|
U.Scheme = percentDecode(SchemeStr);
|
|
if (!isValidScheme(U.Scheme))
|
|
return make_string_error(
|
|
formatv("Invalid scheme: {0} (decoded: {1})", SchemeStr, U.Scheme));
|
|
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;
|
|
}
|
|
|
|
Expected<URI> URI::create(StringRef AbsolutePath, StringRef Scheme) {
|
|
if (!sys::path::is_absolute(AbsolutePath))
|
|
return make_string_error("Not a valid absolute path: " + AbsolutePath);
|
|
auto S = findSchemeByName(Scheme);
|
|
if (!S)
|
|
return S.takeError();
|
|
return S->get()->uriFromAbsolutePath(AbsolutePath);
|
|
}
|
|
|
|
Expected<URI> URI::create(StringRef AbsolutePath,
|
|
const std::vector<std::string> &Schemes) {
|
|
if (!sys::path::is_absolute(AbsolutePath))
|
|
return make_string_error("Not a valid absolute path: " + AbsolutePath);
|
|
for (const auto &Scheme : Schemes) {
|
|
auto URI = URI::create(AbsolutePath, Scheme);
|
|
// For some paths, conversion to different URI schemes is impossible. These
|
|
// should be just skipped.
|
|
if (!URI) {
|
|
// Ignore the error.
|
|
consumeError(URI.takeError());
|
|
continue;
|
|
}
|
|
return URI;
|
|
}
|
|
return make_string_error("Couldn't convert " + AbsolutePath +
|
|
" to any given scheme: " + join(Schemes, ", "));
|
|
}
|
|
|
|
URI URI::createFile(StringRef AbsolutePath) {
|
|
auto U = create(AbsolutePath, "file");
|
|
if (!U)
|
|
llvm_unreachable(llvm::toString(U.takeError()).c_str());
|
|
return std::move(*U);
|
|
}
|
|
|
|
Expected<std::string> URI::resolve(const URI &Uri, StringRef HintPath) {
|
|
auto S = findSchemeByName(Uri.Scheme);
|
|
if (!S)
|
|
return S.takeError();
|
|
return S->get()->getAbsolutePath(Uri.Authority, Uri.Body, HintPath);
|
|
}
|
|
|
|
Expected<std::string> URI::includeSpelling(const URI &Uri) {
|
|
auto S = findSchemeByName(Uri.Scheme);
|
|
if (!S)
|
|
return S.takeError();
|
|
return S->get()->getIncludeSpelling(Uri);
|
|
}
|
|
|
|
} // namespace clangd
|
|
} // namespace clang
|