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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
//! Home of the Mint contract's [`enum@Error`] type.

use alloc::vec::Vec;
use core::{
    convert::{TryFrom, TryInto},
    fmt::{self, Display, Formatter},
};

use crate::{
    bytesrepr::{self, FromBytes, ToBytes, U8_SERIALIZED_LENGTH},
    CLType, CLTyped,
};

/// Errors which can occur while executing the Mint contract.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[repr(u8)]
pub enum Error {
    /// Insufficient funds to complete the transfer.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(0, Error::InsufficientFunds as u8);
    /// ```
    InsufficientFunds = 0,
    /// Source purse not found.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(1, Error::SourceNotFound as u8);
    /// ```
    SourceNotFound = 1,
    /// Destination purse not found.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(2, Error::DestNotFound as u8);
    /// ```
    DestNotFound = 2,
    /// The given [`URef`](crate::URef) does not reference the account holder's purse, or such a
    /// `URef` does not have the required [`AccessRights`](crate::AccessRights).
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(3, Error::InvalidURef as u8);
    /// ```
    InvalidURef = 3,
    /// The source purse is not writeable (see [`URef::is_writeable`](crate::URef::is_writeable)),
    /// or the destination purse is not addable (see
    /// [`URef::is_addable`](crate::URef::is_addable)).
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(4, Error::InvalidAccessRights as u8);
    /// ```
    InvalidAccessRights = 4,
    /// Tried to create a new purse with a non-zero initial balance.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(5, Error::InvalidNonEmptyPurseCreation as u8);
    /// ```
    InvalidNonEmptyPurseCreation = 5,
    /// Failed to read from local or global storage.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(6, Error::Storage as u8);
    /// ```
    Storage = 6,
    /// Purse not found while trying to get balance.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(7, Error::PurseNotFound as u8);
    /// ```
    PurseNotFound = 7,
    /// Unable to obtain a key by its name.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(8, Error::MissingKey as u8);
    /// ```
    MissingKey = 8,
    /// Total supply not found.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(9, Error::TotalSupplyNotFound as u8);
    /// ```
    TotalSupplyNotFound = 9,
    /// Failed to record transfer.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(10, Error::RecordTransferFailure as u8);
    /// ```
    RecordTransferFailure = 10,
    /// Invalid attempt to reduce total supply.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(11, Error::InvalidTotalSupplyReductionAttempt as u8);
    /// ```
    InvalidTotalSupplyReductionAttempt = 11,
    /// Failed to create new uref.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(12, Error::NewURef as u8);
    /// ```
    NewURef = 12,
    /// Failed to put key.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(13, Error::PutKey as u8);
    /// ```
    PutKey = 13,
    /// Failed to write to dictionary.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(14, Error::WriteDictionary as u8);
    /// ```
    WriteDictionary = 14,
    /// Failed to create a [`crate::CLValue`].
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(15, Error::CLValue as u8);
    /// ```
    CLValue = 15,
    /// Failed to serialize data.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(16, Error::Serialize as u8);
    /// ```
    Serialize = 16,
    /// Source and target purse [`crate::URef`]s are equal.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(17, Error::EqualSourceAndTarget as u8);
    /// ```
    EqualSourceAndTarget = 17,
    /// An arithmetic overflow has occurred.
    /// ```
    /// # use casper_types::system::mint::Error;
    /// assert_eq!(18, Error::ArithmeticOverflow as u8);
    /// ```
    ArithmeticOverflow = 18,

    // NOTE: These variants below will be removed once support for WASM system contracts will be
    // dropped.
    #[doc(hidden)]
    GasLimit = 19,

    /// Raised when an entry point is called from invalid account context.
    InvalidContext = 20,

    #[cfg(test)]
    #[doc(hidden)]
    Sentinel,
}

/// Used for testing; this should be guaranteed to be the maximum valid value of [`Error`] enum.
#[cfg(test)]
const MAX_ERROR_VALUE: u8 = Error::Sentinel as u8;

impl CLTyped for Error {
    fn cl_type() -> CLType {
        CLType::U8
    }
}

// This error type is not intended to be used by third party crates.
#[doc(hidden)]
pub struct TryFromU8ForError(());

// This conversion is not intended to be used by third party crates.
#[doc(hidden)]
impl TryFrom<u8> for Error {
    type Error = TryFromU8ForError;

