20 #ifndef RIPPLE_APP_LEDGER_OPENLEDGER_H_INCLUDED
21 #define RIPPLE_APP_LEDGER_OPENLEDGER_H_INCLUDED
23 #include <ripple/app/ledger/Ledger.h>
24 #include <ripple/app/misc/CanonicalTXSet.h>
25 #include <ripple/basics/Log.h>
26 #include <ripple/basics/UnorderedContainers.h>
27 #include <ripple/beast/utility/Journal.h>
28 #include <ripple/core/Config.h>
29 #include <ripple/ledger/CachedSLEs.h>
30 #include <ripple/ledger/OpenView.h>
38 #define LEDGER_TOTAL_PASSES 3
42 #define LEDGER_RETRY_PASSES 1
179 template <
class FwdRange>
207 template <
class FwdRange>
218 for (
auto iter = txs.begin(); iter != txs.end(); ++iter)
223 auto const tx = *iter;
224 auto const txId = tx->getTransactionID();
225 if (check.txExists(txId))
227 auto const result =
apply_one(app, view, tx,
true, flags, j);
228 if (result == Result::retry)
234 <<
"OpenLedger::apply: Caught exception: " << e.
what();
238 for (
int pass = 0; pass < LEDGER_TOTAL_PASSES; ++pass)
241 auto iter = retries.
begin();
242 while (iter != retries.
end())
246 case Result::success:
249 case Result::failure:
250 iter = retries.
erase(iter);
257 if (!changes && !
retry)
260 if (!changes || (pass >= LEDGER_RETRY_PASSES))
std::shared_ptr< OpenView const > current() const
Returns a view to the current open ledger.
std::shared_ptr< OpenView const > current_
const_iterator erase(const_iterator const &it)
OpenLedger & operator=(OpenLedger const &)=delete
Writable ledger view that accumulates state and tx changes.
static void apply(Application &app, OpenView &view, ReadView const &check, FwdRange const &txs, OrderedTxs &retries, ApplyFlags flags, beast::Journal j)
Algorithm for applying transactions.
void accept(Application &app, Rules const &rules, std::shared_ptr< Ledger const > const &ledger, OrderedTxs const &locals, bool retriesFirst, OrderedTxs &retries, ApplyFlags flags, std::string const &suffix="", modify_type const &f={})
Accept a new ledger.
Holds transactions which were deferred to the next pass of consensus.
const_iterator begin() const
A SHAMap is both a radix tree with a fan-out of 16 and a Merkle tree.
bool set(T &target, std::string const &name, Section const §ion)
Set a value from a configuration Section If the named value is not found or doesn't parse as a T,...
std::string debugTxstr(std::shared_ptr< STTx const > const &tx)
A generic endpoint for log messages.
void insert(std::shared_ptr< STTx const > const &txn)
std::string debugTostr(OrderedTxs const &set)
bool empty() const
Returns true if there are no transactions.
const_iterator end() const
Represents the open ledger.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
static Result apply_one(Application &app, OpenView &view, std::shared_ptr< STTx const > const &tx, bool retry, ApplyFlags flags, beast::Journal j)
Rules controlling protocol behavior.
std::shared_ptr< OpenView > create(Rules const &rules, std::shared_ptr< Ledger const > const &ledger)
std::mutex current_mutex_
bool modify(modify_type const &f)
Modify the open ledger.