vcpkg/toolsrc/include/vcpkg_Strings.h

131 lines
3.0 KiB
C
Raw Normal View History

2016-09-19 11:50:08 +08:00
#pragma once
2016-11-03 10:34:30 +08:00
#include <vector>
2017-04-04 05:21:51 +08:00
#include "CStringView.h"
2017-01-06 04:47:08 +08:00
namespace vcpkg::Strings::details
2016-09-19 11:50:08 +08:00
{
template<class T>
auto to_printf_arg(const T& t) -> decltype(t.to_string())
{
return t.to_string();
}
2016-09-19 11:50:08 +08:00
inline const char* to_printf_arg(const std::string& s)
{
return s.c_str();
}
inline const char* to_printf_arg(const char* s)
{
return s;
}
inline int to_printf_arg(const int s)
{
return s;
}
inline long long to_printf_arg(const long long s)
{
return s;
}
2016-10-11 06:03:48 +08:00
inline double to_printf_arg(const double s)
{
return s;
}
2016-10-01 02:21:51 +08:00
inline size_t to_printf_arg(const size_t s)
{
return s;
}
2016-09-19 11:50:08 +08:00
std::string format_internal(const char* fmtstr, ...);
inline const wchar_t* to_wprintf_arg(const std::wstring& s)
{
return s.c_str();
}
inline const wchar_t* to_wprintf_arg(const wchar_t* s)
{
return s;
}
std::wstring wformat_internal(const wchar_t* fmtstr, ...);
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
{
template <class...Args>
std::string format(const char* fmtstr, const Args&...args)
{
using vcpkg::Strings::details::to_printf_arg;
return details::format_internal(fmtstr, to_printf_arg(to_printf_arg(args))...);
}
template <class...Args>
std::wstring wformat(const wchar_t* fmtstr, const Args&...args)
2016-09-19 11:50:08 +08:00
{
using vcpkg::Strings::details::to_wprintf_arg;
return details::wformat_internal(fmtstr, to_wprintf_arg(to_wprintf_arg(args))...);
2016-09-19 11:50:08 +08:00
}
2017-04-04 05:21:51 +08:00
std::wstring utf8_to_utf16(const CStringView s);
2016-09-19 11:50:08 +08:00
2017-04-04 05:21:51 +08:00
std::string utf16_to_utf8(const CWStringView w);
2016-09-19 11:50:08 +08:00
std::string::const_iterator case_insensitive_ascii_find(const std::string& s, const std::string& pattern);
2016-10-05 05:44:19 +08:00
std::string ascii_to_lowercase(const std::string& input);
2016-11-03 10:34:30 +08:00
template <class T, class Transformer, class CharType>
std::basic_string<CharType> join(
const CharType* delimiter,
const std::vector<T>& v,
Transformer transformer)
2017-01-28 12:09:40 +08:00
{
if (v.empty())
{
return std::basic_string<CharType>();
2017-01-28 12:09:40 +08:00
}
std::basic_string<CharType> output;
2017-01-28 12:09:40 +08:00
size_t size = v.size();
output.append(transformer(v.at(0)));
for (size_t i = 1; i < size; ++i)
{
output.append(delimiter);
output.append(transformer(v.at(i)));
}
return output;
}
template <class T, class CharType>
std::basic_string<CharType> join(
const CharType* delimiter,
const std::vector<T>& v)
2017-01-28 12:09:40 +08:00
{
return join(delimiter, v, [](const T& x) -> const T&{ return x; });
2017-03-09 14:33:28 +08:00
}
2016-12-16 09:09:14 +08:00
void trim(std::string* s);
std::string trimmed(const std::string& s);
void trim_all_and_remove_whitespace_strings(std::vector<std::string>* strings);
2017-01-24 07:13:12 +08:00
std::vector<std::string> split(const std::string& s, const std::string& delimiter);
template<class T>
std::string serialize(const T& t)
{
std::string ret;
serialize(t, ret);
return ret;
}
2017-01-06 04:47:08 +08:00
}