replace all uses of log with tracing
This commit is contained in:
@@ -18,7 +18,6 @@ pub struct Config {
|
||||
pub witx: WitxConf,
|
||||
pub ctx: CtxConf,
|
||||
pub errors: ErrorConf,
|
||||
pub logging: LoggingConf,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
@@ -26,17 +25,13 @@ pub enum ConfigField {
|
||||
Witx(WitxConf),
|
||||
Ctx(CtxConf),
|
||||
Error(ErrorConf),
|
||||
Logging(LoggingConf),
|
||||
}
|
||||
|
||||
mod kw {
|
||||
syn::custom_keyword!(witx);
|
||||
syn::custom_keyword!(witx_literal);
|
||||
syn::custom_keyword!(ctx);
|
||||
syn::custom_keyword!(logging);
|
||||
syn::custom_keyword!(errors);
|
||||
syn::custom_keyword!(log);
|
||||
syn::custom_keyword!(tracing);
|
||||
}
|
||||
|
||||
impl Parse for ConfigField {
|
||||
@@ -54,10 +49,6 @@ impl Parse for ConfigField {
|
||||
input.parse::<kw::ctx>()?;
|
||||
input.parse::<Token![:]>()?;
|
||||
Ok(ConfigField::Ctx(input.parse()?))
|
||||
} else if lookahead.peek(kw::logging) {
|
||||
input.parse::<kw::logging>()?;
|
||||
input.parse::<Token![:]>()?;
|
||||
Ok(ConfigField::Logging(input.parse()?))
|
||||
} else if lookahead.peek(kw::errors) {
|
||||
input.parse::<kw::errors>()?;
|
||||
input.parse::<Token![:]>()?;
|
||||
@@ -73,7 +64,6 @@ impl Config {
|
||||
let mut witx = None;
|
||||
let mut ctx = None;
|
||||
let mut errors = None;
|
||||
let mut logging = None;
|
||||
for f in fields {
|
||||
match f {
|
||||
ConfigField::Witx(c) => {
|
||||
@@ -94,12 +84,6 @@ impl Config {
|
||||
}
|
||||
errors = Some(c);
|
||||
}
|
||||
ConfigField::Logging(c) => {
|
||||
if logging.is_some() {
|
||||
return Err(Error::new(err_loc, "duplicate `logging` field"));
|
||||
}
|
||||
logging = Some(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(Config {
|
||||
@@ -110,7 +94,6 @@ impl Config {
|
||||
.take()
|
||||
.ok_or_else(|| Error::new(err_loc, "`ctx` field required"))?,
|
||||
errors: errors.take().unwrap_or_default(),
|
||||
logging: logging.take().unwrap_or_default(),
|
||||
})
|
||||
}
|
||||
|
||||
@@ -319,35 +302,3 @@ impl Parse for ErrorConfField {
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/// Configure logging statements in generated code
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum LoggingConf {
|
||||
Log { cfg_feature: Option<String> },
|
||||
Tracing,
|
||||
}
|
||||
|
||||
impl Default for LoggingConf {
|
||||
fn default() -> Self {
|
||||
// For compatibility with existing code. We should probably revise this later.
|
||||
LoggingConf::Log {
|
||||
cfg_feature: Some("trace_log".to_owned()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Parse for LoggingConf {
|
||||
fn parse(input: ParseStream) -> Result<Self> {
|
||||
let lookahead = input.lookahead1();
|
||||
if lookahead.peek(kw::log) {
|
||||
input.parse::<kw::log>()?;
|
||||
// TODO: syntax so the user can specify their own cfg_feature guard here.
|
||||
Ok(LoggingConf::Log { cfg_feature: None })
|
||||
} else if lookahead.peek(kw::tracing) {
|
||||
input.parse::<kw::tracing>()?;
|
||||
Ok(LoggingConf::Tracing)
|
||||
} else {
|
||||
Err(lookahead.error())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
use proc_macro2::TokenStream;
|
||||
use quote::quote;
|
||||
|
||||
use crate::config::LoggingConf;
|
||||
use crate::error_transform::ErrorTransform;
|
||||
use crate::lifetimes::anon_lifetime;
|
||||
use crate::module_trait::passed_by_reference;
|
||||
use crate::names::Names;
|
||||
use crate::types::WiggleType;
|
||||
|
||||
pub fn define_func(
|
||||
names: &Names,
|
||||
module: &witx::Module,
|
||||
func: &witx::InterfaceFunc,
|
||||
trait_name: TokenStream,
|
||||
errxform: &ErrorTransform,
|
||||
logging: &LoggingConf,
|
||||
) -> TokenStream {
|
||||
let funcname = func.name.as_str();
|
||||
|
||||
@@ -51,19 +50,20 @@ pub fn define_func(
|
||||
let ret_err = coretype
|
||||
.ret
|
||||
.map(|ret| {
|
||||
let name = ret.param.name.as_str();
|
||||
let name = names.func_param(&ret.param.name);
|
||||
let conversion = if let Some(user_err) = errxform.for_abi_error(&ret.param.tref) {
|
||||
let method = names.user_error_conversion_method(&user_err);
|
||||
quote!(#abi_ret::from(UserErrorConversion::#method(ctx, e)))
|
||||
quote!(UserErrorConversion::#method(ctx, e))
|
||||
} else {
|
||||
quote!(#abi_ret::from(e))
|
||||
quote!(e)
|
||||
};
|
||||
quote! {
|
||||
#[cfg(feature = "trace_log")]
|
||||
{
|
||||
log::trace!(" | {}={:?}", #name, e);
|
||||
}
|
||||
return #conversion;
|
||||
let e = #conversion;
|
||||
#rt::tracing::event!(
|
||||
#rt::tracing::Level::TRACE,
|
||||
#name = #rt::tracing::field::debug(&e),
|
||||
);
|
||||
return #abi_ret::from(e);
|
||||
}
|
||||
})
|
||||
.unwrap_or_else(|| quote!(()));
|
||||
@@ -78,7 +78,7 @@ pub fn define_func(
|
||||
let err_method = names.guest_error_conversion_method(&tref);
|
||||
quote! {
|
||||
let e = #rt::GuestError::InFunc { funcname: #funcname, location: #location, err: Box::new(e.into()) };
|
||||
let err: #err_typename = GuestErrorConversion::#err_method(ctx, e); // XXX replace with conversion method on trait!
|
||||
let err: #err_typename = GuestErrorConversion::#err_method(ctx, e);
|
||||
return #abi_ret::from(err);
|
||||
}
|
||||
} else {
|
||||
@@ -101,6 +101,23 @@ pub fn define_func(
|
||||
}
|
||||
});
|
||||
|
||||
let log_marshalled_args = if func.params.len() > 0 {
|
||||
let rt = names.runtime_mod();
|
||||
let args = func.params.iter().map(|param| {
|
||||
let name = names.func_param(¶m.name);
|
||||
if param.impls_display() {
|
||||
quote!( #name = #rt::tracing::field::display(&#name) )
|
||||
} else {
|
||||
quote!( #name = #rt::tracing::field::debug(&#name) )
|
||||
}
|
||||
});
|
||||
quote! {
|
||||
#rt::tracing::event!(#rt::tracing::Level::TRACE, #(#args),*);
|
||||
}
|
||||
} else {
|
||||
quote!()
|
||||
};
|
||||
|
||||
let (trait_rets, trait_bindings) = if func.results.len() < 2 {
|
||||
(quote!({}), quote!(_))
|
||||
} else {
|
||||
@@ -111,29 +128,16 @@ pub fn define_func(
|
||||
.map(|result| names.func_param(&result.name))
|
||||
.collect();
|
||||
let bindings = quote!((#(#trait_rets),*));
|
||||
let names: Vec<_> = func
|
||||
.results
|
||||
.iter()
|
||||
.skip(1)
|
||||
.map(|result| {
|
||||
let name = names.func_param(&result.name);
|
||||
let fmt = match &*result.tref.type_() {
|
||||
witx::Type::Builtin(_)
|
||||
| witx::Type::Enum(_)
|
||||
| witx::Type::Flags(_)
|
||||
| witx::Type::Handle(_)
|
||||
| witx::Type::Int(_) => "{}",
|
||||
_ => "{:?}",
|
||||
};
|
||||
format!("{}={}", name.to_string(), fmt)
|
||||
})
|
||||
.collect();
|
||||
let trace_fmt = format!(" | result=({})", names.join(","));
|
||||
let rets = quote! {
|
||||
#[cfg(feature = "trace_log")]
|
||||
{
|
||||
log::trace!(#trace_fmt, #(#trait_rets),*);
|
||||
let trace_rets = func.results.iter().skip(1).map(|result| {
|
||||
let name = names.func_param(&result.name);
|
||||
if result.tref.impls_display() {
|
||||
quote!(#name = #rt::tracing::field::display(&#name))
|
||||
} else {
|
||||
quote!(#name = #rt::tracing::field::debug(&#name))
|
||||
}
|
||||
});
|
||||
let rets = quote! {
|
||||
#rt::tracing::event!(#rt::tracing::Level::TRACE, #(#trace_rets),*);
|
||||
(#(#trait_rets),*)
|
||||
};
|
||||
(rets, bindings)
|
||||
@@ -153,22 +157,32 @@ pub fn define_func(
|
||||
let err_typename = names.type_ref(&err_type, anon_lifetime());
|
||||
quote! {
|
||||
let success:#err_typename = #rt::GuestErrorType::success();
|
||||
#[cfg(feature = "trace_log")]
|
||||
{
|
||||
log::trace!(" | errno={}", success);
|
||||
}
|
||||
#rt::tracing::event!(
|
||||
#rt::tracing::Level::TRACE,
|
||||
success=#rt::tracing::field::display(&success)
|
||||
);
|
||||
#abi_ret::from(success)
|
||||
}
|
||||
} else {
|
||||
quote!()
|
||||
};
|
||||
|
||||
let log_args = logging.args(&func, names);
|
||||
let trait_name = names.trait_name(&module.name);
|
||||
let mod_name = &module.name.as_str();
|
||||
let func_name = &func.name.as_str();
|
||||
|
||||
quote!(pub fn #ident(#abi_args) -> #abi_ret {
|
||||
let _span = #rt::tracing::span!(
|
||||
#rt::tracing::Level::TRACE,
|
||||
"wiggle abi",
|
||||
module = #mod_name,
|
||||
function = #func_name
|
||||
);
|
||||
let _enter = _span.enter();
|
||||
|
||||
#(#marshal_args)*
|
||||
#(#marshal_rets_pre)*
|
||||
#log_args
|
||||
#log_marshalled_args
|
||||
let #trait_bindings = match #trait_name::#ident(ctx, #(#trait_args),*) {
|
||||
Ok(#trait_bindings) => { #trait_rets },
|
||||
Err(e) => { #ret_err },
|
||||
@@ -323,51 +337,3 @@ where
|
||||
_ => write_val_to_ptr,
|
||||
}
|
||||
}
|
||||
|
||||
impl LoggingConf {
|
||||
fn args(&self, func: &witx::InterfaceFunc, names: &Names) -> TokenStream {
|
||||
match self {
|
||||
Self::Log { cfg_feature } => {
|
||||
let (placeholders, args): (Vec<_>, Vec<_>) = func
|
||||
.params
|
||||
.iter()
|
||||
.map(|param| {
|
||||
let name = names.func_param(¶m.name);
|
||||
let fmt = if passed_by_reference(&*param.tref.type_()) {
|
||||
"{:?}"
|
||||
} else {
|
||||
"{}"
|
||||
};
|
||||
(format!("{}={}", name.to_string(), fmt), quote!(#name))
|
||||
})
|
||||
.unzip();
|
||||
let trace_fmt = format!(
|
||||
"{}({})",
|
||||
names.func(&func.name).to_string(),
|
||||
placeholders.join(",")
|
||||
);
|
||||
let trace_stmt = quote!(log::trace!(#trace_fmt, #(#args),*););
|
||||
if let Some(feature) = cfg_feature {
|
||||
quote! {
|
||||
#[cfg(feature = #feature)]
|
||||
{
|
||||
#trace_stmt
|
||||
}
|
||||
}
|
||||
} else {
|
||||
trace_stmt
|
||||
}
|
||||
}
|
||||
Self::Tracing => {
|
||||
let args = func.params.iter().map(|param| {
|
||||
let name = names.func_param(¶m.name);
|
||||
quote!( #name = #name )
|
||||
});
|
||||
let func_name = names.func(&func.name).to_string();
|
||||
quote! {
|
||||
tracing::debug!(function = #func_name, #(#args),*, "marshalled arguments");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,19 +11,14 @@ use quote::quote;
|
||||
|
||||
use lifetimes::anon_lifetime;
|
||||
|
||||
pub use config::{Config, LoggingConf};
|
||||
pub use config::Config;
|
||||
pub use error_transform::{ErrorTransform, UserErrorType};
|
||||
pub use funcs::define_func;
|
||||
pub use module_trait::define_module_trait;
|
||||
pub use names::Names;
|
||||
pub use types::define_datatype;
|
||||
|
||||
pub fn generate(
|
||||
doc: &witx::Document,
|
||||
names: &Names,
|
||||
errs: &ErrorTransform,
|
||||
logging: &LoggingConf,
|
||||
) -> TokenStream {
|
||||
pub fn generate(doc: &witx::Document, names: &Names, errs: &ErrorTransform) -> TokenStream {
|
||||
// TODO at some point config should grow more ability to configure name
|
||||
// overrides.
|
||||
let rt = names.runtime_mod();
|
||||
@@ -54,10 +49,9 @@ pub fn generate(
|
||||
};
|
||||
let modules = doc.modules().map(|module| {
|
||||
let modname = names.module(&module.name);
|
||||
let trait_name = names.trait_name(&module.name);
|
||||
let fs = module
|
||||
.funcs()
|
||||
.map(|f| define_func(&names, &f, quote!(#trait_name), &errs, logging));
|
||||
.map(|f| define_func(&names, &module, &f, &errs));
|
||||
let modtrait = define_module_trait(&names, &module, &errs);
|
||||
let ctx_type = names.ctx_type();
|
||||
quote!(
|
||||
|
||||
@@ -112,3 +112,9 @@ pub(super) fn define_enum(names: &Names, name: &witx::Id, e: &witx::EnumDatatype
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::EnumDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -180,3 +180,9 @@ pub(super) fn define_flags(names: &Names, name: &witx::Id, f: &witx::FlagsDataty
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::FlagsDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,3 +82,9 @@ pub(super) fn define_handle(
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::HandleDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,3 +92,9 @@ pub(super) fn define_int(names: &Names, name: &witx::Id, i: &witx::IntDatatype)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::IntDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,3 +91,56 @@ fn atom_token(atom: witx::AtomType) -> TokenStream {
|
||||
witx::AtomType::F64 => quote!(f64),
|
||||
}
|
||||
}
|
||||
|
||||
pub trait WiggleType {
|
||||
fn impls_display(&self) -> bool;
|
||||
}
|
||||
|
||||
impl WiggleType for witx::TypeRef {
|
||||
fn impls_display(&self) -> bool {
|
||||
match self {
|
||||
witx::TypeRef::Name(alias_to) => (&*alias_to).impls_display(),
|
||||
witx::TypeRef::Value(v) => (&*v).impls_display(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl WiggleType for witx::NamedType {
|
||||
fn impls_display(&self) -> bool {
|
||||
self.tref.impls_display()
|
||||
}
|
||||
}
|
||||
|
||||
impl WiggleType for witx::Type {
|
||||
fn impls_display(&self) -> bool {
|
||||
match self {
|
||||
witx::Type::Enum(x) => x.impls_display(),
|
||||
witx::Type::Int(x) => x.impls_display(),
|
||||
witx::Type::Flags(x) => x.impls_display(),
|
||||
witx::Type::Struct(x) => x.impls_display(),
|
||||
witx::Type::Union(x) => x.impls_display(),
|
||||
witx::Type::Handle(x) => x.impls_display(),
|
||||
witx::Type::Builtin(x) => x.impls_display(),
|
||||
witx::Type::Pointer { .. }
|
||||
| witx::Type::ConstPointer { .. }
|
||||
| witx::Type::Array { .. } => false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl WiggleType for witx::BuiltinType {
|
||||
fn impls_display(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
impl WiggleType for witx::InterfaceFuncParam {
|
||||
fn impls_display(&self) -> bool {
|
||||
match &*self.tref.type_() {
|
||||
witx::Type::Struct { .. }
|
||||
| witx::Type::Union { .. }
|
||||
| witx::Type::Builtin(witx::BuiltinType::String { .. }) => false,
|
||||
_ => self.tref.impls_display(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -133,3 +133,9 @@ pub(super) fn define_struct(
|
||||
#transparent
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::StructDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,3 +108,9 @@ pub(super) fn define_union(names: &Names, name: &witx::Id, u: &witx::UnionDataty
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl super::WiggleType for witx::UnionDatatype {
|
||||
fn impls_display(&self) -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user