xrpld
Loading...
Searching...
No Matches
ResourceManager.h
1#pragma once
2
3#include <xrpl/beast/insight/Collector.h>
4#include <xrpl/beast/net/IPEndpoint.h>
5#include <xrpl/beast/utility/Journal.h>
6#include <xrpl/beast/utility/PropertyStream.h>
7#include <xrpl/json/json_value.h>
8#include <xrpl/resource/Consumer.h>
9#include <xrpl/resource/Gossip.h>
10
11#include <boost/utility/string_view.hpp>
12
13namespace xrpl::Resource {
14
17{
18protected:
19 Manager();
20
21public:
22 ~Manager() override = 0;
23
26 virtual Consumer
28 virtual Consumer
30 beast::IP::Endpoint const& address,
31 bool const proxy,
33
35 virtual Consumer
37
39 virtual Consumer
41
43 virtual Gossip
45
47 virtual json::Value
48 getJson() = 0;
49 virtual json::Value
50 getJson(int threshold) = 0;
51
55 virtual void
56 importConsumers(std::string const& origin, Gossip const& gossip) = 0;
57};
58
59//------------------------------------------------------------------------------
60
63
64} // namespace xrpl::Resource
A version-independent IP address and port combination.
Definition IPEndpoint.h:17
A generic endpoint for log messages.
Definition Journal.h:38
Subclasses can be called to write to a stream and have children.
std::shared_ptr< Collector > ptr
Definition Collector.h:26
Represents a JSON value.
Definition json_value.h:130
An endpoint that consumes resources.
Definition Consumer.h:15
virtual Gossip exportConsumers()=0
Extract packaged consumer information for export.
virtual json::Value getJson()=0
Extract consumer information for reporting.
virtual json::Value getJson(int threshold)=0
virtual Consumer newUnlimitedEndpoint(beast::IP::Endpoint const &address)=0
Create a new unlimited endpoint keyed by forwarded IP.
virtual Consumer newOutboundEndpoint(beast::IP::Endpoint const &address)=0
Create a new endpoint keyed by outbound IP address and port.
virtual void importConsumers(std::string const &origin, Gossip const &gossip)=0
Import packaged consumer information.
virtual Consumer newInboundEndpoint(beast::IP::Endpoint const &address)=0
Create a new endpoint keyed by inbound IP address or the forwarded IP if proxied.
virtual Consumer newInboundEndpoint(beast::IP::Endpoint const &address, bool const proxy, std::string_view forwardedFor)=0
std::unique_ptr< Manager > makeManager(beast::insight::Collector::ptr const &collector, beast::Journal journal)
std::string_view forwardedFor(http_request_type const &request)
Definition Role.cpp:251
Data format for exchanging consumption information across peers.
Definition Gossip.h:11