aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/aggregation/predicates.h
blob: 5b5183cc45334f9c900897c3d7f0054ac935f693 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "fs4hit.h"
#include <vespa/vespalib/objects/objectpredicate.h>
#include <vespa/vespalib/objects/objectoperation.h>

namespace search::aggregation {

class CountFS4Hits : public vespalib::ObjectPredicate,
                     public vespalib::ObjectOperation
{
private:
    uint32_t _hitCnt;

public:
    CountFS4Hits() : _hitCnt(0) {}
    uint32_t getHitCount() const { return _hitCnt; }
    bool check(const vespalib::Identifiable &obj) const override {
        return (obj.getClass().id() == FS4Hit::classId);
    }
    void execute(vespalib::Identifiable &obj) override {
        (void) obj;
        ++_hitCnt;
    }
};

class FS4HitSetDistributionKey : public vespalib::ObjectPredicate,
                                  public vespalib::ObjectOperation
{
private:
    uint32_t _distributionKey;

public:
    FS4HitSetDistributionKey(uint32_t distributionKey) : _distributionKey(distributionKey) {}
    bool check(const vespalib::Identifiable &obj) const override {
        return (obj.getClass().id() == FS4Hit::classId);
    }
    void execute(vespalib::Identifiable &obj) override {
        static_cast<FS4Hit &>(obj).setDistributionKey(_distributionKey);
    }
};

}