2021-03-09 22:24:35 +00:00
|
|
|
#include "lookup.hpp"
|
2019-01-11 01:19:36 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/path/path.hpp>
|
|
|
|
#include <llarp/util/time.hpp>
|
|
|
|
#include <llarp/router/abstractrouter.hpp>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <utility>
|
2018-08-04 02:59:32 +00:00
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2019-02-11 19:45:42 +00:00
|
|
|
struct AbstractRouter;
|
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
namespace service
|
|
|
|
{
|
2021-03-27 18:54:09 +00:00
|
|
|
IServiceLookup::IServiceLookup(
|
|
|
|
ILookupHolder* p, uint64_t tx, std::string n, llarp_time_t timeout)
|
|
|
|
: m_parent(p), txid(tx), name(std::move(n)), m_created{time_now_ms()}, m_timeout{timeout}
|
2018-08-04 02:59:32 +00:00
|
|
|
{
|
|
|
|
p->PutLookup(this, tx);
|
|
|
|
}
|
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
IServiceLookup::SendRequestViaPath(path::Path_ptr path, AbstractRouter* r)
|
2018-07-18 03:10:21 +00:00
|
|
|
{
|
|
|
|
auto msg = BuildRequestMessage();
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!msg)
|
2018-07-18 03:10:21 +00:00
|
|
|
return false;
|
2021-03-02 15:23:38 +00:00
|
|
|
r->loop()->call(
|
|
|
|
[path = std::move(path), msg = std::move(msg), r] { path->SendRoutingMessage(*msg, r); });
|
2019-04-23 14:28:59 +00:00
|
|
|
return true;
|
2018-07-18 03:10:21 +00:00
|
|
|
}
|
|
|
|
} // namespace service
|
2018-10-15 15:43:41 +00:00
|
|
|
} // namespace llarp
|