You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
186 lines
2.8 KiB
C++
186 lines
2.8 KiB
C++
#include "function_map.hh"
|
|
#include <stdexcept>
|
|
|
|
#include <cstring> // for memcpy()
|
|
|
|
const Concat concat{};
|
|
|
|
namespace
|
|
{
|
|
char* make_c_string(const std::string& src)
|
|
{
|
|
char* dest = (char*)malloc(src.size() + 1);
|
|
memcpy(dest, src.c_str(), src.size() + 1 );
|
|
return dest;
|
|
}
|
|
}
|
|
|
|
|
|
template<>
|
|
In<char const*>::~In()
|
|
{
|
|
if(value) free(const_cast<char*>(value));
|
|
}
|
|
|
|
template<>
|
|
In<int>::~In()
|
|
{
|
|
}
|
|
|
|
template<>
|
|
In<std::size_t>::~In()
|
|
{
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<char const*>::~Out()
|
|
{
|
|
if(value) free(const_cast<char*>(*value));
|
|
delete value;
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<char*>::~Out()
|
|
{
|
|
if(value) free(*value);
|
|
*value = nullptr;
|
|
delete value;
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<std::size_t>::~Out()
|
|
{
|
|
delete value;
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<bool>::Out(const Out<bool>& other)
|
|
: value ( new bool {*other.value} )
|
|
{
|
|
}
|
|
|
|
template<>
|
|
Out<bool>::~Out()
|
|
{
|
|
delete value;
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<char const*>::Out(const Out<const char*>& other)
|
|
: value( new const char* )
|
|
{
|
|
*value = *other.value ? strdup(*other.value) : nullptr;
|
|
}
|
|
|
|
template<>
|
|
Out<char*>::Out(const Out<char*>& other)
|
|
: value( new char* )
|
|
{
|
|
*value = *other.value ? strdup(*other.value) : nullptr;
|
|
}
|
|
|
|
|
|
template<>
|
|
Out<std::size_t>::Out(const Out<std::size_t>& other)
|
|
: value( new std::size_t(*other.value))
|
|
{
|
|
}
|
|
|
|
|
|
template<>
|
|
int from_json<int>(const js::Value& v)
|
|
{
|
|
return v.get_int();
|
|
}
|
|
|
|
template<>
|
|
unsigned from_json<unsigned>(const js::Value& v)
|
|
{
|
|
return v.get_uint64();
|
|
}
|
|
|
|
template<>
|
|
std::string from_json<std::string>(const js::Value& v)
|
|
{
|
|
return v.get_str();
|
|
}
|
|
|
|
|
|
template<>
|
|
char* from_json<char*>(const js::Value& v)
|
|
{
|
|
return make_c_string( v.get_str() );
|
|
}
|
|
|
|
template<>
|
|
const char* from_json<const char*>(const js::Value& v)
|
|
{
|
|
return make_c_string( v.get_str() );
|
|
}
|
|
|
|
|
|
template<class T>
|
|
js::Value to_json(const T& t)
|
|
{
|
|
return js::Value(t);
|
|
}
|
|
|
|
template js::Value to_json<bool>(const bool&);
|
|
template js::Value to_json<int>(const int&);
|
|
template js::Value to_json<std::string>(const std::string&);
|
|
|
|
|
|
template<>
|
|
js::Value to_json<unsigned>(const unsigned& t)
|
|
{
|
|
return js::Value(uint64_t(t));
|
|
}
|
|
|
|
template<>
|
|
js::Value to_json<char*>(char* const & s)
|
|
{
|
|
return s ? js::Value(std::string(s)) : js::Value{};
|
|
}
|
|
|
|
template<>
|
|
js::Value to_json<const char*>(const char* const & s)
|
|
{
|
|
return s ? js::Value(std::string(s)) : js::Value{};
|
|
}
|
|
|
|
template<>
|
|
js::Value to_json<std::size_t>(const std::size_t& s)
|
|
{
|
|
return js::Value{s};
|
|
}
|
|
|
|
template<>
|
|
std::size_t from_json<std::size_t>(const js::Value& v)
|
|
{
|
|
return v.get_uint64();
|
|
}
|
|
|
|
|
|
template<>
|
|
js::Value Type2String<std::string>::get() { return "String"; }
|
|
|
|
template<>
|
|
js::Value Type2String<const char*>::get() { return "String"; }
|
|
|
|
template<>
|
|
js::Value Type2String<char*>::get() { return "String"; }
|
|
|
|
template<>
|
|
js::Value Type2String<int>::get() { return "Integer"; }
|
|
|
|
template<>
|
|
js::Value Type2String<size_t>::get() { return "Integer"; }
|
|
|
|
template<>
|
|
js::Value Type2String<bool>::get() { return "Bool"; }
|