sui_json_rpc/
move_utils.rs

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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use crate::authority_state::StateRead;
use crate::error::{Error, SuiRpcInputError};
use crate::{with_tracing, SuiRpcModule};
use async_trait::async_trait;
use jsonrpsee::core::RpcResult;
use jsonrpsee::RpcModule;
#[cfg(test)]
use mockall::automock;
use move_binary_format::{
    binary_config::BinaryConfig,
    normalized::{Module as NormalizedModule, Type},
};
use move_core_types::identifier::Identifier;
use std::collections::BTreeMap;
use std::sync::Arc;
use sui_core::authority::AuthorityState;
use sui_json_rpc_api::{MoveUtilsOpenRpc, MoveUtilsServer};
use sui_json_rpc_types::{
    MoveFunctionArgType, ObjectValueKind, SuiMoveNormalizedFunction, SuiMoveNormalizedModule,
    SuiMoveNormalizedStruct,
};
use sui_open_rpc::Module;
use sui_types::base_types::ObjectID;
use sui_types::move_package::normalize_modules;
use sui_types::object::{Data, ObjectRead};
use tap::TapFallible;
use tracing::{error, instrument, warn};

#[cfg_attr(test, automock)]
#[async_trait]
pub trait MoveUtilsInternalTrait {
    fn get_state(&self) -> &dyn StateRead;

    async fn get_move_module(
        &self,
        package: ObjectID,
        module_name: String,
    ) -> Result<NormalizedModule, Error>;

    async fn get_move_modules_by_package(
        &self,
        package: ObjectID,
    ) -> Result<BTreeMap<String, NormalizedModule>, Error>;

    fn get_object_read(&self, package: ObjectID) -> Result<ObjectRead, Error>;
}

pub struct MoveUtilsInternal {
    state: Arc<dyn StateRead>,
}

impl MoveUtilsInternal {
    pub fn new(state: Arc<AuthorityState>) -> Self {
        Self { state }
    }
}

#[async_trait]
impl MoveUtilsInternalTrait for MoveUtilsInternal {
    fn get_state(&self) -> &dyn StateRead {
        Arc::as_ref(&self.state)
    }

    async fn get_move_module(
        &self,
        package: ObjectID,
        module_name: String,
    ) -> Result<NormalizedModule, Error> {
        let normalized = self.get_move_modules_by_package(package).await?;
        Ok(match normalized.get(&module_name) {
            Some(module) => Ok(module.clone()),
            None => Err(SuiRpcInputError::GenericNotFound(format!(
                "No module found with module name {}",
                module_name
            ))),
        }?)
    }

    async fn get_move_modules_by_package(
        &self,
        package: ObjectID,
    ) -> Result<BTreeMap<String, NormalizedModule>, Error> {
        let object_read = self.get_state().get_object_read(&package).tap_err(|_| {
            warn!("Failed to call get_move_modules_by_package for package: {package:?}");
        })?;

        match object_read {
            ObjectRead::Exists(_obj_ref, object, _layout) => {
                match object.into_inner().data {
                    Data::Package(p) => {
                        // we are on the read path - it's OK to use VERSION_MAX of the supported Move
                        // binary format
                        let binary_config = BinaryConfig::with_extraneous_bytes_check(false);
                        normalize_modules(
                            p.serialized_module_map().values(),
                            &binary_config,
                        )
                        .map_err(|e| {
                            error!("Failed to call get_move_modules_by_package for package: {package:?}");
                            Error::from(e)
                        })
                    }
                    _ => Err(SuiRpcInputError::GenericInvalid(format!(
                        "Object is not a package with ID {}",
                        package
                    )))?,
                }
            }
            _ => Err(SuiRpcInputError::GenericNotFound(format!(
                "Package object does not exist with ID {}",
                package
            )))?,
        }
    }

    fn get_object_read(&self, package: ObjectID) -> Result<ObjectRead, Error> {
        self.state.get_object_read(&package).map_err(Error::from)
    }
}

pub struct MoveUtils {
    internal: Arc<dyn MoveUtilsInternalTrait + Send + Sync>,
}

impl MoveUtils {
    pub fn new(state: Arc<AuthorityState>) -> Self {
        Self {
            internal: Arc::new(MoveUtilsInternal::new(state))
                as Arc<dyn MoveUtilsInternalTrait + Send + Sync>,
        }
    }
}

impl SuiRpcModule for MoveUtils {
    fn rpc(self) -> RpcModule<Self> {
        self.into_rpc()
    }

    fn rpc_doc_module() -> Module {
        MoveUtilsOpenRpc::module_doc()
    }
}

#[async_trait]
impl MoveUtilsServer for MoveUtils {
    #[instrument(skip(self))]
    async fn get_normalized_move_modules_by_package(
        &self,
        package: ObjectID,
    ) -> RpcResult<BTreeMap<String, SuiMoveNormalizedModule>> {
        with_tracing!(async move {
            let modules = self.internal.get_move_modules_by_package(package).await?;
            Ok(modules
                .into_iter()
                .map(|(name, module)| (name, module.into()))
                .collect::<BTreeMap<String, SuiMoveNormalizedModule>>())
        })
    }

    #[instrument(skip(self))]
    async fn get_normalized_move_module(
        &self,
        package: ObjectID,
        module_name: String,
    ) -> RpcResult<SuiMoveNormalizedModule> {
        with_tracing!(async move {
            let module = self.internal.get_move_module(package, module_name).await?;
            Ok(module.into())
        })
    }

