2016-09-25 17:23:39 -07:00
|
|
|
//===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// This file defines the SmallString class.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2018-05-22 23:31:08 -07:00
|
|
|
#ifndef WPIUTIL_WPI_SMALLSTRING_H
|
|
|
|
|
#define WPIUTIL_WPI_SMALLSTRING_H
|
2016-09-25 17:23:39 -07:00
|
|
|
|
2018-04-29 23:33:19 -07:00
|
|
|
#include "wpi/SmallVector.h"
|
2018-05-22 23:31:08 -07:00
|
|
|
#include <cstddef>
|
2021-06-06 16:13:58 -07:00
|
|
|
#include <string_view>
|
2016-09-25 17:23:39 -07:00
|
|
|
|
2018-04-29 23:33:19 -07:00
|
|
|
namespace wpi {
|
2016-09-25 17:23:39 -07:00
|
|
|
|
|
|
|
|
/// SmallString - A SmallString is just a SmallVector with methods and accessors
|
|
|
|
|
/// that make it work better as a string (e.g. operator+ etc).
|
|
|
|
|
template<unsigned InternalLen>
|
|
|
|
|
class SmallString : public SmallVector<char, InternalLen> {
|
|
|
|
|
public:
|
|
|
|
|
/// Default ctor - Initialize to empty.
|
2018-05-22 23:31:08 -07:00
|
|
|
SmallString() = default;
|
2016-09-25 17:23:39 -07:00
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
/// Initialize from a std::string_view.
|
|
|
|
|
SmallString(std::string_view S)
|
|
|
|
|
: SmallVector<char, InternalLen>(S.begin(), S.end()) {}
|
2016-09-25 17:23:39 -07:00
|
|
|
|
|
|
|
|
/// Initialize with a range.
|
|
|
|
|
template<typename ItTy>
|
|
|
|
|
SmallString(ItTy S, ItTy E) : SmallVector<char, InternalLen>(S, E) {}
|
|
|
|
|
|
|
|
|
|
// Note that in order to add new overloads for append & assign, we have to
|
|
|
|
|
// duplicate the inherited versions so as not to inadvertently hide them.
|
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
/// @name String Assignment
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
/// Assign from a repeated element.
|
|
|
|
|
void assign(size_t NumElts, char Elt) {
|
|
|
|
|
this->SmallVectorImpl<char>::assign(NumElts, Elt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Assign from an iterator pair.
|
|
|
|
|
template<typename in_iter>
|
|
|
|
|
void assign(in_iter S, in_iter E) {
|
|
|
|
|
this->clear();
|
|
|
|
|
SmallVectorImpl<char>::append(S, E);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
/// Assign from a std::string_view.
|
|
|
|
|
void assign(std::string_view RHS) {
|
2016-09-25 17:23:39 -07:00
|
|
|
this->clear();
|
|
|
|
|
SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Assign from a SmallVector.
|
|
|
|
|
void assign(const SmallVectorImpl<char> &RHS) {
|
|
|
|
|
this->clear();
|
|
|
|
|
SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
/// @name String Concatenation
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
/// Append from an iterator pair.
|
|
|
|
|
template<typename in_iter>
|
|
|
|
|
void append(in_iter S, in_iter E) {
|
|
|
|
|
SmallVectorImpl<char>::append(S, E);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void append(size_t NumInputs, char Elt) {
|
|
|
|
|
SmallVectorImpl<char>::append(NumInputs, Elt);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
/// Append from a std::string_view.
|
|
|
|
|
void append(std::string_view RHS) {
|
2016-09-25 17:23:39 -07:00
|
|
|
SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Append from a SmallVector.
|
|
|
|
|
void append(const SmallVectorImpl<char> &RHS) {
|
|
|
|
|
SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
/// @name String Comparison
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
/// Compare two strings; the result is -1, 0, or 1 if this string is
|
|
|
|
|
/// lexicographically less than, equal to, or greater than the \p RHS.
|
2021-06-06 16:13:58 -07:00
|
|
|
int compare(std::string_view RHS) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().compare(RHS);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
/// @name String Searching
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
/// find - Search for the first character \p C in the string.
|
|
|
|
|
///
|
|
|
|
|
/// \return - The index of the first occurrence of \p C, or npos if not
|
|
|
|
|
/// found.
|
|
|
|
|
size_t find(char C, size_t From = 0) const {
|
|
|
|
|
return str().find(C, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Search for the first string \p Str in the string.
|
|
|
|
|
///
|
|
|
|
|
/// \returns The index of the first occurrence of \p Str, or npos if not
|
|
|
|
|
/// found.
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t find(std::string_view Str, size_t From = 0) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().find(Str, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Search for the last character \p C in the string.
|
|
|
|
|
///
|
|
|
|
|
/// \returns The index of the last occurrence of \p C, or npos if not
|
|
|
|
|
/// found.
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t rfind(char C, size_t From = std::string_view::npos) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().rfind(C, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Search for the last string \p Str in the string.
|
|
|
|
|
///
|
|
|
|
|
/// \returns The index of the last occurrence of \p Str, or npos if not
|
|
|
|
|
/// found.
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t rfind(std::string_view Str) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().rfind(Str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the first character in the string that is \p C, or npos if not
|
|
|
|
|
/// found. Same as find.
|
|
|
|
|
size_t find_first_of(char C, size_t From = 0) const {
|
|
|
|
|
return str().find_first_of(C, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the first character in the string that is in \p Chars, or npos if
|
|
|
|
|
/// not found.
|
|
|
|
|
///
|
|
|
|
|
/// Complexity: O(size() + Chars.size())
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t find_first_of(std::string_view Chars, size_t From = 0) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().find_first_of(Chars, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the first character in the string that is not \p C or npos if not
|
|
|
|
|
/// found.
|
|
|
|
|
size_t find_first_not_of(char C, size_t From = 0) const {
|
|
|
|
|
return str().find_first_not_of(C, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the first character in the string that is not in the string
|
|
|
|
|
/// \p Chars, or npos if not found.
|
|
|
|
|
///
|
|
|
|
|
/// Complexity: O(size() + Chars.size())
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t find_first_not_of(std::string_view Chars, size_t From = 0) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().find_first_not_of(Chars, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the last character in the string that is \p C, or npos if not
|
|
|
|
|
/// found.
|
2021-06-06 16:13:58 -07:00
|
|
|
size_t find_last_of(char C, size_t From = std::string_view::npos) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().find_last_of(C, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Find the last character in the string that is in \p C, or npos if not
|
|
|
|
|
/// found.
|
|
|
|
|
///
|
|
|
|
|
/// Complexity: O(size() + Chars.size())
|
|
|
|
|
size_t find_last_of(
|
2021-06-06 16:13:58 -07:00
|
|
|
std::string_view Chars, size_t From = std::string_view::npos) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().find_last_of(Chars, From);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
/// @name Substring Operations
|
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
/// Return a reference to the substring from [Start, Start + N).
|
|
|
|
|
///
|
|
|
|
|
/// \param Start The index of the starting character in the substring; if
|
|
|
|
|
/// the index is npos or greater than the length of the string then the
|
|
|
|
|
/// empty substring will be returned.
|
|
|
|
|
///
|
|
|
|
|
/// \param N The number of characters to included in the substring. If \p N
|
|
|
|
|
/// exceeds the number of characters remaining in the string, the string
|
|
|
|
|
/// suffix (starting with \p Start) will be returned.
|
2021-06-06 16:13:58 -07:00
|
|
|
std::string_view substr(size_t Start, size_t N = std::string_view::npos) const {
|
2016-09-25 17:23:39 -07:00
|
|
|
return str().substr(Start, N);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Extra methods.
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
/// Explicit conversion to std::string_view.
|
|
|
|
|
std::string_view str() const { return {this->begin(), this->size()}; }
|
|
|
|
|
|
|
|
|
|
/// Explicit conversion to std::string.
|
|
|
|
|
std::string string() const { return {this->begin(), this->size()}; }
|
2016-09-25 17:23:39 -07:00
|
|
|
|
|
|
|
|
// TODO: Make this const, if it's safe...
|
|
|
|
|
const char* c_str() {
|
|
|
|
|
this->push_back(0);
|
|
|
|
|
this->pop_back();
|
|
|
|
|
return this->data();
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
/// Implicit conversion to std::string_view.
|
|
|
|
|
operator std::string_view() const { return str(); }
|
|
|
|
|
|
|
|
|
|
/// Implicit conversion to std::string.
|
|
|
|
|
operator std::string() const { return string(); }
|
2016-09-25 17:23:39 -07:00
|
|
|
|
|
|
|
|
// Extra operators.
|
2021-06-06 16:13:58 -07:00
|
|
|
const SmallString &operator=(std::string_view RHS) {
|
2016-09-25 17:23:39 -07:00
|
|
|
this->clear();
|
|
|
|
|
return *this += RHS;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 16:13:58 -07:00
|
|
|
SmallString &operator+=(std::string_view RHS) {
|
2016-09-25 17:23:39 -07:00
|
|
|
this->append(RHS.begin(), RHS.end());
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
SmallString &operator+=(char C) {
|
|
|
|
|
this->push_back(C);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2018-05-22 23:31:08 -07:00
|
|
|
} // end namespace wpi
|
2016-09-25 17:23:39 -07:00
|
|
|
|
2018-05-22 23:31:08 -07:00
|
|
|
#endif // LLVM_ADT_SMALLSTRING_H
|