mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Update LLVM to latest upstream. (#1080)
Also change header guards to WPI header guards. Remove StringRef::c_str() customization, replacing the handful of uses with Twine or SmallString. TCPStream: Include errno.h and make Windows includes lowercase for consistency. Upstream LLVM version: eb4186cca7924fb1706357545311a2fa3de40c59
This commit is contained in:
@@ -16,20 +16,21 @@
|
||||
#ifndef WPIUTIL_WPI_PATH_H_
|
||||
#define WPIUTIL_WPI_PATH_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <iterator>
|
||||
|
||||
#include "wpi/Twine.h"
|
||||
#include "wpi/iterator.h"
|
||||
#include <cstdint>
|
||||
#include <iterator>
|
||||
|
||||
namespace wpi {
|
||||
namespace sys {
|
||||
namespace path {
|
||||
|
||||
enum class Style { windows, posix, native };
|
||||
|
||||
/// @name Lexical Component Iterator
|
||||
/// @{
|
||||
|
||||
/// @brief Path iterator.
|
||||
/// Path iterator.
|
||||
///
|
||||
/// This is an input iterator that iterates over the individual components in
|
||||
/// \a path. The traversal order is as follows:
|
||||
@@ -49,67 +50,67 @@ namespace path {
|
||||
/// C:\foo\bar => C:,/,foo,bar
|
||||
/// @endcode
|
||||
class const_iterator
|
||||
: public std::iterator<std::input_iterator_tag, const StringRef> {
|
||||
: public iterator_facade_base<const_iterator, std::input_iterator_tag,
|
||||
const StringRef> {
|
||||
StringRef Path; ///< The entire path.
|
||||
StringRef Component; ///< The current component. Not necessarily in Path.
|
||||
size_t Position; ///< The iterators current position within Path.
|
||||
size_t Position; ///< The iterators current position within Path.
|
||||
Style S; ///< The path style to use.
|
||||
|
||||
// An end iterator has Position = Path.size() + 1.
|
||||
friend const_iterator begin(StringRef path);
|
||||
friend const_iterator begin(StringRef path, Style style);
|
||||
friend const_iterator end(StringRef path);
|
||||
|
||||
public:
|
||||
reference operator*() const { return Component; }
|
||||
pointer operator->() const { return &Component; }
|
||||
const_iterator& operator++(); // preincrement
|
||||
const_iterator &operator++(); // preincrement
|
||||
bool operator==(const const_iterator &RHS) const;
|
||||
bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
|
||||
|
||||
/// @brief Difference in bytes between this and RHS.
|
||||
/// Difference in bytes between this and RHS.
|
||||
ptrdiff_t operator-(const const_iterator &RHS) const;
|
||||
};
|
||||
|
||||
/// @brief Reverse path iterator.
|
||||
/// Reverse path iterator.
|
||||
///
|
||||
/// This is an input iterator that iterates over the individual components in
|
||||
/// \a path in reverse order. The traversal order is exactly reversed from that
|
||||
/// of \a const_iterator
|
||||
class reverse_iterator
|
||||
: public std::iterator<std::input_iterator_tag, const StringRef> {
|
||||
: public iterator_facade_base<reverse_iterator, std::input_iterator_tag,
|
||||
const StringRef> {
|
||||
StringRef Path; ///< The entire path.
|
||||
StringRef Component; ///< The current component. Not necessarily in Path.
|
||||
size_t Position; ///< The iterators current position within Path.
|
||||
size_t Position; ///< The iterators current position within Path.
|
||||
Style S; ///< The path style to use.
|
||||
|
||||
friend reverse_iterator rbegin(StringRef path);
|
||||
friend reverse_iterator rbegin(StringRef path, Style style);
|
||||
friend reverse_iterator rend(StringRef path);
|
||||
|
||||
public:
|
||||
reference operator*() const { return Component; }
|
||||
pointer operator->() const { return &Component; }
|
||||
reverse_iterator& operator++(); // preincrement
|
||||
reverse_iterator &operator++(); // preincrement
|
||||
bool operator==(const reverse_iterator &RHS) const;
|
||||
bool operator!=(const reverse_iterator &RHS) const { return !(*this == RHS); }
|
||||
|
||||
/// @brief Difference in bytes between this and RHS.
|
||||
/// Difference in bytes between this and RHS.
|
||||
ptrdiff_t operator-(const reverse_iterator &RHS) const;
|
||||
};
|
||||
|
||||
/// @brief Get begin iterator over \a path.
|
||||
/// Get begin iterator over \a path.
|
||||
/// @param path Input path.
|
||||
/// @returns Iterator initialized with the first component of \a path.
|
||||
const_iterator begin(StringRef path);
|
||||
const_iterator begin(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get end iterator over \a path.
|
||||
/// Get end iterator over \a path.
|
||||
/// @param path Input path.
|
||||
/// @returns Iterator initialized to the end of \a path.
|
||||
const_iterator end(StringRef path);
|
||||
|
||||
/// @brief Get reverse begin iterator over \a path.
|
||||
/// Get reverse begin iterator over \a path.
|
||||
/// @param path Input path.
|
||||
/// @returns Iterator initialized with the first reverse component of \a path.
|
||||
reverse_iterator rbegin(StringRef path);
|
||||
reverse_iterator rbegin(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get reverse end iterator over \a path.
|
||||
/// Get reverse end iterator over \a path.
|
||||
/// @param path Input path.
|
||||
/// @returns Iterator initialized to the reverse end of \a path.
|
||||
reverse_iterator rend(StringRef path);
|
||||
@@ -118,7 +119,7 @@ reverse_iterator rend(StringRef path);
|
||||
/// @name Lexical Modifiers
|
||||
/// @{
|
||||
|
||||
/// @brief Remove the last component from \a path unless it is the root dir.
|
||||
/// Remove the last component from \a path unless it is the root dir.
|
||||
///
|
||||
/// @code
|
||||
/// directory/filename.cpp => directory/
|
||||
@@ -128,9 +129,9 @@ reverse_iterator rend(StringRef path);
|
||||
/// @endcode
|
||||
///
|
||||
/// @param path A path that is modified to not have a file component.
|
||||
void remove_filename(SmallVectorImpl<char> &path);
|
||||
void remove_filename(SmallVectorImpl<char> &path, Style style = Style::native);
|
||||
|
||||
/// @brief Replace the file extension of \a path with \a extension.
|
||||
/// Replace the file extension of \a path with \a extension.
|
||||
///
|
||||
/// @code
|
||||
/// ./filename.cpp => ./filename.extension
|
||||
@@ -142,9 +143,10 @@ void remove_filename(SmallVectorImpl<char> &path);
|
||||
/// @param extension The extension to be added. It may be empty. It may also
|
||||
/// optionally start with a '.', if it does not, one will be
|
||||
/// prepended.
|
||||
void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
|
||||
void replace_extension(SmallVectorImpl<char> &path, const Twine &extension,
|
||||
Style style = Style::native);
|
||||
|
||||
/// @brief Replace matching path prefix with another path.
|
||||
/// Replace matching path prefix with another path.
|
||||
///
|
||||
/// @code
|
||||
/// /foo, /old, /new => /foo
|
||||
@@ -158,10 +160,10 @@ void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
|
||||
/// @param OldPrefix The path prefix to strip from \a Path.
|
||||
/// @param NewPrefix The path prefix to replace \a NewPrefix with.
|
||||
void replace_path_prefix(SmallVectorImpl<char> &Path,
|
||||
const StringRef &OldPrefix,
|
||||
const StringRef &NewPrefix);
|
||||
const StringRef &OldPrefix, const StringRef &NewPrefix,
|
||||
Style style = Style::native);
|
||||
|
||||
/// @brief Append to path.
|
||||
/// Append to path.
|
||||
///
|
||||
/// @code
|
||||
/// /foo + bar/f => /foo/bar/f
|
||||
@@ -176,7 +178,10 @@ void append(SmallVectorImpl<char> &path, const Twine &a,
|
||||
const Twine &c = "",
|
||||
const Twine &d = "");
|
||||
|
||||
/// @brief Append to path.
|
||||
void append(SmallVectorImpl<char> &path, Style style, const Twine &a,
|
||||
const Twine &b = "", const Twine &c = "", const Twine &d = "");
|
||||
|
||||
/// Append to path.
|
||||
///
|
||||
/// @code
|
||||
/// /foo + [bar,f] => /foo/bar/f
|
||||
@@ -187,8 +192,8 @@ void append(SmallVectorImpl<char> &path, const Twine &a,
|
||||
/// @param path Set to \a path + [\a begin, \a end).
|
||||
/// @param begin Start of components to append.
|
||||
/// @param end One past the end of components to append.
|
||||
void append(SmallVectorImpl<char> &path,
|
||||
const_iterator begin, const_iterator end);
|
||||
void append(SmallVectorImpl<char> &path, const_iterator begin,
|
||||
const_iterator end, Style style = Style::native);
|
||||
|
||||
/// @}
|
||||
/// @name Transforms (or some other better name)
|
||||
@@ -200,20 +205,29 @@ void append(SmallVectorImpl<char> &path,
|
||||
///
|
||||
/// @param path A path that is transformed to native format.
|
||||
/// @param result Holds the result of the transformation.
|
||||
void native(const Twine &path, SmallVectorImpl<char> &result);
|
||||
void native(const Twine &path, SmallVectorImpl<char> &result,
|
||||
Style style = Style::native);
|
||||
|
||||
/// Convert path to the native form in place. This is used to give paths to
|
||||
/// users and operating system calls in the platform's normal way. For example,
|
||||
/// on Windows all '/' are converted to '\'.
|
||||
///
|
||||
/// @param path A path that is transformed to native format.
|
||||
void native(SmallVectorImpl<char> &path);
|
||||
void native(SmallVectorImpl<char> &path, Style style = Style::native);
|
||||
|
||||
/// Replaces backslashes with slashes if Windows.
|
||||
///
|
||||
/// @param path processed path
|
||||
/// @result The result of replacing backslashes with forward slashes if Windows.
|
||||
/// On Unix, this function is a no-op because backslashes are valid path
|
||||
/// chracters.
|
||||
std::string convert_to_slash(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @}
|
||||
/// @name Lexical Observers
|
||||
/// @{
|
||||
|
||||
/// @brief Get root name.
|
||||
/// Get root name.
|
||||
///
|
||||
/// @code
|
||||
/// //net/hello => //net
|
||||
@@ -223,9 +237,9 @@ void native(SmallVectorImpl<char> &path);
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The root name of \a path if it has one, otherwise "".
|
||||
StringRef root_name(StringRef path);
|
||||
StringRef root_name(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get root directory.
|
||||
/// Get root directory.
|
||||
///
|
||||
/// @code
|
||||
/// /goo/hello => /
|
||||
@@ -236,17 +250,17 @@ StringRef root_name(StringRef path);
|
||||
/// @param path Input path.
|
||||
/// @result The root directory of \a path if it has one, otherwise
|
||||
/// "".
|
||||
StringRef root_directory(StringRef path);
|
||||
StringRef root_directory(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get root path.
|
||||
/// Get root path.
|
||||
///
|
||||
/// Equivalent to root_name + root_directory.
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The root path of \a path if it has one, otherwise "".
|
||||
StringRef root_path(StringRef path);
|
||||
StringRef root_path(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get relative path.
|
||||
/// Get relative path.
|
||||
///
|
||||
/// @code
|
||||
/// C:\hello\world => hello\world
|
||||
@@ -256,9 +270,9 @@ StringRef root_path(StringRef path);
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The path starting after root_path if one exists, otherwise "".
|
||||
StringRef relative_path(StringRef path);
|
||||
StringRef relative_path(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get parent path.
|
||||
/// Get parent path.
|
||||
///
|
||||
/// @code
|
||||
/// / => <empty>
|
||||
@@ -268,9 +282,9 @@ StringRef relative_path(StringRef path);
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The parent path of \a path if one exists, otherwise "".
|
||||
StringRef parent_path(StringRef path);
|
||||
StringRef parent_path(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get filename.
|
||||
/// Get filename.
|
||||
///
|
||||
/// @code
|
||||
/// /foo.txt => foo.txt
|
||||
@@ -282,9 +296,9 @@ StringRef parent_path(StringRef path);
|
||||
/// @param path Input path.
|
||||
/// @result The filename part of \a path. This is defined as the last component
|
||||
/// of \a path.
|
||||
StringRef filename(StringRef path);
|
||||
StringRef filename(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get stem.
|
||||
/// Get stem.
|
||||
///
|
||||
/// If filename contains a dot but not solely one or two dots, result is the
|
||||
/// substring of filename ending at (but not including) the last dot. Otherwise
|
||||
@@ -300,9 +314,9 @@ StringRef filename(StringRef path);
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The stem of \a path.
|
||||
StringRef stem(StringRef path);
|
||||
StringRef stem(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Get extension.
|
||||
/// Get extension.
|
||||
///
|
||||
/// If filename contains a dot but not solely one or two dots, result is the
|
||||
/// substring of filename starting at (and including) the last dot, and ending
|
||||
@@ -316,20 +330,20 @@ StringRef stem(StringRef path);
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The extension of \a path.
|
||||
StringRef extension(StringRef path);
|
||||
StringRef extension(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief Check whether the given char is a path separator on the host OS.
|
||||
/// Check whether the given char is a path separator on the host OS.
|
||||
///
|
||||
/// @param value a character
|
||||
/// @result true if \a value is a path separator character on the host OS
|
||||
bool is_separator(char value);
|
||||
bool is_separator(char value, Style style = Style::native);
|
||||
|
||||
/// @brief Return the preferred separator for this platform.
|
||||
/// Return the preferred separator for this platform.
|
||||
///
|
||||
/// @result StringRef of the preferred separator, null-terminated.
|
||||
StringRef get_separator();
|
||||
StringRef get_separator(Style style = Style::native);
|
||||
|
||||
/// @brief Get the typical temporary directory for the system, e.g.,
|
||||
/// Get the typical temporary directory for the system, e.g.,
|
||||
/// "/var/tmp" or "C:/TEMP"
|
||||
///
|
||||
/// @param erasedOnReboot Whether to favor a path that is erased on reboot
|
||||
@@ -340,13 +354,13 @@ StringRef get_separator();
|
||||
/// @param result Holds the resulting path name.
|
||||
void system_temp_directory(bool erasedOnReboot, SmallVectorImpl<char> &result);
|
||||
|
||||
/// @brief Get the user's home directory.
|
||||
/// Get the user's home directory.
|
||||
///
|
||||
/// @param result Holds the resulting path name.
|
||||
/// @result True if a home directory is set, false otherwise.
|
||||
bool home_directory(SmallVectorImpl<char> &result);
|
||||
|
||||
/// @brief Get the user's cache directory.
|
||||
/// Get the user's cache directory.
|
||||
///
|
||||
/// Expect the resulting path to be a directory shared with other
|
||||
/// applications/services used by the user. Params \p Path1 to \p Path3 can be
|
||||
@@ -362,97 +376,99 @@ bool home_directory(SmallVectorImpl<char> &result);
|
||||
bool user_cache_directory(SmallVectorImpl<char> &Result, const Twine &Path1,
|
||||
const Twine &Path2 = "", const Twine &Path3 = "");
|
||||
|
||||
/// @brief Has root name?
|
||||
/// Has root name?
|
||||
///
|
||||
/// root_name != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a root name, false otherwise.
|
||||
bool has_root_name(const Twine &path);
|
||||
bool has_root_name(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has root directory?
|
||||
/// Has root directory?
|
||||
///
|
||||
/// root_directory != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a root directory, false otherwise.
|
||||
bool has_root_directory(const Twine &path);
|
||||
bool has_root_directory(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has root path?
|
||||
/// Has root path?
|
||||
///
|
||||
/// root_path != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a root path, false otherwise.
|
||||
bool has_root_path(const Twine &path);
|
||||
bool has_root_path(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has relative path?
|
||||
/// Has relative path?
|
||||
///
|
||||
/// relative_path != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a relative path, false otherwise.
|
||||
bool has_relative_path(const Twine &path);
|
||||
bool has_relative_path(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has parent path?
|
||||
/// Has parent path?
|
||||
///
|
||||
/// parent_path != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a parent path, false otherwise.
|
||||
bool has_parent_path(const Twine &path);
|
||||
bool has_parent_path(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has filename?
|
||||
/// Has filename?
|
||||
///
|
||||
/// filename != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a filename, false otherwise.
|
||||
bool has_filename(const Twine &path);
|
||||
bool has_filename(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has stem?
|
||||
/// Has stem?
|
||||
///
|
||||
/// stem != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a stem, false otherwise.
|
||||
bool has_stem(const Twine &path);
|
||||
bool has_stem(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Has extension?
|
||||
/// Has extension?
|
||||
///
|
||||
/// extension != ""
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path has a extension, false otherwise.
|
||||
bool has_extension(const Twine &path);
|
||||
bool has_extension(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Is path absolute?
|
||||
/// Is path absolute?
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path is absolute, false if it is not.
|
||||
bool is_absolute(const Twine &path);
|
||||
bool is_absolute(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Is path relative?
|
||||
/// Is path relative?
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result True if the path is relative, false if it is not.
|
||||
bool is_relative(const Twine &path);
|
||||
bool is_relative(const Twine &path, Style style = Style::native);
|
||||
|
||||
/// @brief Remove redundant leading "./" pieces and consecutive separators.
|
||||
/// Remove redundant leading "./" pieces and consecutive separators.
|
||||
///
|
||||
/// @param path Input path.
|
||||
/// @result The cleaned-up \a path.
|
||||
StringRef remove_leading_dotslash(StringRef path);
|
||||
StringRef remove_leading_dotslash(StringRef path, Style style = Style::native);
|
||||
|
||||
/// @brief In-place remove any './' and optionally '../' components from a path.
|
||||
/// In-place remove any './' and optionally '../' components from a path.
|
||||
///
|
||||
/// @param path processed path
|
||||
/// @param remove_dot_dot specify if '../' should be removed
|
||||
/// @param remove_dot_dot specify if '../' (except for leading "../") should be
|
||||
/// removed
|
||||
/// @result True if path was changed
|
||||
bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false);
|
||||
bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false,
|
||||
Style style = Style::native);
|
||||
|
||||
} // namespace path
|
||||
} // namespace sys
|
||||
} // namespace wpi
|
||||
} // end namespace path
|
||||
} // end namespace sys
|
||||
} // end namespace wpi
|
||||
|
||||
#endif // WPIUTIL_WPI_PATH_H_
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user