blob: 21bad0d6aa0b0d169e685c5451785afb9ceb52e3 [file] [log] [blame]
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_CORE_LIB_STRINGS_STR_UTIL_H_
#define TENSORFLOW_CORE_LIB_STRINGS_STR_UTIL_H_
#include <functional>
#include <string>
#include <vector>
#include "absl/base/macros.h"
#include "absl/strings/ascii.h"
#include "absl/strings/str_join.h"
#include "absl/strings/str_split.h"
#include "tensorflow/core/lib/core/stringpiece.h"
#include "tensorflow/core/lib/strings/strcat.h"
#include "tensorflow/core/platform/types.h"
// Basic string utility routines
namespace tensorflow {
namespace str_util {
// Returns a version of 'src' where unprintable characters have been
// escaped using C-style escape sequences.
ABSL_DEPRECATED("Use absl::CEscape instead.")
string CEscape(StringPiece src);
// Copies "source" to "dest", rewriting C-style escape sequences --
// '\n', '\r', '\\', '\ooo', etc -- to their ASCII equivalents.
//
// Errors: Sets the description of the first encountered error in
// 'error'. To disable error reporting, set 'error' to NULL.
//
// NOTE: Does not support \u or \U!
ABSL_DEPRECATED("Use absl::CUnescape instead.")
bool CUnescape(StringPiece source, string* dest, string* error);
// Removes any trailing whitespace from "*s".
ABSL_DEPRECATED("Use absl::StripTrailingAsciiWhitespace instead.")
void StripTrailingWhitespace(string* s);
// Removes leading ascii_isspace() characters.
// Returns number of characters removed.
ABSL_DEPRECATED("Use absl::StripLeadingAsciiWhitespace instead.")
size_t RemoveLeadingWhitespace(StringPiece* text);
// Removes trailing ascii_isspace() characters.
// Returns number of characters removed.
ABSL_DEPRECATED("Use absl::StripTrailingAsciiWhitespace instead.")
size_t RemoveTrailingWhitespace(StringPiece* text);
// Removes leading and trailing ascii_isspace() chars.
// Returns number of chars removed.
ABSL_DEPRECATED("Use absl::StripAsciiWhitespace instead.")
size_t RemoveWhitespaceContext(StringPiece* text);
// Consume a leading positive integer value. If any digits were
// found, store the value of the leading unsigned number in "*val",
// advance "*s" past the consumed number, and return true. If
// overflow occurred, returns false. Otherwise, returns false.
bool ConsumeLeadingDigits(StringPiece* s, uint64* val);
// Consume a leading token composed of non-whitespace characters only.
// If *s starts with a non-zero number of non-whitespace characters, store
// them in *val, advance *s past them, and return true. Else return false.
bool ConsumeNonWhitespace(StringPiece* s, StringPiece* val);
// If "*s" starts with "expected", consume it and return true.
// Otherwise, return false.
ABSL_DEPRECATED("Use absl::ConsumePrefix instead.")
bool ConsumePrefix(StringPiece* s, StringPiece expected);
// If "*s" ends with "expected", remove it and return true.
// Otherwise, return false.
ABSL_DEPRECATED("Use absl::ConsumeSuffix instead.")
bool ConsumeSuffix(StringPiece* s, StringPiece expected);
// Return lower-cased version of s.
ABSL_DEPRECATED("Use absl::AsciiStrToLower instead.")
string Lowercase(StringPiece s);
// Return upper-cased version of s.
ABSL_DEPRECATED("Use absl::AsciiStrToUpper instead.")
string Uppercase(StringPiece s);
// Converts "^2ILoveYou!" to "i_love_you_". More specifically:
// - converts all non-alphanumeric characters to underscores
// - replaces each occurrence of a capital letter (except the very
// first character and if there is already an '_' before it) with '_'
// followed by this letter in lower case
// - Skips leading non-alpha characters
// This method is useful for producing strings matching "[a-z][a-z0-9_]*"
// as required by OpDef.ArgDef.name. The resulting string is either empty or
// matches this regex.
string ArgDefCase(StringPiece s);
// Capitalize first character of each word in "*s". "delimiters" is a
// set of characters that can be used as word boundaries.
void TitlecaseString(string* s, StringPiece delimiters);
// Replaces the first occurrence (if replace_all is false) or all occurrences
// (if replace_all is true) of oldsub in s with newsub.
string StringReplace(StringPiece s, StringPiece oldsub, StringPiece newsub,
bool replace_all);
// Join functionality
template <typename T>
ABSL_DEPRECATED("Use absl::StrJoin instead.")
string Join(const T& s, const char* sep);
// A variant of Join where for each element of "s", f(&dest_string, elem)
// is invoked (f is often constructed with a lambda of the form:
// [](string* result, ElemType elem)
template <typename T, typename Formatter>
ABSL_DEPRECATED("Use absl::StrJoin instead.")
string Join(const T& s, const char* sep, Formatter f);
struct AllowEmpty {
bool operator()(StringPiece sp) const { return true; }
};
struct SkipEmpty {
bool operator()(StringPiece sp) const { return !sp.empty(); }
};
struct SkipWhitespace {
bool operator()(StringPiece sp) const {
return !absl::StripTrailingAsciiWhitespace(sp).empty();
}
};
// Split strings using any of the supplied delimiters. For example:
// Split("a,b.c,d", ".,") would return {"a", "b", "c", "d"}.
ABSL_DEPRECATED("Use absl::StrSplit instead.")
std::vector<string> Split(StringPiece text, StringPiece delims);
template <typename Predicate>
ABSL_DEPRECATED("Use absl::StrSplit instead.")
std::vector<string> Split(StringPiece text, StringPiece delims, Predicate p);
// StartsWith()
//
// Returns whether a given string `text` begins with `prefix`.
ABSL_DEPRECATED("Use absl::StartsWith instead.")
bool StartsWith(StringPiece text, StringPiece prefix);
// EndsWith()
//
// Returns whether a given string `text` ends with `suffix`.
ABSL_DEPRECATED("Use absl::EndsWith instead.")
bool EndsWith(StringPiece text, StringPiece suffix);
// StrContains()
//
// Returns whether a given string `haystack` contains the substring `needle`.
ABSL_DEPRECATED("Use absl::StrContains instead.")
bool StrContains(StringPiece haystack, StringPiece needle);
// ------------------------------------------------------------------
// Implementation details below
template <typename T>
string Join(const T& s, const char* sep) {
return absl::StrJoin(s, sep);
}
template <typename T>
class Formatter {
public:
Formatter(std::function<void(string*, T)> f) : f_(f) {}
void operator()(string* out, const T& t) { f_(out, t); }
private:
std::function<void(string*, T)> f_;
};
template <typename T, typename Formatter>
string Join(const T& s, const char* sep, Formatter f) {
return absl::StrJoin(s, sep, f);
}
inline std::vector<string> Split(StringPiece text, StringPiece delims) {
return text.empty() ? std::vector<string>()
: absl::StrSplit(text, absl::ByAnyChar(delims));
}
template <typename Predicate>
std::vector<string> Split(StringPiece text, StringPiece delims, Predicate p) {
return text.empty() ? std::vector<string>()
: absl::StrSplit(text, absl::ByAnyChar(delims), p);
}
ABSL_DEPRECATED("Use absl::StrSplit instead.")
inline std::vector<string> Split(StringPiece text, char delim) {
return text.empty() ? std::vector<string>() : absl::StrSplit(text, delim);
}
template <typename Predicate>
ABSL_DEPRECATED("Use absl::StrSplit instead.")
std::vector<string> Split(StringPiece text, char delim, Predicate p) {
return text.empty() ? std::vector<string>() : absl::StrSplit(text, delim, p);
}
// Returns the length of the given null-terminated byte string 'str'.
// Returns 'string_max_len' if the null character was not found in the first
// 'string_max_len' bytes of 'str'.
size_t Strnlen(const char* str, const size_t string_max_len);
} // namespace str_util
} // namespace tensorflow
#endif // TENSORFLOW_CORE_LIB_STRINGS_STR_UTIL_H_