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
// This file is part of Gear.
// Copyright (C) 2021-2024 Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//! Module for programs.
use crate::{
ids::{MessageId, ProgramId},
message::DispatchKind,
pages::WasmPagesAmount,
reservation::GasReservationMap,
};
use alloc::collections::BTreeSet;
use primitive_types::H256;
use scale_info::{
scale::{Decode, Encode},
TypeInfo,
};
/// Program in different states in storage.
#[derive(Clone, Debug, Decode, Encode, PartialEq, Eq, TypeInfo)]
pub enum Program<BlockNumber: Copy> {
/// Program in active state.
Active(ActiveProgram<BlockNumber>),
/// Program has been exited (gr_exit was called)
Exited(ProgramId),
/// Program has been terminated (`init` was failed)
Terminated(ProgramId),
}
impl<BlockNumber: Copy> Program<BlockNumber> {
/// Returns whether the program is active.
pub fn is_active(&self) -> bool {
matches!(self, Program::Active(_))
}
/// Returns whether the program is exited.
pub fn is_exited(&self) -> bool {
matches!(self, Program::Exited(_))
}
/// Returns whether the program is terminated.
pub fn is_terminated(&self) -> bool {
matches!(self, Program::Terminated(_))
}
/// Returns whether the program is active and initialized.
pub fn is_initialized(&self) -> bool {
matches!(
self,
Program::Active(ActiveProgram {
state: ProgramState::Initialized,
..
})
)
}
}
/// Program is not an active one.
#[derive(Clone, Debug, derive_more::Display)]
#[display(fmt = "Program is not an active one")]
pub struct InactiveProgramError;
impl<BlockNumber: Copy> core::convert::TryFrom<Program<BlockNumber>>
for ActiveProgram<BlockNumber>
{
type Error = InactiveProgramError;
fn try_from(prog_with_status: Program<BlockNumber>) -> Result<Self, Self::Error> {
match prog_with_status {
Program::Active(p) => Ok(p),
_ => Err(InactiveProgramError),
}
}
}
/// Active program in storage.
#[derive(Clone, Debug, Decode, Encode, PartialEq, Eq, TypeInfo)]
pub struct ActiveProgram<BlockNumber: Copy> {
/// Continuous intervals amount in program allocations.
pub allocations_tree_len: u32,
/// Infix of memory pages storage (is used for memory wake after pausing)
pub memory_infix: MemoryInfix,
/// Gas reservation map.
pub gas_reservation_map: GasReservationMap,
/// Code hash of the program.
pub code_hash: H256,
/// Set of supported dispatch kinds.
pub code_exports: BTreeSet<DispatchKind>,
/// Amount of static pages.
pub static_pages: WasmPagesAmount,
/// Initialization state of the program.
pub state: ProgramState,
/// Block number when the program will be expired.
pub expiration_block: BlockNumber,
}
/// Enumeration contains variants for program state.
#[derive(Clone, Debug, Decode, Encode, PartialEq, Eq, TypeInfo)]
pub enum ProgramState {
/// `init` method of a program has not yet finished its execution so
/// the program is not considered as initialized.
Uninitialized {
/// identifier of the initialization message.
message_id: MessageId,
},
/// Program has been successfully initialized and can process messages.
Initialized,
}
/// Struct defines infix of memory pages storage.
#[derive(Clone, Copy, Debug, Default, Decode, Encode, PartialEq, Eq, TypeInfo)]
#[cfg_attr(feature = "std", derive(serde::Serialize, serde::Deserialize))]
pub struct MemoryInfix(u32);
impl MemoryInfix {
/// Constructing function from u32 number.
pub const fn new(value: u32) -> Self {
Self(value)
}
/// Return inner u32 value.
pub fn inner(&self) -> u32 {
self.0
}
}