From 764e3d21c77cc2c51bd2edb607bce2f1d9edd537 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Wed, 23 Oct 2019 21:00:28 +0300 Subject: [PATCH] [search] Documented the contract of OnResults. --- search/search_params.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/search/search_params.hpp b/search/search_params.hpp index db0efda527..349b472284 100644 --- a/search/search_params.hpp +++ b/search/search_params.hpp @@ -35,6 +35,24 @@ struct SearchParams void Clear() { m_query.clear(); } OnStarted m_onStarted; + + // This function may be called an arbitrary number of times during + // the search session. The argument to every call except the first must contain + // as its prefix the argument of the previous call, i.e. |m_onResults| is + // always called for the whole array of results found so far but new results + // are only appended to the end. + // + // The function may be called several times with the same arguments. + // The reasoning is as follows: we could either 1) rearrange results + // between calls if a better ranked result is found after the first + // emit has happened or 2) only append as we do now but never call + // the function twice with the same array of results. + // We decided against the option 1) so as not to annoy the user by + // rearranging. + // We do not guarantee the option 2) because an efficient client + // would only need to redraw the appended part and therefore would + // be fast enough if the two calls are the same. The implementation of + // the search may decide against duplicating calls but no guarantees are given. OnResults m_onResults; std::string m_query;