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
use fuel_chain_config::GenesisCommitment;
use fuel_core_interfaces::{
common::{
fuel_storage::{
Mappable,
MerkleRootStorage,
StorageAsMut,
StorageAsRef,
StorageInspect,
},
fuel_tx::{
Bytes32,
ContractId,
},
prelude::{
Hasher,
MerkleRoot,
},
},
db::{
ContractsAssets,
ContractsLatestUtxo,
ContractsState,
},
executor::Error,
not_found,
};
use std::{
borrow::Cow,
error::Error as StdError,
};
pub struct ContractRef<Database> {
database: Database,
contract_id: ContractId,
}
impl<Database> ContractRef<Database> {
pub fn new(database: Database, contract_id: ContractId) -> Self {
Self {
database,
contract_id,
}
}
pub fn contract_id(&self) -> &ContractId {
&self.contract_id
}
pub fn database(&self) -> &Database {
&self.database
}
pub fn database_mut(&mut self) -> &mut Database {
&mut self.database
}
}
impl<Database> ContractRef<Database>
where
Database: StorageInspect<ContractsLatestUtxo>,
Error: From<Database::Error>,
{
pub fn utxo(
&self,
) -> Result<
Option<Cow<'_, <ContractsLatestUtxo as Mappable>::GetValue>>,
Database::Error,
> {
self.database.storage().get(&self.contract_id)
}
}
impl<Database> ContractRef<Database>
where
Database: StorageInspect<ContractsLatestUtxo>,
Error: From<Database::Error>,
{
pub fn validated_utxo(
&self,
utxo_validation: bool,
) -> Result<<ContractsLatestUtxo as Mappable>::GetValue, Error> {
let maybe_utxo_id = self.utxo()?.map(|utxo| utxo.into_owned());
let expected_utxo_id = if utxo_validation {
maybe_utxo_id.ok_or(Error::ContractUtxoMissing(self.contract_id))?
} else {
maybe_utxo_id.unwrap_or_default()
};
Result::<_, Error>::Ok(expected_utxo_id)
}
}
impl<Database> ContractRef<Database>
where
for<'b> Database: MerkleRootStorage<ContractId, ContractsAssets<'b>>,
{
pub fn balance_root(
&mut self,
) -> Result<Bytes32, <Database as StorageInspect<ContractsAssets<'_>>>::Error> {
self.database.root(&self.contract_id).map(Into::into)
}
}
impl<Database> ContractRef<Database>
where
for<'b> Database: MerkleRootStorage<ContractId, ContractsState<'b>>,
{
pub fn state_root(
&mut self,
) -> Result<Bytes32, <Database as StorageInspect<ContractsState<'_>>>::Error> {
self.database.root(&self.contract_id).map(Into::into)
}
}
pub trait ContractStorageTrait<'a>:
StorageInspect<ContractsLatestUtxo, Error = Self::InnerError>
+ MerkleRootStorage<ContractId, ContractsState<'a>, Error = Self::InnerError>
+ MerkleRootStorage<ContractId, ContractsAssets<'a>, Error = Self::InnerError>
{
type InnerError: StdError + Send + Sync + 'static;
}
impl<'a, Database> GenesisCommitment for ContractRef<&'a mut Database>
where
for<'b> Database: ContractStorageTrait<'a>,
{
fn root(&mut self) -> anyhow::Result<MerkleRoot> {
let contract_id = *self.contract_id();
let utxo = self
.database()
.storage::<ContractsLatestUtxo>()
.get(&contract_id)?
.ok_or(not_found!(ContractsLatestUtxo))?
.into_owned();
let state_root = self
.database_mut()
.storage::<ContractsState>()
.root(&contract_id)?;
let balance_root = self
.database_mut()
.storage::<ContractsAssets>()
.root(&contract_id)?;
let contract_hash = *Hasher::default()
.chain(contract_id.as_ref())
.chain(utxo.tx_id().as_ref())
.chain([utxo.output_index()])
.chain(state_root.as_slice())
.chain(balance_root.as_slice())
.finalize();
Ok(contract_hash)
}
}