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.
lokinet/llarp/service/lookup.hpp

87 lines
2.0 KiB
C++

#ifndef LLARP_SERVICE_LOOKUP_HPP
#define LLARP_SERVICE_LOOKUP_HPP
#include <routing/message.hpp>
#include <service/IntroSet.hpp>
#include <set>
namespace llarp
{
// forward declare
namespace path
{
struct Path;
}
namespace service
{
struct ILookupHolder;
constexpr size_t MaxConcurrentLookups = size_t(4);
struct IServiceLookup : public util::IStateful
{
IServiceLookup() = delete;
virtual ~IServiceLookup(){};
/// handle lookup result
virtual bool
HandleResponse(__attribute__((unused))
const std::set< IntroSet >& results)
{
return false;
}
/// determine if this request has timed out
bool
IsTimedOut(llarp_time_t now, llarp_time_t timeout = 15000) const
{
if(now <= m_created)
return false;
return now - m_created > timeout;
}
/// build request message for service lookup
virtual llarp::routing::IMessage*
BuildRequestMessage() = 0;
/// build a new requset message and send it via a path
bool
SendRequestViaPath(llarp::path::Path* p, AbstractRouter* r);
ILookupHolder* parent;
uint64_t txid;
const std::string name;
RouterID endpoint;
util::StatusObject
ExtractStatus() const override
{
auto now = llarp::time_now_ms();
util::StatusObject obj{{"txid", txid},
{"endpoint", endpoint.ToHex()},
{"name", name},
{"timedOut", IsTimedOut(now)},
{"createdAt", m_created}};
return obj;
}
protected:
IServiceLookup(ILookupHolder* parent, uint64_t tx,
const std::string& name);
llarp_time_t m_created;
};
struct ILookupHolder
{
virtual void
PutLookup(IServiceLookup* l, uint64_t txid) = 0;
};
} // namespace service
} // namespace llarp
#endif