mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-30 08:55:39 +00:00
This CL converts most of the remaining Tint usages (leaving out the fuzzer code and some float_to_string code). Bug: tint:1686 Change-Id: I4d5cef176c15479250861903870ec5bec0f95b5e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/122002 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com>
83 lines
2.9 KiB
C++
83 lines
2.9 KiB
C++
// Copyright 2021 The Tint Authors.
|
|
//
|
|
// 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 SRC_TINT_UTILS_STRING_H_
|
|
#define SRC_TINT_UTILS_STRING_H_
|
|
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <variant>
|
|
|
|
#include "src/tint/utils/slice.h"
|
|
#include "src/tint/utils/string_stream.h"
|
|
|
|
namespace tint::utils {
|
|
|
|
/// @param str the string to apply replacements to
|
|
/// @param substr the string to search for
|
|
/// @param replacement the replacement string to use instead of `substr`
|
|
/// @returns `str` with all occurrences of `substr` replaced with `replacement`
|
|
[[nodiscard]] inline std::string ReplaceAll(std::string str,
|
|
std::string_view substr,
|
|
std::string_view replacement) {
|
|
size_t pos = 0;
|
|
while ((pos = str.find(substr, pos)) != std::string_view::npos) {
|
|
str.replace(pos, substr.length(), replacement);
|
|
pos += replacement.length();
|
|
}
|
|
return str;
|
|
}
|
|
|
|
/// @param value the value to be printed as a string
|
|
/// @returns value printed as a string via the std::ostream `<<` operator
|
|
template <typename T>
|
|
std::string ToString(const T& value) {
|
|
utils::StringStream s;
|
|
s << value;
|
|
return s.str();
|
|
}
|
|
|
|
/// @param value the variant to be printed as a string
|
|
/// @returns value printed as a string via the std::ostream `<<` operator
|
|
template <typename... TYs>
|
|
std::string ToString(const std::variant<TYs...>& value) {
|
|
utils::StringStream s;
|
|
s << std::visit([&](auto& v) { return ToString(v); }, value);
|
|
return s.str();
|
|
}
|
|
|
|
/// @param str the input string
|
|
/// @param prefix the prefix string
|
|
/// @returns true iff @p str has the prefix @p prefix
|
|
inline size_t HasPrefix(std::string_view str, std::string_view prefix) {
|
|
return str.compare(0, prefix.size(), prefix) == 0;
|
|
}
|
|
|
|
/// @param a the first string
|
|
/// @param b the second string
|
|
/// @returns the Levenshtein distance between @p a and @p b
|
|
size_t Distance(std::string_view a, std::string_view b);
|
|
|
|
/// Suggest alternatives for an unrecognized string from a list of possible values.
|
|
/// @param got the unrecognized string
|
|
/// @param strings the list of possible values
|
|
/// @param ss the stream to write the suggest and list of possible values to
|
|
void SuggestAlternatives(std::string_view got,
|
|
Slice<char const* const> strings,
|
|
utils::StringStream& ss);
|
|
|
|
} // namespace tint::utils
|
|
|
|
#endif // SRC_TINT_UTILS_STRING_H_
|