aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/utils.h
blob: 830fbcf9340a4ea3a6e6b8fd0334a293bae0ef1a (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchlib/common/feature.h>
#include <vespa/searchlib/common/stringmap.h>
#include <vespa/eval/eval/value.h>
#include <vespa/vespalib/util/featureset.h>
#include <map>

namespace search::fef {

class FeatureResolver;
class RankProgram;

struct Utils
{
    /**
     * Extract a single score feature from the given rank program.
     */
    static feature_t getScoreFeature(const RankProgram &rankProgram, uint32_t docid);

    /**
     * Extract a single object feature from the given rank program.
     */
    static vespalib::eval::Value::CREF getObjectFeature(const RankProgram &rankProgram, uint32_t docid);

    /**
     * Extract all seed feature values from the given rank program.
     **/
    static std::map<vespalib::string, feature_t> getSeedFeatures(const RankProgram &rankProgram, uint32_t docid);

    /**
     * Extract all feature values from the given rank program.
     **/
    static std::map<vespalib::string, feature_t> getAllFeatures(const RankProgram &rankProgram, uint32_t docid);

    /*
     * Extract features names for the given feature resolver.
     */
    std::vector<vespalib::string>
    static extract_feature_names(const FeatureResolver& resolver, const search::StringStringMap& renames);

    /*
     * Extract feature values for the given feature resolver.
     */
    static void extract_feature_values(const FeatureResolver& resolver, uint32_t docid, vespalib::FeatureSet::Value* dst);
};

}