//===--- URI.h - File URIs with schemes --------------------------*- C++-*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_URI_H #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_URI_H #include "llvm/ADT/StringRef.h" #include "llvm/Support/Error.h" #include "llvm/Support/Registry.h" namespace clang { namespace clangd { /// A URI describes the location of a source file. /// In the simplest case, this is a "file" URI that directly encodes the /// absolute path to a file. More abstract cases are possible: a shared index /// service might expose repo:// URIs that are relative to the source control /// root. /// /// Clangd handles URIs of the form <scheme>:[//<authority>]<body>. It doesn't /// further split the authority or body into constituent parts (e.g. query /// strings is included in the body). class URI { … }; /// URIScheme is an extension point for teaching clangd to recognize a custom /// URI scheme. This is expected to be implemented and exposed via the /// URISchemeRegistry. class URIScheme { … }; /// By default, a "file" scheme is supported where URI paths are always absolute /// in the file system. URISchemeRegistry; } // namespace clangd } // namespace clang #endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_URI_H