2019-01-22 01:14:02 +00:00
|
|
|
#ifndef LLARP_DHT_TXHOLDER
|
|
|
|
#define LLARP_DHT_TXHOLDER
|
|
|
|
|
|
|
|
#include <dht/tx.hpp>
|
|
|
|
#include <dht/txowner.hpp>
|
|
|
|
#include <util/logger.hpp>
|
|
|
|
#include <util/time.hpp>
|
2019-02-08 19:43:25 +00:00
|
|
|
#include <util/status.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS = 5000UL >
|
2019-02-08 19:43:25 +00:00
|
|
|
struct TXHolder : public util::IStateful
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
|
|
|
using TXPtr = std::unique_ptr< TX< K, V > >;
|
|
|
|
// tx who are waiting for a reply for each key
|
|
|
|
std::unordered_multimap< K, TXOwner, K_Hash > waiting;
|
|
|
|
// tx timesouts by key
|
|
|
|
std::unordered_map< K, llarp_time_t, K_Hash > timeouts;
|
|
|
|
// maps remote peer with tx to handle reply from them
|
|
|
|
std::unordered_map< TXOwner, TXPtr, TXOwner::Hash > tx;
|
|
|
|
|
|
|
|
const TX< K, V >*
|
|
|
|
GetPendingLookupFrom(const TXOwner& owner) const;
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
|
|
|
ExtractStatus() const override
|
2019-02-08 19:43:25 +00:00
|
|
|
{
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject obj{};
|
|
|
|
std::vector< util::StatusObject > txObjs, timeoutsObjs, waitingObjs;
|
|
|
|
std::transform(tx.begin(), tx.end(), std::back_inserter(txObjs),
|
|
|
|
[](const auto& item) -> util::StatusObject {
|
|
|
|
return util::StatusObject{
|
|
|
|
{"owner", item.first.ExtractStatus()},
|
|
|
|
{"tx", item.second->ExtractStatus()}};
|
|
|
|
});
|
|
|
|
obj.Put("tx", txObjs);
|
|
|
|
std::transform(
|
|
|
|
timeouts.begin(), timeouts.end(), std::back_inserter(timeoutsObjs),
|
|
|
|
[](const auto& item) -> util::StatusObject {
|
|
|
|
return util::StatusObject{{"time", item.second},
|
|
|
|
{"target", item.first.ToHex()}};
|
|
|
|
});
|
|
|
|
obj.Put("timeouts", timeoutsObjs);
|
|
|
|
std::transform(waiting.begin(), waiting.end(),
|
|
|
|
std::back_inserter(waitingObjs),
|
|
|
|
[](const auto& item) -> util::StatusObject {
|
|
|
|
return util::StatusObject{
|
|
|
|
{"target", item.first.ToHex()},
|
|
|
|
{"whoasked", item.second.ExtractStatus()}};
|
|
|
|
});
|
|
|
|
obj.Put("waiting", waitingObjs);
|
|
|
|
return obj;
|
2019-02-08 19:43:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 01:14:02 +00:00
|
|
|
bool
|
|
|
|
HasLookupFor(const K& target) const
|
|
|
|
{
|
|
|
|
return timeouts.find(target) != timeouts.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HasPendingLookupFrom(const TXOwner& owner) const
|
|
|
|
{
|
|
|
|
return GetPendingLookupFrom(owner) != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NewTX(const TXOwner& askpeer, const TXOwner& whoasked, const K& k,
|
|
|
|
TX< K, V >* t);
|
|
|
|
|
|
|
|
/// mark tx as not fond
|
|
|
|
void
|
|
|
|
NotFound(const TXOwner& from, const std::unique_ptr< Key_t >& next);
|
|
|
|
|
|
|
|
void
|
|
|
|
Found(const TXOwner& from, const K& k, const std::vector< V >& values)
|
|
|
|
{
|
|
|
|
Inform(from, k, values, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// inform all watches for key of values found
|
|
|
|
void
|
|
|
|
Inform(TXOwner from, K key, std::vector< V > values,
|
|
|
|
bool sendreply = false, bool removeTimeouts = true);
|
|
|
|
|
|
|
|
void
|
|
|
|
Expire(llarp_time_t now);
|
|
|
|
};
|
|
|
|
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS >
|
|
|
|
const TX< K, V >*
|
|
|
|
TXHolder< K, V, K_Hash, requestTimeoutMS >::GetPendingLookupFrom(
|
|
|
|
const TXOwner& owner) const
|
|
|
|
{
|
|
|
|
auto itr = tx.find(owner);
|
|
|
|
if(itr == tx.end())
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return itr->second.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS >
|
|
|
|
void
|
|
|
|
TXHolder< K, V, K_Hash, requestTimeoutMS >::NewTX(const TXOwner& askpeer,
|
|
|
|
const TXOwner& whoasked,
|
|
|
|
const K& k, TX< K, V >* t)
|
|
|
|
{
|
|
|
|
(void)whoasked;
|
|
|
|
tx.emplace(askpeer, std::unique_ptr< TX< K, V > >(t));
|
|
|
|
auto count = waiting.count(k);
|
|
|
|
waiting.emplace(k, askpeer);
|
|
|
|
|
|
|
|
auto itr = timeouts.find(k);
|
|
|
|
if(itr == timeouts.end())
|
|
|
|
{
|
|
|
|
timeouts.emplace(k, time_now_ms() + requestTimeoutMS);
|
|
|
|
}
|
|
|
|
if(count == 0)
|
|
|
|
{
|
|
|
|
t->Start(askpeer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS >
|
|
|
|
void
|
|
|
|
TXHolder< K, V, K_Hash, requestTimeoutMS >::NotFound(
|
|
|
|
const TXOwner& from, const std::unique_ptr< Key_t >& next)
|
|
|
|
{
|
|
|
|
bool sendReply = true;
|
|
|
|
auto txitr = tx.find(from);
|
|
|
|
if(txitr == tx.end())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ask for next peer
|
|
|
|
if(txitr->second->AskNextPeer(from.node, next))
|
|
|
|
{
|
|
|
|
sendReply = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
llarp::LogWarn("Target key ", txitr->second->target);
|
|
|
|
Inform(from, txitr->second->target, {}, sendReply, sendReply);
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS >
|
|
|
|
void
|
|
|
|
TXHolder< K, V, K_Hash, requestTimeoutMS >::Inform(TXOwner from, K key,
|
|
|
|
std::vector< V > values,
|
|
|
|
bool sendreply,
|
|
|
|
bool removeTimeouts)
|
|
|
|
{
|
|
|
|
auto range = waiting.equal_range(key);
|
|
|
|
auto itr = range.first;
|
|
|
|
while(itr != range.second)
|
|
|
|
{
|
|
|
|
auto txitr = tx.find(itr->second);
|
|
|
|
if(txitr != tx.end())
|
|
|
|
{
|
|
|
|
for(const auto& value : values)
|
|
|
|
{
|
|
|
|
txitr->second->OnFound(from.node, value);
|
|
|
|
}
|
|
|
|
if(sendreply)
|
|
|
|
{
|
|
|
|
txitr->second->SendReply();
|
|
|
|
tx.erase(txitr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sendreply)
|
|
|
|
{
|
|
|
|
waiting.erase(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(removeTimeouts)
|
|
|
|
{
|
|
|
|
timeouts.erase(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename K, typename V, typename K_Hash,
|
|
|
|
llarp_time_t requestTimeoutMS >
|
|
|
|
void
|
|
|
|
TXHolder< K, V, K_Hash, requestTimeoutMS >::Expire(llarp_time_t now)
|
|
|
|
{
|
|
|
|
auto itr = timeouts.begin();
|
|
|
|
while(itr != timeouts.end())
|
|
|
|
{
|
|
|
|
if(now > itr->second && now - itr->second >= requestTimeoutMS)
|
|
|
|
{
|
|
|
|
Inform(TXOwner{}, itr->first, {}, true, false);
|
|
|
|
itr = timeouts.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|