1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
use crate::{
database::{
columns::{TRANSACTIONS, TRANSACTIONS_BY_OWNER_BLOCK_IDX, TRANSACTION_STATUS},
Database, KvStoreError,
},
model::fuel_block::BlockHeight,
state::{Error, IterDirection},
tx_pool::TransactionStatus,
};
use fuel_storage::Storage;
use fuel_tx::{Bytes32, Transaction};
use fuel_types::Address;
use std::{borrow::Cow, ops::Deref};
pub type TransactionIndex = u32;
impl Storage<Bytes32, Transaction> for Database {
type Error = KvStoreError;
fn insert(
&mut self,
key: &Bytes32,
value: &Transaction,
) -> Result<Option<Transaction>, KvStoreError> {
Database::insert(self, key.as_ref(), TRANSACTIONS, value.clone()).map_err(Into::into)
}
fn remove(&mut self, key: &Bytes32) -> Result<Option<Transaction>, KvStoreError> {
Database::remove(self, key.as_ref(), TRANSACTIONS).map_err(Into::into)
}
fn get(&self, key: &Bytes32) -> Result<Option<Cow<Transaction>>, KvStoreError> {
Database::get(self, key.as_ref(), TRANSACTIONS).map_err(Into::into)
}
fn contains_key(&self, key: &Bytes32) -> Result<bool, KvStoreError> {
Database::exists(self, key.as_ref(), TRANSACTIONS).map_err(Into::into)
}
}
impl Database {
pub fn all_transactions(
&self,
start: Option<&Bytes32>,
direction: Option<IterDirection>,
) -> impl Iterator<Item = Result<Transaction, Error>> + '_ {
let start = start.map(|b| b.as_ref().to_vec());
self.iter_all::<Vec<u8>, Transaction>(TRANSACTIONS, None, start, direction)
.map(|res| res.map(|(_, tx)| tx))
}
pub fn owned_transactions(
&self,
owner: &Address,
start: Option<&OwnedTransactionIndexCursor>,
direction: Option<IterDirection>,
) -> impl Iterator<Item = Result<(OwnedTransactionIndexCursor, Bytes32), Error>> + '_ {
let start =
start.map(|cursor| owned_tx_index_key(owner, cursor.block_height, cursor.tx_idx));
self.iter_all::<OwnedTransactionIndexKey, Bytes32>(
TRANSACTIONS_BY_OWNER_BLOCK_IDX,
Some(owner.to_vec()),
start,
direction,
)
.map(|res| res.map(|(key, tx_id)| (key.into(), tx_id)))
}
pub fn record_tx_id_owner(
&self,
owner: &Address,
block_height: BlockHeight,
tx_idx: TransactionIndex,
tx_id: &Bytes32,
) -> Result<Option<Bytes32>, Error> {
self.insert(
owned_tx_index_key(owner, block_height, tx_idx),
TRANSACTIONS_BY_OWNER_BLOCK_IDX,
*tx_id,
)
}
pub fn update_tx_status(
&self,
tx_id: &Bytes32,
status: TransactionStatus,
) -> Result<Option<TransactionStatus>, Error> {
self.insert(tx_id.to_vec(), TRANSACTION_STATUS, status)
}
pub fn get_tx_status(&self, tx_id: &Bytes32) -> Result<Option<TransactionStatus>, Error> {
self.get(&tx_id.deref()[..], TRANSACTION_STATUS)
}
}
struct OwnedTransactionIndexKey {
block_height: BlockHeight,
tx_idx: TransactionIndex,
}
impl From<Vec<u8>> for OwnedTransactionIndexKey {
fn from(bytes: Vec<u8>) -> Self {
let mut block_height_bytes: [u8; 4] = Default::default();
block_height_bytes.copy_from_slice(&bytes[32..36]);
let mut tx_idx_bytes: [u8; 4] = Default::default();
tx_idx_bytes.copy_from_slice(&bytes[36..40]);
Self {
block_height: u32::from_be_bytes(block_height_bytes).into(),
tx_idx: u32::from_be_bytes(tx_idx_bytes),
}
}
}
#[derive(Debug, PartialOrd, PartialEq)]
pub struct OwnedTransactionIndexCursor {
pub block_height: BlockHeight,
pub tx_idx: TransactionIndex,
}
impl From<OwnedTransactionIndexKey> for OwnedTransactionIndexCursor {
fn from(key: OwnedTransactionIndexKey) -> Self {
OwnedTransactionIndexCursor {
block_height: key.block_height,
tx_idx: key.tx_idx,
}
}
}
impl From<Vec<u8>> for OwnedTransactionIndexCursor {
fn from(bytes: Vec<u8>) -> Self {
let mut block_height_bytes: [u8; 4] = Default::default();
block_height_bytes.copy_from_slice(&bytes[..4]);
let mut tx_idx_bytes: [u8; 4] = Default::default();
tx_idx_bytes.copy_from_slice(&bytes[4..8]);
Self {
block_height: u32::from_be_bytes(block_height_bytes).into(),
tx_idx: u32::from_be_bytes(tx_idx_bytes),
}
}
}
impl From<OwnedTransactionIndexCursor> for Vec<u8> {
fn from(cursor: OwnedTransactionIndexCursor) -> Self {
let mut bytes = Vec::with_capacity(8);
bytes.extend(cursor.block_height.to_bytes());
bytes.extend(cursor.tx_idx.to_be_bytes());
bytes
}
}
fn owned_tx_index_key(owner: &Address, height: BlockHeight, tx_idx: TransactionIndex) -> Vec<u8> {
let mut key = Vec::with_capacity(40);
key.extend(owner.as_ref());
key.extend(height.to_bytes());
key.extend(tx_idx.to_be_bytes());
key
}