forked from XRPLF/rippled
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support Concise Transaction Identifier (CTID) (XLS-37) (XRPLF#4418
) The XLS-37 CTID (Concise Transaction ID) is a network-aware tx identifier which provides a way to efficiently locate a specific transaction without relying on transaction hashes. A CTID encodes the sequence number of the ledger that includes the tx, the transaction's index in that ledger, and the network ID. With the CTID, users can identify transactions and confirm their results. This applies even for transactions on sidechains, which may be difficult to find with only a transaction hash. Additionally, CTIDs require less storage space than transaction hashes, which can be beneficial for databases storing millions of transactions. The XLS-37 specification can be found at: XRPLF/XRPL-Standards#111 Add support for running a node on a different network. There is a new error code, `rpcWRONG_NETWORK`, returned when the requested CTID's network ID does not match the node's network ID. The error message looks like: Wrong network. You should submit this request to a node running on NetworkID: <net_id> * Add RPC support for the CTID format * tx - you can specify "ctid", which is the CTID (16 hex digits, in a string, always starting with "C") * When retrieving a tx, the "ctid" may be returned * Add support for encoding, decoding, and validating CTIDs * Add tests --------- Co-authored-by: Rome Reginelli <[email protected]> Co-authored-by: Denis Angell <[email protected]> --------- Co-authored-by: Rome Reginelli <[email protected]> Co-authored-by: Elliot Lee <[email protected]> Co-authored-by: Denis Angell <[email protected]>
- Loading branch information
1 parent
aded4a7
commit f0e82df
Showing
15 changed files
with
843 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
//------------------------------------------------------------------------------ | ||
/* | ||
This file is part of rippled: https://github.com/ripple/rippled | ||
Copyright (c) 2019 Ripple Labs Inc. | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
//============================================================================== | ||
|
||
#ifndef RIPPLE_RPC_CTID_H_INCLUDED | ||
#define RIPPLE_RPC_CTID_H_INCLUDED | ||
|
||
#include <boost/algorithm/string/predicate.hpp> | ||
#include <boost/regex.hpp> | ||
#include <optional> | ||
#include <regex> | ||
#include <sstream> | ||
|
||
namespace ripple { | ||
|
||
namespace RPC { | ||
|
||
inline std::optional<std::string> | ||
encodeCTID( | ||
uint32_t ledger_seq, | ||
uint16_t txn_index, | ||
uint16_t network_id) noexcept | ||
{ | ||
if (ledger_seq > 0x0FFF'FFFF) | ||
return {}; | ||
|
||
uint64_t ctidValue = | ||
((0xC000'0000ULL + static_cast<uint64_t>(ledger_seq)) << 32) + | ||
(static_cast<uint64_t>(txn_index) << 16) + network_id; | ||
|
||
std::stringstream buffer; | ||
buffer << std::hex << std::uppercase << std::setfill('0') << std::setw(16) | ||
<< ctidValue; | ||
return {buffer.str()}; | ||
} | ||
|
||
template <typename T> | ||
inline std::optional<std::tuple<uint32_t, uint16_t, uint16_t>> | ||
decodeCTID(const T ctid) noexcept | ||
{ | ||
uint64_t ctidValue{0}; | ||
if constexpr ( | ||
std::is_same_v<T, std::string> || std::is_same_v<T, char*> || | ||
std::is_same_v<T, const char*> || std::is_same_v<T, std::string_view>) | ||
{ | ||
std::string const ctidString(ctid); | ||
|
||
if (ctidString.length() != 16) | ||
return {}; | ||
|
||
if (!boost::regex_match(ctidString, boost::regex("^[0-9A-F]+$"))) | ||
return {}; | ||
|
||
ctidValue = std::stoull(ctidString, nullptr, 16); | ||
} | ||
else if constexpr (std::is_integral_v<T>) | ||
ctidValue = ctid; | ||
else | ||
return {}; | ||
|
||
if ((ctidValue & 0xF000'0000'0000'0000ULL) != 0xC000'0000'0000'0000ULL) | ||
return {}; | ||
|
||
uint32_t ledger_seq = (ctidValue >> 32) & 0xFFFF'FFFUL; | ||
uint16_t txn_index = (ctidValue >> 16) & 0xFFFFU; | ||
uint16_t network_id = ctidValue & 0xFFFFU; | ||
return {{ledger_seq, txn_index, network_id}}; | ||
} | ||
|
||
} // namespace RPC | ||
} // namespace ripple | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.