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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
// 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/>.
//! Crate for providing metadata for Gear programs.
//!
//! Metadata is used to describe the interface of a Gear program. For example,
//! it can be used when uploading a program using <https://idea.gear-tech.io>.
//! The metadata informs the user about the program's interface and allows them
//! to interact with it using custom types on web applications UI.
//!
//! Another use case is to parse metadata in JavaScript using the `gear-js`
//! library and get the metadata details for some custom UI.
//!
//! Note that metadata is not required for a Gear program to work. It is only
//! used to provide additional information about the program. Also, metadata
//! can be used for various purposes but we will focus on the use cases related
//! to the <https://idea.gear-tech.io>.
//!
//! To generate a metadata output file for a program, you need:
//!
//! - Add `gmeta` crate to your `Cargo.toml` file.
//! - Define an empty struct that will identify the program metadata.
//! - Implement the [`Metadata`] trait for this struct by defining the
//! associated types of the trait.
//! - **Option 1**: Call [`gear_wasm_builder::build_with_metadata`](https://docs.gear.rs/gear_wasm_builder/fn.build_with_metadata.html)
//! function in `build.rs` file.
//! - **Option 2**: Convert metadata to hex string using [`MetadataRepr::hex`]
//! function and write it to the text file.
//!
//! # Examples
//!
//! In this example we will create a simple ping-pong program. Let's define
//! message types and metadata in a separate `ping-io` crate to be able to use
//! it in both program and `build.rs` files.
//!
//! We will define message types for `handle()` and `state()` functions.
//!
//! - `ping-io` crate:
//!
//! ```
//! #[no_std]
//! use gmeta::{InOut, Metadata, Out};
//! use gstd::prelude::*;
//!
//! // Message type for `handle()` function.
//! #[derive(Encode, Decode, TypeInfo)]
//! pub enum PingPong {
//! Ping,
//! Pong,
//! }
//!
//! // Metadata struct.
//! pub struct ProgramMetadata;
//!
//! impl Metadata for ProgramMetadata {
//! // The unit tuple is used as neither incoming nor outgoing messages are
//! // expected in the `init()` function.
//! type Init = ();
//! // We use the same `PingPong` type for both incoming and outgoing
//! // messages.
//! type Handle = InOut<PingPong, PingPong>;
//! // The unit tuple is used as we don't use asynchronous interaction in this
//! // program.
//! type Others = ();
//! // The unit tuple is used as we don't process any replies in this program.
//! type Reply = ();
//! // The unit tuple is used as we don't process any signals in this program.
//! type Signal = ();
//! // We return a counter value (`i32`) in the `state()` function in this program.
//! type State = Out<i32>;
//! }
//! ```
//!
//! - `ping` program crate:
//!
//! ```
//! #[no_std]
//! use gmeta::{InOut, Metadata};
//! use gstd::{msg, prelude::*};
//! # const IGNORE: &'static str = stringify! {
//! use ping_io::PingPong;
//! # };
//!
//! // Counter that will be incremented on each `Ping` message.
//! static mut COUNTER: i32 = 0;
//!
//! # #[derive(Encode, Decode, TypeInfo)]
//! # pub enum PingPong {
//! # Ping,
//! # Pong,
//! # }
//! #
//! #[no_mangle]
//! extern "C" fn handle() {
//! // Load incoming message of `PingPong` type.
//! let payload: PingPong = msg::load().expect("Unable to load");
//!
//! if let PingPong::Ping = payload {
//! unsafe { COUNTER += 1 };
//! // Send a reply message of `PingPong` type back to the sender.
//! msg::reply(PingPong::Pong, 0).expect("Unable to reply");
//! }
//! }
//!
//! #[no_mangle]
//! extern "C" fn state() {
//! msg::reply(unsafe { COUNTER }, 0).expect("Unable to reply");
//! }
//! ```
//!
//! - `build.rs` file:
//!
//! ```no_run
//! # const IGNORE: &'static str = stringify! {
//! use ping_io::ProgramMetadata;
//! # };
//! #
//! # pub struct ProgramMetadata;
//! # impl gmeta::Metadata for ProgramMetadata {
//! # type Init = ();
//! # type Handle = ();
//! # type Others = ();
//! # type Reply = ();
//! # type Signal = ();
//! # type State = ();
//! # }
//!
//! fn main() {
//! gear_wasm_builder::build_with_metadata::<ProgramMetadata>();
//! }
//! ```
//!
//! You can also generate metadata manually and write it to the file without
//! using `build.rs`:
//!
//! ```
//! use gmeta::{Metadata, Out};
//! # const IGNORE: &'static str = stringify! {
//! use ping_io::ProgramMetadata;
//! # };
//! use std::fs;
//!
//! # #[derive(gstd::Encode, gstd::Decode, gstd::TypeInfo)]
//! # pub enum PingPong {
//! # Ping,
//! # Pong,
//! # }
//! #
//! # pub struct ProgramMetadata;
//! # impl gmeta::Metadata for ProgramMetadata {
//! # type Init = ();
//! # type Handle = (PingPong, PingPong);
//! # type Others = ();
//! # type Reply = ();
//! # type Signal = ();
//! # type State = Out<i32>;
//! # }
//! #
//! let metadata_hex = ProgramMetadata::repr().hex();
//! assert_eq!(metadata_hex.len(), 146);
//! fs::write("ping.meta.txt", metadata_hex).expect("Unable to write");
//! ```
//!
//! You can parse generated metadata file using `gear-js` API in JavaScript:
//!
//! ```javascript
//! import { getProgramMetadata } from '@gear-js/api';
//! import { readFileSync } from 'fs';
//!
//! const metadataHex = readFileSync('ping.meta.txt', 'utf-8');
//! const metadata = getProgramMetadata('0x' + metadataHex);
//!
//! console.log('Registry:', metadata.regTypes);
//! console.log('Types:', metadata.types);
//! ```
//!
//! This will print the following:
//!
//! ```text
//! Registry: Map(2) {
//! 0 => { name: 'RustOutPingPong', def: '{"_enum":["Ping","Pong"]}' },
//! 1 => { name: 'i32', def: null }
//! }
//! Types: {
//! init: { input: null, output: null },
//! handle: { input: 0, output: 0 },
//! reply: { input: null, output: null },
//! others: { input: null, output: null },
//! signal: null,
//! state: 1
//! }
//! ```
#![no_std]
#![warn(missing_docs)]
#![doc(html_logo_url = "https://docs.gear.rs/logo.svg")]
#![doc(html_favicon_url = "https://gear-tech.io/favicons/favicon.ico")]
extern crate alloc;
#[cfg(feature = "codegen")]
pub use gmeta_codegen::metawasm;
pub use scale_info::{MetaType, PortableRegistry, Registry};
use alloc::{collections::BTreeMap, string::String, vec, vec::Vec};
use blake2::{digest::typenum::U32, Blake2b, Digest};
use core::any::TypeId;
use scale_info::{
scale::{self, Decode, Encode},
TypeInfo,
};
/// BLAKE2b-256 hasher state.
type Blake2b256 = Blake2b<U32>;
const METADATA_VERSION: u16 = 2;
/// Language identifier.
///
/// Needed to distinguish between different languages used to generate metadata.
#[repr(u8)]
pub enum LanguageId {
/// Rust language.
Rust = 0,
/// AssemblyScript language.
AssemblyScript,
}
/// Types representation used by metadata.
#[derive(Encode, Debug, Decode, Eq, PartialEq)]
#[codec(crate = scale)]
pub struct TypesRepr {
/// Input types.
pub input: Option<u32>,
/// Output types.
pub output: Option<u32>,
}
/// Metadata internal representation.
#[derive(Encode, Debug, Decode, Eq, PartialEq)]
#[codec(crate = scale)]
pub struct MetadataRepr {
/// Internal representation for [`Metadata::Init`] type.
pub init: TypesRepr,
/// Internal representation for [`Metadata::Handle`] type.
pub handle: TypesRepr,
/// Internal representation for [`Metadata::Reply`] type.
pub reply: Option<u32>,
/// Internal representation for [`Metadata::Others`] type.
pub others: TypesRepr,
/// Internal representation for [`Metadata::Signal`] type.
pub signal: Option<u32>,
/// Internal representation for [`Metadata::State`] type.
pub state: TypesRepr,
/// Encoded registry of types.
pub registry: Vec<u8>,
}
/// Metawasm data.
#[derive(Encode, Debug, Decode)]
#[codec(crate = scale)]
pub struct MetawasmData {
/// Meta functions.
pub funcs: BTreeMap<String, TypesRepr>,
/// Registry.
pub registry: Vec<u8>,
}
/// Trait used to get information about types.
pub trait Type: TypeInfo + 'static {
/// Return `true` if type is unit.
fn is_unit() -> bool {
TypeId::of::<Self>().eq(&TypeId::of::<()>())
}
/// Create [`MetaType`] information about type.
fn meta_type() -> MetaType {
MetaType::new::<Self>()
}
/// Register type in the registry and return its identifier if it is not the
/// unit type.
fn register(registry: &mut Registry) -> Option<u32> {
(!Self::is_unit()).then(|| registry.register_type(&Self::meta_type()).id)
}
}
impl<T: TypeInfo + 'static> Type for T {}
/// Trait used for registering types in registry.
pub trait Types {
/// Input type.
type Input: Type;
/// Output type.
type Output: Type;
/// Register input/output types in registry.
fn register(registry: &mut Registry) -> TypesRepr {
let input = Self::Input::register(registry);
let output = Self::Output::register(registry);
TypesRepr { input, output }
}
}
/// Type alias for incoming/outgoing message types.
pub type InOut<I, O> = (I, O);
/// Type alias for incoming message type without any outgoing type.
pub type In<I> = InOut<I, ()>;
/// Type alias for outgoing message type without any incoming type.
pub type Out<O> = InOut<(), O>;
impl<I: Type, O: Type> Types for InOut<I, O> {
type Input = I;
type Output = O;
}
impl Types for () {
type Input = ();
type Output = ();
}
impl MetadataRepr {
/// Encode metadata into bytes using codec.
pub fn bytes(&self) -> Vec<u8> {
// Append language ID and version as a preamble
let version_bytes = METADATA_VERSION.to_le_bytes();
let mut bytes = vec![LanguageId::Rust as u8, version_bytes[0], version_bytes[1]];
bytes.extend(self.encode());
bytes
}
/// Decode metadata from bytes using codec.
pub fn from_bytes(data: impl AsRef<[u8]>) -> Result<Self, MetadataParseError> {
let preamble_len = size_of::<LanguageId>() | size_of_val(&METADATA_VERSION);
let data = data.as_ref();
if data.len() < preamble_len {
return Err(MetadataParseError::InvalidMetadata);
}
// Check language ID and version
let lang_id = data[0];
if lang_id != LanguageId::Rust as u8 {
return Err(MetadataParseError::UnsupportedLanguageId(lang_id));
}
let version = u16::from_le_bytes([data[1], data[2]]);
if version != METADATA_VERSION {
return Err(MetadataParseError::UnsupportedVersion(version));
}
// Remove preamble before decoding
let mut data = &data[preamble_len..];
let this = Self::decode(&mut data)?;
Ok(this)
}
/// Decode metadata from hex.
pub fn from_hex<T: AsRef<[u8]>>(data: T) -> Result<Self, MetadataParseError> {
Self::from_bytes(hex::decode(data)?)
}
/// Encode metadata into hex string.
pub fn hex(&self) -> String {
hex::encode(self.bytes())
}
/// Calculate BLAKE2b hash of metadata bytes.
pub fn hash(&self) -> [u8; 32] {
let mut ctx = Blake2b256::new();
ctx.update(self.bytes());
ctx.finalize().into()
}
/// Calculate BLAKE2b hash of metadata and encode it into hex string.
pub fn hash_hex(&self) -> String {
hex::encode(self.hash())
}
}
/// Error that can occur during metadata parsing.
#[derive(Debug, derive_more::From)]
pub enum MetadataParseError {
/// Error that can occur during encoding/decoding.
Codec(scale_info::scale::Error),
/// Error that can occur during hex decoding.
FromHex(hex::FromHexError),
/// Error that can occur during metadata parsing.
InvalidMetadata,
/// Error that can occur when trying to parse metadata generated by another
/// language than Rust.
UnsupportedLanguageId(u8),
/// Error that can occur when trying to parse metadata with another version
/// than the current one.
UnsupportedVersion(u16),
}
/// Trait used for defining metadata.
pub trait Metadata {
/// Init message type.
///
/// Describes incoming/outgoing types for the `init()` function. Incoming
/// message can be read by calling
/// [`msg::load`](https://docs.gear.rs/gstd/msg/fn.load.html)
/// function. Outgoing message is a reply to the incoming message and
/// can be sent by calling the
/// [`msg::reply`](https://docs.gear.rs/gstd/msg/fn.reply.html) function.
///
/// - Use unit tuple `()` if neither incoming nor outgoing messages are
/// expected in the `init()` function.
/// - Use [`In`] type alias if only incoming message is expected in the
/// `init()` function.
/// - Use [`Out`] type alias if only outgoing message is expected in the
/// `init()` function.
/// - Use [`InOut`] type alias if both incoming and outgoing messages are
/// expected in the `init()` function.
///
/// # Note
///
/// If an outgoing message has been sent using the
/// [`msg::send`](https://docs.gear.rs/gstd/msg/fn.send.html) function,
/// then it is supposed to be parsed by the another type metadata.
/// See [`Others`](Self::Others) type for more details.
type Init: Types;
/// Handle message type.
///
/// Describes incoming/outgoing types for the `handle()` function.
///
/// This type is similar to the [`Init`](Self::Init) type, but it is used
/// for the `handle()` function.
type Handle: Types;
/// Reply message type.
///
/// Describes incoming type for the `handle_reply()` function.
type Reply: Type;
/// Message types for miscellaneous purposes.
///
/// Here we can define types used in some specific functions. For example,
/// the outgoing message type in `Others` is used as a ordinary message
/// sent by the program using the
/// [`msg::send`](https://docs.gear.rs/gstd/msg/fn.send.html) function.
type Others: Types;
/// Signal message type.
///
/// Describes only the outgoing type from the program while processing the
/// system signal.
type Signal: Type;
/// State type.
///
/// Describes the type for the queried state returned by the `state()`
/// function.
///
/// Use the type that you pass to the `msg::reply` function in the `state()`
/// function or unit tuple `()` if no `state()` function is defined.
type State: Types;
/// Create metadata representation and register types in registry.
fn repr() -> MetadataRepr {
let mut registry = Registry::new();
MetadataRepr {
init: Self::Init::register(&mut registry),
handle: Self::Handle::register(&mut registry),
reply: Self::Reply::register(&mut registry),
others: Self::Others::register(&mut registry),
signal: Self::Signal::register(&mut registry),
state: Self::State::register(&mut registry),
registry: PortableRegistry::from(registry).encode(),
}
}
}