    fn try_from(value: u8) -> Result<Self, Self::Error> {
        match value {
            d if d == Error::InsufficientFunds as u8 => Ok(Error::InsufficientFunds),
            d if d == Error::SourceNotFound as u8 => Ok(Error::SourceNotFound),
            d if d == Error::DestNotFound as u8 => Ok(Error::DestNotFound),
            d if d == Error::InvalidURef as u8 => Ok(Error::InvalidURef),
            d if d == Error::InvalidAccessRights as u8 => Ok(Error::InvalidAccessRights),
            d if d == Error::InvalidNonEmptyPurseCreation as u8 => {
                Ok(Error::InvalidNonEmptyPurseCreation)
            }
            d if d == Error::Storage as u8 => Ok(Error::Storage),
            d if d == Error::PurseNotFound as u8 => Ok(Error::PurseNotFound),
            d if d == Error::MissingKey as u8 => Ok(Error::MissingKey),
            d if d == Error::TotalSupplyNotFound as u8 => Ok(Error::TotalSupplyNotFound),
            d if d == Error::RecordTransferFailure as u8 => Ok(Error::RecordTransferFailure),
            d if d == Error::InvalidTotalSupplyReductionAttempt as u8 => {
                Ok(Error::InvalidTotalSupplyReductionAttempt)
            }
            d if d == Error::NewURef as u8 => Ok(Error::NewURef),
            d if d == Error::PutKey as u8 => Ok(Error::PutKey),
            d if d == Error::WriteDictionary as u8 => Ok(Error::WriteDictionary),
            d if d == Error::CLValue as u8 => Ok(Error::CLValue),
            d if d == Error::Serialize as u8 => Ok(Error::Serialize),
            d if d == Error::EqualSourceAndTarget as u8 => Ok(Error::EqualSourceAndTarget),
            d if d == Error::ArithmeticOverflow as u8 => Ok(Error::ArithmeticOverflow),
            d if d == Error::GasLimit as u8 => Ok(Error::GasLimit),
            d if d == Error::InvalidContext as u8 => Ok(Error::InvalidContext),
            _ => Err(TryFromU8ForError(())),
        }
    }
}

impl ToBytes for Error {
    fn to_bytes(&self) -> Result<Vec<u8>, bytesrepr::Error> {
        let value = *self as u8;
        value.to_bytes()
    }

    fn serialized_length(&self) -> usize {
        U8_SERIALIZED_LENGTH
    }
}

impl FromBytes for Error {
    fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), bytesrepr::Error> {
        let (value, rem): (u8, _) = FromBytes::from_bytes(bytes)?;
        let error: Error = value
            .try_into()
            // In case an Error variant is unable to be determined it would return an
            // Error::Formatting as if its unable to be correctly deserialized.
            .map_err(|_| bytesrepr::Error::Formatting)?;
        Ok((error, rem))
    }
}

impl Display for Error {
    fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
        match self {
            Error::InsufficientFunds => formatter.write_str("Insufficient funds"),
            Error::SourceNotFound => formatter.write_str("Source not found"),
            Error::DestNotFound => formatter.write_str("Destination not found"),
            Error::InvalidURef => formatter.write_str("Invalid URef"),
            Error::InvalidAccessRights => formatter.write_str("Invalid AccessRights"),
            Error::InvalidNonEmptyPurseCreation => {
                formatter.write_str("Invalid non-empty purse creation")
            }
            Error::Storage => formatter.write_str("Storage error"),
            Error::PurseNotFound => formatter.write_str("Purse not found"),
            Error::MissingKey => formatter.write_str("Missing key"),
            Error::TotalSupplyNotFound => formatter.write_str("Total supply not found"),
            Error::RecordTransferFailure => formatter.write_str("Failed to record transfer"),
            Error::InvalidTotalSupplyReductionAttempt => {
                formatter.write_str("Invalid attempt to reduce total supply")
            }
            Error::NewURef => formatter.write_str("Failed to create new uref"),
            Error::PutKey => formatter.write_str("Failed to put key"),
            Error::WriteDictionary => formatter.write_str("Failed to write dictionary"),
            Error::CLValue => formatter.write_str("Failed to create a CLValue"),
            Error::Serialize => formatter.write_str("Failed to serialize data"),
            Error::EqualSourceAndTarget => formatter.write_str("Invalid target purse"),
            Error::ArithmeticOverflow => formatter.write_str("Arithmetic overflow has occurred"),
            Error::GasLimit => formatter.write_str("GasLimit"),
            Error::InvalidContext => formatter.write_str("Invalid context"),
            #[cfg(test)]
            Error::Sentinel => formatter.write_str("Sentinel error"),
        }
    }
}

#[cfg(test)]
mod tests {
    use std::convert::TryFrom;

    use super::{Error, TryFromU8ForError, MAX_ERROR_VALUE};

    #[test]
    fn error_round_trips() {
        for i in 0..=u8::max_value() {
            match Error::try_from(i) {
                Ok(error) if i < MAX_ERROR_VALUE => assert_eq!(error as u8, i),
                Ok(error) => panic!(
                    "value of variant {:?} ({}) exceeds MAX_ERROR_VALUE ({})",
                    error, i, MAX_ERROR_VALUE
                ),
                Err(TryFromU8ForError(())) if i >= MAX_ERROR_VALUE => (),
                Err(TryFromU8ForError(())) => {
                    panic!("missing conversion from u8 to error value: {}", i)
                }
            }
        }
    }
}