aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/searchvisitor/queryenvironment.cpp
blob: 800d401494a2ec001ace904ba67a40e27472a5aa (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "queryenvironment.h"
#include <vespa/searchlib/common/geo_location.h>
#include <vespa/searchlib/common/geo_location_spec.h>
#include <vespa/searchlib/common/geo_location_parser.h>

#include <vespa/log/log.h>
LOG_SETUP(".searchvisitor.queryenvironment");

using search::IAttributeManager;
using search::common::GeoLocationParser;
using search::common::GeoLocationSpec;
using search::fef::Properties;
using vespalib::string;

namespace streaming {

namespace {

std::vector<GeoLocationSpec>
parseLocation(const string & location_str)
{
    std::vector<GeoLocationSpec> fefLocations;
    if (location_str.empty()) {
        return fefLocations;
    }
    GeoLocationParser locationParser;
    if (!locationParser.parseWithField(location_str)) {
        LOG(warning, "Location parse error (location: '%s'): %s. Location ignored.",
                     location_str.c_str(), locationParser.getParseError());
        return fefLocations;
    }
    auto loc = locationParser.getGeoLocation();
    if (loc.has_point) {
        fefLocations.push_back(GeoLocationSpec{locationParser.getFieldName(), loc});
    }
    return fefLocations;
}

}

QueryEnvironment::QueryEnvironment(const string & location_str,
                                   const IndexEnvironment & indexEnv,
                                   const Properties & properties,
                                   const IAttributeManager * attrMgr) :
    _indexEnv(indexEnv),
    _properties(properties),
    _attrCtx(std::make_unique<AttributeAccessRecorder>(attrMgr->createContext())),
    _queryTerms(),
    _locations(parseLocation(location_str))
{
}

QueryEnvironment::~QueryEnvironment() {}

void QueryEnvironment::addGeoLocation(const vespalib::string &field, const vespalib::string &location_str) {
    GeoLocationParser locationParser;
    if (! locationParser.parseNoField(location_str)) {
        LOG(warning, "Location parse error (location: '%s'): %s. Location ignored.",
                     location_str.c_str(), locationParser.getParseError());
        return;
    }
    auto loc = locationParser.getGeoLocation();
    if (loc.has_point) {
        _locations.push_back(GeoLocationSpec{field, loc});
    }
}

QueryEnvironment::GeoLocationSpecPtrs
QueryEnvironment::getAllLocations() const
{
    GeoLocationSpecPtrs retval;
    for (const auto & loc : _locations) {
        retval.push_back(&loc);
    }
    return retval;
}

} // namespace streaming