21 const Twine &Extension) {
26 if (!ParentPath.ends_with(Filename.str() +
".framework")) {
34 StringRef Ext = Extension.toStringRef(Storage);
37 if (!Ext.empty() && Ext[0] !=
'.')
41 Path.append(Ext.begin(), Ext.end());
48 auto P = Path.toNullTerminatedStringRef(Storage);
51 if (EC == std::errc::too_many_symbolic_link_levels) {
60 while (!Parent.
empty()) {
91 for (; IT1 != IE1 && IT2 != IE2; ++IT1, ++IT2) {
96 for (; IT1 != IE1; ++IT1)
99 for (; IT2 != IE2; ++IT2)
105 RelativePath.
swap(Result);
115 Path.consume_front(
"/Library/Apple");
117 if (Path.starts_with(
"/usr/local/lib"))
120 if (Path.starts_with(
"/System/Library/PrivateFrameworks"))
125 if (Path.consume_front(
"/usr/lib/swift/"))
130 if (Path.consume_front(
"/usr/lib/"))
131 return Path.contains(
'/');
134 if (Path.starts_with(
"/System/Library/Frameworks/")) {
136 std::tie(
Name, Rest) =
137 Path.drop_front(
sizeof(
"/System/Library/Frameworks")).split(
'.');
140 if (IsSymLink && Rest ==
"framework")
153 (IsSymLink && Rest.
ends_with(
"Current"))));
162 unsigned NumWildcards = 0;
163 for (
unsigned i = 0; i < Glob.
size(); ++i) {
170 const char *PrevChar = i > 0 ? Glob.
data() + i - 1 :
nullptr;
173 while (i < Glob.
size() && Glob[i] ==
'*') {
177 const char *NextChar = i < Glob.
size() ? Glob.
data() + i :
nullptr;
179 if ((NumWildcards > 1) && (PrevChar ==
nullptr || *PrevChar ==
'/') &&
180 (NextChar ==
nullptr || *NextChar ==
'/')) {
181 RegexString +=
"(([^/]*(/|$))*)";
183 RegexString +=
"([^/]*)";
193 if (NumWildcards == 0)
201 return std::move(Rule);
208 Buffer->getBuffer().split(Lines,
"\n", -1,
215 if (L.starts_with(
"#"))
219 std::tie(
Symbol, Remain) = getToken(L);
221 std::tie(Alias, Remain) = getToken(Remain,
"#");
222 Alias = Alias.
trim();
224 return make_error<TextAPIError>(
226 (
"missing alias for: " +
Symbol).str()));
239 for (
const auto &[Path, CurrP] : Paths) {
240 if (!CurrP.has_value() || CurrP.value() == Platform)
241 Result.push_back(Path);
BlockVerifier::State From
Define TAPI specific error codes.
static StringLiteral RegexMetachars
#define DRIVERKIT_PREFIX_PATH
#define MACCATALYST_PREFIX_PATH
Lightweight error class with error context and mandatory checking.
Tagged union holding either a T or a Error.
bool isValid(std::string &Error) const
isValid - returns the error encountered during regex compilation, if any.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void swap(SmallVectorImpl &RHS)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
StringRef - Represent a constant reference to a string, i.e.
std::string str() const
str - Get the contents as an std::string.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
empty - Check if the string is empty.
constexpr size_t size() const
size - Get the string size.
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
StringRef trim(char Char) const
Return string with consecutive Char characters starting from the left and right removed.
bool ends_with(StringRef Suffix) const
Check if this string ends with the given Suffix.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Represents the result of a call to sys::fs::status().
@ C
The default llvm calling convention, compatible with C.
std::map< AliasEntry, AliasEntry > AliasMap
std::error_code make_relative(StringRef From, StringRef To, SmallVectorImpl< char > &RelativePath)
Turn absolute symlink into relative.
void replace_extension(SmallVectorImpl< char > &Path, const Twine &Extension)
Replace extension considering frameworks.
std::vector< PathToPlatform > PathToPlatformSeq
bool isPrivateLibrary(StringRef Path, bool IsSymLink=false)
Determine if library is private by parsing file path.
std::vector< std::string > PathSeq
llvm::Expected< llvm::Regex > createRegexFromGlob(llvm::StringRef Glob)
Create a regex rule from provided glob string.
SimpleSymbol parseSymbol(StringRef SymName)
Get symbol classification by parsing the name of a symbol.
PathSeq getPathsForPlatform(const PathToPlatformSeq &Paths, PlatformType Platform)
Pickup active paths for a given platform.
std::error_code shouldSkipSymLink(const Twine &Path, bool &Result)
Determine whether to skip over symlink due to either too many symlink levels or is cyclic.
Expected< AliasMap > parseAliasList(std::unique_ptr< llvm::MemoryBuffer > &Buffer)
Parse input list and capture symbols and their alias.
bool equivalent(file_status A, file_status B)
Do file_status's represent the same thing?
void make_absolute(const Twine ¤t_directory, SmallVectorImpl< char > &path)
Make path an absolute path.
std::error_code status(const Twine &path, file_status &result, bool follow=true)
Get file status as if by POSIX stat().
const_iterator begin(StringRef path, Style style=Style::native)
Get begin iterator over path.
void replace_extension(SmallVectorImpl< char > &path, const Twine &extension, Style style=Style::native)
Replace the file extension of path with extension.
const_iterator end(StringRef path)
Get end iterator over path.
StringRef filename(StringRef path, Style style=Style::native)
Get filename.
StringRef parent_path(StringRef path, Style style=Style::native)
Get parent path.
void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
This is an optimization pass for GlobalISel generic memory operations.
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Lightweight struct for passing around symbol information.