aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/test/plugin/query.cpp
blob: 150a4859b9b34d579f5325e4de43ef36c2ea4e2f (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "query.h"
#include <vespa/searchlib/features/valuefeature.h>
#include <vespa/searchlib/fef/properties.h>
#include <vespa/vespalib/locale/c.h>
#include <vespa/vespalib/util/stash.h>
#include <sstream>

namespace search::fef::test {

QueryBlueprint::QueryBlueprint() :
    Blueprint("test_query"),
    _key()
{
    // empty
}

bool
QueryBlueprint::setup(const IIndexEnvironment &indexEnv, const StringVector &params)
{
    (void) indexEnv;
    if (params.size() != 1) {
        return false;
    }
    _key = params[0];
    describeOutput("value", "the parameter looked up in the rank properties and converted to a float");
    return true;
}

FeatureExecutor &
QueryBlueprint::createExecutor(const IQueryEnvironment &queryEnv, vespalib::Stash &stash) const
{
    std::vector<feature_t> values;
    std::string val = queryEnv.getProperties().lookup(_key).get("0.0");
    values.push_back(vespalib::locale::c::strtod(val.data(), nullptr));
    return stash.create<search::features::ValueExecutor>(values);
}

}