p2pool/src/json_rpc_request.h

50 lines
1.7 KiB
C
Raw Normal View History

2021-08-22 04:20:59 -06:00
/*
* This file is part of the Monero P2Pool <https://github.com/SChernykh/p2pool>
2022-03-30 06:42:26 -06:00
* Copyright (c) 2021-2022 SChernykh <https://github.com/SChernykh>
2021-08-22 04:20:59 -06:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
namespace p2pool {
2022-06-04 05:16:05 -06:00
namespace JSONRPCRequest {
2021-08-22 04:20:59 -06:00
2022-06-04 05:16:05 -06:00
struct CallbackBase
2021-08-22 04:20:59 -06:00
{
2022-06-04 05:16:05 -06:00
virtual ~CallbackBase() {}
virtual void operator()(const char* data, size_t size) = 0;
};
2022-06-04 05:16:05 -06:00
template<typename T>
struct Callback : public CallbackBase
{
explicit FORCEINLINE Callback(T&& cb) : m_cb(std::move(cb)) {}
void operator()(const char* data, size_t size) override { m_cb(data, size); }
2021-08-22 04:20:59 -06:00
private:
2022-06-04 05:16:05 -06:00
Callback& operator=(Callback&&) = delete;
T m_cb;
};
2021-08-22 04:20:59 -06:00
2022-06-04 05:16:05 -06:00
void Call(const std::string& address, int port, const std::string& req, const std::string& auth, CallbackBase* cb, CallbackBase* close_cb, uv_loop_t* loop);
2021-08-22 04:20:59 -06:00
2022-06-04 05:16:05 -06:00
template<typename T, typename U>
2022-06-07 11:40:13 -06:00
FORCEINLINE void call(const std::string& address, int port, const std::string& req, const std::string& auth, T&& cb, U&& close_cb, uv_loop_t* loop = nullptr)
2022-06-04 05:16:05 -06:00
{
Call(address, port, req, auth, new Callback<T>(std::move(cb)), new Callback<U>(std::move(close_cb)), loop);
}
2021-08-22 04:20:59 -06:00
2022-06-04 05:16:05 -06:00
} // namespace JSONRPCRequest
2021-08-22 04:20:59 -06:00
} // namespace p2pool