i2pd/libi2pd/Profiling.h

105 lines
3.4 KiB
C
Raw Permalink Normal View History

/*
2024-01-31 23:41:21 +03:00
* Copyright (c) 2013-2024, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2015-03-24 19:47:57 +03:00
#ifndef PROFILING_H__
#define PROFILING_H__
#include <memory>
#include <future>
2015-03-24 19:47:57 +03:00
#include "Identity.h"
namespace i2p
{
namespace data
2018-01-06 06:48:51 +03:00
{
// sections
const char PEER_PROFILE_SECTION_PARTICIPATION[] = "participation";
2015-06-05 22:55:21 +03:00
const char PEER_PROFILE_SECTION_USAGE[] = "usage";
2018-01-06 06:48:51 +03:00
// params
const char PEER_PROFILE_LAST_UPDATE_TIME[] = "lastupdatetime"; // deprecated
const char PEER_PROFILE_LAST_UPDATE_TIMESTAMP[] = "lastupdatetimestamp";
2023-02-06 21:19:41 +03:00
const char PEER_PROFILE_LAST_UNREACHABLE_TIME[] = "lastunreachabletime";
const char PEER_PROFILE_PARTICIPATION_AGREED[] = "agreed";
const char PEER_PROFILE_PARTICIPATION_DECLINED[] = "declined";
2018-01-06 06:48:51 +03:00
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";
const char PEER_PROFILE_USAGE_CONNECTED[] = "connected";
const char PEER_PROFILE_USAGE_DUPLICATED[] = "duplicated";
const int PEER_PROFILE_EXPIRATION_TIMEOUT = 36*60*60; // in seconds (1.5 days)
const int PEER_PROFILE_AUTOCLEAN_TIMEOUT = 1500; // in seconds (25 minutes)
const int PEER_PROFILE_AUTOCLEAN_VARIANCE = 900; // in seconds (15 minutes)
const int PEER_PROFILE_OBSOLETE_PROFILES_CLEAN_TIMEOUT = 5400; // in seconds (1.5 hours)
const int PEER_PROFILE_OBSOLETE_PROFILES_CLEAN_VARIANCE = 2400; // in seconds (40 minutes)
const int PEER_PROFILE_DECLINED_RECENTLY_INTERVAL = 150; // in seconds (2.5 minutes)
2023-02-12 00:22:02 +03:00
const int PEER_PROFILE_PERSIST_INTERVAL = 3300; // in seconds (55 minutes)
2024-01-31 23:41:21 +03:00
const int PEER_PROFILE_UNREACHABLE_INTERVAL = 480; // in seconds (8 minutes)
2023-05-06 00:30:44 +03:00
const int PEER_PROFILE_USEFUL_THRESHOLD = 3;
2015-03-24 19:47:57 +03:00
class RouterProfile
{
public:
2016-12-31 04:09:41 +03:00
RouterProfile ();
2018-01-06 06:48:51 +03:00
2016-12-31 04:09:41 +03:00
void Save (const IdentHash& identHash);
void Load (const IdentHash& identHash);
2015-03-28 03:34:31 +03:00
2015-06-05 22:55:21 +03:00
bool IsBad ();
2023-02-06 21:19:41 +03:00
bool IsUnreachable ();
bool IsReal () const { return m_HasConnected || m_NumTunnelsAgreed > 0 || m_NumTunnelsDeclined > 0; }
void TunnelBuildResponse (uint8_t ret);
void TunnelNonReplied ();
2015-03-31 04:05:04 +03:00
void Unreachable (bool unreachable);
void Connected ();
void Duplicated ();
uint64_t GetLastUpdateTime () const { return m_LastUpdateTime; };
2023-02-12 00:22:02 +03:00
bool IsUpdated () const { return m_IsUpdated; };
2023-05-06 10:59:40 +03:00
bool IsUseful() const;
bool IsDuplicated () const { return m_IsDuplicated; };
2023-02-12 00:22:02 +03:00
2015-03-31 04:05:04 +03:00
private:
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;
bool IsDeclinedRecently ();
2018-01-06 06:48:51 +03:00
private:
2015-03-24 19:47:57 +03:00
2023-02-12 00:22:02 +03:00
bool m_IsUpdated;
uint64_t m_LastDeclineTime, m_LastUnreachableTime, m_LastUpdateTime; // in seconds
2015-03-24 19:47:57 +03:00
// participation
uint32_t m_NumTunnelsAgreed;
2018-01-06 06:48:51 +03:00
uint32_t m_NumTunnelsDeclined;
uint32_t m_NumTunnelsNonReplied;
2015-06-05 22:55:21 +03:00
// usage
uint32_t m_NumTimesTaken;
2018-01-06 06:48:51 +03:00
uint32_t m_NumTimesRejected;
bool m_HasConnected; // successful trusted(incoming or NTCP2) connection
bool m_IsDuplicated;
2018-01-06 06:48:51 +03:00
};
2015-03-24 19:47:57 +03:00
2018-01-06 06:48:51 +03:00
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
2024-03-03 15:42:39 +03:00
bool IsRouterBanned (const IdentHash& identHash); // check only existing profiles
void InitProfilesStorage ();
std::future<void> DeleteObsoleteProfiles ();
2023-02-12 00:22:02 +03:00
void SaveProfiles ();
std::future<void> PersistProfiles ();
2018-01-06 06:48:51 +03:00
}
}
2015-03-24 19:47:57 +03:00
#endif