mirror of
https://github.com/logos-blockchain/lez-indexer-module.git
synced 2026-07-30 07:03:31 +00:00
217 lines
8.1 KiB
C++
217 lines
8.1 KiB
C++
#include "lez_ffi_marshalling.h"
|
|
|
|
#include <algorithm>
|
|
#include <cctype>
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
#include <string>
|
|
|
|
namespace marshalling {
|
|
|
|
namespace {
|
|
// Single hex nibble -> 0..15, or -1 if not a hex digit.
|
|
int hexNibble(char c) {
|
|
if (c >= '0' && c <= '9')
|
|
return c - '0';
|
|
if (c >= 'a' && c <= 'f')
|
|
return c - 'a' + 10;
|
|
if (c >= 'A' && c <= 'F')
|
|
return c - 'A' + 10;
|
|
return -1;
|
|
}
|
|
} // namespace
|
|
|
|
// Lower-case hex of `length` raw bytes (used for 32-byte hashes/ids/keys and
|
|
// 64-byte signatures).
|
|
std::string bytesToHex(const uint8_t* data, const size_t length) {
|
|
static const char* digits = "0123456789abcdef";
|
|
std::string out;
|
|
out.resize(length * 2);
|
|
for (size_t i = 0; i < length; ++i) {
|
|
out[2 * i] = digits[(data[i] >> 4) & 0xF];
|
|
out[2 * i + 1] = digits[data[i] & 0xF];
|
|
}
|
|
return out;
|
|
}
|
|
|
|
// FfiU128 is a 16-byte little-endian integer (balances, nonces). C++ has no
|
|
// native u128, so build the decimal string via __uint128_t (GCC/Clang, 64-bit).
|
|
std::string u128LeToDecimal(const uint8_t data[16]) {
|
|
#if defined(__SIZEOF_INT128__) && __SIZEOF_INT128__ >= 16
|
|
__uint128_t v = 0;
|
|
for (int i = 0; i < 16; ++i) {
|
|
v |= static_cast<__uint128_t>(data[i]) << (i * 8);
|
|
}
|
|
if (v == 0) {
|
|
return "0";
|
|
}
|
|
char buf[40];
|
|
int n = 0;
|
|
while (v) {
|
|
buf[n++] = static_cast<char>('0' + static_cast<int>(v % 10));
|
|
v /= 10;
|
|
}
|
|
std::reverse(buf, buf + n);
|
|
return std::string(buf, n);
|
|
#else
|
|
#error "u128LeToDecimal requires __uint128_t; build with GCC or Clang on 64-bit"
|
|
#endif
|
|
}
|
|
|
|
// 64-bit values are emitted as decimal STRINGS, not JSON numbers: JSON
|
|
// numbers are doubles in many parsers and silently lose precision above 2^53.
|
|
std::string u64ToString(uint64_t v) {
|
|
return std::to_string(v);
|
|
}
|
|
|
|
// Parse a hex string (optionally 0x-prefixed) into a fixed 32-byte FfiBytes32.
|
|
// Returns false unless it decodes to exactly 32 bytes.
|
|
bool hexToBytes32(const std::string& hex, FfiBytes32* out) {
|
|
size_t begin = 0;
|
|
size_t end = hex.size();
|
|
while (begin < end && std::isspace(static_cast<unsigned char>(hex[begin])))
|
|
++begin;
|
|
while (end > begin && std::isspace(static_cast<unsigned char>(hex[end - 1])))
|
|
--end;
|
|
|
|
if (end - begin >= 2 && hex[begin] == '0' && (hex[begin + 1] == 'x' || hex[begin + 1] == 'X')) {
|
|
begin += 2;
|
|
}
|
|
|
|
if (end - begin != 64) {
|
|
return false;
|
|
}
|
|
|
|
for (size_t i = 0; i < 32; ++i) {
|
|
const int hi = hexNibble(hex[begin + 2 * i]);
|
|
const int lo = hexNibble(hex[begin + 2 * i + 1]);
|
|
if (hi < 0 || lo < 0) {
|
|
return false;
|
|
}
|
|
out->data[i] = static_cast<uint8_t>((hi << 4) | lo);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
nlohmann::json ffiAccountToJson(const FfiAccount& account) {
|
|
nlohmann::json obj;
|
|
obj["program_owner"] = bytesToHex(reinterpret_cast<const uint8_t*>(account.program_owner.data), 32);
|
|
obj["balance"] = u128LeToDecimal(account.balance.data);
|
|
obj["nonce"] = u128LeToDecimal(account.nonce.data);
|
|
obj["data_size"] = static_cast<int>(account.data_len);
|
|
return obj;
|
|
}
|
|
|
|
nlohmann::json ffiTransactionToJson(const FfiTransaction& tx) {
|
|
nlohmann::json obj;
|
|
|
|
switch (tx.kind) {
|
|
case Public: {
|
|
const FfiPublicTransactionBody* body = tx.body.public_body;
|
|
if (!body) {
|
|
break;
|
|
}
|
|
obj["type"] = "Public";
|
|
obj["hash"] = bytesToHex(body->hash.data, 32);
|
|
obj["program_id"] = bytesToHex(reinterpret_cast<const uint8_t*>(body->message.program_id.data), 32);
|
|
|
|
nlohmann::json accounts = nlohmann::json::array();
|
|
const FfiAccountIdList& ids = body->message.account_ids;
|
|
const FfiNonceList& nonces = body->message.nonces;
|
|
for (uintptr_t i = 0; i < ids.len; ++i) {
|
|
nlohmann::json ref;
|
|
ref["account_id"] = bytesToHex(ids.entries[i].data, 32);
|
|
ref["nonce"] = i < nonces.len ? u128LeToDecimal(nonces.entries[i].data) : std::string("0");
|
|
accounts.push_back(ref);
|
|
}
|
|
obj["accounts"] = accounts;
|
|
|
|
nlohmann::json instructionData = nlohmann::json::array();
|
|
const FfiInstructionDataList& instr = body->message.instruction_data;
|
|
for (uintptr_t i = 0; i < instr.len; ++i) {
|
|
instructionData.push_back(static_cast<std::int64_t>(instr.entries[i]));
|
|
}
|
|
obj["instruction_data"] = instructionData;
|
|
obj["signature_count"] = static_cast<int>(body->witness_set.len);
|
|
break;
|
|
}
|
|
case Private: {
|
|
const FfiPrivateTransactionBody* body = tx.body.private_body;
|
|
if (!body) {
|
|
break;
|
|
}
|
|
obj["type"] = "PrivacyPreserving";
|
|
obj["hash"] = bytesToHex(body->hash.data, 32);
|
|
|
|
nlohmann::json accounts = nlohmann::json::array();
|
|
const FfiAccountIdList& ids = body->message.public_account_ids;
|
|
const FfiNonceList& nonces = body->message.nonces;
|
|
for (uintptr_t i = 0; i < ids.len; ++i) {
|
|
nlohmann::json ref;
|
|
ref["account_id"] = bytesToHex(ids.entries[i].data, 32);
|
|
ref["nonce"] = i < nonces.len ? u128LeToDecimal(nonces.entries[i].data) : std::string("0");
|
|
accounts.push_back(ref);
|
|
}
|
|
obj["accounts"] = accounts;
|
|
|
|
obj["new_commitments_count"] = static_cast<int>(body->message.new_commitments.len);
|
|
obj["nullifiers_count"] = static_cast<int>(body->message.new_nullifiers.len);
|
|
obj["encrypted_states_count"] = static_cast<int>(body->message.encrypted_private_post_states.len);
|
|
obj["validity_window_start"] = u64ToString(body->message.block_validity_window[0]);
|
|
obj["validity_window_end"] = u64ToString(body->message.block_validity_window[1]);
|
|
obj["signature_count"] = static_cast<int>(body->witness_set.len);
|
|
obj["proof_size"] = static_cast<int>(body->proof.len);
|
|
break;
|
|
}
|
|
case ProgramDeploy: {
|
|
const FfiProgramDeploymentTransactionBody* body = tx.body.program_deployment_body;
|
|
if (!body) {
|
|
break;
|
|
}
|
|
obj["type"] = "ProgramDeployment";
|
|
obj["hash"] = bytesToHex(body->hash.data, 32);
|
|
obj["bytecode_size"] = static_cast<int>(body->message.len);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
|
|
namespace {
|
|
std::string bedrockStatusToString(FfiBedrockStatus status) {
|
|
switch (status) {
|
|
case Safe:
|
|
return "Safe";
|
|
case Finalized:
|
|
return "Finalized";
|
|
case Pending:
|
|
default:
|
|
return "Pending";
|
|
}
|
|
}
|
|
} // namespace
|
|
|
|
nlohmann::json ffiBlockToJson(const FfiBlock& block) {
|
|
nlohmann::json obj;
|
|
obj["block_id"] = u64ToString(block.header.block_id);
|
|
obj["hash"] = bytesToHex(block.header.hash.data, 32);
|
|
obj["prev_block_hash"] = bytesToHex(block.header.prev_block_hash.data, 32);
|
|
obj["timestamp"] = u64ToString(block.header.timestamp);
|
|
obj["signature"] = bytesToHex(block.header.signature.data, 64);
|
|
obj["bedrock_status"] = bedrockStatusToString(block.bedrock_status);
|
|
|
|
nlohmann::json transactions = nlohmann::json::array();
|
|
for (uintptr_t i = 0; i < block.body.len; ++i) {
|
|
transactions.push_back(ffiTransactionToJson(block.body.entries[i]));
|
|
}
|
|
obj["transactions"] = transactions;
|
|
return obj;
|
|
}
|
|
|
|
std::string jsonToCompactString(const nlohmann::json& j) {
|
|
return j.dump();
|
|
}
|
|
|
|
} // namespace marshalling
|