tari_template_lib 0.22.2

Tari template library provides abstrations that interface with the Tari validator engine
Documentation
//   Copyright 2023 The Tari Project
//   SPDX-License-Identifier: BSD-3-Clause

//! Rust macros that can be used inside templates

pub use tari_template_abi::{call_debug, rust};

pub use crate::types::LogLevel;

/// Macro that calls the engine debug function from inside templates. No-op unless the engine is in debug mode.
#[macro_export]
macro_rules! engine_debug {
    ($fmt:expr) => {
        $crate::macros::call_debug($fmt)
    };
    ($fmt:expr, $($args:tt)*) => {
        $crate::macros::call_debug($crate::macros::rust::format!($fmt, $($args)*))
    };
}

/// Macro for emitting log messages from inside templates
#[macro_export]
macro_rules! log {
    ($lvl:expr, $fmt:expr) => {
        $crate::engine().emit_log($lvl, $crate::macros::rust::format!($fmt))
    };
    ($lvl:expr, $fmt:expr, $($args:tt)*) => {
        $crate::engine().emit_log($lvl, $crate::macros::rust::format!($fmt, $($args)*))
    };
}

/// Macro for emitting debug log messages from inside templates
#[macro_export]
macro_rules! debug {
    ($fmt:expr) => {
        $crate::log!($crate::macros::LogLevel::Debug, $fmt)
    };
    ($fmt:expr, $($args:tt)*) => {
        $crate::log!($crate::macros::LogLevel::Debug, $fmt, $($args)*)
    };
}

/// Macro for emitting log messages from inside templates
#[macro_export]
macro_rules! info {
    ($fmt:expr) => {
        $crate::log!($crate::macros::LogLevel::Info, $fmt)
    };
    ($fmt:expr, $($args:tt)*) => {
        $crate::log!($crate::macros::LogLevel::Info, $fmt, $($args)*)
    };
}

/// Macro for emitting warn log messages from inside templates
#[macro_export]
macro_rules! warn {
    ($fmt:expr) => {
        $crate::log!($crate::macros::LogLevel::Warn, $fmt)
    };
    ($fmt:expr, $($args:tt)*) => {
        $crate::log!($crate::macros::LogLevel::Warn, $fmt, $($args)*)
    };
}

/// Macro for emitting error log messages from inside templates
#[macro_export]
macro_rules! error {
    ($fmt:expr) => {
        $crate::log!($crate::macros::LogLevel::Error, $fmt)
    };
    ($fmt:expr, $($args:tt)*) => {
        $crate::log!($crate::macros::LogLevel::Error, $fmt, $($args)*)
    };
}