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
// 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/>.
#[cfg(not(feature = "ethexe"))]
use gprimitives::ReservationId;
use gprimitives::{ActorId, CodeId, MessageId};
pub(crate) trait AsRawPtr: AsRef<[u8]> + AsMut<[u8]> {
fn as_ptr(&self) -> *const [u8; 32] {
self.as_ref().as_ptr() as *const _
}
fn as_mut_ptr(&mut self) -> *mut [u8; 32] {
self.as_mut().as_mut_ptr() as *mut _
}
}
impl AsRawPtr for ActorId {}
impl AsRawPtr for CodeId {}
impl AsRawPtr for MessageId {}
#[cfg(not(feature = "ethexe"))]
impl AsRawPtr for ReservationId {}
/// Extensions for additional features.
pub mod ext {
use crate::stack_buffer;
use core::{
fmt::{self, Write as _},
mem::MaybeUninit,
};
use gear_stack_buffer::MAX_BUFFER_SIZE;
/// Add a `data` string to the debug log.
///
/// # Examples
///
/// ```
/// use gcore::ext;
///
/// #[no_mangle]
/// extern "C" fn handle() {
/// ext::debug("Hello, world!");
/// }
/// ```
#[cfg(any(feature = "debug", debug_assertions))]
pub fn debug(data: &str) {
unsafe { gsys::gr_debug(data.as_ptr(), data.len() as u32) }
}
/// Same as [`debug`] but uses a stack-allocated buffer.
///
/// Note: message size is limited to
/// [`MAX_BUFFER_SIZE`](crate::stack_buffer::MAX_BUFFER_SIZE).
/// Message is truncated if it exceeds maximum buffer size.
#[cfg(any(feature = "debug", debug_assertions))]
pub fn stack_debug(args: fmt::Arguments<'_>) {
struct StackFmtWriter<'a> {
buf: &'a mut [MaybeUninit<u8>],
pos: usize,
}
impl fmt::Write for StackFmtWriter<'_> {
fn write_str(&mut self, s: &str) -> fmt::Result {
let upper_bound = (self.pos + s.len()).min(MAX_BUFFER_SIZE);
if let Some(buf) = self.buf.get_mut(self.pos..upper_bound) {
let buf = buf as *mut [MaybeUninit<u8>] as *mut [u8];
let s = &s.as_bytes()[..buf.len()];
// SAFETY: we only write to uninitialized memory
unsafe {
(*buf).copy_from_slice(s);
}
self.pos += buf.len();
}
Ok(())
}
}
stack_buffer::with_byte_buffer(MAX_BUFFER_SIZE, |buf| {
let mut writer = StackFmtWriter { buf, pos: 0 };
writer.write_fmt(args).expect("fmt failed");
// SAFETY: buffer was initialized via `write_fmt` and limited by `pos`
unsafe { gsys::gr_debug(writer.buf.as_ptr().cast(), writer.pos as u32) }
});
}
/// Panic
///
/// Function is completely free in terms of gas usage.
///
/// # Examples
///
/// ```
/// use gcore::ext;
///
/// #[no_mangle]
/// extern "C" fn handle() {
/// ext::panic("I decided to panic");
/// }
/// ```
pub fn panic(data: &str) -> ! {
unsafe { gsys::gr_panic(data.as_ptr(), data.len() as u32) }
}
/// Out of memory panic
///
/// Function is completely free in terms of gas usage.
///
/// # Examples
///
/// ```rust,ignore
/// #![no_std]
/// #![feature(alloc_error_handler)]
/// #![feature(allocator_api)]
///
/// extern crate alloc;
///
/// use alloc::alloc::{Global, Layout, Allocator};
/// use gcore::ext;
///
/// #[alloc_error_handler]
/// fn oom(_layout: Layout) -> ! {
/// ext::oom_panic()
/// }
///
/// #[no_mangle]
/// extern "C" fn handle() {
/// let layout = Layout::new::<[u8; 64 * 1024]>();
/// if Global.allocate(layout).is_err() {
/// alloc::alloc::handle_alloc_error(layout);
/// }
/// }
/// ```
pub fn oom_panic() -> ! {
unsafe { gsys::gr_oom_panic() }
}
}
/// Add a debug message to the log.
///
/// Debug messages are available only if the program is compiled
/// in debug mode.
///
/// ```shell
/// cargo build --debug
/// cargo build --features=debug
/// ```
///
/// You can see the debug messages when running the program using the `gtest`
/// crate. To see these messages when executing the program on the node, you
/// should run the node with the `RUST_LOG="gwasm=debug"` environment variable.
///
/// Note: message size is limited to
/// [`MAX_BUFFER_SIZE`](crate::stack_buffer::MAX_BUFFER_SIZE).
/// Message is truncated if it exceeds maximum buffer size.
///
/// If you need bigger message size, consider using `gstd::heap_debug!()` macro.
///
/// # Examples
///
/// ```
/// use gcore::debug;
///
/// #[no_mangle]
/// extern "C" fn handle() {
/// debug!("String literal");
///
/// let value = 42;
/// debug!("{value}");
///
/// debug!("Formatted: value = {value}");
/// }
/// ```
#[cfg(any(feature = "debug", debug_assertions))]
#[macro_export]
macro_rules! debug {
($fmt:expr) => {
$crate::ext::stack_debug(format_args!($fmt))
};
($fmt:expr, $($args:tt)*) => {
$crate::ext::stack_debug(format_args!($fmt, $($args)*))
};
}
#[cfg(not(any(feature = "debug", debug_assertions)))]
#[allow(missing_docs)]
#[macro_export]
macro_rules! debug {
($fmt:expr) => {};
($fmt:expr, $($args:tt)*) => {};
}