1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/service/lookup.hpp

73 lines
1.5 KiB
C++
Raw Normal View History

2018-07-18 05:10:21 +02:00
#ifndef LLARP_SERVICE_LOOKUP_HPP
#define LLARP_SERVICE_LOOKUP_HPP
#include <llarp/router.h>
#include <llarp/routing/message.hpp>
#include <llarp/service/IntroSet.hpp>
#include <set>
namespace llarp
{
// forward declare
namespace path
{
struct Path;
}
namespace service
{
2018-08-04 04:59:32 +02:00
struct ILookupHolder;
2018-07-18 05:10:21 +02:00
struct IServiceLookup
{
2018-08-14 23:17:18 +02:00
IServiceLookup() = delete;
2018-07-18 05:10:21 +02:00
virtual ~IServiceLookup(){};
/// handle lookup result
virtual bool
HandleResponse(__attribute__((unused))
const std::set< IntroSet >& results)
2018-08-14 23:17:18 +02:00
{
return false;
}
2018-07-18 05:10:21 +02:00
/// determine if this request has timed out
bool
2018-10-28 13:56:14 +01:00
IsTimedOut(llarp_time_t now, llarp_time_t timeout = 20000) const
2018-07-18 05:10:21 +02:00
{
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, llarp_router* r);
2018-08-04 04:59:32 +02:00
ILookupHolder* parent;
uint64_t txid;
2018-08-14 23:17:18 +02:00
const std::string name;
2018-10-15 17:43:41 +02:00
RouterID endpoint;
2018-08-04 04:59:32 +02:00
protected:
2018-08-14 23:17:18 +02:00
IServiceLookup(ILookupHolder* parent, uint64_t tx,
const std::string& name);
2018-07-18 05:10:21 +02:00
llarp_time_t m_created;
};
2018-08-04 04:59:32 +02:00
struct ILookupHolder
{
virtual void
PutLookup(IServiceLookup* l, uint64_t txid) = 0;
};
2018-07-18 05:10:21 +02:00
} // namespace service
} // namespace llarp
#endif