rippled
RippleCalc.cpp
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 #include <ripple/app/paths/Flow.h>
21 #include <ripple/app/paths/RippleCalc.h>
22 #include <ripple/app/paths/impl/FlowDebugInfo.h>
23 #include <ripple/basics/Log.h>
24 #include <ripple/ledger/View.h>
25 #include <ripple/protocol/Feature.h>
26 
27 namespace ripple {
28 namespace path {
29 
30 RippleCalc::Output
32  PaymentSandbox& view,
33 
34  // Compute paths using this ledger entry set. Up to caller to actually
35  // apply to ledger.
36 
37  // Issuer:
38  // XRP: xrpAccount()
39  // non-XRP: uSrcAccountID (for any issuer) or another account with
40  // trust node.
41  STAmount const& saMaxAmountReq, // --> -1 = no limit.
42 
43  // Issuer:
44  // XRP: xrpAccount()
45  // non-XRP: uDstAccountID (for any issuer) or another account with
46  // trust node.
47  STAmount const& saDstAmountReq,
48 
49  AccountID const& uDstAccountID,
50  AccountID const& uSrcAccountID,
51 
52  // A set of paths that are included in the transaction that we'll
53  // explore for liquidity.
54  STPathSet const& spsPaths,
55  Logs& l,
56  Input const* const pInputs)
57 {
58  Output flowOut;
59  PaymentSandbox flowSB(&view);
60  auto j = l.journal("Flow");
61 
62  if (!view.rules().enabled(featureFlow))
63  {
64  // The new payment engine was enabled several years ago. New transaction
65  // should never use the old rules. Assume this is a replay
66  j.fatal()
67  << "Old payment rules are required for this transaction. Assuming "
68  "this is a replay and running with the new rules.";
69  }
70 
71  {
72  bool const defaultPaths =
73  !pInputs ? true : pInputs->defaultPathsAllowed;
74 
75  bool const partialPayment =
76  !pInputs ? false : pInputs->partialPaymentAllowed;
77 
78  auto const limitQuality = [&]() -> std::optional<Quality> {
79  if (pInputs && pInputs->limitQuality &&
80  saMaxAmountReq > beast::zero)
81  return Quality{Amounts(saMaxAmountReq, saDstAmountReq)};
82  return std::nullopt;
83  }();
84 
85  auto const sendMax = [&]() -> std::optional<STAmount> {
86  if (saMaxAmountReq >= beast::zero ||
87  saMaxAmountReq.getCurrency() != saDstAmountReq.getCurrency() ||
88  saMaxAmountReq.getIssuer() != uSrcAccountID)
89  {
90  return saMaxAmountReq;
91  }
92  return std::nullopt;
93  }();
94 
95  bool const ownerPaysTransferFee =
97 
98  try
99  {
100  flowOut = flow(
101  flowSB,
102  saDstAmountReq,
103  uSrcAccountID,
104  uDstAccountID,
105  spsPaths,
106  defaultPaths,
107  partialPayment,
108  ownerPaysTransferFee,
109  /* offerCrossing */ false,
110  limitQuality,
111  sendMax,
112  j,
113  nullptr);
114  }
115  catch (std::exception& e)
116  {
117  JLOG(j.error()) << "Exception from flow: " << e.what();
118 
119  // return a tec so the tx is stored
120  path::RippleCalc::Output exceptResult;
121  exceptResult.setResult(tecINTERNAL);
122  return exceptResult;
123  }
124  }
125 
126  j.debug() << "RippleCalc Result> "
127  << " actualIn: " << flowOut.actualAmountIn
128  << ", actualOut: " << flowOut.actualAmountOut
129  << ", result: " << flowOut.result()
130  << ", dstAmtReq: " << saDstAmountReq
131  << ", sendMax: " << saMaxAmountReq;
132 
133  flowSB.apply(view);
134  return flowOut;
135 }
136 
137 } // namespace path
138 } // namespace ripple
beast::Journal::fatal
Stream fatal() const
Definition: Journal.h:339
ripple::Rules::enabled
bool enabled(uint256 const &feature) const
Returns true if a feature is enabled.
Definition: Rules.cpp:94
std::exception
STL class.
ripple::Logs
Manages partitions for logging.
Definition: Log.h:48
ripple::PaymentSandbox
A wrapper which makes credits unavailable to balances.
Definition: PaymentSandbox.h:112
ripple::path::RippleCalc::Input
Definition: RippleCalc.h:46
ripple::STPathSet
Definition: STPathSet.h:176
ripple::STAmount::getIssuer
AccountID const & getIssuer() const
Definition: STAmount.h:359
ripple::base_uint< 160, detail::AccountIDTag >
ripple::flow
path::RippleCalc::Output flow(PaymentSandbox &view, STAmount const &deliver, AccountID const &src, AccountID const &dst, STPathSet const &paths, bool defaultPaths, bool partialPayment, bool ownerPaysTransferFee, bool offerCrossing, std::optional< Quality > const &limitQuality, std::optional< STAmount > const &sendMax, beast::Journal j, path::detail::FlowDebugInfo *flowDebugInfo=nullptr)
Make a payment from the src account to the dst account.
ripple::path::RippleCalc::Input::defaultPathsAllowed
bool defaultPathsAllowed
Definition: RippleCalc.h:51
ripple::STAmount
Definition: STAmount.h:45
ripple::tecINTERNAL
@ tecINTERNAL
Definition: TER.h:277
ripple::path::RippleCalc::Output::actualAmountOut
STAmount actualAmountOut
Definition: RippleCalc.h:63
ripple::path::RippleCalc::Output::actualAmountIn
STAmount actualAmountIn
Definition: RippleCalc.h:60
ripple::path::RippleCalc::Output
Definition: RippleCalc.h:55
ripple::path::RippleCalc::Output::result
TER result() const
Definition: RippleCalc.h:77
ripple::path::RippleCalc::view
PaymentSandbox & view
Definition: RippleCalc.h:117
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::Logs::journal
beast::Journal journal(std::string const &name)
Definition: Log.cpp:144
ripple::PaymentSandbox::apply
void apply(RawView &to)
Apply changes to base view.
Definition: PaymentSandbox.cpp:254
ripple::featureFlow
const uint256 featureFlow
ripple::path::RippleCalc::rippleCalculate
static Output rippleCalculate(PaymentSandbox &view, STAmount const &saMaxAmountReq, STAmount const &saDstAmountReq, AccountID const &uDstAccountID, AccountID const &uSrcAccountID, STPathSet const &spsPaths, Logs &l, Input const *const pInputs=nullptr)
Definition: RippleCalc.cpp:31
ripple::path::RippleCalc::Input::partialPaymentAllowed
bool partialPaymentAllowed
Definition: RippleCalc.h:50
std::optional< Quality >
ripple::path::RippleCalc::Output::setResult
void setResult(TER const value)
Definition: RippleCalc.h:82
ripple::detail::ApplyViewBase::rules
Rules const & rules() const override
Returns the tx processing rules.
Definition: ApplyViewBase.cpp:52
ripple::featureOwnerPaysFee
const uint256 featureOwnerPaysFee
ripple::path::RippleCalc::Input::limitQuality
bool limitQuality
Definition: RippleCalc.h:52
ripple::STAmount::getCurrency
Currency const & getCurrency() const
Definition: STAmount.h:353
std::exception::what
T what(T... args)