storage/State: use std::set instead of sorting a std::list
This commit is contained in:
parent
b9659ba0c0
commit
1d24dd3067
@ -34,7 +34,7 @@
|
|||||||
#include "Instance.hxx"
|
#include "Instance.hxx"
|
||||||
#include "Log.hxx"
|
#include "Log.hxx"
|
||||||
|
|
||||||
#include <list>
|
#include <set>
|
||||||
#include <boost/crc.hpp>
|
#include <boost/crc.hpp>
|
||||||
|
|
||||||
#define MOUNT_STATE_BEGIN "mount_begin"
|
#define MOUNT_STATE_BEGIN "mount_begin"
|
||||||
@ -117,16 +117,14 @@ storage_state_restore(const char *line, TextFile &file, Instance &instance)
|
|||||||
unsigned
|
unsigned
|
||||||
storage_state_get_hash(const Instance &instance)
|
storage_state_get_hash(const Instance &instance)
|
||||||
{
|
{
|
||||||
std::list<std::string> mounts;
|
std::set<std::string> mounts;
|
||||||
|
|
||||||
const auto visitor = [&mounts](const char *mount_uri, const Storage &storage) {
|
const auto visitor = [&mounts](const char *mount_uri, const Storage &storage) {
|
||||||
mounts.push_back(std::string(mount_uri) + ":" + storage.MapUTF8(""));
|
mounts.emplace(std::string(mount_uri) + ":" + storage.MapUTF8(""));
|
||||||
};
|
};
|
||||||
|
|
||||||
((CompositeStorage*)instance.storage)->VisitMounts(visitor);
|
((CompositeStorage*)instance.storage)->VisitMounts(visitor);
|
||||||
|
|
||||||
mounts.sort();
|
|
||||||
|
|
||||||
boost::crc_32_type result;
|
boost::crc_32_type result;
|
||||||
|
|
||||||
for (auto mount: mounts) {
|
for (auto mount: mounts) {
|
||||||
|
Loading…
Reference in New Issue
Block a user