Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 1 | //===-- StringExtras.cpp - Implement the StringExtras header --------------===// |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the StringExtras.h header |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | c6fe3c3 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallVector.h" |
Francis Visoiu Mistrih | 26d6fc1 | 2017-11-28 14:22:27 +0000 | [diff] [blame] | 16 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 17 | using namespace llvm; |
| 18 | |
Benjamin Kramer | 6bf8240 | 2010-01-11 19:45:18 +0000 | [diff] [blame] | 19 | /// StrInStrNoCase - Portable version of strcasestr. Locates the first |
| 20 | /// occurrence of string 's1' in string 's2', ignoring case. Returns |
| 21 | /// the offset of s2 in s1 or npos if s2 cannot be found. |
| 22 | StringRef::size_type llvm::StrInStrNoCase(StringRef s1, StringRef s2) { |
| 23 | size_t N = s2.size(), M = s1.size(); |
| 24 | if (N > M) |
| 25 | return StringRef::npos; |
| 26 | for (size_t i = 0, e = M - N + 1; i != e; ++i) |
| 27 | if (s1.substr(i, N).equals_lower(s2)) |
| 28 | return i; |
| 29 | return StringRef::npos; |
| 30 | } |
| 31 | |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 32 | /// getToken - This function extracts one token from source, ignoring any |
| 33 | /// leading characters that appear in the Delimiters string, and ending the |
| 34 | /// token at any of the characters that appear in the Delimiters string. If |
| 35 | /// there are no tokens in the source string, an empty string is returned. |
Benjamin Kramer | c6fe3c3 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 36 | /// The function returns a pair containing the extracted token and the |
| 37 | /// remaining tail string. |
| 38 | std::pair<StringRef, StringRef> llvm::getToken(StringRef Source, |
| 39 | StringRef Delimiters) { |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 40 | // Figure out where the token starts. |
Benjamin Kramer | c6fe3c3 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 41 | StringRef::size_type Start = Source.find_first_not_of(Delimiters); |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 42 | |
Benjamin Kramer | c6fe3c3 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 43 | // Find the next occurrence of the delimiter. |
| 44 | StringRef::size_type End = Source.find_first_of(Delimiters, Start); |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 45 | |
Benjamin Kramer | 608fd2b | 2010-01-18 12:40:05 +0000 | [diff] [blame] | 46 | return std::make_pair(Source.slice(Start, End), Source.substr(End)); |
Chris Lattner | dca358f | 2003-12-29 05:07:02 +0000 | [diff] [blame] | 47 | } |
Chris Lattner | 1025840 | 2006-07-14 22:54:39 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 228bcd3 | 2006-11-28 22:32:35 +0000 | [diff] [blame] | 49 | /// SplitString - Split up the specified string according to the specified |
| 50 | /// delimiters, appending the result fragments to the output list. |
Benjamin Kramer | c6fe3c3 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 51 | void llvm::SplitString(StringRef Source, |
| 52 | SmallVectorImpl<StringRef> &OutFragments, |
| 53 | StringRef Delimiters) { |
Chris Lattner | 5cf753c | 2011-07-21 06:21:31 +0000 | [diff] [blame] | 54 | std::pair<StringRef, StringRef> S = getToken(Source, Delimiters); |
| 55 | while (!S.first.empty()) { |
| 56 | OutFragments.push_back(S.first); |
| 57 | S = getToken(S.second, Delimiters); |
Chris Lattner | 228bcd3 | 2006-11-28 22:32:35 +0000 | [diff] [blame] | 58 | } |
| 59 | } |
Francis Visoiu Mistrih | 26d6fc1 | 2017-11-28 14:22:27 +0000 | [diff] [blame] | 60 | |
Jonas Devlieghere | 745918ff | 2018-05-31 17:01:42 +0000 | [diff] [blame] | 61 | void llvm::printEscapedString(StringRef Name, raw_ostream &Out) { |
Benjamin Kramer | d15b289 | 2018-01-26 20:21:02 +0000 | [diff] [blame] | 62 | for (unsigned i = 0, e = Name.size(); i != e; ++i) { |
| 63 | unsigned char C = Name[i]; |
Michael Kruse | 6f1da6e | 2018-07-26 15:31:41 +0000 | [diff] [blame] | 64 | if (isPrint(C) && C != '\\' && C != '"') |
Benjamin Kramer | d15b289 | 2018-01-26 20:21:02 +0000 | [diff] [blame] | 65 | Out << C; |
| 66 | else |
| 67 | Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); |
| 68 | } |
| 69 | } |
| 70 | |
Jonas Devlieghere | 745918ff | 2018-05-31 17:01:42 +0000 | [diff] [blame] | 71 | void llvm::printHTMLEscaped(StringRef String, raw_ostream &Out) { |
Jonas Devlieghere | f4ce54a | 2018-05-30 17:47:11 +0000 | [diff] [blame] | 72 | for (char C : String) { |
| 73 | if (C == '&') |
| 74 | Out << "&"; |
| 75 | else if (C == '<') |
| 76 | Out << "<"; |
| 77 | else if (C == '>') |
| 78 | Out << ">"; |
| 79 | else if (C == '\"') |
| 80 | Out << """; |
| 81 | else if (C == '\'') |
| 82 | Out << "'"; |
| 83 | else |
| 84 | Out << C; |
| 85 | } |
| 86 | } |
| 87 | |
Francis Visoiu Mistrih | 26d6fc1 | 2017-11-28 14:22:27 +0000 | [diff] [blame] | 88 | void llvm::printLowerCase(StringRef String, raw_ostream &Out) { |
| 89 | for (const char C : String) |
| 90 | Out << toLower(C); |
| 91 | } |