mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #8348
a4cb77f
epee: update 'http_server_handlers_map2.h' macros to use fully qualified names (Jeffrey Ryan)
This commit is contained in:
commit
e553884d1f
@ -67,7 +67,7 @@
|
|||||||
else if((query_info.m_URI == s_pattern) && (cond)) \
|
else if((query_info.m_URI == s_pattern) && (cond)) \
|
||||||
{ \
|
{ \
|
||||||
handled = true; \
|
handled = true; \
|
||||||
uint64_t ticks = misc_utils::get_tick_count(); \
|
uint64_t ticks = epee::misc_utils::get_tick_count(); \
|
||||||
boost::value_initialized<command_type::request> req; \
|
boost::value_initialized<command_type::request> req; \
|
||||||
bool parse_res = epee::serialization::load_t_from_json(static_cast<command_type::request&>(req), query_info.m_body); \
|
bool parse_res = epee::serialization::load_t_from_json(static_cast<command_type::request&>(req), query_info.m_body); \
|
||||||
if (!parse_res) \
|
if (!parse_res) \
|
||||||
@ -103,7 +103,7 @@
|
|||||||
else if(query_info.m_URI == s_pattern) \
|
else if(query_info.m_URI == s_pattern) \
|
||||||
{ \
|
{ \
|
||||||
handled = true; \
|
handled = true; \
|
||||||
uint64_t ticks = misc_utils::get_tick_count(); \
|
uint64_t ticks = epee::misc_utils::get_tick_count(); \
|
||||||
boost::value_initialized<command_type::request> req; \
|
boost::value_initialized<command_type::request> req; \
|
||||||
bool parse_res = epee::serialization::load_t_from_binary(static_cast<command_type::request&>(req), epee::strspan<uint8_t>(query_info.m_body)); \
|
bool parse_res = epee::serialization::load_t_from_binary(static_cast<command_type::request&>(req), epee::strspan<uint8_t>(query_info.m_body)); \
|
||||||
if (!parse_res) \
|
if (!parse_res) \
|
||||||
@ -113,7 +113,7 @@
|
|||||||
response_info.m_response_comment = "Bad request"; \
|
response_info.m_response_comment = "Bad request"; \
|
||||||
return true; \
|
return true; \
|
||||||
} \
|
} \
|
||||||
uint64_t ticks1 = misc_utils::get_tick_count(); \
|
uint64_t ticks1 = epee::misc_utils::get_tick_count(); \
|
||||||
boost::value_initialized<command_type::response> resp;\
|
boost::value_initialized<command_type::response> resp;\
|
||||||
MINFO(m_conn_context << "calling " << s_pattern); \
|
MINFO(m_conn_context << "calling " << s_pattern); \
|
||||||
bool res = false; \
|
bool res = false; \
|
||||||
@ -125,7 +125,7 @@
|
|||||||
response_info.m_response_comment = "Internal Server Error"; \
|
response_info.m_response_comment = "Internal Server Error"; \
|
||||||
return true; \
|
return true; \
|
||||||
} \
|
} \
|
||||||
uint64_t ticks2 = misc_utils::get_tick_count(); \
|
uint64_t ticks2 = epee::misc_utils::get_tick_count(); \
|
||||||
epee::byte_slice buffer; \
|
epee::byte_slice buffer; \
|
||||||
epee::serialization::store_t_to_binary(static_cast<command_type::response&>(resp), buffer, 64 * 1024); \
|
epee::serialization::store_t_to_binary(static_cast<command_type::response&>(resp), buffer, 64 * 1024); \
|
||||||
uint64_t ticks3 = epee::misc_utils::get_tick_count(); \
|
uint64_t ticks3 = epee::misc_utils::get_tick_count(); \
|
||||||
|
@ -83,7 +83,7 @@ uint16_t parse_public_rpc_port(const po::variables_map &vm)
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint16_t rpc_port;
|
uint16_t rpc_port;
|
||||||
if (!string_tools::get_xtype_from_string(rpc_port, rpc_port_str))
|
if (!epee::string_tools::get_xtype_from_string(rpc_port, rpc_port_str))
|
||||||
{
|
{
|
||||||
throw std::runtime_error("invalid RPC port " + rpc_port_str);
|
throw std::runtime_error("invalid RPC port " + rpc_port_str);
|
||||||
}
|
}
|
||||||
|
@ -1063,7 +1063,7 @@ bool t_rpc_command_executor::print_transaction(crypto::hash transaction_hash,
|
|||||||
cryptonote::blobdata blob;
|
cryptonote::blobdata blob;
|
||||||
std::string source = as_hex.empty() ? pruned_as_hex + prunable_as_hex : as_hex;
|
std::string source = as_hex.empty() ? pruned_as_hex + prunable_as_hex : as_hex;
|
||||||
bool pruned = !pruned_as_hex.empty() && prunable_as_hex.empty();
|
bool pruned = !pruned_as_hex.empty() && prunable_as_hex.empty();
|
||||||
if (!string_tools::parse_hexstr_to_binbuff(source, blob))
|
if (!epee::string_tools::parse_hexstr_to_binbuff(source, blob))
|
||||||
{
|
{
|
||||||
tools::fail_msg_writer() << "Failed to parse tx to get json format";
|
tools::fail_msg_writer() << "Failed to parse tx to get json format";
|
||||||
}
|
}
|
||||||
|
@ -47,10 +47,6 @@
|
|||||||
#undef MONERO_DEFAULT_LOG_CATEGORY
|
#undef MONERO_DEFAULT_LOG_CATEGORY
|
||||||
#define MONERO_DEFAULT_LOG_CATEGORY "daemon.rpc"
|
#define MONERO_DEFAULT_LOG_CATEGORY "daemon.rpc"
|
||||||
|
|
||||||
// yes, epee doesn't properly use its full namespace when calling its
|
|
||||||
// functions from macros. *sigh*
|
|
||||||
using namespace epee;
|
|
||||||
|
|
||||||
namespace cryptonote
|
namespace cryptonote
|
||||||
{
|
{
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user