mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-16 15:04:05 +00:00
c2970f9618
This runs build_tools/style.fish, which runs clang-format on C++, fish_indent on fish and (new) black on python. If anything is wrong with the formatting, we should fix the tools, but automated formatting is worth it.
61 lines
2 KiB
C++
61 lines
2 KiB
C++
// Helper functions for working with wcstring.
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include "common.h"
|
|
#include "wcstringutil.h"
|
|
|
|
typedef wcstring::size_type size_type;
|
|
|
|
wcstring_range wcstring_tok(wcstring &str, const wcstring &needle, wcstring_range last) {
|
|
size_type pos = last.second == wcstring::npos ? wcstring::npos : last.first;
|
|
if (pos != wcstring::npos && last.second != wcstring::npos) pos += last.second;
|
|
if (pos != wcstring::npos && pos != 0) ++pos;
|
|
if (pos == wcstring::npos || pos >= str.size()) {
|
|
return std::make_pair(wcstring::npos, wcstring::npos);
|
|
}
|
|
|
|
if (needle.empty()) {
|
|
return std::make_pair(pos, wcstring::npos);
|
|
}
|
|
|
|
pos = str.find_first_not_of(needle, pos);
|
|
if (pos == wcstring::npos) return std::make_pair(wcstring::npos, wcstring::npos);
|
|
|
|
size_type next_pos = str.find_first_of(needle, pos);
|
|
if (next_pos == wcstring::npos) {
|
|
return std::make_pair(pos, wcstring::npos);
|
|
}
|
|
|
|
str[next_pos] = L'\0';
|
|
return std::make_pair(pos, next_pos - pos);
|
|
}
|
|
|
|
wcstring truncate(const wcstring &input, int max_len, ellipsis_type etype) {
|
|
if (input.size() <= (size_t)max_len) {
|
|
return input;
|
|
}
|
|
|
|
if (etype == ellipsis_type::None) {
|
|
return input.substr(0, max_len);
|
|
}
|
|
if (etype == ellipsis_type::Prettiest) {
|
|
const wchar_t *ellipsis_str = get_ellipsis_str();
|
|
return input.substr(0, max_len - std::wcslen(ellipsis_str)).append(ellipsis_str);
|
|
}
|
|
wcstring output = input.substr(0, max_len - 1);
|
|
output.push_back(get_ellipsis_char());
|
|
return output;
|
|
}
|
|
|
|
wcstring trim(const wcstring &input) { return trim(input, L"\t\v \r\n"); }
|
|
|
|
wcstring trim(const wcstring &input, const wchar_t *any_of) {
|
|
auto begin_offset = input.find_first_not_of(any_of);
|
|
if (begin_offset == wcstring::npos) {
|
|
return wcstring{};
|
|
}
|
|
auto end = input.cbegin() + input.find_last_not_of(any_of);
|
|
|
|
wcstring result(input.begin() + begin_offset, end + 1);
|
|
return result;
|
|
}
|