aboutsummaryrefslogtreecommitdiffstats
path: root/logd/src/logd/config_subscriber.h
blob: e199a23ec0ad6cb150056d48f3aef856c9ef3f42 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "forwarder.h"
#include <logd/config-logd.h>
#include <vespa/config/subscription/configsubscriber.h>
#include <vespa/config/subscription/configuri.h>
#include <vespa/fnet/frt/supervisor.h>
#include <vespa/vespalib/util/time.h>

namespace logdemon {

struct Metrics;

/**
 * Class used to subscribe for logd config.
 */
class ConfigSubscriber {
private:
    std::string _logserver_host;
    int _logserver_rpc_port;
    int _state_port;
    ForwardMap _forward_filter;
    int _rotate_size;
    vespalib::duration  _rotate_age;
    int _remove_meg;
    vespalib::duration _remove_age;
    bool _use_logserver;
    config::ConfigSubscriber _subscriber;
    config::ConfigHandle<cloud::config::log::LogdConfig>::UP _handle;
    bool _has_available;
    bool _need_new_forwarder;
    fnet::frt::StandaloneFRT _server;
public:
    bool checkAvailable();
    void latch();
    ConfigSubscriber(const ConfigSubscriber& other) = delete;
    ConfigSubscriber& operator=(const ConfigSubscriber& other) = delete;
    ConfigSubscriber(const config::ConfigUri& configUri);
    ~ConfigSubscriber();

    int getStatePort() const { return _state_port; }
    int getRotateSize() const { return _rotate_size; }
    vespalib::duration getRotateAge() const { return _rotate_age; }
    int getRemoveMegabytes() const { return _remove_meg; }
    vespalib::duration getRemoveAge() const { return _remove_age; }

    bool need_new_forwarder() const { return _need_new_forwarder; }
    std::unique_ptr<Forwarder> make_forwarder(Metrics& metrics);

    void configure(std::unique_ptr<cloud::config::log::LogdConfig> cfg);
    size_t generation() const { return _subscriber.getGeneration(); }
};

}