mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
10 years ago
|
#ifndef PROFILING_H__
|
||
|
#define PROFILING_H__
|
||
|
|
||
|
#include <memory>
|
||
10 years ago
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
||
10 years ago
|
#include "Identity.h"
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace data
|
||
9 years ago
|
{
|
||
|
const char PEER_PROFILES_DIRECTORY[] = "peerProfiles";
|
||
|
const char PEER_PROFILE_PREFIX[] = "profile-";
|
||
|
// sections
|
||
|
const char PEER_PROFILE_SECTION_PARTICIPATION[] = "participation";
|
||
|
const char PEER_PROFILE_SECTION_USAGE[] = "usage";
|
||
|
// params
|
||
|
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";
|
||
|
const char PEER_PROFILE_USAGE_TAKEN[] = "taken";
|
||
|
const char PEER_PROFILE_USAGE_REJECTED[] = "rejected";
|
||
10 years ago
|
|
||
9 years ago
|
const int PEER_PROFILE_EXPIRATION_TIMEOUT = 72; // in hours (3 days)
|
||
|
|
||
|
class RouterProfile
|
||
|
{
|
||
|
public:
|
||
10 years ago
|
|
||
9 years ago
|
RouterProfile (const IdentHash& identHash);
|
||
|
RouterProfile& operator= (const RouterProfile& ) = default;
|
||
|
|
||
|
void Save ();
|
||
|
void Load ();
|
||
10 years ago
|
|
||
9 years ago
|
bool IsBad ();
|
||
|
|
||
|
void TunnelBuildResponse (uint8_t ret);
|
||
|
void TunnelNonReplied ();
|
||
10 years ago
|
|
||
9 years ago
|
private:
|
||
10 years ago
|
|
||
9 years ago
|
boost::posix_time::ptime GetTime () const;
|
||
|
void UpdateTime ();
|
||
10 years ago
|
|
||
9 years ago
|
bool IsAlwaysDeclining () const { return !m_NumTunnelsAgreed && m_NumTunnelsDeclined >= 5; };
|
||
|
bool IsLowPartcipationRate () const;
|
||
|
bool IsLowReplyRate () const;
|
||
|
|
||
|
private:
|
||
10 years ago
|
|
||
9 years ago
|
IdentHash m_IdentHash;
|
||
|
boost::posix_time::ptime m_LastUpdateTime;
|
||
|
// participation
|
||
|
uint32_t m_NumTunnelsAgreed;
|
||
|
uint32_t m_NumTunnelsDeclined;
|
||
|
uint32_t m_NumTunnelsNonReplied;
|
||
|
// usage
|
||
|
uint32_t m_NumTimesTaken;
|
||
|
uint32_t m_NumTimesRejected;
|
||
|
};
|
||
10 years ago
|
|
||
9 years ago
|
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
|
||
|
void DeleteObsoleteProfiles ();
|
||
|
}
|
||
|
}
|
||
10 years ago
|
|
||
|
#endif
|