    #[instrument(skip(self))]
    async fn get_normalized_move_struct(
        &self,
        package: ObjectID,
        module_name: String,
        struct_name: String,
    ) -> RpcResult<SuiMoveNormalizedStruct> {
        with_tracing!(async move {
            let module = self.internal.get_move_module(package, module_name).await?;
            let structs = module.structs;
            let identifier = Identifier::new(struct_name.as_str())
                .map_err(|e| SuiRpcInputError::GenericInvalid(format!("{e}")))?;
            match structs.get(&identifier) {
                Some(struct_) => Ok(struct_.clone().into()),
                None => Err(SuiRpcInputError::GenericNotFound(format!(
                    "No struct was found with struct name {}",
                    struct_name
                )))?,
            }
        })
    }

    #[instrument(skip(self))]
    async fn get_normalized_move_function(
        &self,
        package: ObjectID,
        module_name: String,
        function_name: String,
    ) -> RpcResult<SuiMoveNormalizedFunction> {
        with_tracing!(async move {
            let module = self.internal.get_move_module(package, module_name).await?;
            let functions = module.functions;
            let identifier = Identifier::new(function_name.as_str())
                .map_err(|e| SuiRpcInputError::GenericInvalid(format!("{e}")))?;
            match functions.get(&identifier) {
                Some(function) => Ok(function.clone().into()),
                None => Err(SuiRpcInputError::GenericNotFound(format!(
                    "No function was found with function name {}",
                    function_name
                )))?,
            }
        })
    }

    #[instrument(skip(self))]
    async fn get_move_function_arg_types(
        &self,
        package: ObjectID,
        module: String,
        function: String,
    ) -> RpcResult<Vec<MoveFunctionArgType>> {
        with_tracing!(async move {
            let object_read = self.internal.get_object_read(package)?;

            let normalized = match object_read {
                ObjectRead::Exists(_obj_ref, object, _layout) => match object.into_inner().data {
                    Data::Package(p) => {
                        // we are on the read path - it's OK to use VERSION_MAX of the supported Move
                        // binary format
                        let binary_config = BinaryConfig::with_extraneous_bytes_check(false);
                        normalize_modules(p.serialized_module_map().values(), &binary_config)
                            .map_err(Error::from)
                    }
                    _ => Err(SuiRpcInputError::GenericInvalid(format!(
                        "Object is not a package with ID {}",
                        package
                    )))?,
                },
                _ => Err(SuiRpcInputError::GenericNotFound(format!(
                    "Package object does not exist with ID {}",
                    package
                )))?,
            }?;

            let identifier = Identifier::new(function.as_str())
                .map_err(|e| SuiRpcInputError::GenericInvalid(format!("{e}")))?;
            let parameters = normalized
                .get(&module)
                .and_then(|m| m.functions.get(&identifier).map(|f| f.parameters.clone()));

            match parameters {
                Some(parameters) => Ok(parameters
                    .iter()
                    .map(|p| match p {
                        Type::Struct {
                            address: _,
                            module: _,
                            name: _,
                            type_arguments: _,
                        } => MoveFunctionArgType::Object(ObjectValueKind::ByValue),
                        Type::Reference(_) => {
                            MoveFunctionArgType::Object(ObjectValueKind::ByImmutableReference)
                        }
                        Type::MutableReference(_) => {
                            MoveFunctionArgType::Object(ObjectValueKind::ByMutableReference)
                        }
                        _ => MoveFunctionArgType::Pure,
                    })
                    .collect::<Vec<MoveFunctionArgType>>()),
                None => Err(SuiRpcInputError::GenericNotFound(format!(
                    "No parameters found for function {}",
                    function
                )))?,
            }
        })
    }
}

#[cfg(test)]
mod tests {

    mod get_normalized_move_module_tests {
        use super::super::*;
        use move_binary_format::file_format::basic_test_module;

        fn setup() -> (ObjectID, String) {
            (ObjectID::random(), String::from("test_module"))
        }

        #[tokio::test]
        async fn test_success_response() {
            let (package, module_name) = setup();
            let mut mock_internal = MockMoveUtilsInternalTrait::new();

            let m = basic_test_module();
            let normalized_module = NormalizedModule::new(&m);
            let expected_module: SuiMoveNormalizedModule = normalized_module.clone().into();

            mock_internal
                .expect_get_move_module()
                .return_once(move |_package, _module_name| Ok(normalized_module));

            let move_utils = MoveUtils {
                internal: Arc::new(mock_internal),
            };

            let response = move_utils
                .get_normalized_move_module(package, module_name)
                .await;

            assert!(response.is_ok());
            let result = response.unwrap();
            assert_eq!(result, expected_module);
        }

        #[tokio::test]
        async fn test_no_module_found() {
            let (package, module_name) = setup();
            let mut mock_internal = MockMoveUtilsInternalTrait::new();
            let error_string = format!("No module found with module name {module_name}");
            let expected_error =
                Error::SuiRpcInputError(SuiRpcInputError::GenericNotFound(error_string.clone()));
            mock_internal
                .expect_get_move_module()
                .return_once(move |_package, _module_name| Err(expected_error));
            let move_utils = MoveUtils {
                internal: Arc::new(mock_internal),
            };

            let response = move_utils
                .get_normalized_move_module(package, module_name)
                .await;
            let error_object = response.unwrap_err();

            assert_eq!(error_object.code(), -32602);
            assert_eq!(error_object.message(), &error_string);
        }
    }
}