i2pd/Profiling.h

70 lines
1.8 KiB
C
Raw Normal View History

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