Skip to content

Commit

Permalink
GetRandomEstablishedSession
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Sep 3, 2014
1 parent 770452c commit aaf386a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions SSU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,30 @@ namespace ssu
}
m_Sessions.clear ();
}

template<typename Filter>
SSUSession * SSUServer::GetRandomSession (Filter filter)
{
std::vector<SSUSession *> filteredSessions;
for (auto s :m_Sessions)
if (filter (s.second)) filteredSessions.push_back (s.second);
if (filteredSessions.size () > 0)
{
auto ind = i2p::context.GetRandomNumberGenerator ().GenerateWord32 (0, filteredSessions.size ()-1);
return filteredSessions[ind];
}
return nullptr;
}

SSUSession * SSUServer::GetRandomEstablishedSession ()
{
return GetRandomSession (
[](SSUSession * session)->bool
{
return session->GetState () == eSessionStateEstablished;
}
);
}
}
}

4 changes: 4 additions & 0 deletions SSU.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ namespace ssu
SSUSession * GetSession (const i2p::data::RouterInfo * router, bool peerTest = false);
SSUSession * FindSession (const i2p::data::RouterInfo * router);
SSUSession * FindSession (const boost::asio::ip::udp::endpoint& e);
SSUSession * GetRandomEstablishedSession ();
void DeleteSession (SSUSession * session);
void DeleteAllSessions ();

Expand All @@ -162,6 +163,9 @@ namespace ssu
void Receive ();
void HandleReceivedFrom (const boost::system::error_code& ecode, std::size_t bytes_transferred);

template<typename Filter>
SSUSession * GetRandomSession (Filter filter);

private:

bool m_IsRunning;
Expand Down

0 comments on commit aaf386a

Please sign in to comment.