vcpkg/toolsrc/src/vcpkg_Strings.cpp

156 lines
4.5 KiB
C++
Raw Normal View History

2017-01-28 04:49:09 +08:00
#include "pch.h"
2017-04-28 09:08:52 +08:00
2017-07-25 04:59:53 +08:00
#include "vcpkg_Checks.h"
2016-09-19 11:50:08 +08:00
#include "vcpkg_Strings.h"
2017-04-14 06:49:33 +08:00
#include "vcpkg_Util.h"
2016-09-19 11:50:08 +08:00
2017-01-06 04:47:08 +08:00
namespace vcpkg::Strings::details
2016-09-19 11:50:08 +08:00
{
// To disambiguate between two overloads
2017-04-28 09:08:52 +08:00
static const auto isspace = [](const char c) { return std::isspace(c); };
2016-12-16 09:09:14 +08:00
2017-02-16 12:44:19 +08:00
// Avoids C4244 warnings because of char<->int conversion that occur when using std::tolower()
2017-04-28 09:08:52 +08:00
static char tolower_char(const char c) { return static_cast<char>(std::tolower(c)); }
2017-07-25 04:59:53 +08:00
#if defined(_WIN32)
static _locale_t& c_locale()
{
static _locale_t c_locale_impl = _create_locale(LC_ALL, "C");
return c_locale_impl;
}
2017-07-25 04:59:53 +08:00
#endif
2016-09-19 11:50:08 +08:00
std::string format_internal(const char* fmtstr, ...)
{
2017-07-25 04:59:53 +08:00
va_list args;
va_start(args, fmtstr);
#if defined(_WIN32)
const int sz = _vscprintf_l(fmtstr, c_locale(), args);
#else
const int sz = vsnprintf(nullptr, 0, fmtstr, args);
#endif
Checks::check_exit(VCPKG_LINE_INFO, sz > 0);
std::string output(sz, '\0');
2017-07-25 04:59:53 +08:00
#if defined(_WIN32)
_vsnprintf_s_l(&output.at(0), output.size() + 1, output.size(), fmtstr, c_locale(), args);
#else
vsnprintf(&output.at(0), output.size() + 1, fmtstr, args);
#endif
va_end(args);
2016-09-19 11:50:08 +08:00
return output;
}
std::wstring wformat_internal(const wchar_t* fmtstr, ...)
2016-09-19 11:50:08 +08:00
{
2017-07-25 04:59:53 +08:00
va_list args;
va_start(args, fmtstr);
#if defined(_WIN32)
const int sz = _vscwprintf_l(fmtstr, c_locale(), args);
#else
const int sz = vswprintf(nullptr, 0, fmtstr, args);
#endif
Checks::check_exit(VCPKG_LINE_INFO, sz > 0);
std::wstring output(sz, L'\0');
2017-07-25 04:59:53 +08:00
#if defined(_WIN32)
_vsnwprintf_s_l(&output.at(0), output.size() + 1, output.size(), fmtstr, c_locale(), args);
#else
vswprintf(&output.at(0), output.size() + 1, fmtstr, args);
#endif
va_end(args);
2016-09-19 11:50:08 +08:00
return output;
}
2017-01-06 04:47:08 +08:00
}
2016-09-19 11:50:08 +08:00
2017-01-06 04:47:08 +08:00
namespace vcpkg::Strings
2016-09-19 11:50:08 +08:00
{
std::wstring to_utf16(const CStringView s)
2016-09-19 11:50:08 +08:00
{
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>, wchar_t> conversion;
return conversion.from_bytes(s);
}
std::string to_utf8(const CWStringView w)
2016-09-19 11:50:08 +08:00
{
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>, wchar_t> conversion;
return conversion.to_bytes(w);
}
std::string::const_iterator case_insensitive_ascii_find(const std::string& s, const std::string& pattern)
2016-09-19 11:50:08 +08:00
{
2017-02-17 05:02:30 +08:00
const std::string pattern_as_lower_case(ascii_to_lowercase(pattern));
2017-04-28 09:08:52 +08:00
return search(s.begin(),
s.end(),
pattern_as_lower_case.begin(),
pattern_as_lower_case.end(),
[](const char a, const char b) { return details::tolower_char(a) == b; });
2016-09-19 11:50:08 +08:00
}
2016-10-05 05:44:19 +08:00
bool case_insensitive_ascii_contains(const std::string& s, const std::string& pattern)
{
return case_insensitive_ascii_find(s, pattern) != s.end();
}
int case_insensitive_ascii_compare(const CStringView left, const CStringView right)
{
return _stricmp(left, right);
}
2016-10-05 05:44:19 +08:00
std::string ascii_to_lowercase(const std::string& input)
{
std::string output(input);
std::transform(output.begin(), output.end(), output.begin(), &details::tolower_char);
2016-10-05 05:44:19 +08:00
return output;
}
2016-11-03 10:34:30 +08:00
2016-12-16 09:09:14 +08:00
void trim(std::string* s)
{
s->erase(std::find_if_not(s->rbegin(), s->rend(), details::isspace).base(), s->end());
2016-12-21 06:45:35 +08:00
s->erase(s->begin(), std::find_if_not(s->begin(), s->end(), details::isspace));
2016-12-16 09:09:14 +08:00
}
std::string trimmed(const std::string& s)
{
auto whitespace_back = std::find_if_not(s.rbegin(), s.rend(), details::isspace).base();
2016-12-21 06:45:35 +08:00
auto whitespace_front = std::find_if_not(s.begin(), whitespace_back, details::isspace);
return std::string(whitespace_front, whitespace_back);
2016-12-16 09:09:14 +08:00
}
void trim_all_and_remove_whitespace_strings(std::vector<std::string>* strings)
{
for (std::string& s : *strings)
{
trim(&s);
}
2017-04-14 06:49:33 +08:00
Util::erase_remove_if(*strings, [](const std::string& s) { return s == ""; });
}
2017-01-24 07:13:12 +08:00
std::vector<std::string> split(const std::string& s, const std::string& delimiter)
{
std::vector<std::string> output;
size_t i = 0;
2017-01-28 12:09:40 +08:00
for (size_t pos = s.find(delimiter); pos != std::string::npos; pos = s.find(delimiter, pos))
2017-01-24 07:13:12 +08:00
{
output.push_back(s.substr(i, pos - i));
i = ++pos;
2017-01-24 08:50:29 +08:00
}
2017-01-24 07:13:12 +08:00
2017-01-24 08:50:29 +08:00
// Add the rest of the string after the last delimiter, unless there is nothing after it
if (i != s.length())
{
output.push_back(s.substr(i, s.length()));
2017-01-24 07:13:12 +08:00
}
return output;
}
2017-01-06 04:47:08 +08:00
}