gpt4 book ai didi

rust - 在 Substrate runtime crate 中定义的类型 Log 在哪里?

转载 作者:行者123 更新时间:2023-11-29 08:15:30 24 4
gpt4 key购买 nike

看看this implementation :

impl consensus::Trait for Runtime {
type Log = Log;
type SessionKey = AuthorityId;

// The Aura module handles offline-reports internally
// rather than using an explicit report system.
type InherentOfflineReport = ();
}

Log 是如何定义的?没有用于导入此符号的 use 子句。

运行

cargo rustc -- -Z unstable-options --pretty=expanded

不显示任何带有 type 子句的 Log 条目。它确实在 0 级扩展宏后显示了其他宏声明,但我不确定这是否相关。

我尝试使用 Atom IDE,因为它会自动解析文件并让您找到符号的定义,但它没有帮助。

如何找到 Log 的定义方式?

最佳答案

Logconstruct_runtime 宏定义。以下是一些相关代码:

construct_runtime 宏:

https://github.com/paritytech/substrate/blob/950e90e75dc7d16dcf99972fcc733945a832dc3e/srml/support/src/runtime.rs#L79

macro_rules! construct_runtime {
(
pub enum $runtime:ident with Log ($log_internal:ident: DigestItem<$( $log_genarg:ty ),+>)
where
Block = $block:ident,
NodeBlock = $node_block:ty,
UncheckedExtrinsic = $uncheckedextrinsic:ident
{
$( $rest:tt )*
}
)

调用 __decl_outer_log

https://github.com/paritytech/substrate/blob/950e90e75dc7d16dcf99972fcc733945a832dc3e/srml/support/src/runtime.rs#L267

    $crate::__decl_outer_log!(
$runtime;
$log_internal < $( $log_genarg ),* >;
{};
$(
$name: $module:: $( < $module_instance >:: )? { $( $modules $( ( $( $modules_args )* ) )* )* }
)*
);

__decl_outer_log

https://github.com/paritytech/substrate/blob/950e90e75dc7d16dcf99972fcc733945a832dc3e/srml/support/src/runtime.rs#L706

macro_rules! __decl_outer_log {
(
$runtime:ident;
$log_internal:ident <$( $log_genarg:ty ),+>;
{ $( $parsed:tt )* };
$name:ident: $module:ident:: $(<$module_instance:ident>::)? {
Log ( $( $args:ident )* ) $( $modules:ident $( ( $( $modules_args:ident )* ) )* )*
}
$( $rest:tt )*
) => {

调用impl_outer_log

https://github.com/paritytech/substrate/blob/950e90e75dc7d16dcf99972fcc733945a832dc3e/srml/support/src/runtime.rs#L763

(
$runtime:ident;
$log_internal:ident <$( $log_genarg:ty ),+>;
{ $(
$parsed_modules:ident $(< $parsed_instance:ident >)? ( $( $parsed_args:ident )* )
)* };
) => {
$crate::paste::item! {
$crate::runtime_primitives::impl_outer_log!(
pub enum Log($log_internal: DigestItem<$( $log_genarg ),*>) for $runtime {
$( [< $parsed_modules $(_ $parsed_instance)? >] $(< $parsed_modules::$parsed_instance >)? ( $( $parsed_args ),* ) ),*
}
);
}
};

impl_outer_log 宏: https://github.com/paritytech/substrate/blob/950e90e75dc7d16dcf99972fcc733945a832dc3e/core/sr-primitives/src/lib.rs#L630

macro_rules! impl_outer_log {
(
$(#[$attr:meta])*
pub enum $name:ident ($internal:ident: DigestItem<$( $genarg:ty ),*>) for $trait:ident {
$( $module:ident $(<$instance:path>)? ( $( $sitem:ident ),* ) ),*
}
)

实际上声明并实现了Log结构

cargo expand runtime crate 时,您应该能够看到结果。

关于rust - 在 Substrate runtime crate 中定义的类型 Log 在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56294285/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com