forked from organicmaps/organicmaps
[search] Revert search logic. In table + map view algorithm is working with the same logic as in table view.
This commit is contained in:
parent
4424d07321
commit
ddf8a6d1af
11 changed files with 45 additions and 39 deletions
|
@ -181,12 +181,16 @@ extern "C"
|
|||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_search_SearchEngine_nativeRunInteractiveSearch(JNIEnv * env, jclass clazz, jbyteArray bytes, jstring lang, jlong timestamp)
|
||||
Java_com_mapswithme_maps_search_SearchEngine_nativeRunInteractiveSearch(JNIEnv * env, jclass clazz, jbyteArray bytes,
|
||||
jstring lang, jlong timestamp, jboolean viewportOnly)
|
||||
{
|
||||
search::SearchParams params;
|
||||
params.m_query = jni::ToNativeString(env, bytes);
|
||||
params.SetInputLocale(ReplaceDeprecatedLanguageCode(jni::ToNativeString(env, lang)));
|
||||
params.m_callback = bind(&OnResults, _1, timestamp, true, false, 0, 0);
|
||||
if (viewportOnly)
|
||||
params.SetSearchMode(search::SearchParams::IN_VIEWPORT_ONLY | search::SearchParams::SEARCH_WORLD);
|
||||
|
||||
g_framework->NativeFramework()->StartInteractiveSearch(params);
|
||||
g_framework->NativeFramework()->UpdateUserViewportChanged();
|
||||
g_queryTimestamp = timestamp;
|
||||
|
|
|
@ -77,11 +77,11 @@ public enum SearchEngine implements NativeSearchListener
|
|||
return false;
|
||||
}
|
||||
|
||||
public static void runInteractiveSearch(String query, String language, long timestamp)
|
||||
public static void runInteractiveSearch(String query, String language, long timestamp, boolean viewportOnly)
|
||||
{
|
||||
try
|
||||
{
|
||||
nativeRunInteractiveSearch(query.getBytes("utf-8"), language, timestamp);
|
||||
nativeRunInteractiveSearch(query.getBytes("utf-8"), language, timestamp, viewportOnly);
|
||||
} catch (UnsupportedEncodingException ignored) { }
|
||||
}
|
||||
|
||||
|
@ -123,7 +123,7 @@ public enum SearchEngine implements NativeSearchListener
|
|||
/**
|
||||
* @param bytes utf-8 formatted query bytes
|
||||
*/
|
||||
private static native void nativeRunInteractiveSearch(byte[] bytes, String language, long timestamp);
|
||||
private static native void nativeRunInteractiveSearch(byte[] bytes, String language, long timestamp, boolean viewportOnly);
|
||||
|
||||
private static native void nativeShowResult(int index);
|
||||
|
||||
|
|
|
@ -364,7 +364,7 @@ public class SearchFragment extends BaseMwmFragment
|
|||
{
|
||||
final String query = getQuery();
|
||||
mLastQueryTimestamp = System.nanoTime();
|
||||
SearchEngine.runInteractiveSearch(query, Language.getKeyboardLocale(), mLastQueryTimestamp);
|
||||
SearchEngine.runInteractiveSearch(query, Language.getKeyboardLocale(), mLastQueryTimestamp, true);
|
||||
SearchEngine.showAllResults(query);
|
||||
Utils.navigateToParent(getActivity());
|
||||
|
||||
|
@ -406,7 +406,7 @@ public class SearchFragment extends BaseMwmFragment
|
|||
mLastQueryTimestamp = System.nanoTime();
|
||||
// TODO @yunitsky Implement more elegant solution.
|
||||
if (getActivity() instanceof MwmActivity)
|
||||
SearchEngine.runInteractiveSearch(getQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp);
|
||||
SearchEngine.runInteractiveSearch(getQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp, false);
|
||||
else
|
||||
{
|
||||
final boolean searchStarted = SearchEngine.runSearch(getQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp, true,
|
||||
|
|
|
@ -263,15 +263,15 @@ forRowAtIndexPath:(NSIndexPath *)indexPath
|
|||
|
||||
- (void)updateSearchResultsOnMap
|
||||
{
|
||||
if (!self.searchOnMap)
|
||||
return;
|
||||
GetFramework().UpdateSearchResults(searchResults);
|
||||
if (self.searchOnMap)
|
||||
GetFramework().UpdateSearchResults(searchResults);
|
||||
}
|
||||
|
||||
- (void)updateSearchResultsInTable
|
||||
{
|
||||
if (!IPAD && self.searchOnMap)
|
||||
if (!IPAD && _searchOnMap)
|
||||
return;
|
||||
|
||||
self.commonSizingCell = nil;
|
||||
[self.tableView reloadData];
|
||||
}
|
||||
|
@ -296,11 +296,13 @@ forRowAtIndexPath:(NSIndexPath *)indexPath
|
|||
{
|
||||
if (!text)
|
||||
return;
|
||||
|
||||
if (locale)
|
||||
searchParams.SetInputLocale(locale.UTF8String);
|
||||
searchParams.m_query = text.precomposedStringWithCompatibilityMapping.UTF8String;
|
||||
searchParams.SetForceSearch(true);
|
||||
searchResults.Clear();
|
||||
|
||||
[self updateSearch];
|
||||
}
|
||||
|
||||
|
@ -310,10 +312,19 @@ forRowAtIndexPath:(NSIndexPath *)indexPath
|
|||
if (!searchParams.m_query.empty())
|
||||
{
|
||||
self.watchLocationUpdates = YES;
|
||||
if (self.searchOnMap)
|
||||
if (IPAD)
|
||||
{
|
||||
f.StartInteractiveSearch(searchParams);
|
||||
if (searchResults.GetCount())
|
||||
f.UpdateUserViewportChanged();
|
||||
}
|
||||
else if (_searchOnMap)
|
||||
{
|
||||
search::SearchParams local(searchParams);
|
||||
local.SetSearchMode(search::SearchParams::IN_VIEWPORT_ONLY |
|
||||
search::SearchParams::SEARCH_WORLD);
|
||||
f.StartInteractiveSearch(local);
|
||||
|
||||
if (searchResults.GetCount() > 0)
|
||||
f.ShowAllSearchResults(searchResults);
|
||||
f.UpdateUserViewportChanged();
|
||||
}
|
||||
|
|
|
@ -993,9 +993,7 @@ void Framework::UpdateUserViewportChanged()
|
|||
if (IsISActive())
|
||||
{
|
||||
(void)GetCurrentPosition(m_lastSearch.m_lat, m_lastSearch.m_lon);
|
||||
m_lastSearch.SetSearchMode(search::SearchParams::IN_VIEWPORT_ONLY);
|
||||
m_lastSearch.SetForceSearch(false);
|
||||
|
||||
m_searchEngine->Search(m_lastSearch, GetCurrentViewport());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -238,13 +238,11 @@ Result PreResult2::GenerateFinalResult(storage::CountryInfoGetter const & infoGe
|
|||
}
|
||||
}
|
||||
|
||||
Result PreResult2::GeneratePointResult(storage::CountryInfoGetter const & infoGetter,
|
||||
CategoriesHolder const * pCat,
|
||||
set<uint32_t> const * pTypes, int8_t locale) const
|
||||
Result PreResult2::GeneratePointResult(CategoriesHolder const * pCat, set<uint32_t> const * pTypes,
|
||||
int8_t locale) const
|
||||
{
|
||||
uint32_t const type = GetBestType(pTypes);
|
||||
return Result(m_id, GetCenter(), m_str, GetRegionName(infoGetter, type),
|
||||
ReadableFeatureType(pCat, type, locale));
|
||||
return Result(m_id, GetCenter(), m_str, ReadableFeatureType(pCat, type, locale));
|
||||
}
|
||||
|
||||
bool PreResult2::LessRank(PreResult2 const & r1, PreResult2 const & r2)
|
||||
|
|
|
@ -87,9 +87,8 @@ public:
|
|||
CategoriesHolder const * pCat, set<uint32_t> const * pTypes,
|
||||
int8_t locale) const;
|
||||
|
||||
Result GeneratePointResult(storage::CountryInfoGetter const & infoGetter,
|
||||
CategoriesHolder const * pCat,
|
||||
set<uint32_t> const * pTypes, int8_t locale) const;
|
||||
Result GeneratePointResult(CategoriesHolder const * pCat, set<uint32_t> const * pTypes,
|
||||
int8_t locale) const;
|
||||
|
||||
static bool LessRank(PreResult2 const & r1, PreResult2 const & r2);
|
||||
static bool LessDistance(PreResult2 const & r1, PreResult2 const & r2);
|
||||
|
|
|
@ -18,12 +18,10 @@ Result::Result(FeatureID const & id, m2::PointD const & pt, string const & str,
|
|||
Init(true /* metadataInitialized */);
|
||||
}
|
||||
|
||||
Result::Result(FeatureID const & id, m2::PointD const & pt, string const & str,
|
||||
string const & region, string const & type)
|
||||
Result::Result(FeatureID const & id, m2::PointD const & pt, string const & str, string const & type)
|
||||
: m_id(id)
|
||||
, m_center(pt)
|
||||
, m_str(str)
|
||||
, m_region(region)
|
||||
, m_type(type)
|
||||
{
|
||||
Init(false /* metadataInitialized */);
|
||||
|
|
|
@ -41,8 +41,7 @@ public:
|
|||
string const & type, uint32_t featureType, Metadata const & meta);
|
||||
|
||||
/// Used for generation viewport results.
|
||||
Result(FeatureID const & id, m2::PointD const & pt, string const & str,
|
||||
string const & region, string const & type);
|
||||
Result(FeatureID const & id, m2::PointD const & pt, string const & str, string const & type);
|
||||
|
||||
/// @param[in] type Empty string - RESULT_LATLON, building address otherwise.
|
||||
Result(m2::PointD const & pt, string const & str,
|
||||
|
|
|
@ -239,8 +239,7 @@ void Engine::SearchAsync()
|
|||
if (res.GetCount() > 0)
|
||||
EmitResults(params, res);
|
||||
}
|
||||
|
||||
if (res.GetCount() < RESULTS_COUNT)
|
||||
else
|
||||
{
|
||||
while (!m_query->IsCancelled())
|
||||
{
|
||||
|
@ -267,7 +266,7 @@ void Engine::SearchAsync()
|
|||
|
||||
// Make additional search in whole mwm when not enough results (only for non-empty query).
|
||||
size_t const count = res.GetCount();
|
||||
if (!m_query->IsCancelled() && count < RESULTS_COUNT)
|
||||
if (!viewportSearch && !m_query->IsCancelled() && count < RESULTS_COUNT)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
@ -787,7 +787,7 @@ void Query::FlushResults(Results & res, bool allMWMs, size_t resCount)
|
|||
SortByIndexedValue(indV, CompFactory2());
|
||||
|
||||
// Do not process suggestions in additional search.
|
||||
if (!allMWMs)
|
||||
if (!allMWMs || res.GetCount() == 0)
|
||||
ProcessSuggestions(indV, res);
|
||||
|
||||
#ifdef HOUSE_SEARCH_TEST
|
||||
|
@ -837,10 +837,8 @@ void Query::SearchViewportPoints(Results & res)
|
|||
if (IsCancelled())
|
||||
break;
|
||||
|
||||
Result r = indV[i]->GeneratePointResult(m_infoGetter, &m_categories,
|
||||
&m_prefferedTypes, m_currentLocaleCode);
|
||||
MakeResultHighlight(r);
|
||||
res.AddResultNoChecks(move(r));
|
||||
res.AddResultNoChecks(
|
||||
indV[i]->GeneratePointResult(&m_categories, &m_prefferedTypes, m_currentLocaleCode));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -956,8 +954,9 @@ void Query::ProcessSuggestions(vector<T> & vec, Results & res) const
|
|||
void Query::AddResultFromTrie(TTrieValue const & val, MwmSet::MwmId const & mwmID,
|
||||
ViewportID vID /*= DEFAULT_V*/)
|
||||
{
|
||||
// If we are in viewport search mode, check actual "point-in-viewport" criteria.
|
||||
if (m_queuesCount == 1 && !m_viewport[CURRENT_V].IsPointInside(val.m_pt))
|
||||
/// If we are in viewport search mode, check actual "point-in-viewport" criteria.
|
||||
/// @todo Actually, this checks are more-like hack, but not a suitable place to do ...
|
||||
if (m_queuesCount == 1 && vID == CURRENT_V && !m_viewport[CURRENT_V].IsPointInside(val.m_pt))
|
||||
return;
|
||||
|
||||
impl::PreResult1 res(FeatureID(mwmID, val.m_featureId), val.m_rank,
|
||||
|
@ -1876,9 +1875,10 @@ void Query::SearchInMWM(Index::MwmHandle const & mwmHandle, SearchQueryParams co
|
|||
unique_ptr<trie::DefaultIterator> const trieRoot(
|
||||
trie::ReadTrie(SubReaderWrapper<Reader>(searchReader.GetPtr()), trie::ValueReader(cp),
|
||||
trie::TEdgeValueReader()));
|
||||
|
||||
MwmSet::MwmId const mwmId = mwmHandle.GetId();
|
||||
FeaturesFilter filter(
|
||||
(viewportId == DEFAULT_V || isWorld) ? 0 : &m_offsetsInViewport[viewportId][mwmId], *this);
|
||||
FeaturesFilter filter(viewportId == DEFAULT_V || isWorld ?
|
||||
0 : &m_offsetsInViewport[viewportId][mwmId], *this);
|
||||
MatchFeaturesInTrie(params, *trieRoot, filter, [&](TTrieValue const & value)
|
||||
{
|
||||
AddResultFromTrie(value, mwmId, viewportId);
|
||||
|
|
Loading…
Add table
Reference in a new issue