Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

[core] Use std::list instead of std::map for factory instance #16161

Merged
merged 2 commits into from
Feb 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## master

### 🐞 Bug fixes

- [core] Use std::list instead of std::map for factory instance ([#16161](https://github.com/mapbox/mapbox-gl-native/pull/16161))

Factory 'get' method can be invoked recursively and stable iterators are required to guarantee safety.

## maps-v1.0.0 (2020.01-release-unicorn)

### ✨ New features
Expand Down
30 changes: 21 additions & 9 deletions src/mbgl/storage/file_source_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@
#include <mbgl/storage/resource_options.hpp>
#include <mbgl/util/string.hpp>

#include <algorithm>
#include <list>
#include <map>
#include <mutex>
#include <tuple>

namespace mbgl {

struct FileSourceInfo {
FileSourceInfo(FileSourceType type_, std::string id_, std::weak_ptr<FileSource> fileSource_)
: type(type_), id(std::move(id_)), fileSource(std::move(fileSource_)) {}

FileSourceType type;
std::string id;
std::weak_ptr<FileSource> fileSource;
};

class FileSourceManager::Impl {
public:
using Key = std::tuple<FileSourceType, std::string>;
std::map<Key, std::weak_ptr<FileSource>> fileSources;
std::list<FileSourceInfo> fileSources;
std::map<FileSourceType, FileSourceFactory> fileSourceFactories;
std::recursive_mutex mutex;
};
Expand All @@ -26,25 +36,27 @@ std::shared_ptr<FileSource> FileSourceManager::getFileSource(FileSourceType type

// Remove released file sources.
for (auto it = impl->fileSources.begin(); it != impl->fileSources.end();) {
it = it->second.expired() ? impl->fileSources.erase(it) : ++it;
it = it->fileSource.expired() ? impl->fileSources.erase(it) : ++it;
}

const auto context = reinterpret_cast<uint64_t>(options.platformContext());
const std::string optionsKey =
std::string id =
options.baseURL() + '|' + options.accessToken() + '|' + options.cachePath() + '|' + util::toString(context);
const auto key = std::tie(type, optionsKey);

std::shared_ptr<FileSource> fileSource;
auto tuple = impl->fileSources.find(key);
if (tuple != impl->fileSources.end()) {
fileSource = tuple->second.lock();
auto fileSourceIt = std::find_if(impl->fileSources.begin(), impl->fileSources.end(), [type, &id](const auto& info) {
return info.type == type && info.id == id;
});
if (fileSourceIt != impl->fileSources.end()) {
fileSource = fileSourceIt->fileSource.lock();
}

if (!fileSource) {
auto it = impl->fileSourceFactories.find(type);
if (it != impl->fileSourceFactories.end()) {
assert(it->second);
impl->fileSources[key] = fileSource = it->second(options);
fileSource = it->second(options);
impl->fileSources.emplace_back(type, std::move(id), fileSource);
}
}

Expand Down