lokinet/llarp/rpc/lokid_rpc_client.hpp

101 lines
2.7 KiB
C++
Raw Normal View History

2020-05-18 16:06:52 +00:00
#pragma once
#include <llarp/router_id.hpp>
2020-05-18 16:06:52 +00:00
#include <oxenmq/oxenmq.h>
#include <oxenmq/address.h>
#include <llarp/crypto/types.hpp>
#include <llarp/dht/key.hpp>
#include <llarp/service/name.hpp>
2020-05-18 16:06:52 +00:00
namespace llarp
{
struct Router;
2020-05-19 18:53:03 +00:00
2020-05-18 16:06:52 +00:00
namespace rpc
{
/// The LokidRpcClient uses loki-mq to talk to make API requests to lokid.
2020-05-19 18:53:03 +00:00
struct LokidRpcClient : public std::enable_shared_from_this<LokidRpcClient>
2020-05-21 14:09:45 +00:00
{
explicit LokidRpcClient(std::shared_ptr<oxenmq::OxenMQ> lmq, std::weak_ptr<Router> r);
2020-05-18 16:06:52 +00:00
2020-05-19 18:53:03 +00:00
/// Connect to lokid async
2020-05-18 16:06:52 +00:00
void
2021-02-03 18:12:21 +00:00
ConnectAsync(oxenmq::address url);
2020-05-18 16:06:52 +00:00
2020-05-20 11:41:42 +00:00
/// blocking request identity key from lokid
/// throws on failure
SecretKey
2020-05-20 11:41:42 +00:00
ObtainIdentityKey();
/// get what the current block height is according to oxend
uint64_t
BlockHeight() const
{
return m_BlockHeight;
}
void
2023-09-29 17:28:30 +00:00
lookup_ons_hash(
std::string namehash,
std::function<void(std::optional<service::EncryptedName>)> resultHandler);
/// inform that if connected to a router successfully
void
InformConnection(RouterID router, bool success);
2020-05-19 18:53:03 +00:00
void
StartPings();
2020-05-19 18:53:03 +00:00
private:
2020-05-19 18:53:03 +00:00
/// do a lmq command on the current connection
void
Command(std::string_view cmd);
/// triggers a service node list refresh from oxend; thread-safe and will do nothing if an
/// update is already in progress.
2020-05-20 11:41:42 +00:00
void
UpdateServiceNodeList();
2020-05-20 11:41:42 +00:00
2020-05-19 18:53:03 +00:00
template <typename HandlerFunc_t, typename Args_t>
void
Request(std::string_view cmd, HandlerFunc_t func, const Args_t& args)
{
m_lokiMQ->request(*m_Connection, std::move(cmd), std::move(func), args);
}
2020-05-20 11:41:42 +00:00
template <typename HandlerFunc_t>
void
Request(std::string_view cmd, HandlerFunc_t func)
{
m_lokiMQ->request(*m_Connection, std::move(cmd), std::move(func));
}
// Handles a service node list update; takes the "service_node_states" object of an oxend
// "get_service_nodes" rpc request.
2020-05-19 18:53:03 +00:00
void
HandleNewServiceNodeList(const nlohmann::json& json);
2020-05-19 18:53:03 +00:00
// Handles request from lokid for peer stats on a specific peer
void
2021-02-03 18:12:21 +00:00
HandleGetPeerStats(oxenmq::Message& msg);
2021-04-12 11:39:07 +00:00
// Handles notification of a new block
void
HandleNewBlock(oxenmq::Message& msg);
2021-02-03 18:12:21 +00:00
std::optional<oxenmq::ConnectionID> m_Connection;
std::shared_ptr<oxenmq::OxenMQ> m_lokiMQ;
2020-05-19 18:53:03 +00:00
std::weak_ptr<Router> m_Router;
std::atomic<bool> m_UpdatingList;
std::string m_LastUpdateHash;
std::unordered_map<RouterID, PubKey> m_KeyMap;
uint64_t m_BlockHeight;
2020-05-18 16:06:52 +00:00
};
} // namespace rpc
} // namespace llarp