qswiki/utils.h

97 lines
2.1 KiB
C
Raw Permalink Normal View History

2018-11-03 17:12:20 +01:00
#ifndef UTILS_H
#define UTILS_H
#include <string>
#include <string_view>
#include <vector>
#include <optional>
#include <functional>
#include <map>
#include <regex>
#include <ctime>
2021-10-25 13:30:46 +02:00
#include <limits>
2018-11-03 17:12:20 +01:00
namespace utils
{
std::vector<std::string> split(std::string str, char delim);
std::vector<std::string> split(std::string str, const std::string &delim);
std::vector<std::string> split(const std::string &str, std::regex &regex);
2018-11-03 17:12:20 +01:00
std::string urldecode(std::string_view str);
std::string strreplace(std::string str, const std::string &search, const std::string &replace);
2018-11-03 17:12:20 +01:00
std::string html_xss(std::string_view str);
std::string getenv(const std::string &key);
template <class T, class U> U getKeyOrEmpty(const std::map<T, U> &map, const T &key)
2018-11-03 17:12:20 +01:00
{
auto k = map.find(key);
if(k != map.end())
{
return k->second;
}
return U();
}
template <class T, class U> U getKeyOrEmpty(const std::multimap<T, U> &map, const T &key)
2018-11-03 17:12:20 +01:00
{
auto k = map.find(key);
if(k != map.end())
{
return k->second;
}
return U();
}
template <class T, class U> std::vector<U> getAll(const std::multimap<T, U> &map, const T &key)
2018-11-03 17:12:20 +01:00
{
std::vector<U> result;
auto range = map.equal_range(key);
for(auto it = range.first; it != range.second; it++)
{
result.push_back(it->second);
}
return result;
}
2020-03-18 22:00:15 +01:00
std::string regex_callback_replacer(std::regex regex, const std::string &input,
std::function<std::string(std::smatch &)> callback);
2018-11-03 17:12:20 +01:00
std::string readCompleteFile(std::string_view filepath);
inline std::string nz(const char *s)
{
if(s == nullptr)
{
return std::string{};
}
return std::string{s};
}
// TODO: optional
inline unsigned int toUInt(const std::string &str)
{
if(str == "")
{
return 0;
}
auto result = std::stoul(str);
if(result > std::numeric_limits<unsigned int>::max())
{
throw std::out_of_range(str + " is too large for unsigned int ");
}
return result;
}
2022-03-27 08:29:13 +02:00
std::string formatLocalDate(time_t t, std::string format);
2018-11-03 17:12:20 +01:00
std::string toISODate(time_t t);
2022-03-27 08:29:13 +02:00
std::string toISODateTime(time_t t);
2018-11-03 17:12:20 +01:00
template <class T> inline std::string toString(const T &v)
{
return std::string(v.begin(), v.end());
}
2021-10-10 12:01:16 +02:00
std::string trim(std::string_view view);
2021-10-03 16:47:35 +02:00
2018-11-03 17:12:20 +01:00
} // namespace utils
#endif