pub struct Environment<'a, 'b, E: Ext, S: State> { /* private fields */ }Expand description
Grants the chain extension access to its parameters and execution environment.
It uses typestate programming to enforce the correct usage of the parameters passed to the chain extension.
Implementations§
Source§impl<'a, 'b, E: Ext, S: State> Environment<'a, 'b, E, S>
Functions that are available in every state of this type.
impl<'a, 'b, E: Ext, S: State> Environment<'a, 'b, E, S>
Functions that are available in every state of this type.
Sourcepub fn func_id(&self) -> u16
pub fn func_id(&self) -> u16
The function id within the id passed by a contract.
It returns the two least significant bytes of the id passed by a contract as the other
two bytes represent the chain extension itself (the code which is calling this function).
Sourcepub fn ext_id(&self) -> u16
pub fn ext_id(&self) -> u16
The chain extension id within the id passed by a contract.
It returns the two most significant bytes of the id passed by a contract which represent
the chain extension itself (the code which is calling this function).
Sourcepub fn charge_weight(&mut self, amount: Weight) -> Result<ChargedAmount>
pub fn charge_weight(&mut self, amount: Weight) -> Result<ChargedAmount>
Charge the passed amount of weight from the overall limit.
It returns Ok when there the remaining weight budget is larger than the passed
weight. It returns Err otherwise. In this case the chain extension should
abort the execution and pass through the error.
The returned value can be used to with Self::adjust_weight. Other than that
it has no purpose.
§Note
Weight is synonymous with gas in substrate.
Sourcepub fn adjust_weight(&mut self, charged: ChargedAmount, actual_weight: Weight)
pub fn adjust_weight(&mut self, charged: ChargedAmount, actual_weight: Weight)
Adjust a previously charged amount down to its actual amount.
This is when a maximum a priori amount was charged and then should be partially refunded to match the actual amount.
Source§impl<'a, 'b, E: Ext> Environment<'a, 'b, E, InitState>
Functions that are only available in the initial state of this type.
impl<'a, 'b, E: Ext> Environment<'a, 'b, E, InitState>
Functions that are only available in the initial state of this type.
Those are the functions that determine how the arguments to the chain extensions should be consumed.
Sourcepub fn only_in(self) -> Environment<'a, 'b, E, OnlyInState>
pub fn only_in(self) -> Environment<'a, 'b, E, OnlyInState>
Use all arguments as integer values.
Sourcepub fn prim_in_buf_out(self) -> Environment<'a, 'b, E, PrimInBufOutState>
pub fn prim_in_buf_out(self) -> Environment<'a, 'b, E, PrimInBufOutState>
Use input arguments as integer and output arguments as pointer to a buffer.
Sourcepub fn buf_in_buf_out(self) -> Environment<'a, 'b, E, BufInBufOutState>
pub fn buf_in_buf_out(self) -> Environment<'a, 'b, E, BufInBufOutState>
Use input and output arguments as pointers to a buffer.
Source§impl<'a, 'b, E: Ext, S: PrimIn> Environment<'a, 'b, E, S>
Functions to use the input arguments as integers.
impl<'a, 'b, E: Ext, S: PrimIn> Environment<'a, 'b, E, S>
Functions to use the input arguments as integers.
Source§impl<'a, 'b, E: Ext, S: PrimOut> Environment<'a, 'b, E, S>
Functions to use the output arguments as integers.
impl<'a, 'b, E: Ext, S: PrimOut> Environment<'a, 'b, E, S>
Functions to use the output arguments as integers.
Source§impl<'a, 'b, E: Ext, S: BufIn> Environment<'a, 'b, E, S>
Functions to use the input arguments as pointer to a buffer.
impl<'a, 'b, E: Ext, S: BufIn> Environment<'a, 'b, E, S>
Functions to use the input arguments as pointer to a buffer.
Sourcepub fn read(&self, max_len: u32) -> Result<Vec<u8>>
pub fn read(&self, max_len: u32) -> Result<Vec<u8>>
Reads min(max_len, in_len) from contract memory.
This does not charge any weight. The caller must make sure that the an
appropriate amount of weight is charged before reading from contract memory.
The reason for that is that usually the costs for reading data and processing
said data cannot be separated in a benchmark. Therefore a chain extension would
charge the overall costs either using max_len (worst case approximation) or using
in_len().
Sourcepub fn read_into(&self, buffer: &mut &mut [u8]) -> Result<()>
pub fn read_into(&self, buffer: &mut &mut [u8]) -> Result<()>
Reads `min(buffer.len(), in_len) from contract memory.
This takes a mutable pointer to a buffer fills it with data and shrinks it to
the size of the actual data. Apart from supporting pre-allocated buffers it is
equivalent to to read().
Sourcepub fn read_as<T: Decode + MaxEncodedLen>(&mut self) -> Result<T>
pub fn read_as<T: Decode + MaxEncodedLen>(&mut self) -> Result<T>
Reads and decodes a type with a size fixed at compile time from contract memory.
This function is secure and recommended for all input types of fixed size as long as the cost of reading the memory is included in the overall already charged weight of the chain extension. This should usually be the case when fixed input types are used.
Sourcepub fn read_as_unbounded<T: Decode>(&mut self, len: u32) -> Result<T>
pub fn read_as_unbounded<T: Decode>(&mut self, len: u32) -> Result<T>
Reads and decodes a type with a dynamic size from contract memory.
Make sure to include len in your weight calculations.
Sourcepub fn in_len(&self) -> u32
pub fn in_len(&self) -> u32
The length of the input as passed in as input_len.
A chain extension would use this value to calculate the dynamic part of its
weight. For example a chain extension that calculates the hash of some passed in
bytes would use in_len to charge the costs of hashing that amount of bytes.
This also subsumes the act of copying those bytes as a benchmarks measures both.
Source§impl<'a, 'b, E: Ext, S: BufOut> Environment<'a, 'b, E, S>
Functions to use the output arguments as pointer to a buffer.
impl<'a, 'b, E: Ext, S: BufOut> Environment<'a, 'b, E, S>
Functions to use the output arguments as pointer to a buffer.
Sourcepub fn write(
&mut self,
buffer: &[u8],
allow_skip: bool,
weight_per_byte: Option<Weight>,
) -> Result<()>
pub fn write( &mut self, buffer: &[u8], allow_skip: bool, weight_per_byte: Option<Weight>, ) -> Result<()>
Write the supplied buffer to contract memory.
If the contract supplied buffer is smaller than the passed buffer an Err is returned.
If allow_skip is set to true the contract is allowed to skip the copying of the buffer
by supplying the guard value of pallet-contracts::SENTINEL as out_ptr. The
weight_per_byte is only charged when the write actually happens and is not skipped or
failed due to a too small output buffer.
Auto Trait Implementations§
impl<'a, 'b, E, S> Freeze for Environment<'a, 'b, E, S>
impl<'a, 'b, E, S> RefUnwindSafe for Environment<'a, 'b, E, S>
impl<'a, 'b, E, S> Send for Environment<'a, 'b, E, S>
impl<'a, 'b, E, S> Sync for Environment<'a, 'b, E, S>
impl<'a, 'b, E, S> Unpin for Environment<'a, 'b, E, S>where
S: Unpin,
impl<'a, 'b, E, S> !UnwindSafe for Environment<'a, 'b, E, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T, U> DefensiveTruncateInto<U> for Twhere
U: DefensiveTruncateFrom<T>,
impl<T, U> DefensiveTruncateInto<U> for Twhere
U: DefensiveTruncateFrom<T>,
§fn defensive_truncate_into(self) -> U
fn defensive_truncate_into(self) -> U
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T.