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
// This file is part of Gear.
// Copyright (C) 2022-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/>.
use crate::{
ids::{prelude::*, CodeId, MessageId, ProgramId},
message::{
Dispatch, DispatchKind, GasLimit, Message, Packet, Payload, Salt, StoredDispatch,
StoredMessage, Value,
},
};
use scale_info::{
scale::{Decode, Encode},
TypeInfo,
};
/// Message for Init entry point.
/// Used to initiate a newly created program.
#[derive(Clone, Default, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, Decode, Encode, TypeInfo)]
pub struct InitMessage {
/// Message id.
id: MessageId,
/// Message destination.
destination: ProgramId,
/// Message payload.
payload: Payload,
/// Message optional gas limit.
gas_limit: Option<GasLimit>,
/// Message value.
value: Value,
}
impl InitMessage {
/// Create InitMessage from InitPacket.
pub fn from_packet(id: MessageId, packet: InitPacket) -> Self {
Self {
id,
destination: packet.program_id,
payload: packet.payload,
gas_limit: packet.gas_limit,
value: packet.value,
}
}
/// Convert InitMessage into Message.
pub fn into_message(self, source: ProgramId) -> Message {
Message::new(
self.id,
source,
self.destination,
self.payload,
self.gas_limit,
self.value,
None,
)
}
/// Convert InitMessage into StoredMessage.
pub fn into_stored(self, source: ProgramId) -> StoredMessage {
self.into_message(source).into_stored()
}
/// Convert InitMessage into Dispatch.
pub fn into_dispatch(self, source: ProgramId) -> Dispatch {
Dispatch::new(DispatchKind::Init, self.into_message(source))
}
/// Convert InitMessage into StoredDispatch.
pub fn into_stored_dispatch(self, source: ProgramId) -> StoredDispatch {
self.into_dispatch(source).into_stored()
}
/// Message id.
pub fn id(&self) -> MessageId {
self.id
}
/// Message destination.
pub fn destination(&self) -> ProgramId {
self.destination
}
/// Message payload bytes.
pub fn payload_bytes(&self) -> &[u8] {
self.payload.inner()
}
/// Message optional gas limit.
pub fn gas_limit(&self) -> Option<GasLimit> {
self.gas_limit
}
/// Message value.
pub fn value(&self) -> Value {
self.value
}
}
// TODO: #issue 3320
/// Init message packet.
///
/// This structure is preparation for future init message sending. Has no message id.
#[derive(Clone, Default, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, Decode, Encode, TypeInfo)]
pub struct InitPacket {
/// Newly created program id.
program_id: ProgramId,
/// Code id.
code_id: CodeId,
/// Salt.
salt: Salt,
/// Message payload.
payload: Payload,
/// Message optional gas limit.
gas_limit: Option<GasLimit>,
/// Message value.
value: Value,
}
impl InitPacket {
/// Create new InitPacket via user.
pub fn new_from_user(
code_id: CodeId,
salt: Salt,
payload: Payload,
gas_limit: GasLimit,
value: Value,
) -> Self {
Self {
program_id: ProgramId::generate_from_user(code_id, salt.inner()),
code_id,
salt,
payload,
gas_limit: Some(gas_limit),
value,
}
}
/// Create new InitPacket via program.
pub fn new_from_program(
code_id: CodeId,
salt: Salt,
payload: Payload,
message_id: MessageId,
gas_limit: Option<GasLimit>,
value: Value,
) -> Self {
Self {
program_id: ProgramId::generate_from_program(message_id, code_id, salt.inner()),
code_id,
salt,
payload,
gas_limit,
value,
}
}
/// Packet destination (newly created program id).
pub fn destination(&self) -> ProgramId {
self.program_id
}
/// Code id.
pub fn code_id(&self) -> CodeId {
self.code_id
}
/// Salt.
pub fn salt(&self) -> &[u8] {
self.salt.inner()
}
}
impl Packet for InitPacket {
fn payload_bytes(&self) -> &[u8] {
self.payload.inner()
}
fn payload_len(&self) -> u32 {
self.payload.len_u32()
}
fn gas_limit(&self) -> Option<GasLimit> {
self.gas_limit
}
fn value(&self) -> Value {
self.value
}
fn kind() -> DispatchKind {
DispatchKind::Init
}
}