Review fixes.

This commit is contained in:
Yuri Gorshenin 2017-11-10 16:36:12 +03:00 committed by Tatiana Yan
parent b860ce90c6
commit 0a8877c276
6 changed files with 43 additions and 31 deletions

View file

@ -12,12 +12,14 @@
#include "base/logging.hpp"
#include "base/string_utils.hpp"
#include "std/algorithm.hpp"
#include "std/iterator.hpp"
#include "std/unique_ptr.hpp"
#include <algorithm>
#include <memory>
#include <utility>
#include <boost/optional.hpp>
using namespace std;
namespace search
{
namespace
@ -31,7 +33,7 @@ struct NameScores
template <typename TSlice>
void UpdateNameScores(string const & name, TSlice const & slice, NameScores & bestScores)
{
bestScores.m_nameScore = std::max(bestScores.m_nameScore, GetNameScore(name, slice));
bestScores.m_nameScore = max(bestScores.m_nameScore, GetNameScore(name, slice));
bestScores.m_errorsMade = ErrorsMade::Min(bestScores.m_errorsMade, GetErrorsMade(name, slice));
}
@ -39,7 +41,7 @@ template <typename TSlice>
void UpdateNameScores(vector<strings::UniString> const & tokens, TSlice const & slice,
NameScores & bestScores)
{
bestScores.m_nameScore = std::max(bestScores.m_nameScore, GetNameScore(tokens, slice));
bestScores.m_nameScore = max(bestScores.m_nameScore, GetNameScore(tokens, slice));
bestScores.m_errorsMade = ErrorsMade::Min(bestScores.m_errorsMade, GetErrorsMade(tokens, slice));
}

View file

@ -20,6 +20,7 @@
#include "base/string_utils.hpp"
#include <cstddef>
#include <cstdint>
#include <set>
#include <string>
@ -50,13 +51,13 @@ public:
m2::RectD m_viewport;
m2::PointD m_position;
string m_pivotRegion;
set<uint32_t> m_preferredTypes;
std::set<uint32_t> m_preferredTypes;
bool m_suggestsEnabled = false;
bool m_needAddress = false;
bool m_needHighlighting = false;
bool m_viewportSearch = false;
string m_query;
std::string m_query;
QueryTokens m_tokens;
// Prefix of the last token in the query.
// We need it here to make suggestions.
@ -79,8 +80,9 @@ public:
Ranker(Index const & index, CitiesBoundariesTable const & boundariesTable,
storage::CountryInfoGetter const & infoGetter, KeywordLangMatcher & keywordsScorer,
Emitter & emitter, CategoriesHolder const & categories, vector<Suggest> const & suggests,
VillagesCache & villagesCache, my::Cancellable const & cancellable);
Emitter & emitter, CategoriesHolder const & categories,
std::vector<Suggest> const & suggests, VillagesCache & villagesCache,
my::Cancellable const & cancellable);
virtual ~Ranker() = default;
void Init(Params const & params, Geocoder::Params const & geocoderParams);
@ -92,26 +94,28 @@ public:
void SuggestStrings();
virtual void SetPreRankerResults(vector<PreRankerResult> && preRankerResults)
virtual void SetPreRankerResults(std::vector<PreRankerResult> && preRankerResults)
{
m_preRankerResults = move(preRankerResults);
m_preRankerResults = std::move(preRankerResults);
}
virtual void UpdateResults(bool lastUpdate);
void ClearCaches();
inline void BailIfCancelled() { ::search::BailIfCancelled(m_cancellable); }
void BailIfCancelled() { ::search::BailIfCancelled(m_cancellable); }
inline void SetLocalityLanguage(int8_t code) { m_localityLang = code; }
void SetLocalityLanguage(int8_t code) { m_localityLang = code; }
private:
friend class RankerResultMaker;
void MakeRankerResults(Geocoder::Params const & params, vector<RankerResult> & results);
void MakeRankerResults(Geocoder::Params const & params, std::vector<RankerResult> & results);
void GetBestMatchName(FeatureType const & f, string & name) const;
void MatchForSuggestions(strings::UniString const & token, int8_t locale, string const & prolog);
void ProcessSuggestions(vector<RankerResult> & vec) const;
void GetBestMatchName(FeatureType const & f, std::string & name) const;
void MatchForSuggestions(strings::UniString const & token, int8_t locale,
std::string const & prolog);
void ProcessSuggestions(std::vector<RankerResult> & vec) const;
Params m_params;
Geocoder::Params m_geocoderParams;
@ -126,9 +130,9 @@ private:
storage::CountryInfoGetter const & m_infoGetter;
Emitter & m_emitter;
CategoriesHolder const & m_categories;
vector<Suggest> const & m_suggests;
std::vector<Suggest> const & m_suggests;
vector<PreRankerResult> m_preRankerResults;
vector<RankerResult> m_tentativeResults;
std::vector<PreRankerResult> m_preRankerResults;
std::vector<RankerResult> m_tentativeResults;
};
} // namespace search

View file

@ -1,9 +1,10 @@
#include "search/ranking_info.hpp"
#include "std/cmath.hpp"
#include "std/iomanip.hpp"
#include "std/limits.hpp"
#include "std/sstream.hpp"
#include <iomanip>
#include <limits>
#include <sstream>
using namespace std;
namespace search
{

View file

@ -1,10 +1,14 @@
#pragma once
#include "search/common.hpp"
#include "search/model.hpp"
#include "search/pre_ranking_info.hpp"
#include "search/ranking_utils.hpp"
#include <cstddef>
#include <cstdint>
#include <ostream>
#include <string>
class FeatureType;
namespace search
@ -37,9 +41,9 @@ struct RankingInfo
// tokens are categorial ones.
bool m_falseCats = false;
static void PrintCSVHeader(ostream & os);
static void PrintCSVHeader(std::ostream & os);
void ToCSV(ostream & os) const;
void ToCSV(std::ostream & os) const;
// Returns rank calculated by a linear model. Large values
// correspond to important features.
@ -48,5 +52,5 @@ struct RankingInfo
size_t GetErrorsMade() const;
};
string DebugPrint(RankingInfo const & info);
std::string DebugPrint(RankingInfo const & info);
} // namespace search

View file

@ -55,6 +55,7 @@ CategoriesInfo::CategoriesInfo(feature::TypesHolder const & holder, TokenSlice c
});
}
// ErrorsMade --------------------------------------------------------------------------------------
string DebugPrint(ErrorsMade const & errorsMade)
{
ostringstream os;

View file

@ -1,8 +1,8 @@
#pragma once
#include "search/common.hpp"
#include "search/model.hpp"
#include "search/query_params.hpp"
#include "search/utils.hpp"
#include "indexer/search_delimiters.hpp"
#include "indexer/search_string_utils.hpp"
@ -39,8 +39,8 @@ public:
// |holder|.
bool IsPureCategories() const { return m_pureCategories; }
// Returns true when all tokens are categories tokens but do not
// correspond to categories in |holder|.
// Returns true when all tokens are categories tokens but none of
// them correspond to categories in |holder|.
bool IsFalseCategories() const { return m_falseCategories; }
private: