mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 09:51:10 +00:00
Contracts: use compiled rust tests (#2347)
see #2189 This PR does the following: - Bring the user api functions into a new pallet-contracts-uapi (They are currently defined in ink! [here])(https://github.com/paritytech/ink/blob/master/crates/env/src/engine/on_chain/ext.rs) - Add older api versions and unstable to the user api trait. - Remove pallet-contracts-primitives and bring the types it defined in uapi / pallet-contracts - Add the infrastructure to build fixtures from Rust files and test it works by replacing `dummy.wat` and `call.wat` - Move all the doc from wasm/runtime.rs to pallet-contracts-uapi. This will be done in a follow up: - convert the rest of the test from .wat to rust - bring risc-v uapi up to date with wasm - finalize the uapi host fns, making sure everything is codegen from the source host fns in pallet-contracts --------- Co-authored-by: Alexander Theißen <alex.theissen@me.com>
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//! External C API to communicate with substrate contracts runtime module.
|
||||
//!
|
||||
//! Refer to substrate FRAME contract module for more documentation.
|
||||
|
||||
#![no_std]
|
||||
|
||||
mod flags;
|
||||
pub use flags::*;
|
||||
|
||||
#[cfg(any(target_arch = "wasm32", target_arch = "riscv32"))]
|
||||
mod host;
|
||||
|
||||
#[cfg(any(target_arch = "wasm32", target_arch = "riscv32"))]
|
||||
pub use host::*;
|
||||
|
||||
macro_rules! define_error_codes {
|
||||
(
|
||||
$(
|
||||
$( #[$attr:meta] )*
|
||||
$name:ident = $discr:literal,
|
||||
)*
|
||||
) => {
|
||||
/// Every error that can be returned to a contract when it calls any of the host functions.
|
||||
#[derive(Debug)]
|
||||
#[repr(u32)]
|
||||
pub enum ReturnErrorCode {
|
||||
/// API call successful.
|
||||
Success = 0,
|
||||
$(
|
||||
$( #[$attr] )*
|
||||
$name = $discr,
|
||||
)*
|
||||
/// Returns if an unknown error was received from the host module.
|
||||
Unknown,
|
||||
}
|
||||
|
||||
impl From<ReturnCode> for Result {
|
||||
#[inline]
|
||||
fn from(return_code: ReturnCode) -> Self {
|
||||
match return_code.0 {
|
||||
0 => Ok(()),
|
||||
$(
|
||||
$discr => Err(ReturnErrorCode::$name),
|
||||
)*
|
||||
_ => Err(ReturnErrorCode::Unknown),
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
impl From<ReturnErrorCode> for u32 {
|
||||
fn from(code: ReturnErrorCode) -> u32 {
|
||||
code as u32
|
||||
}
|
||||
}
|
||||
|
||||
define_error_codes! {
|
||||
/// The called function trapped and has its state changes reverted.
|
||||
/// In this case no output buffer is returned.
|
||||
/// Can only be returned from `call` and `instantiate`.
|
||||
CalleeTrapped = 1,
|
||||
/// The called function ran to completion but decided to revert its state.
|
||||
/// An output buffer is returned when one was supplied.
|
||||
/// Can only be returned from `call` and `instantiate`.
|
||||
CalleeReverted = 2,
|
||||
/// The passed key does not exist in storage.
|
||||
KeyNotFound = 3,
|
||||
/// Deprecated and no longer returned: There is only the minimum balance.
|
||||
_BelowSubsistenceThreshold = 4,
|
||||
/// Transfer failed for other not further specified reason. Most probably
|
||||
/// reserved or locked balance of the sender that was preventing the transfer.
|
||||
TransferFailed = 5,
|
||||
/// Deprecated and no longer returned: Endowment is no longer required.
|
||||
_EndowmentTooLow = 6,
|
||||
/// No code could be found at the supplied code hash.
|
||||
CodeNotFound = 7,
|
||||
/// The account that was called is no contract.
|
||||
NotCallable = 8,
|
||||
/// The call to `debug_message` had no effect because debug message
|
||||
/// recording was disabled.
|
||||
LoggingDisabled = 9,
|
||||
/// The call dispatched by `call_runtime` was executed but returned an error.
|
||||
CallRuntimeFailed = 10,
|
||||
/// ECDSA public key recovery failed. Most probably wrong recovery id or signature.
|
||||
EcdsaRecoveryFailed = 11,
|
||||
/// sr25519 signature verification failed.
|
||||
Sr25519VerifyFailed = 12,
|
||||
/// The `xcm_execute` call failed.
|
||||
XcmExecutionFailed = 13,
|
||||
/// The `xcm_send` call failed.
|
||||
XcmSendFailed = 14,
|
||||
}
|
||||
|
||||
/// The raw return code returned by the host side.
|
||||
#[repr(transparent)]
|
||||
pub struct ReturnCode(u32);
|
||||
|
||||
/// Used as a sentinel value when reading and writing contract memory.
|
||||
///
|
||||
/// We use this value to signal `None` to a contract when only a primitive is
|
||||
/// allowed and we don't want to go through encoding a full Rust type.
|
||||
/// Using `u32::Max` is a safe sentinel because contracts are never
|
||||
/// allowed to use such a large amount of resources. So this value doesn't
|
||||
/// make sense for a memory location or length.
|
||||
const SENTINEL: u32 = u32::MAX;
|
||||
|
||||
impl From<ReturnCode> for Option<u32> {
|
||||
fn from(code: ReturnCode) -> Self {
|
||||
(code.0 < SENTINEL).then_some(code.0)
|
||||
}
|
||||
}
|
||||
|
||||
impl ReturnCode {
|
||||
/// Returns the raw underlying `u32` representation.
|
||||
pub fn into_u32(self) -> u32 {
|
||||
self.0
|
||||
}
|
||||
/// Returns the underlying `u32` converted into `bool`.
|
||||
pub fn into_bool(self) -> bool {
|
||||
self.0.ne(&0)
|
||||
}
|
||||
}
|
||||
|
||||
type Result = core::result::Result<(), ReturnErrorCode>;
|
||||
Reference in New Issue
Block a user