123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file LICENSE.rst or https://cmake.org/licensing for details. */
- #pragma once
- #include "cmConfigure.h" // IWYU pragma: keep
- #if !defined(_WIN32)
- # include <sys/types.h>
- #endif
- #include <cstddef>
- #include <functional>
- #include <map>
- #include <sstream>
- #include <string>
- #include <vector>
- #include <cm/optional>
- #include <cm/string_view>
- #include <cm3p/uv.h>
- #include "cmsys/Status.hxx" // IWYU pragma: export
- #include "cmsys/SystemTools.hxx" // IWYU pragma: export
- #include "cmDuration.h"
- #include "cmProcessOutput.h"
- struct cmMessageMetadata;
- /** \class cmSystemTools
- * \brief A collection of useful functions for CMake.
- *
- * cmSystemTools is a class that provides helper functions
- * for the CMake build system.
- */
- class cmSystemTools : public cmsys::SystemTools
- {
- public:
- using Superclass = cmsys::SystemTools;
- using Encoding = cmProcessOutput::Encoding;
- /**
- * Return a lower case string
- */
- static std::string LowerCase(cm::string_view);
- static std::string LowerCase(char const* s)
- {
- return LowerCase(cm::string_view{ s });
- }
- using cmsys::SystemTools::LowerCase;
- /**
- * Return an upper case string
- */
- static std::string UpperCase(cm::string_view);
- static std::string UpperCase(char const* s)
- {
- return UpperCase(cm::string_view{ s });
- }
- using cmsys::SystemTools::UpperCase;
- /**
- * Look for and replace registry values in a string
- */
- static void ExpandRegistryValues(std::string& source,
- KeyWOW64 view = KeyWOW64_Default);
- /** Map help document name to file name. */
- static std::string HelpFileName(cm::string_view);
- using MessageCallback =
- std::function<void(std::string const&, cmMessageMetadata const&)>;
- /**
- * Set the function used by GUIs to display error messages
- * Function gets passed: message as a const char*,
- * title as a const char*.
- */
- static void SetMessageCallback(MessageCallback f);
- /**
- * Display an error message.
- */
- static void Error(std::string const& m);
- /**
- * Display a message.
- */
- static void Message(std::string const& m, char const* title = nullptr);
- static void Message(std::string const& m, cmMessageMetadata const& md);
- using OutputCallback = std::function<void(std::string const&)>;
- //! Send a string to stdout
- static void Stdout(std::string const& s);
- static void SetStdoutCallback(OutputCallback f);
- //! Send a string to stderr
- static void Stderr(std::string const& s);
- static void SetStderrCallback(OutputCallback f);
- using InterruptCallback = std::function<bool()>;
- static void SetInterruptCallback(InterruptCallback f);
- static bool GetInterruptFlag();
- //! Return true if there was an error at any point.
- static bool GetErrorOccurredFlag()
- {
- return cmSystemTools::s_ErrorOccurred ||
- cmSystemTools::s_FatalErrorOccurred || GetInterruptFlag();
- }
- //! If this is set to true, cmake stops processing commands.
- static void SetFatalErrorOccurred()
- {
- cmSystemTools::s_FatalErrorOccurred = true;
- }
- static void SetErrorOccurred() { cmSystemTools::s_ErrorOccurred = true; }
- //! Return true if there was an error at any point.
- static bool GetFatalErrorOccurred()
- {
- return cmSystemTools::s_FatalErrorOccurred || GetInterruptFlag();
- }
- //! Set the error occurred flag and fatal error back to false
- static void ResetErrorOccurredFlag()
- {
- cmSystemTools::s_FatalErrorOccurred = false;
- cmSystemTools::s_ErrorOccurred = false;
- }
- //! Return true if the path is a framework
- static bool IsPathToFramework(std::string const& path);
- //! Return true if the path is a xcframework
- static bool IsPathToXcFramework(std::string const& path);
- //! Return true if the path is a macOS non-framework shared library (aka
- //! .dylib)
- static bool IsPathToMacOSSharedLibrary(std::string const& path);
- static bool DoesFileExistWithExtensions(
- std::string const& name, std::vector<std::string> const& sourceExts);
- /**
- * Check if the given file exists in one of the parent directory of the
- * given file or directory and if it does, return the name of the file.
- * Toplevel specifies the top-most directory to where it will look.
- */
- static std::string FileExistsInParentDirectories(
- std::string const& fname, std::string const& directory,
- std::string const& toplevel);
- static void Glob(std::string const& directory, std::string const& regexp,
- std::vector<std::string>& files);
- static void GlobDirs(std::string const& fullPath,
- std::vector<std::string>& files);
- /**
- * Try to find a list of files that match the "simple" globbing
- * expression. At this point in time the globbing expressions have
- * to be in form: /directory/partial_file_name*. The * character has
- * to be at the end of the string and it does not support ?
- * []... The optional argument type specifies what kind of files you
- * want to find. 0 means all files, -1 means directories, 1 means
- * files only. This method returns true if search was successful.
- */
- static bool SimpleGlob(std::string const& glob,
- std::vector<std::string>& files, int type = 0);
- enum class CopyWhen
- {
- Always,
- OnlyIfDifferent,
- };
- enum class CopyInputRecent
- {
- No,
- Yes,
- };
- enum class CopyResult
- {
- Success,
- Failure,
- };
- #if defined(_MSC_VER)
- /** Visual C++ does not define mode_t. */
- using mode_t = unsigned short;
- #endif
- /**
- * Make a new temporary directory. The path must end in "XXXXXX", and will
- * be modified to reflect the name of the directory created. This function
- * is similar to POSIX mkdtemp (and is implemented using the same where that
- * function is available).
- *
- * This function can make a full path even if none of the directories existed
- * prior to calling this function.
- *
- * Note that this function may modify \p path even if it does not succeed.
- */
- static cmsys::Status MakeTempDirectory(char* path,
- mode_t const* mode = nullptr);
- static cmsys::Status MakeTempDirectory(std::string& path,
- mode_t const* mode = nullptr);
- /** Copy a file. */
- static CopyResult CopySingleFile(std::string const& oldname,
- std::string const& newname, CopyWhen when,
- CopyInputRecent inputRecent,
- std::string* err = nullptr);
- enum class Replace
- {
- Yes,
- No,
- };
- enum class RenameResult
- {
- Success,
- NoReplace,
- Failure,
- };
- /** Rename a file or directory within a single disk volume (atomic
- if possible). */
- static bool RenameFile(std::string const& oldname,
- std::string const& newname);
- static RenameResult RenameFile(std::string const& oldname,
- std::string const& newname, Replace replace,
- std::string* err = nullptr);
- //! Rename a file if contents are different, delete the source otherwise
- static cmsys::Status MoveFileIfDifferent(std::string const& source,
- std::string const& destination);
- /**
- * According to the CreateProcessW documentation:
- *
- * To run a batch file, you must start the command interpreter; set
- * lpApplicationName to cmd.exe and set lpCommandLine to the following
- * arguments: /c plus the name of the batch file.
- *
- * Additionally, "cmd /c" does not always parse batch file names correctly
- * if they contain spaces, but using "cmd /c call" seems to work.
- *
- * The function is noop on platforms different from the pure WIN32 one.
- */
- static void MaybePrependCmdExe(std::vector<std::string>& cmdLine);
- /**
- * Run a single executable command
- *
- * Output is controlled with outputflag. If outputflag is OUTPUT_NONE, no
- * user-viewable output from the program being run will be generated.
- * OUTPUT_MERGE is the legacy behavior where stdout and stderr are merged
- * into stdout. OUTPUT_FORWARD copies the output to stdout/stderr as
- * it was received. OUTPUT_PASSTHROUGH passes through the original handles.
- *
- * If timeout is specified, the command will be terminated after
- * timeout expires. Timeout is specified in seconds.
- *
- * Argument retVal should be a pointer to the location where the
- * exit code will be stored. If the retVal is not specified and
- * the program exits with a code other than 0, then the this
- * function will return false.
- *
- * If the command has spaces in the path the caller MUST call
- * cmSystemTools::ConvertToRunCommandPath on the command before passing
- * it into this function or it will not work. The command must be correctly
- * escaped for this to with spaces.
- */
- enum OutputOption
- {
- OUTPUT_NONE = 0,
- OUTPUT_MERGE,
- OUTPUT_FORWARD,
- OUTPUT_PASSTHROUGH
- };
- static bool RunSingleCommand(std::string const& command,
- std::string* captureStdOut = nullptr,
- std::string* captureStdErr = nullptr,
- int* retVal = nullptr,
- char const* dir = nullptr,
- OutputOption outputflag = OUTPUT_MERGE,
- cmDuration timeout = cmDuration::zero());
- /**
- * In this version of RunSingleCommand, command[0] should be
- * the command to run, and each argument to the command should
- * be in command[1]...command[command.size()]
- */
- static bool RunSingleCommand(std::vector<std::string> const& command,
- std::string* captureStdOut = nullptr,
- std::string* captureStdErr = nullptr,
- int* retVal = nullptr,
- char const* dir = nullptr,
- OutputOption outputflag = OUTPUT_MERGE,
- cmDuration timeout = cmDuration::zero(),
- Encoding encoding = cmProcessOutput::Auto);
- static std::string PrintSingleCommand(std::vector<std::string> const&);
- /**
- * Parse arguments out of a single string command
- */
- static std::vector<std::string> ParseArguments(std::string const& command);
- /** Parse arguments out of a windows command line string. */
- static void ParseWindowsCommandLine(char const* command,
- std::vector<std::string>& args);
- /** Parse arguments out of a unix command line string. */
- static void ParseUnixCommandLine(char const* command,
- std::vector<std::string>& args);
- /** Split a command-line string into the parsed command and the unparsed
- arguments. Returns false on unfinished quoting or escaping. */
- static bool SplitProgramFromArgs(std::string const& command,
- std::string& program, std::string& args);
- /**
- * Handle response file in an argument list and return a new argument list
- * **/
- static std::vector<std::string> HandleResponseFile(
- std::vector<std::string>::const_iterator argBeg,
- std::vector<std::string>::const_iterator argEnd);
- static std::size_t CalculateCommandLineLengthLimit();
- static void DisableRunCommandOutput() { s_DisableRunCommandOutput = true; }
- static void EnableRunCommandOutput() { s_DisableRunCommandOutput = false; }
- static bool GetRunCommandOutput() { return s_DisableRunCommandOutput; }
- enum CompareOp
- {
- OP_EQUAL = 1,
- OP_LESS = 2,
- OP_GREATER = 4,
- OP_LESS_EQUAL = OP_LESS | OP_EQUAL,
- OP_GREATER_EQUAL = OP_GREATER | OP_EQUAL
- };
- /**
- * Compare versions
- */
- static bool VersionCompare(CompareOp op, std::string const& lhs,
- std::string const& rhs);
- static bool VersionCompare(CompareOp op, std::string const& lhs,
- char const rhs[]);
- static bool VersionCompareEqual(std::string const& lhs,
- std::string const& rhs);
- static bool VersionCompareGreater(std::string const& lhs,
- std::string const& rhs);
- static bool VersionCompareGreaterEq(std::string const& lhs,
- std::string const& rhs);
- /**
- * Compare two ASCII strings using natural versioning order.
- * Non-numerical characters are compared directly.
- * Numerical characters are first globbed such that, e.g.
- * `test000 < test01 < test0 < test1 < test10`.
- * Return a value less than, equal to, or greater than zero if lhs
- * precedes, equals, or succeeds rhs in the defined ordering.
- */
- static int strverscmp(std::string const& lhs, std::string const& rhs);
- /** Windows if this is true, the CreateProcess in RunCommand will
- * not show new console windows when running programs.
- */
- static void SetRunCommandHideConsole(bool v) { s_RunCommandHideConsole = v; }
- static bool GetRunCommandHideConsole() { return s_RunCommandHideConsole; }
- /** Call cmSystemTools::Error with the message m, plus the
- * result of strerror(errno)
- */
- static void ReportLastSystemError(char const* m);
- enum class WaitForLineResult
- {
- None,
- STDOUT,
- STDERR,
- Timeout,
- };
- /** a general output handler for libuv */
- static WaitForLineResult WaitForLine(uv_loop_t* loop, uv_stream_t* outPipe,
- uv_stream_t* errPipe, std::string& line,
- cmDuration timeout,
- std::vector<char>& out,
- std::vector<char>& err);
- static void SetForceUnixPaths(bool v) { s_ForceUnixPaths = v; }
- static bool GetForceUnixPaths() { return s_ForceUnixPaths; }
- // ConvertToOutputPath use s_ForceUnixPaths
- static std::string ConvertToOutputPath(std::string const& path);
- static void ConvertToOutputSlashes(std::string& path);
- // ConvertToRunCommandPath does not use s_ForceUnixPaths and should
- // be used when RunCommand is called from cmake, because the
- // running cmake needs paths to be in its format
- static std::string ConvertToRunCommandPath(std::string const& path);
- /**
- * For windows computes the long path for the given path,
- * For Unix, it is a noop
- */
- static void ConvertToLongPath(std::string& path);
- /** compute the relative path from local to remote. local must
- be a directory. remote can be a file or a directory.
- Both remote and local must be full paths. Basically, if
- you are in directory local and you want to access the file in remote
- what is the relative path to do that. For example:
- /a/b/c/d to /a/b/c1/d1 -> ../../c1/d1
- from /usr/src to /usr/src/test/blah/foo.cpp -> test/blah/foo.cpp
- */
- static std::string RelativePath(std::string const& local,
- std::string const& remote);
- /**
- * Convert the given remote path to a relative path with respect to
- * the given local path. Both paths must use forward slashes and not
- * already be escaped or quoted.
- */
- static std::string ForceToRelativePath(std::string const& local_path,
- std::string const& remote_path);
- /**
- * Express the 'in' path relative to 'top' if it does not start in '../'.
- */
- static std::string RelativeIfUnder(std::string const& top,
- std::string const& in);
- static cm::optional<std::string> GetEnvVar(std::string const& var);
- static std::vector<std::string> GetEnvPathNormalized(std::string const& var);
- static std::vector<std::string> SplitEnvPath(cm::string_view in);
- static std::vector<std::string> SplitEnvPathNormalized(cm::string_view in);
- /** Convert an input path to an absolute path with no '/..' components.
- Backslashes in the input path are converted to forward slashes.
- Relative paths are interpreted w.r.t. GetLogicalWorkingDirectory.
- This is similar to 'realpath', but preserves symlinks that are
- not erased by '../' components.
- On Windows and macOS, the on-disk capitalization is loaded for
- existing paths. */
- static std::string ToNormalizedPathOnDisk(std::string p);
- #ifndef CMAKE_BOOTSTRAP
- /** Remove an environment variable */
- static bool UnsetEnv(char const* value);
- /** Get the list of all environment variables */
- static std::vector<std::string> GetEnvironmentVariables();
- /** Append multiple variables to the current environment. */
- static void AppendEnv(std::vector<std::string> const& env);
- /**
- * Helper class to represent an environment diff directly. This is to avoid
- * repeated in-place environment modification (i.e. via setenv/putenv), which
- * could be slow.
- */
- class EnvDiff
- {
- public:
- /** Append multiple variables to the current environment diff */
- void AppendEnv(std::vector<std::string> const& env);
- /**
- * Add a single variable (or remove if no = sign) to the current
- * environment diff.
- */
- void PutEnv(std::string const& env);
- /** Remove a single variable from the current environment diff. */
- void UnPutEnv(std::string const& env);
- /**
- * Apply an ENVIRONMENT_MODIFICATION operation to this diff. Returns
- * false and issues an error on parse failure.
- */
- bool ParseOperation(std::string const& envmod);
- /**
- * Apply this diff to the actual environment, optionally writing out the
- * modifications to a CTest-compatible measurement stream.
- */
- void ApplyToCurrentEnv(std::ostringstream* measurement = nullptr);
- private:
- std::map<std::string, cm::optional<std::string>> diff;
- };
- /** Helper class to save and restore the environment.
- Instantiate this class as an automatic variable on
- the stack. Its constructor saves a copy of the current
- environment and then its destructor restores the
- original environment. */
- class SaveRestoreEnvironment
- {
- public:
- SaveRestoreEnvironment();
- ~SaveRestoreEnvironment();
- SaveRestoreEnvironment(SaveRestoreEnvironment const&) = delete;
- SaveRestoreEnvironment& operator=(SaveRestoreEnvironment const&) = delete;
- private:
- std::vector<std::string> Env;
- };
- #endif
- /** Setup the environment to enable VS 8 IDE output. */
- static void EnableVSConsoleOutput();
- enum cmTarAction
- {
- TarActionCreate,
- TarActionList,
- TarActionExtract,
- TarActionNone
- };
- /** Create tar */
- enum cmTarCompression
- {
- TarCompressGZip,
- TarCompressBZip2,
- TarCompressXZ,
- TarCompressZstd,
- TarCompressNone
- };
- enum class cmTarExtractTimestamps
- {
- Yes,
- No
- };
- static bool ListTar(std::string const& outFileName,
- std::vector<std::string> const& files, bool verbose);
- static bool CreateTar(std::string const& outFileName,
- std::vector<std::string> const& files,
- std::string const& workingDirectory,
- cmTarCompression compressType, bool verbose,
- std::string const& mtime = std::string(),
- std::string const& format = std::string(),
- int compressionLevel = 0);
- static bool ExtractTar(std::string const& inFileName,
- std::vector<std::string> const& files,
- cmTarExtractTimestamps extractTimestamps,
- bool verbose);
- /** Random number generation. */
- static unsigned int RandomSeed();
- static unsigned int RandomNumber();
- /**
- * Find an executable in the system PATH, with optional extra paths.
- * This wraps KWSys's FindProgram to add ToNormalizedPathOnDisk.
- */
- static std::string FindProgram(
- std::string const& name,
- std::vector<std::string> const& path = std::vector<std::string>());
- /** Find the directory containing CMake executables. */
- static void FindCMakeResources(char const* argv0);
- /** Get the CMake resource paths, after FindCMakeResources. */
- static std::string const& GetCTestCommand();
- static std::string const& GetCPackCommand();
- static std::string const& GetCMakeCommand();
- static std::string const& GetCMakeGUICommand();
- static std::string const& GetCMakeCursesCommand();
- static std::string const& GetCMClDepsCommand();
- static std::string const& GetCMakeRoot();
- static std::string const& GetHTMLDoc();
- /** Get the CMake config directory **/
- static cm::optional<std::string> GetSystemConfigDirectory();
- static cm::optional<std::string> GetCMakeConfigDirectory();
- static std::string const& GetLogicalWorkingDirectory();
- /** The logical working directory may contain symlinks but must not
- contain any '../' path components. */
- static cmsys::Status SetLogicalWorkingDirectory(std::string const& lwd);
- /** Try to guess the soname of a shared library. */
- static bool GuessLibrarySOName(std::string const& fullPath,
- std::string& soname);
- /** Try to guess the install name of a shared library. */
- static bool GuessLibraryInstallName(std::string const& fullPath,
- std::string& soname);
- /** Try to change the RPATH in an ELF binary. */
- static bool ChangeRPath(std::string const& file, std::string const& oldRPath,
- std::string const& newRPath,
- bool removeEnvironmentRPath,
- std::string* emsg = nullptr,
- bool* changed = nullptr);
- /** Try to set the RPATH in an ELF binary. */
- static bool SetRPath(std::string const& file, std::string const& newRPath,
- std::string* emsg = nullptr, bool* changed = nullptr);
- /** Try to remove the RPATH from an ELF binary. */
- static bool RemoveRPath(std::string const& file, std::string* emsg = nullptr,
- bool* removed = nullptr);
- /** Check whether the RPATH in an ELF binary contains the path
- given. */
- static bool CheckRPath(std::string const& file, std::string const& newRPath);
- /** Remove a directory; repeat a few times in case of locked files. */
- static bool RepeatedRemoveDirectory(std::string const& dir);
- /** Encode a string as a URL. */
- static std::string EncodeURL(std::string const& in,
- bool escapeSlashes = true);
- enum class DirCase
- {
- Sensitive,
- Insensitive,
- };
- /** Returns nullopt when `dir` is not a valid directory */
- static cm::optional<DirCase> GetDirCase(std::string const& dir);
- #ifdef _WIN32
- struct WindowsFileRetry
- {
- unsigned int Count;
- unsigned int Delay;
- };
- static WindowsFileRetry GetWindowsFileRetry();
- static WindowsFileRetry GetWindowsDirectoryRetry();
- struct WindowsVersion
- {
- unsigned int dwMajorVersion;
- unsigned int dwMinorVersion;
- unsigned int dwBuildNumber;
- };
- static WindowsVersion GetWindowsVersion();
- /** Attempt to get full path to COMSPEC, default "cmd.exe" */
- static std::string GetComspec();
- #endif
- /** Get the real path for a given path, removing all symlinks.
- This variant of GetRealPath also works on Windows but will
- resolve subst drives too. */
- static std::string GetRealPathResolvingWindowsSubst(
- std::string const& path, std::string* errorMessage = nullptr);
- /** Get the real path for a given path, removing all symlinks. */
- static std::string GetRealPath(std::string const& path,
- std::string* errorMessage = nullptr);
- /** Perform one-time initialization of libuv. */
- static void InitializeLibUV();
- /** Create a symbolic link if the platform supports it. Returns whether
- creation succeeded. */
- static cmsys::Status CreateSymlink(std::string const& origName,
- std::string const& newName);
- static cmsys::Status CreateSymlinkQuietly(std::string const& origName,
- std::string const& newName);
- /** Create a hard link if the platform supports it. Returns whether
- creation succeeded. */
- static cmsys::Status CreateLink(std::string const& origName,
- std::string const& newName);
- static cmsys::Status CreateLinkQuietly(std::string const& origName,
- std::string const& newName);
- /** Get the system name. */
- static cm::string_view GetSystemName();
- /** Get the system path separator character */
- static char GetSystemPathlistSeparator();
- private:
- static bool s_ForceUnixPaths;
- static bool s_RunCommandHideConsole;
- static bool s_ErrorOccurred;
- static bool s_FatalErrorOccurred;
- static bool s_DisableRunCommandOutput;
- };
|