New cpp folder structure

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk
2025-07-17 22:35:52 +03:00
committed by Konstantin Pastbin
parent c9cbb64f12
commit 76ffc99abd
2390 changed files with 345 additions and 339 deletions

View 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