Review fixes.

This commit is contained in:
Yuri Gorshenin 2016-09-12 17:37:53 +03:00
parent 96682f7476
commit acb60bab22
5 changed files with 15 additions and 8 deletions

View file

@ -3,6 +3,8 @@
#include "search/result.hpp"
#include "search/search_params.hpp"
#include "base/logging.hpp"
namespace search
{
class Emitter
@ -21,6 +23,8 @@ public:
{
if (m_onResults)
m_onResults(m_results);
else
LOG(LERROR, ("OnResults is not set."));
}
inline Results const & GetResults() const { return m_results; }
@ -29,6 +33,8 @@ public:
{
if (m_onResults)
m_onResults(Results::GetEndMarker(cancelled));
else
LOG(LERROR, ("OnResults is not set."));
}
private:

View file

@ -145,7 +145,7 @@ Processor::Processor(Index const & index, CategoriesHolder const & categories,
, m_minDistanceOnMapBetweenResults(0.0)
, m_mode(Mode::Everywhere)
, m_suggestsEnabled(true)
, m_ranker(index, m_emitter, infoGetter, categories, suggests,
, m_ranker(index, infoGetter, m_emitter, categories, suggests,
static_cast<my::Cancellable const &>(*this))
, m_preRanker(index, m_ranker, kPreResultsCount)
, m_geocoder(index, infoGetter, m_preRanker, static_cast<my::Cancellable const &>(*this))

View file

@ -1,5 +1,6 @@
#include "search/emitter.hpp"
#include "search/ranker.hpp"
#include "search/emitter.hpp"
#include "search/string_intersection.hpp"
#include "search/token_slice.hpp"
#include "search/utils.hpp"
@ -276,15 +277,15 @@ public:
// static
size_t const Ranker::kBatchSize = 10;
Ranker::Ranker(Index const & index, Emitter & emitter,
storage::CountryInfoGetter const & infoGetter, CategoriesHolder const & categories,
Ranker::Ranker(Index const & index, storage::CountryInfoGetter const & infoGetter,
Emitter & emitter, CategoriesHolder const & categories,
vector<Suggest> const & suggests, my::Cancellable const & cancellable)
: m_reverseGeocoder(index)
, m_cancellable(cancellable)
, m_locality(index)
, m_index(index)
, m_emitter(emitter)
, m_infoGetter(infoGetter)
, m_emitter(emitter)
, m_categories(categories)
, m_suggests(suggests)
{

View file

@ -67,7 +67,7 @@ public:
static size_t const kBatchSize;
Ranker(Index const & index, Emitter & emitter, storage::CountryInfoGetter const & infoGetter,
Ranker(Index const & index, storage::CountryInfoGetter const & infoGetter, Emitter & emitter,
CategoriesHolder const & categories, vector<Suggest> const & suggests,
my::Cancellable const & cancellable);
virtual ~Ranker() = default;
@ -130,8 +130,8 @@ private:
mutable LocalityFinder m_locality;
Index const & m_index;
Emitter & m_emitter;
storage::CountryInfoGetter const & m_infoGetter;
Emitter & m_emitter;
CategoriesHolder const & m_categories;
vector<Suggest> const & m_suggests;

View file

@ -45,7 +45,7 @@ class TestRanker : public Ranker
public:
TestRanker(TestSearchEngine & engine, Emitter & emitter, vector<Suggest> const & suggests,
my::Cancellable const & cancellable, vector<PreResult1> & results)
: Ranker(static_cast<Index const &>(engine), emitter, engine.GetCountryInfoGetter(),
: Ranker(static_cast<Index const &>(engine), engine.GetCountryInfoGetter(), emitter,
GetDefaultCategories(), suggests, cancellable)
, m_results(results)
{