summaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/searchvisitor/queryenvironment.cpp
blob: 76d5387ec8be0548c4ab885fc2c2db4db5b33772 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "queryenvironment.h"
#include <vespa/searchlib/common/location.h>

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

using search::IAttributeManager;
using search::fef::Properties;
using vespalib::string;

namespace storage {

namespace {

search::fef::Location
parseLocation(const string & location_str)
{
    search::fef::Location fefLocation;
    if (location_str.empty()) {
        return fefLocation;
    }
    string::size_type pos = location_str.find(':');
    if (pos == string::npos) {
        LOG(warning, "Location string lacks attribute vector specification. loc='%s'. Location ignored.",
                     location_str.c_str());
        return fefLocation;
    }
    string attr = location_str.substr(0, pos);
    const string location = location_str.substr(pos + 1);

    search::common::Location locationSpec;
    if (!locationSpec.parse(location)) {
        LOG(warning, "Location parse error (location: '%s'): %s. Location ignored.",
                     location.c_str(), locationSpec.getParseError());
        return fefLocation;
    }
    fefLocation.setAttribute(attr);
    fefLocation.setXPosition(locationSpec.getX());
    fefLocation.setYPosition(locationSpec.getY());
    fefLocation.setXAspect(locationSpec.getXAspect());
    fefLocation.setValid(true);
    return fefLocation;
}

}

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

QueryEnvironment::~QueryEnvironment() {}

} // namespace storage