rippled
Loading...
Searching...
No Matches
InboundLedgers.h
1//------------------------------------------------------------------------------
2/*
3 This file is part of rippled: https://github.com/ripple/rippled
4 Copyright (c) 2012, 2013 Ripple Labs Inc.
5
6 Permission to use, copy, modify, and/or distribute this software for any
7 purpose with or without fee is hereby granted, provided that the above
8 copyright notice and this permission notice appear in all copies.
9
10 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*/
18//==============================================================================
19
20#ifndef RIPPLE_APP_LEDGER_INBOUNDLEDGERS_H_INCLUDED
21#define RIPPLE_APP_LEDGER_INBOUNDLEDGERS_H_INCLUDED
22
23#include <xrpld/app/ledger/InboundLedger.h>
24
25#include <xrpl/protocol/RippleLedgerHash.h>
26
27namespace ripple {
28
34{
35public:
37
38 virtual ~InboundLedgers() = default;
39
40 // Callers should use this if they possibly need an authoritative
41 // response immediately.
44
45 // Callers should use this if they are known to be executing on the Job
46 // Queue. TODO review whether all callers of acquire() can use this
47 // instead. Inbound ledger acquisition is asynchronous anyway.
48 virtual void
50 uint256 const& hash,
51 std::uint32_t seq,
52 InboundLedger::Reason reason) = 0;
53
55 find(LedgerHash const& hash) = 0;
56
57 // VFALCO TODO Remove the dependency on the Peer object.
58 //
59 virtual bool
61 LedgerHash const& ledgerHash,
64
65 virtual void
67
68 virtual void
69 logFailure(uint256 const& h, std::uint32_t seq) = 0;
70
71 virtual bool
72 isFailure(uint256 const& h) = 0;
73
74 virtual void
76
77 virtual Json::Value
78 getInfo() = 0;
79
81 virtual std::size_t
82 fetchRate() = 0;
83
85 virtual void
87
88 virtual void
90 virtual void
91 sweep() = 0;
92
93 virtual void
94 stop() = 0;
95
96 virtual std::size_t
97 cacheSize() = 0;
98};
99
102 Application& app,
104 beast::insight::Collector::ptr const& collector);
105
106} // namespace ripple
107
108#endif
Represents a JSON value.
Definition json_value.h:149
Manages the lifetime of inbound ledgers.
virtual void clearFailures()=0
virtual void sweep()=0
virtual void acquireAsync(uint256 const &hash, std::uint32_t seq, InboundLedger::Reason reason)=0
virtual std::shared_ptr< Ledger const > acquire(uint256 const &hash, std::uint32_t seq, InboundLedger::Reason)=0
virtual Json::Value getInfo()=0
virtual void stop()=0
virtual void logFailure(uint256 const &h, std::uint32_t seq)=0
virtual bool gotLedgerData(LedgerHash const &ledgerHash, std::shared_ptr< Peer >, std::shared_ptr< protocol::TMLedgerData >)=0
virtual std::size_t cacheSize()=0
virtual ~InboundLedgers()=default
virtual std::shared_ptr< InboundLedger > find(LedgerHash const &hash)=0
virtual std::size_t fetchRate()=0
Returns the rate of historical ledger fetches per minute.
virtual bool isFailure(uint256 const &h)=0
virtual void gotFetchPack()=0
virtual void gotStaleData(std::shared_ptr< protocol::TMLedgerData > packet)=0
virtual void onLedgerFetched()=0
Called when a complete ledger is obtained.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:25
std::unique_ptr< InboundLedgers > make_InboundLedgers(Application &app, InboundLedgers::clock_type &clock, beast::insight::Collector::ptr const &collector)