Welcome to mirror list, hosted at ThFree Co, Russian Federation.

retrieval.hpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4e85c609525e2704b50efa45c347a1403cc9d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once

#include "search/query_params.hpp"

#include "indexer/mwm_set.hpp"

#include "base/cancellable.hpp"

#include "std/unique_ptr.hpp"


class MwmValue;

namespace coding
{
class CompressedBitVector;
}

namespace search
{
namespace v2
{
class MwmContext;
class TokenSlice;

// Retrieves from the search index corresponding to |value| all
// features matching to |params|.
unique_ptr<coding::CompressedBitVector> RetrieveAddressFeatures(MwmSet::MwmId const & id,
                                                                MwmValue & value,
                                                                my::Cancellable const & cancellable,
                                                                QueryParams const & params);

// Retrieves from the search index corresponding to |value| all
// postcodes matching to |slice|.
unique_ptr<coding::CompressedBitVector> RetrievePostcodeFeatures(
    MwmSet::MwmId const & id, MwmValue & value, my::Cancellable const & cancellable,
    TokenSlice const & slice);

// Retrieves from the geometry index corresponding to |value| all features belonging to |rect|.
unique_ptr<coding::CompressedBitVector> RetrieveGeometryFeatures(
    MwmContext const & context, my::Cancellable const & cancellable, m2::RectD const & rect,
    int scale);
} // namespace v2
} // namespace search