aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageframework/defaultimplementation/component/componentregisterimpl.h
blob: 4300557503290dd57056f4b86a5c1522b16bd90e (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * \class storage::ComponentRegisterImpl
 * \ingroup component
 *
 * \brief Application server uses this class to manage components.
 *
 * This class implements set functions for the various implementations needed.
 * It will set these implementations in all components already registered, and
 * in components registered after that. Simplifies login in application server
 * as it can just instantiate components in some order and set implementations
 * as soon as they exist.
 *
 * It is possibly to subclass this implementation. That is useful if you also
 * subclass component class to provide extra functionality. Then you can handle
 * that extra functionality in the subclass.
 */
#pragma once

#include <vespa/storageframework/generic/component/componentregister.h>
#include <vespa/storageframework/generic/component/managedcomponent.h>
#include <vespa/storageframework/generic/metric/metricregistrator.h>
#include <vespa/storageframework/generic/status/statusreportermap.h>
#include <vespa/metrics/metricset.h>
#include <mutex>

namespace metrics {

    class MetricManager;
    class UpdateHook;

}


namespace storage::framework::defaultimplementation {

struct ShutdownListener {
    virtual ~ShutdownListener() = default;
    virtual void requestShutdown(vespalib::stringref reason) = 0;
};

class ComponentRegisterImpl : public virtual ComponentRegister,
                              public StatusReporterMap,
                              public MetricRegistrator
{
    std::mutex _componentLock;
    std::vector<ManagedComponent*> _components;

    metrics::MetricSet _topMetricSet;
    std::vector<std::unique_ptr<metrics::UpdateHook>> _hooks;
    metrics::MetricManager* _metricManager;
    Clock* _clock;
    ThreadPool* _threadPool;
    ShutdownListener* _shutdownListener;

public:
    using UP = std::unique_ptr<ComponentRegisterImpl>;

    ComponentRegisterImpl();
    ~ComponentRegisterImpl() override;

    [[nodiscard]] bool hasMetricManager() const { return (_metricManager != nullptr); }
    metrics::MetricManager& getMetricManager() { return *_metricManager; }

    void registerComponent(ManagedComponent&) override;
    void requestShutdown(vespalib::stringref reason) override;

    void setMetricManager(metrics::MetricManager&);
    void setClock(Clock&);
    void setThreadPool(ThreadPool&);

    const StatusReporter* getStatusReporter(vespalib::stringref id) override;
    std::vector<const StatusReporter*> getStatusReporters() override;

    void registerMetric(metrics::Metric&) override;
    void registerUpdateHook(vespalib::stringref name, MetricUpdateHook& hook, vespalib::system_time::duration period) override;
    void registerShutdownListener(ShutdownListener&);

};

}