/**
This file is a part of rexy's matrix client
Copyright (C) 2019-2020 rexy712
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
#ifndef RAII_UTIL_HPP
#define RAII_UTIL_HPP
#include
namespace raii{
namespace detail{
size_t _calc_escaped_len(const char* str);
char _escape_to_letter(char escape);
size_t _sanitize_json_copy(char* dest, const char* in);
template
void _js_assign(char* dest, Tup&& t, size_t offset){
size_t written = _sanitize_json_copy(dest+offset, std::get(t));
if constexpr(I+2 < std::tuple_size>::value){
_js_assign(dest, std::forward(t), offset+written);
}
}
template
size_t _calc_escaped_len_all(T&& t){
size_t len = _calc_escaped_len(std::get(t));
if constexpr(I+2 < std::tuple_size>::value){
len += _calc_escaped_len_all(std::forward(t));
}
return len;
}
}
template::value && !rexy::detail::is_concrete_string::value,void>::type* = nullptr>
rexy::string json_escape(T&& t){
auto tup = t.get();
size_t len = detail::_calc_escaped_len_all(tup);
char* tmp = reinterpret_cast(rexy::string::allocator_type::allocate(len+1));
detail::_js_assign(tmp, tup, 0);
tmp[len] = 0;
return rexy::string(tmp, len);
}
rexy::string json_escape(const rexy::string_base& str);
size_t intlen(int i);
rexy::string itostr(int i);
}
#endif