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
use std::borrow::Cow;

use crate::error::InterpreterError;
use crate::storage::InterpreterStorage;

use fuel_asm::Word;
use fuel_storage::{MerkleRoot, MerkleStorage, Storage};
use fuel_tx::Contract;
use fuel_types::{Address, AssetId, Bytes32, ContractId, Salt};

/// No-op storage used for predicate operations.
///
/// The storage implementations are expected to provide KV-like operations for contract operations.
/// However, predicates, as defined in the protocol, cannot execute contract opcodes. This means
/// its storage backend for predicate execution shouldn't provide any functionality.
#[derive(Debug, Default, Clone, Copy)]
pub struct PredicateStorage;

impl Storage<ContractId, Contract> for PredicateStorage {
    type Error = InterpreterError;

    fn insert(&mut self, _key: &ContractId, _value: &Contract) -> Result<Option<Contract>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn remove(&mut self, _key: &ContractId) -> Result<Option<Contract>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn get(&self, _key: &ContractId) -> Result<Option<Cow<'_, Contract>>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn contains_key(&self, _key: &ContractId) -> Result<bool, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }
}

impl Storage<ContractId, (Salt, Bytes32)> for PredicateStorage {
    type Error = InterpreterError;

    fn insert(
        &mut self,
        _key: &ContractId,
        _value: &(Salt, Bytes32),
    ) -> Result<Option<(Salt, Bytes32)>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn remove(&mut self, _key: &ContractId) -> Result<Option<(Salt, Bytes32)>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn get(&self, _key: &ContractId) -> Result<Option<Cow<'_, (Salt, Bytes32)>>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn contains_key(&self, _key: &ContractId) -> Result<bool, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }
}

impl MerkleStorage<ContractId, AssetId, Word> for PredicateStorage {
    type Error = InterpreterError;

    fn insert(
        &mut self,
        _parent: &ContractId,
        _key: &AssetId,
        _value: &Word,
    ) -> Result<Option<Word>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn get(&self, _parent: &ContractId, _key: &AssetId) -> Result<Option<Cow<'_, Word>>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn remove(&mut self, _parent: &ContractId, _key: &AssetId) -> Result<Option<Word>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn contains_key(&self, _parent: &ContractId, _key: &AssetId) -> Result<bool, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn root(&mut self, _parent: &ContractId) -> Result<MerkleRoot, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }
}

impl MerkleStorage<ContractId, Bytes32, Bytes32> for PredicateStorage {
    type Error = InterpreterError;

    fn insert(
        &mut self,
        _parent: &ContractId,
        _key: &Bytes32,
        _value: &Bytes32,
    ) -> Result<Option<Bytes32>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn get(&self, _parent: &ContractId, _key: &Bytes32) -> Result<Option<Cow<'_, Bytes32>>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn remove(&mut self, _parent: &ContractId, _key: &Bytes32) -> Result<Option<Bytes32>, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn contains_key(&self, _parent: &ContractId, _key: &Bytes32) -> Result<bool, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn root(&mut self, _parent: &ContractId) -> Result<MerkleRoot, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }
}

impl InterpreterStorage for PredicateStorage {
    type DataError = InterpreterError;

    fn block_height(&self) -> Result<u32, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn timestamp(&self, _height: u32) -> Result<Word, Self::DataError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn block_hash(&self, _block_height: u32) -> Result<Bytes32, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }

    fn coinbase(&self) -> Result<Address, InterpreterError> {
        Err(InterpreterError::PredicateFailure)
    }
}