2015-03-24 16:47:57 +00:00
|
|
|
#ifndef PROFILING_H__
|
|
|
|
#define PROFILING_H__
|
|
|
|
|
|
|
|
#include <memory>
|
2015-03-31 01:05:04 +00:00
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
2015-03-24 16:47:57 +00:00
|
|
|
#include "Identity.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
2015-03-24 22:48:16 +00:00
|
|
|
{
|
|
|
|
// sections
|
|
|
|
const char PEER_PROFILE_SECTION_PARTICIPATION[] = "participation";
|
2015-06-05 19:55:21 +00:00
|
|
|
const char PEER_PROFILE_SECTION_USAGE[] = "usage";
|
2015-03-24 22:48:16 +00:00
|
|
|
// params
|
2015-03-31 01:05:04 +00:00
|
|
|
const char PEER_PROFILE_LAST_UPDATE_TIME[] = "lastupdatetime";
|
2015-03-24 22:48:16 +00:00
|
|
|
const char PEER_PROFILE_PARTICIPATION_AGREED[] = "agreed";
|
|
|
|
const char PEER_PROFILE_PARTICIPATION_DECLINED[] = "declined";
|
2015-03-28 20:09:34 +00:00
|
|
|
const char PEER_PROFILE_PARTICIPATION_NON_REPLIED[] = "nonreplied";
|
2015-06-05 19:55:21 +00:00
|
|
|
const char PEER_PROFILE_USAGE_TAKEN[] = "taken";
|
|
|
|
const char PEER_PROFILE_USAGE_REJECTED[] = "rejected";
|
2015-04-11 19:39:23 +00:00
|
|
|
|
|
|
|
const int PEER_PROFILE_EXPIRATION_TIMEOUT = 72; // in hours (3 days)
|
2015-03-24 22:48:16 +00:00
|
|
|
|
2015-03-24 16:47:57 +00:00
|
|
|
class RouterProfile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RouterProfile (const IdentHash& identHash);
|
2015-03-31 21:13:01 +00:00
|
|
|
RouterProfile& operator= (const RouterProfile& ) = default;
|
2015-03-25 12:45:50 +00:00
|
|
|
|
2015-03-24 22:48:16 +00:00
|
|
|
void Save ();
|
2015-03-25 12:45:50 +00:00
|
|
|
void Load ();
|
2015-03-28 00:34:31 +00:00
|
|
|
|
2015-06-05 19:55:21 +00:00
|
|
|
bool IsBad ();
|
2015-03-24 22:48:16 +00:00
|
|
|
|
|
|
|
void TunnelBuildResponse (uint8_t ret);
|
2015-03-28 20:09:34 +00:00
|
|
|
void TunnelNonReplied ();
|
2015-03-31 01:05:04 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-03-31 21:13:01 +00:00
|
|
|
boost::posix_time::ptime GetTime () const;
|
2015-03-31 01:05:04 +00:00
|
|
|
void UpdateTime ();
|
2015-03-31 21:13:01 +00:00
|
|
|
|
|
|
|
bool IsAlwaysDeclining () const { return !m_NumTunnelsAgreed && m_NumTunnelsDeclined >= 5; };
|
2015-06-05 19:55:21 +00:00
|
|
|
bool IsLowPartcipationRate () const;
|
|
|
|
bool IsLowReplyRate () const;
|
2015-03-24 16:47:57 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
IdentHash m_IdentHash;
|
2015-06-09 18:04:25 +00:00
|
|
|
boost::posix_time::ptime m_LastUpdateTime;
|
2015-03-24 16:47:57 +00:00
|
|
|
// participation
|
|
|
|
uint32_t m_NumTunnelsAgreed;
|
2015-03-28 20:09:34 +00:00
|
|
|
uint32_t m_NumTunnelsDeclined;
|
|
|
|
uint32_t m_NumTunnelsNonReplied;
|
2015-06-05 19:55:21 +00:00
|
|
|
// usage
|
|
|
|
uint32_t m_NumTimesTaken;
|
|
|
|
uint32_t m_NumTimesRejected;
|
2015-03-24 16:47:57 +00:00
|
|
|
};
|
|
|
|
|
2015-03-24 22:48:16 +00:00
|
|
|
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
|
2016-02-20 01:00:00 +00:00
|
|
|
void InitProfilesStorage ();
|
2015-04-11 19:39:23 +00:00
|
|
|
void DeleteObsoleteProfiles ();
|
2015-03-24 16:47:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|