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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#[cfg(feature = "rocksdb")]
use crate::database::columns::COLUMN_NUM;
use crate::database::transactional::DatabaseTransaction;
use crate::model::fuel_block::FuelBlock;
#[cfg(feature = "rocksdb")]
use crate::state::rocks_db::RocksDb;
use crate::state::{
in_memory::memory_store::MemoryStore, ColumnId, DataSource, Error, IterDirection,
};
use fuel_storage::Storage;
use fuel_vm::prelude::{Address, Bytes32, InterpreterError, InterpreterStorage};
use serde::{de::DeserializeOwned, Serialize};
use std::fmt::Debug;
use std::io::ErrorKind;
#[cfg(feature = "rocksdb")]
use std::path::Path;
use std::sync::Arc;
use thiserror::Error;
pub mod balances;
pub mod block;
pub mod code_root;
pub mod coin;
pub mod contracts;
pub mod metadata;
mod receipts;
pub mod state;
pub mod transaction;
pub mod transactional;
pub const VERSION: u32 = 0;
pub mod columns {
pub const METADATA: u32 = 0;
pub const CONTRACTS: u32 = 1;
pub const CONTRACTS_CODE_ROOT: u32 = 2;
pub const CONTRACTS_STATE: u32 = 3;
pub const BALANCES: u32 = 4;
pub const COIN: u32 = 5;
pub const OWNED_COINS: u32 = 6;
pub const TRANSACTIONS: u32 = 7;
pub const TRANSACTION_STATUS: u32 = 8;
pub const TRANSACTIONS_BY_OWNER_BLOCK_IDX: u32 = 9;
pub const RECEIPTS: u32 = 10;
pub const BLOCKS: u32 = 11;
pub const BLOCK_IDS: u32 = 12;
#[cfg(feature = "rocksdb")]
pub const COLUMN_NUM: u32 = 13;
}
#[derive(Clone, Debug)]
pub struct Database {
data: DataSource,
}
impl Database {
#[cfg(feature = "rocksdb")]
pub fn open(path: &Path) -> Result<Self, Error> {
let db = RocksDb::open(path, COLUMN_NUM)?;
Ok(Database { data: Arc::new(db) })
}
fn insert<K: Into<Vec<u8>>, V: Serialize + DeserializeOwned>(
&self,
key: K,
column: ColumnId,
value: V,
) -> Result<Option<V>, Error> {
let result = self.data.put(
key.into(),
column,
bincode::serialize(&value).map_err(|_| Error::Codec)?,
)?;
if let Some(previous) = result {
Ok(Some(
bincode::deserialize(&previous).map_err(|_| Error::Codec)?,
))
} else {
Ok(None)
}
}
fn remove<V: DeserializeOwned>(
&self,
key: &[u8],
column: ColumnId,
) -> Result<Option<V>, Error> {
self.data
.delete(key, column)?
.map(|val| bincode::deserialize(&val).map_err(|_| Error::Codec))
.transpose()
}
fn get<V: DeserializeOwned>(&self, key: &[u8], column: ColumnId) -> Result<Option<V>, Error> {
self.data
.get(key, column)?
.map(|val| bincode::deserialize(&val).map_err(|_| Error::Codec))
.transpose()
}
fn exists(&self, key: &[u8], column: ColumnId) -> Result<bool, Error> {
self.data.exists(key, column)
}
fn iter_all<K, V>(
&self,
column: ColumnId,
prefix: Option<Vec<u8>>,
start: Option<Vec<u8>>,
direction: Option<IterDirection>,
) -> impl Iterator<Item = Result<(K, V), Error>> + '_
where
K: From<Vec<u8>>,
V: DeserializeOwned,
{
self.data
.iter_all(column, prefix, start, direction.unwrap_or_default())
.map(|(key, value)| {
let key = K::from(key);
let value: V = bincode::deserialize(&value).map_err(|_| Error::Codec)?;
Ok((key, value))
})
}
pub fn transaction(&self) -> DatabaseTransaction {
self.into()
}
}
impl AsRef<Database> for Database {
fn as_ref(&self) -> &Database {
self
}
}
impl Default for Database {
fn default() -> Self {
Self {
data: Arc::new(MemoryStore::default()),
}
}
}
impl InterpreterStorage for Database {
type DataError = Error;
fn block_height(&self) -> Result<u32, Error> {
let height = self.get_block_height()?.unwrap_or_default();
Ok(height.into())
}
fn block_hash(&self, block_height: u32) -> Result<Bytes32, Error> {
let hash = self.get_block_id(block_height.into())?.unwrap_or_default();
Ok(hash)
}
fn coinbase(&self) -> Result<Address, Error> {
let height = self.get_block_height()?.unwrap_or_default();
let id = self.block_hash(height.into())?;
let block = Storage::<Bytes32, FuelBlock>::get(self, &id)?.unwrap_or_default();
Ok(block.producer)
}
}
#[derive(Debug, Error)]
pub enum KvStoreError {
#[error("generic error occurred")]
Error(Box<dyn std::error::Error + Send + Sync>),
#[error("resource not found")]
NotFound,
}
impl From<bincode::Error> for KvStoreError {
fn from(e: bincode::Error) -> Self {
KvStoreError::Error(Box::new(e))
}
}
impl From<crate::state::Error> for KvStoreError {
fn from(e: Error) -> Self {
KvStoreError::Error(Box::new(e))
}
}
impl From<KvStoreError> for crate::state::Error {
fn from(e: KvStoreError) -> Self {
crate::state::Error::DatabaseError(Box::new(e))
}
}
impl From<KvStoreError> for std::io::Error {
fn from(e: KvStoreError) -> Self {
std::io::Error::new(ErrorKind::Other, e)
}
}
impl From<crate::state::Error> for InterpreterError {
fn from(e: Error) -> Self {
InterpreterError::Io(std::io::Error::new(std::io::ErrorKind::Other, e))
}
}
impl From<KvStoreError> for InterpreterError {
fn from(e: KvStoreError) -> Self {
InterpreterError::Io(std::io::Error::new(std::io::ErrorKind::Other, e))
}
}