mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:17 +00:00
don't save profiles under mutex
This commit is contained in:
parent
abb81c353d
commit
03111ad0df
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
#include <list>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <boost/property_tree/ptree.hpp>
|
#include <boost/property_tree/ptree.hpp>
|
||||||
#include <boost/property_tree/ini_parser.hpp>
|
#include <boost/property_tree/ini_parser.hpp>
|
||||||
@ -237,28 +238,37 @@ namespace data
|
|||||||
void PersistProfiles ()
|
void PersistProfiles ()
|
||||||
{
|
{
|
||||||
auto ts = GetTime ();
|
auto ts = GetTime ();
|
||||||
std::unique_lock<std::mutex> l(g_ProfilesMutex);
|
std::list<std::pair<i2p::data::IdentHash, std::shared_ptr<RouterProfile> > > tmp;
|
||||||
for (auto it = g_Profiles.begin (); it != g_Profiles.end ();)
|
{
|
||||||
{
|
std::unique_lock<std::mutex> l(g_ProfilesMutex);
|
||||||
if ((ts - it->second->GetLastUpdateTime ()).total_seconds () > PEER_PROFILE_PERSIST_INTERVAL)
|
for (auto it = g_Profiles.begin (); it != g_Profiles.end ();)
|
||||||
{
|
{
|
||||||
if (it->second->IsUpdated ())
|
if ((ts - it->second->GetLastUpdateTime ()).total_seconds () > PEER_PROFILE_PERSIST_INTERVAL)
|
||||||
it->second->Save (it->first);
|
{
|
||||||
it = g_Profiles.erase (it);
|
if (it->second->IsUpdated ())
|
||||||
}
|
tmp.push_back (std::make_pair (it->first, it->second));
|
||||||
else
|
it = g_Profiles.erase (it);
|
||||||
it++;
|
}
|
||||||
}
|
else
|
||||||
|
it++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (auto& it: tmp)
|
||||||
|
if (it.second) it.second->Save (it.first);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SaveProfiles ()
|
void SaveProfiles ()
|
||||||
{
|
{
|
||||||
|
std::unordered_map<i2p::data::IdentHash, std::shared_ptr<RouterProfile> > tmp;
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> l(g_ProfilesMutex);
|
||||||
|
tmp = g_Profiles;
|
||||||
|
g_Profiles.clear ();
|
||||||
|
}
|
||||||
auto ts = GetTime ();
|
auto ts = GetTime ();
|
||||||
std::unique_lock<std::mutex> l(g_ProfilesMutex);
|
for (auto& it: tmp)
|
||||||
for (auto it: g_Profiles)
|
|
||||||
if (it.second->IsUpdated () && (ts - it.second->GetLastUpdateTime ()).total_seconds () < PEER_PROFILE_EXPIRATION_TIMEOUT*3600)
|
if (it.second->IsUpdated () && (ts - it.second->GetLastUpdateTime ()).total_seconds () < PEER_PROFILE_EXPIRATION_TIMEOUT*3600)
|
||||||
it.second->Save (it.first);
|
it.second->Save (it.first);
|
||||||
g_Profiles.clear ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DeleteObsoleteProfiles ()
|
void DeleteObsoleteProfiles ()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user