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
280
281
282
283
284
285
286
287
288
use core::iter::FusedIterator;
use frame_support::ensure;
use sp_runtime::DispatchError;

use crate::{
    common::{signed_action::*, SignatureWithNonce},
    util::{OptionExt, Signature, Types},
};

use super::{ActionWithNonceWrapper, NonceError, WithNonce};

/// Describes an action which can be performed on some `Target`.
pub trait Action: Sized {
    /// Action target.
    type Target;

    /// Returns underlying action target.
    fn target(&self) -> Self::Target;

    /// Returns action unit length.
    fn len(&self) -> u32;

    /// Returns `true` if the action unit count is equal to zero.
    fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Calls supplied function accepting an action along with a mutable reference
    /// to the value associated with the target.
    fn modify<T, S, F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(Self, &mut S) -> Result<R, E>,
        <Self::Target as Associated<T>>::Value: TryInto<S>,
        S: Into<<Self::Target as Associated<T>>::Value>,
        E: From<ActionExecutionError> + From<NonceError>,
        Self::Target: StorageRef<T>,
    {
        ensure!(!self.is_empty(), ActionExecutionError::EmptyPayload);

        self.target().try_mutate_associated(|data_opt| {
            ensure!(data_opt.is_some(), ActionExecutionError::NoEntity);

            data_opt.update_with(|opt| {
                let Some(data) = opt else {
                    Err(ActionExecutionError::ConversionError)?
                };

                f(self, data)
            })
        })
    }

    /// Calls supplied function accepting an action along with a value associated with the target.
    fn view<T, S, F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(Self, S) -> Result<R, E>,
        <Self::Target as Associated<T>>::Value: TryInto<S>,
        S: Into<<Self::Target as Associated<T>>::Value>,
        E: From<ActionExecutionError> + From<NonceError>,
        Self::Target: StorageRef<T>,
    {
        ensure!(!self.is_empty(), ActionExecutionError::EmptyPayload);

        self.target().view_associated(|data_opt| {
            let data = data_opt
                .ok_or(ActionExecutionError::NoEntity)?
                .try_into()
                .map_err(|_| ActionExecutionError::ConversionError)?;

            f(self, data)
        })
    }

    /// Calls supplied function accepting an action along with a mutable reference
    /// to the option possibly containing a value associated with the target.
    /// Modifying supplied `Option<_>` to `None` will lead to the value removal.
    fn modify_removable<T, S, F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(Self, &mut Option<S>) -> Result<R, E>,
        <Self::Target as Associated<T>>::Value: TryInto<S>,
        S: Into<<Self::Target as Associated<T>>::Value>,
        E: From<ActionExecutionError> + From<NonceError>,
        Self::Target: StorageRef<T>,
    {
        ensure!(!self.is_empty(), ActionExecutionError::EmptyPayload);

        self.target().try_mutate_associated(|data_opt| {
            let exists = data_opt.is_some();

            data_opt.update_with(|opt| {
                ensure!(
                    !exists || opt.is_some(),
                    ActionExecutionError::ConversionError
                );

                f(self, opt)
            })
        })
    }

    /// Combines underlying action with the provided signatures.
    fn multi_signed<T, S, SI>(self, signatures: SI) -> MultiSignedAction<T, Self, S, SI::IntoIter>
    where
        T: Types,
        S: Signature,
        SI: IntoIterator,
        SI::IntoIter: FusedIterator<Item = SignatureWithNonce<T::BlockNumber, S>>,
    {
        MultiSignedAction::new(self, signatures)
    }
}

/// Describes an action with nonce which can be performed on some `Target`
pub trait ActionWithNonce<T: Types>: Action {
    /// Returns action's nonce.
    fn nonce(&self) -> T::BlockNumber;

    /// Executes an action providing a mutable reference to the option containing a value associated with the target.
    /// In case of a successful result, the nonce will be increased.
    fn execute_and_increase_nonce<F, S, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(Self, &mut Option<S>) -> Result<R, E>,
        E: From<ActionExecutionError> + From<NonceError>,
        Self::Target: StorageRef<T>,
        <Self::Target as Associated<T>>::Value: TryInto<WithNonce<T, S>>,
        WithNonce<T, S>: Into<<Self::Target as Associated<T>>::Value>,
    {
        ensure!(!self.is_empty(), ActionExecutionError::EmptyPayload);

        self.target().try_mutate_associated(|details_opt| {
            ensure!(details_opt.is_some(), ActionExecutionError::NoEntity);

            details_opt
                .update_with(|opt| {
                    if opt.is_none() {
                        return Some(Err(ActionExecutionError::ConversionError.into()));
                    }

                    WithNonce::try_update_opt_with(opt, self.nonce(), |data_opt| f(self, data_opt))
                })
                .ok_or(ActionExecutionError::ConversionError)?
        })
    }

