mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +00:00
# Conflicts: # CMakeLists.txt # android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java # android/sdk/src/main/cpp/app/organicmaps/sdk/Framework.hpp # android/sdk/src/main/cpp/app/organicmaps/sdk/OrganicMaps.cpp # android/sdk/src/main/cpp/app/organicmaps/sdk/util/Config.cpp # libs/indexer/data_source.hpp # libs/indexer/feature.hpp # libs/indexer/ftypes_matcher.hpp # libs/map/framework.cpp # libs/map/traffic_manager.cpp # libs/routing/absent_regions_finder.cpp # libs/routing/edge_estimator.hpp # libs/routing/index_router.cpp # libs/routing/index_router.hpp # libs/routing/routing_session.hpp # libs/routing_common/num_mwm_id.hpp # libs/traffic/traffic_info.cpp # qt/mainwindow.hpp # qt/preferences_dialog.cpp # tools/openlr/helpers.hpp # tools/openlr/openlr_decoder.cpp # tools/openlr/openlr_decoder.hpp # tools/openlr/openlr_stat/openlr_stat.cpp # tools/openlr/router.hpp # tools/openlr/score_candidate_paths_getter.cpp # tools/openlr/score_candidate_paths_getter.hpp # xcode/CoMaps.xcworkspace/contents.xcworkspacedata
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "openlr/stats.hpp"
|
|
|
|
#include "indexer/data_source.hpp"
|
|
|
|
#include "base/exception.hpp"
|
|
|
|
#include <cstdint>
|
|
#include <functional>
|
|
#include <string>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
namespace openlr
|
|
{
|
|
struct LinearSegment;
|
|
struct DecodedPath;
|
|
|
|
DECLARE_EXCEPTION(DecoderError, RootException);
|
|
|
|
class Graph;
|
|
class RoadInfoGetter;
|
|
|
|
class OpenLRDecoder
|
|
{
|
|
public:
|
|
using CountryParentNameGetter = std::function<std::string(std::string const &)>;
|
|
|
|
class SegmentsFilter
|
|
{
|
|
public:
|
|
SegmentsFilter(std::string const & idsPath, bool const multipointsOnly);
|
|
|
|
bool Matches(LinearSegment const & segment) const;
|
|
|
|
private:
|
|
std::unordered_set<uint32_t> m_ids;
|
|
bool m_idsSet;
|
|
bool const m_multipointsOnly;
|
|
};
|
|
|
|
OpenLRDecoder(DataSource & dataSource, CountryParentNameGetter const & countryParentNameGetter);
|
|
|
|
/**
|
|
* Maps partner segments to mwm paths.
|
|
*
|
|
* `segments` should be sorted by partner id.
|
|
*/
|
|
void DecodeV2(std::vector<LinearSegment> const & segments, uint32_t const numThreads,
|
|
std::vector<DecodedPath> & paths);
|
|
|
|
/**
|
|
* Maps partner segments to mwm paths.
|
|
*/
|
|
void DecodeV3(std::vector<LinearSegment> const & segments, uint32_t numThreads, std::vector<DecodedPath> & paths);
|
|
|
|
private:
|
|
template <typename Decoder, typename Stats>
|
|
void Decode(std::vector<LinearSegment> const & segments, uint32_t const numThreads, std::vector<DecodedPath> & paths);
|
|
|
|
DataSource & m_dataSource;
|
|
CountryParentNameGetter m_countryParentNameGetter;
|
|
};
|
|
} // namespace openlr
|