aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/matching/match_master.h
blob: a77b34ebc20f3c2247ec1eff674ac8b8086e0cc7 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "result_processor.h"
#include "matching_stats.h"

namespace vespalib { struct ThreadBundle; }
namespace search { class FeatureSet; }
namespace search::engine { class Trace; }

namespace proton::matching {

class MatchToolsFactory;
struct MatchParams;

/**
 * Handles overall matching and keeps track of match threads.
 **/
class MatchMaster
{
private:
    MatchingStats _stats;

public:
    const MatchingStats & getStats() const { return _stats; }
    ResultProcessor::Result::UP match(search::engine::Trace & trace,
                                      const MatchParams &params,
                                      vespalib::ThreadBundle &threadBundle,
                                      const MatchToolsFactory &mtf,
                                      ResultProcessor &resultProcessor,
                                      uint32_t distributionKey,
                                      uint32_t numSearchPartitions);

    static MatchingStats getStats(MatchMaster && rhs) { return std::move(rhs._stats); }
};

}