    /// Executes an action providing a mutable reference to the value associated with the target.
    /// Even in case of a successful result, the nonce won't be increased.
    fn execute_without_increasing_nonce<F, R, S, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(Self, &mut Option<S>) -> Result<R, E>,
        E: From<ActionExecutionError>,
        WithNonce<T, S>: TryFrom<<Self::Target as Associated<T>>::Value>
            + Into<<Self::Target as Associated<T>>::Value>,
        Self::Target: StorageRef<T>,
        <Self::Target as Associated<T>>::Value: TryInto<WithNonce<T, S>>,
        WithNonce<T, S>: Into<<Self::Target as Associated<T>>::Value>,
    {
        ensure!(!self.is_empty(), ActionExecutionError::EmptyPayload);

        self.target().try_mutate_associated(|details_opt| {
            ensure!(details_opt.is_some(), ActionExecutionError::NoEntity);

            details_opt
                .update_with(|opt| {
                    if opt.is_none() {
                        return Some(Err(ActionExecutionError::ConversionError.into()));
                    }

                    WithNonce::try_update_opt_without_increasing_nonce_with(opt, |data_opt| {
                        f(self, data_opt)
                    })
                })
                .ok_or(ActionExecutionError::ConversionError)?
        })
    }

    /// Combines underlying action with the provided signature.
    fn signed<S>(self, signature: S) -> SignedActionWithNonce<T, Self, S> {
        SignedActionWithNonce::new(self, signature)
    }

    /// Wraps underlying action into an action targeting signer then combines result with the provided signature.
    #[allow(clippy::type_complexity)]
    fn signed_with_combined_target<S, F, Ta>(
        self,
        signature: S,
        build_target: F,
    ) -> Result<SignedActionWithNonce<T, ActionWithNonceWrapper<T, Self, Ta>, S>, InvalidSigner>
    where
        S: Signature,
        F: FnOnce(Self::Target, S::Signer) -> Ta,
        Ta: Clone,
    {
        let signer = signature.signer().ok_or(InvalidSigner)?;
        let target = build_target(self.target(), signer);
        let wrapped = ActionWithNonceWrapper::new(self.nonce(), target, self);

        Ok(wrapped.signed(signature))
    }

    /// Wraps underlying action into an action targeting signer then combines result with the provided signature.
    #[allow(clippy::type_complexity)]
    fn signed_with_signer_target<S>(
        self,
        signature: S,
    ) -> Result<
        SignedActionWithNonce<T, ActionWithNonceWrapper<T, Self, S::Signer>, S>,
        InvalidSigner,
    >
    where
        S: Signature,
    {
        self.signed_with_combined_target(signature, |_, signer| signer)
    }
}

pub struct InvalidSigner;

impl From<InvalidSigner> for DispatchError {
    fn from(InvalidSigner: InvalidSigner) -> Self {
        DispatchError::Other("Invalid signer")
    }
}

pub enum ActionExecutionError {
    NoEntity,
    EmptyPayload,
    InvalidSigner,
    NotEnoughSignatures,
    TooManySignatures,
    ConversionError,
}

#[cfg(test)]
impl From<ActionExecutionError> for DispatchError {
    fn from(error: ActionExecutionError) -> Self {
        use ActionExecutionError::*;

        match error {
            NoEntity => DispatchError::Other("NoEntity"),
            EmptyPayload => DispatchError::Other("EmptyPayload"),
            InvalidSigner => DispatchError::Other("InvalidSigner"),
            NotEnoughSignatures => DispatchError::Other("NotEnoughSignatures"),
            TooManySignatures => DispatchError::Other("TooManySignatures"),
            ConversionError => DispatchError::Other("ConversionError"),
        }
    }
}

/// Marker trait claiming that `Self` has an associated `Value`.
pub trait Associated<T>: Sized {
    /// Some type associated with `Self`.
    type Value;
}

/// Allows to view and mutate a value associated with `Self`.
pub trait StorageRef<T>: Associated<T> {
    /// Attempts to mutate a value associated with `Self`.
    /// If the value under the option is taken, the associated value will be removed.
    /// All updates will be applied only in case of a successful result.
    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(&mut Option<Self::Value>) -> Result<R, E>;

    /// Calls provided function with an associated value as an argument.
    fn view_associated<F, R>(self, f: F) -> R
    where
        F: FnOnce(Option<Self::Value>) -> R;
}

impl<T> Associated<T> for () {
    type Value = ();
}

impl<T> StorageRef<T> for () {
    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(&mut Option<()>) -> Result<R, E>,
    {
        f(&mut Some(()))
    }

    fn view_associated<F, R>(self, f: F) -> R
    where
        F: FnOnce(Option<()>) -> R,
    {
        f(Some(()))
    }
}