profiling_procmacros/
lib.rsextern crate proc_macro;
use proc_macro::TokenStream;
use quote::{quote, ToTokens};
use syn::{parse_macro_input, parse_quote, ImplItem, ItemFn, ItemImpl};
#[proc_macro_attribute]
pub fn function(
_attr: TokenStream,
item: TokenStream,
) -> TokenStream {
let mut function = parse_macro_input!(item as ItemFn);
let instrumented_function_name = function.sig.ident.to_string();
let body = &function.block;
let new_body: syn::Block = impl_block(body, &instrumented_function_name);
function.block = Box::new(new_body);
(quote! {
#function
})
.into()
}
#[proc_macro_attribute]
pub fn skip(
_attr: TokenStream,
item: TokenStream,
) -> TokenStream {
item
}
#[proc_macro_attribute]
pub fn all_functions(
_attr: TokenStream,
item: TokenStream,
) -> TokenStream {
let mut content = parse_macro_input!(item as ItemImpl);
let struct_name = content.self_ty.to_token_stream().to_string();
'func_loop: for block in &mut content.items {
let ImplItem::Fn(ref mut func) = block else {
continue;
};
for func_attr in &func.attrs {
let func_attr_info = func_attr.path();
if func_attr_info.segments.is_empty() {
continue;
}
if func_attr_info.segments.first().unwrap().ident != "profiling" {
continue;
}
if func_attr_info.segments.last().unwrap().ident == "skip" {
continue 'func_loop;
}
}
let prev_block = &func.block;
let calling_info = format!("{}: {}", struct_name, func.sig.ident);
func.block = impl_block(prev_block, &calling_info);
}
(quote!(
#content
))
.into()
}
#[cfg(not(any(
feature = "profile-with-puffin",
feature = "profile-with-optick",
feature = "profile-with-superluminal",
feature = "profile-with-tracing",
feature = "profile-with-tracy"
)))]
fn impl_block(
body: &syn::Block,
_instrumented_function_name: &str,
) -> syn::Block {
parse_quote! {
{
#body
}
}
}
#[cfg(any(
feature = "profile-with-puffin",
feature = "profile-with-optick",
feature = "profile-with-superluminal",
feature = "profile-with-tracy"
))]
fn impl_block(
body: &syn::Block,
_instrumented_function_name: &str,
) -> syn::Block {
parse_quote! {
{
profiling::function_scope!();
#body
}
}
}
#[cfg(feature = "profile-with-tracing")]
fn impl_block(
body: &syn::Block,
instrumented_function_name: &str,
) -> syn::Block {
parse_quote! {
{
let _fn_span = profiling::tracing::span!(profiling::tracing::Level::INFO, #instrumented_function_name);
let _fn_span_entered = _fn_span.enter();
#body
}
}
}