Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
39
libs/search/feature_loader.hpp
Normal file
39
libs/search/feature_loader.hpp
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#pragma once
|
||||
|
||||
#include "indexer/data_source.hpp"
|
||||
#include "indexer/scales.hpp"
|
||||
|
||||
#include "base/assert.hpp"
|
||||
#include "base/macros.hpp"
|
||||
#include "base/thread_checker.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
class FeatureType;
|
||||
struct FeatureID;
|
||||
|
||||
namespace search
|
||||
{
|
||||
class FeatureLoader
|
||||
{
|
||||
public:
|
||||
explicit FeatureLoader(DataSource const & dataSource);
|
||||
|
||||
std::unique_ptr<FeatureType> Load(FeatureID const & id);
|
||||
|
||||
void Reset();
|
||||
|
||||
void ForEachInRect(m2::RectD const & rect, std::function<void(FeatureType &)> const & fn)
|
||||
{
|
||||
ASSERT(m_checker.CalledOnOriginalThread(), ());
|
||||
m_dataSource.ForEachInRect(fn, rect, scales::GetUpperScale());
|
||||
}
|
||||
|
||||
private:
|
||||
DataSource const & m_dataSource;
|
||||
std::unique_ptr<FeaturesLoaderGuard> m_guard;
|
||||
|
||||
ThreadChecker m_checker;
|
||||
};
|
||||
} // namespace search
|
||||
Loading…
Add table
Add a link
Reference in a new issue