// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #ifndef CARBON_TOOLCHAIN_INSTALL_INSTALL_PATHS_H_ #define CARBON_TOOLCHAIN_INSTALL_INSTALL_PATHS_H_ #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Twine.h" namespace Carbon { // Locates the toolchain installation and provides paths to various components. // // The Carbon toolchain expects to be installed into some install prefix. For // example, this is expected to be similar to the CMake install prefix: // // - `C:/Program Files/Carbon` or similar on Windows. // - `/usr` or `/usr/local` on Linux and most BSDs. // - `/opt/homebrew` or similar on macOS with Homebrew. // - `bazel-bin/some/bazel/target.runfiles/_main/toolchain/install/prefix_root` // for unit tests and just-built binaries during development. // // See https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html // for more details. While we don't build the toolchain with CMake, we expect // our installation to behave in a similar and compatible way. // // There are multiple ways of locating an install's prefix: // - MakeExeRelative for command line tools in an install. // - MakeForBazelRunfiles for locating through Bazel's runfile tree. // - Make for an explicit path, for example in tests. // // When locating an install, we verify it by // looking for the `carbon_install.txt` marker file at a specific location // below. When errors occur, the install prefix is made empty, and error() can // be used for diagnostics; InstallPaths remains minimally functional. // // Within this prefix, we expect a hierarchy on Unix-y platforms: // // - `prefix_root/bin/carbon` - the main CLI driver // - `prefix_root/lib/carbon/carbon_install.txt` - a marker for the install // - `prefix_root/lib/carbon/...` - private data & binaries // // This is loosely based on the FHS (Filesystem Hierarchy Standard). // // An instance of this class provides methods that query for specific paths // within the install. Note that we want to abstract away any platform // differences in the installation layout, and so while there are some broad // paths available here, like the `prefix` method, those should primarily be // used for logging or debugging. When a specific part of the install is needed, // a dedicated accessor should be added that computes the path for that // component. // // Path accessor methods on the class return `llvm::StringRef` for any paths // that are stored in the class, and a `std::string` for any that are computed // on demand. // // TODO: Need to check the installation structure of LLVM on Windows and figure // out what Carbon's should be within a Windows prefix and how much of the // structure we can share with the Unix-y layout of the prefix. class InstallPaths { public: // Provide the current executable's path to detect the correct installation // prefix path. This assumes the toolchain to be in its installed layout. // // If detection fails, this reverts to using the current working directory as // the install prefix, and the error detected can be checked with `errors()`. static auto MakeExeRelative(llvm::StringRef exe_path) -> InstallPaths; // Provide the current executable's path, and use that to detect a Bazel or // Bazel-compatible runfiles install prefix path. This should only be used // where it is reasonable to rely on this rather than a fixed install location // such as for internal development purposes or other Bazel users of the // Carbon library. // // This method of construction also ensures the result is valid. If detection // fails for any reason, it will `CARBON_CHECK` fail with the error message. static auto MakeForBazelRunfiles(llvm::StringRef exe_path) -> InstallPaths; // Provide an explicit install paths prefix. This is useful for testing or for // using Carbon in an environment with an unusual path to the installed files. static auto Make(llvm::StringRef install_prefix) -> InstallPaths; // Check for an error detecting the install paths correctly. // // A nullopt return means no errors encountered and the paths should work // correctly. // // A string return means there was an error, and details of the error are // in the `StringRef` for inclusion in any user report. [[nodiscard]] auto error() const -> std::optional { return error_; } // The computed installation prefix. This should correspond to the // `prefix_root` directory in Bazel's output, or to some prefix the toolchain // is installed into on a system such as `/usr/local` or `/home/$USER`. // // In the event of an error, this will be the empty string. auto prefix() const -> llvm::StringRef { return prefix_; } auto driver() const -> std::string; auto core_package() const -> std::string; auto llvm_install_bin() const -> std::string; private: InstallPaths() { SetError("No prefix provided!"); } explicit InstallPaths(llvm::StringRef prefix) : prefix_(prefix) {} // Set an error message on the install paths and reset the prefix to empty, // which should use the current working directory. auto SetError(llvm::Twine message) -> void; // Check that the install paths have a marker file at the expected location, // and if not calls `SetError` with the relevant error message. auto CheckMarkerFile() -> void; llvm::SmallString<256> prefix_; std::optional error_; }; } // namespace Carbon #endif // CARBON_TOOLCHAIN_INSTALL_INSTALL_PATHS_H_