aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/test/rankresult.h
blob: f377c3a03b2d9078cc871a1ac13007e5772ac0f2 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// 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/vespalib/stllike/string.h>
#include <vector>
#include <map>

namespace search::fef::test {

class RankResult {
public:
    /**
     * Convenience typedefs.
     */
    using RankScores = std::map<vespalib::string, feature_t>;

public:
    /**
     * Constructs a new rank result.
     */
    RankResult();

    /**
     * Adds a score for the given feature name.
     *
     * @param featureName The name of the feature.
     * @param score       The score of that feature.
     * @return            This, to allow chaining.
     */
    RankResult &addScore(const vespalib::string & featureName, feature_t score);

    /**
     * Returns the score of a given feature.
     *
     * @param featureName The name of the feature.
     * @return            The score of that feature.
     */
    feature_t getScore(const vespalib::string & featureName) const;

    /**
     * Implements equality operator.
     *
     * @param rhs The result to compare to.
     * @return    Whether or not this is equal to the other.
     */
    bool operator==(const RankResult & rhs) const;

    /**
     * Returns whether or not this rank result contains another.
     *
     * @param rhs The result to see if this contains.
     * @return Whether or not this contains the other.
     */
    bool includes(const RankResult & rhs) const;

    /**
     * Clears the content of this map.
     *
     * @return This, to allow chaining.
     */
    RankResult &clear();

    /**
     * Fills the given vector with the key strings of this.
     *
     * @param ret The vector to fill.
     * @return    Reference to the 'ret' param.
     */
    std::vector<vespalib::string> &getKeys(std::vector<vespalib::string> &ret);

    /**
     * Creates and returns a vector with the key strings of this.
     *
     * @return List of all key strings.
     */
    std::vector<vespalib::string> getKeys();

    /**
     * Sets the epsilon used when comparing this rank result to another.
     *
     * @param epsilon The new epsilon.
     * @return        This, to allow chaining.
     */
    RankResult &setEpsilon(double epsilon);

    /**
     * Returns the epsilon used when comparing this rank result to another.
     *
     * @return The epsilon.
     */
    double getEpsilon() const;

    /**
     * Implements streaming operator.
     *
     * @param os  The stream to write to.
     * @param rhs The result to write.
     * @return    The stream, to allow chaining.
     */
    friend std::ostream & operator<<(std::ostream & os, const RankResult & rhs);

private:
    RankScores _rankScores;
    double     _epsilon;
};

}