Moved mwm_traits from search to platform.

This commit is contained in:
Maxim Pimenov 2016-01-27 15:38:02 +03:00 committed by Sergey Yershov
parent 669636ec86
commit a038f7cc6b
7 changed files with 19 additions and 19 deletions

View file

@ -1,8 +1,8 @@
#include "search/mwm_traits.hpp"
#include "mwm_traits.hpp"
#include "base/logging.hpp"
namespace search
namespace version
{
MwmTraits::MwmTraits(version::Format versionFormat) : m_versionFormat(versionFormat) {}
@ -41,4 +41,4 @@ string DebugPrint(MwmTraits::HouseToStreetTableFormat format)
return "Unknown";
}
}
} // namespace search
} // namespace version

View file

@ -4,7 +4,7 @@
#include "std/string.hpp"
namespace search
namespace version
{
// This is a wrapper around mwm's version. Allows users to get
// information about versions of some data structures in mwm.
@ -50,4 +50,4 @@ private:
string DebugPrint(MwmTraits::SearchIndexFormat format);
string DebugPrint(MwmTraits::HouseToStreetTableFormat format);
} // namespace search
} // namespace version

View file

@ -70,6 +70,7 @@ HEADERS += \
local_country_file_utils.hpp \
location.hpp \
measurement_utils.hpp \
mwm_traits.hpp \
mwm_version.hpp \
platform.hpp \
preferred_languages.hpp \
@ -86,6 +87,7 @@ SOURCES += \
local_country_file.cpp \
local_country_file_utils.cpp \
measurement_utils.cpp \
mwm_traits.cpp \
mwm_version.cpp \
platform.cpp \
preferred_languages.cpp \

View file

@ -3,7 +3,6 @@
#include "cancel_exception.hpp"
#include "feature_offset_match.hpp"
#include "interval_set.hpp"
#include "mwm_traits.hpp"
#include "search_index_values.hpp"
#include "search_string_utils.hpp"
#include "search_trie.hpp"
@ -15,6 +14,7 @@
#include "indexer/scales.hpp"
#include "indexer/trie_reader.hpp"
#include "platform/mwm_traits.hpp"
#include "platform/mwm_version.hpp"
#include "coding/compressed_bit_vector.hpp"
@ -435,16 +435,16 @@ unique_ptr<coding::CompressedBitVector> Retrieval::RetrieveAddressFeatures(
MwmSet::MwmId const & id, MwmValue & value, my::Cancellable const & cancellable,
SearchQueryParams const & params)
{
MwmTraits mwmTraits(value.GetMwmVersion().format);
version::MwmTraits mwmTraits(value.GetMwmVersion().format);
if (mwmTraits.GetSearchIndexFormat() ==
MwmTraits::SearchIndexFormat::FeaturesWithRankAndCenter)
version::MwmTraits::SearchIndexFormat::FeaturesWithRankAndCenter)
{
using TValue = FeatureWithRankAndCenter;
return RetrieveAddressFeaturesImpl<TValue>(id, value, cancellable, params);
}
else if (mwmTraits.GetSearchIndexFormat() ==
MwmTraits::SearchIndexFormat::CompressedBitVector)
version::MwmTraits::SearchIndexFormat::CompressedBitVector)
{
using TValue = FeatureIndexValue;
return RetrieveAddressFeaturesImpl<TValue>(id, value, cancellable, params);

View file

@ -25,7 +25,6 @@ HEADERS += \
latlon_match.hpp \
locality.hpp \
locality_finder.hpp \
mwm_traits.hpp \
params.hpp \
projection_on_street.hpp \
query_saver.hpp \
@ -73,7 +72,6 @@ SOURCES += \
latlon_match.cpp \
locality.cpp \
locality_finder.cpp \
mwm_traits.cpp \
params.cpp \
projection_on_street.cpp \
query_saver.cpp \

View file

@ -7,7 +7,6 @@
#include "search/indexed_value.hpp"
#include "search/latlon_match.hpp"
#include "search/locality.hpp"
#include "search/mwm_traits.hpp"
#include "search/region.hpp"
#include "search/search_common.hpp"
#include "search/search_delimiters.hpp"
@ -28,6 +27,7 @@
#include "indexer/scales.hpp"
#include "indexer/trie_reader.hpp"
#include "platform/mwm_traits.hpp"
#include "platform/mwm_version.hpp"
#include "platform/preferred_languages.hpp"
@ -1640,16 +1640,16 @@ void Query::SearchLocality(MwmValue const * pMwm, Locality & res1, Region & res2
auto codingParams = trie::GetCodingParams(pMwm->GetHeader().GetDefCodingParams());
MwmTraits mwmTraits(pMwm->GetHeader().GetFormat());
version::MwmTraits mwmTraits(pMwm->GetHeader().GetFormat());
if (mwmTraits.GetSearchIndexFormat() ==
MwmTraits::SearchIndexFormat::FeaturesWithRankAndCenter)
version::MwmTraits::SearchIndexFormat::FeaturesWithRankAndCenter)
{
using TValue = FeatureWithRankAndCenter;
SearchLocalityImpl<TValue>(this, pMwm, res1, res2, params, codingParams);
}
else if (mwmTraits.GetSearchIndexFormat() ==
MwmTraits::SearchIndexFormat::CompressedBitVector)
version::MwmTraits::SearchIndexFormat::CompressedBitVector)
{
using TValue = FeatureIndexValue;
SearchLocalityImpl<TValue>(this, pMwm, res1, res2, params, codingParams);

View file

@ -1,9 +1,9 @@
#include "search/v2/house_to_street_table.hpp"
#include "search/mwm_traits.hpp"
#include "indexer/index.hpp"
#include "platform/mwm_traits.hpp"
#include "coding/fixed_bits_ddvector.hpp"
#include "coding/reader.hpp"
@ -48,14 +48,14 @@ public:
unique_ptr<HouseToStreetTable> HouseToStreetTable::Load(MwmValue & value)
{
MwmTraits traits(value.GetMwmVersion().format);
version::MwmTraits traits(value.GetMwmVersion().format);
auto const format = traits.GetHouseToStreetTableFormat();
unique_ptr<HouseToStreetTable> result;
try
{
if (format == MwmTraits::HouseToStreetTableFormat::Fixed3BitsDDVector)
if (format == version::MwmTraits::HouseToStreetTableFormat::Fixed3BitsDDVector)
result.reset(new Fixed3BitsTable(value));
}
catch (Reader::OpenException const & ex)