summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/mock_tickable_stripe.h
blob: 38fc0c599a2a1245ef372649b387e218050eea09 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/storage/distributor/tickable_stripe.h>
#include <cstdlib>

namespace storage::distributor {

struct MockTickableStripe : TickableStripe {
    bool tick() override { abort(); }
    void flush_and_close() override { abort(); }
    void update_total_distributor_config(std::shared_ptr<const DistributorConfiguration>) override { abort(); }
    void update_distribution_config(const BucketSpaceDistributionConfigs&) override { abort(); }
    void set_pending_cluster_state_bundle(const lib::ClusterStateBundle&) override { abort(); }
    void clear_pending_cluster_state_bundle() override { abort(); }
    void enable_cluster_state_bundle(const lib::ClusterStateBundle&, bool) override { abort(); }
    void notify_distribution_change_enabled() override { abort(); }
    PotentialDataLossReport remove_superfluous_buckets(document::BucketSpace, const lib::ClusterState&, bool) override {
        abort();
    }
    void merge_entries_into_db(document::BucketSpace,
                               api::Timestamp,
                               const lib::Distribution&,
                               const lib::ClusterState&,
                               const char*,
                               const std::unordered_set<uint16_t>&,
                               const std::vector<dbtransition::Entry>&) override
    {
        abort();
    }
    void update_read_snapshot_before_db_pruning() override { abort(); }
    void update_read_snapshot_after_db_pruning(const lib::ClusterStateBundle&) override { abort(); }
    void update_read_snapshot_after_activation(const lib::ClusterStateBundle&) override { abort(); }
    void clear_read_only_bucket_repo_databases() override { abort(); }

    void report_bucket_db_status(document::BucketSpace, std::ostream&) const override { abort(); }
    StripeAccessGuard::PendingOperationStats pending_operation_stats() const override { abort(); }
    void report_single_bucket_requests(vespalib::xml::XmlOutputStream&) const override { abort(); }
    void report_delayed_single_bucket_requests(vespalib::xml::XmlOutputStream&) const override { abort(); }
};

}