From 0a7bf4db47ca0f4b182a891f2a2a69a9c649355d Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 25 Mar 2015 08:45:50 -0400 Subject: [PATCH] load profiles --- Profiling.cpp | 36 +++++++++++++++++++++++++++++++++++- Profiling.h | 2 ++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/Profiling.cpp b/Profiling.cpp index b5558972..fb45e0af 100644 --- a/Profiling.cpp +++ b/Profiling.cpp @@ -57,6 +57,38 @@ namespace data LogPrint (eLogError, "Can't write ", filename, ": ", ex.what ()); } } + + void RouterProfile::Load () + { + std::string base64 = m_IdentHash.ToBase64 (); + auto path = i2p::util::filesystem::GetDefaultDataDir() / PEER_PROFILES_DIRECTORY; + path /= std::string ("p") + base64[0]; + auto filename = path / (std::string (PEER_PROFILE_PREFIX) + base64 + ".txt"); + if (boost::filesystem::exists (filename)) + { + boost::property_tree::ptree pt; + try + { + boost::property_tree::read_ini (filename.string (), pt); + } + catch (std::exception& ex) + { + LogPrint (eLogError, "Can't read ", filename, ": ", ex.what ()); + return; + } + try + { + // read participations + auto participations = pt.get_child (PEER_PROFILE_SECTION_PARTICIPATION); + m_NumTunnelsAgreed = participations.get (PEER_PROFILE_PARTICIPATION_AGREED, 0); + m_NumTunnelsDeclined = participations.get (PEER_PROFILE_PARTICIPATION_DECLINED, 0); + } + catch (std::exception& ex) + { + LogPrint (eLogError, "Can't read profile ", base64, " :", ex.what ()); + } + } + } void RouterProfile::TunnelBuildResponse (uint8_t ret) { @@ -68,7 +100,9 @@ namespace data std::shared_ptr GetRouterProfile (const IdentHash& identHash) { - return std::make_shared (identHash); + auto profile = std::make_shared (identHash); + profile->Load (); // if possible + return profile; } } } \ No newline at end of file diff --git a/Profiling.h b/Profiling.h index 4e048ef0..1f175dc7 100644 --- a/Profiling.h +++ b/Profiling.h @@ -21,7 +21,9 @@ namespace data public: RouterProfile (const IdentHash& identHash); + void Save (); + void Load (); void TunnelBuildResponse (uint8_t ret);