Skip to content

Commit

Permalink
wip: derive: Add no_core option to ExtensionDispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Mar 25, 2024
1 parent fa620ec commit c9a0457
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 16 deletions.
1 change: 1 addition & 0 deletions derive/examples/extension-dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ enum Extension {
Sample = "extensions::SampleExtension"
)]
struct Dispatch {
#[dispatch(no_core)]
#[extensions("Test")]
a: backends::ABackend,

Expand Down
61 changes: 45 additions & 16 deletions derive/src/extension_dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,20 +200,25 @@ struct RawBackend {
id: Ident,
field: Ident,
ty: Type,
no_core: bool,
delegate_to: Option<Ident>,
extensions: Vec<Ident>,
}

impl RawBackend {
fn new(field: &Field) -> Result<Option<Self>> {
let mut delegate_to = None;
let mut no_core = false;
let mut skip = false;
for attr in util::get_attrs(&field.attrs, "dispatch") {
attr.parse_nested_meta(|meta| {
if meta.path.is_ident("delegate_to") {
let s: LitStr = meta.value()?.parse()?;
delegate_to = Some(s.parse()?);
Ok(())
} else if meta.path.is_ident("no_core") {
no_core = true;
Ok(())
} else if meta.path.is_ident("skip") {
skip = true;
Ok(())
Expand Down Expand Up @@ -241,6 +246,7 @@ impl RawBackend {
id: util::to_camelcase(&ident),
field: ident,
ty: field.ty.clone(),
no_core,
delegate_to,
extensions,
}))
Expand All @@ -253,6 +259,7 @@ struct Backend {
field: Ident,
ty: Type,
index: Index,
no_core: bool,
extensions: Vec<Extension>,
}

Expand All @@ -268,6 +275,7 @@ impl Backend {
field: raw.field,
ty: raw.ty,
index: Index::from(i),
no_core: raw.no_core,
extensions,
})
}
Expand All @@ -278,13 +286,23 @@ impl Backend {
}

fn request(&self) -> TokenStream {
let Self {
index, id, field, ..
} = self;
let id = &self.id;
let request = if self.no_core {
quote! {
Err(::trussed::Error::RequestNotAvailable)
}
} else {
let Self { index, field, .. } = self;
quote! {
::trussed::backend::Backend::request(
&mut self.#field, &mut ctx.core, &mut ctx.backends.#index, request, resources,
)
}
};
quote! {
Self::BackendId::#id => ::trussed::backend::Backend::request(
&mut self.#field, &mut ctx.core, &mut ctx.backends.#index, request, resources,
),
Self::BackendId::#id => {
#request
}
}
}

Expand All @@ -304,6 +322,7 @@ struct DelegatedBackend {
id: Ident,
field: Ident,
backend: Backend,
no_core: bool,
extensions: Vec<Extension>,
}

Expand Down Expand Up @@ -338,26 +357,35 @@ impl DelegatedBackend {
id: raw.id,
field: raw.field,
backend,
no_core: raw.no_core,
extensions,
})
}

fn request(&self) -> TokenStream {
let Self {
id, backend, field, ..
} = self;
let Backend {
field: delegated_field,
index: delegated_index,
..
} = backend;
quote! {
Self::BackendId::#id => {
let id = &self.id;
let request = if self.no_core {
quote! {
Err(::trussed::Error::RequestNotAvailable)
}
} else {
let Self { backend, field, .. } = self;
let Backend {
field: delegated_field,
index: delegated_index,
..
} = backend;
quote! {
let _ = self.#field;
::trussed::backend::Backend::request(
&mut self.#delegated_field, &mut ctx.core, &mut ctx.backends.#delegated_index, request, resources,
)
}
};
quote! {
Self::BackendId::#id => {
#request
}
}
}

Expand All @@ -367,6 +395,7 @@ impl DelegatedBackend {
extensions,
backend,
field,
..
} = self;
let extension_requests = extensions.iter().map(|e| e.extension_request(backend));
quote! {
Expand Down

0 comments on commit c9a0457

Please sign in to comment.