Revert "age-plugin: Make arguments to run_state_machine optional"

This reverts commit 480c621a40.
This commit is contained in:
Jack Grigg 2024-08-04 21:49:47 +00:00
parent a510e76bf8
commit 0689e95927
3 changed files with 11 additions and 29 deletions

View file

@ -9,6 +9,10 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases. to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
### Fixed
- `age_plugin::run_state_machine` reverts to non-optional arguments, undoing the
change from the previous release. The type arguments were impossible to set
correctly when attempting to pass `None`.
## [0.5.0] - 2024-02-04 ## [0.5.0] - 2024-02-04
### Changed ### Changed

View file

@ -149,11 +149,7 @@ fn main() -> io::Result<()> {
let opts = PluginOptions::parse(); let opts = PluginOptions::parse();
if let Some(state_machine) = opts.age_plugin { if let Some(state_machine) = opts.age_plugin {
run_state_machine( run_state_machine(&state_machine, || RecipientPlugin, || IdentityPlugin)
&state_machine,
Some(|| RecipientPlugin),
Some(|| IdentityPlugin),
)
} else { } else {
// A real plugin would generate a new identity here. // A real plugin would generate a new identity here.
print_new_identity(PLUGIN_NAME, &[], &[]); print_new_identity(PLUGIN_NAME, &[], &[]);

View file

@ -145,8 +145,8 @@
//! // The plugin was started by an age client; run the state machine. //! // The plugin was started by an age client; run the state machine.
//! run_state_machine( //! run_state_machine(
//! &state_machine, //! &state_machine,
//! Some(|| RecipientPlugin), //! || RecipientPlugin,
//! Some(|| IdentityPlugin), //! || IdentityPlugin,
//! )?; //! )?;
//! return Ok(()); //! return Ok(());
//! } //! }
@ -211,32 +211,14 @@ pub fn print_new_identity(plugin_name: &str, identity: &[u8], recipient: &[u8])
/// argument when starting the plugin. /// argument when starting the plugin.
pub fn run_state_machine<R: recipient::RecipientPluginV1, I: identity::IdentityPluginV1>( pub fn run_state_machine<R: recipient::RecipientPluginV1, I: identity::IdentityPluginV1>(
state_machine: &str, state_machine: &str,
recipient_v1: Option<impl FnOnce() -> R>, recipient_v1: impl FnOnce() -> R,
identity_v1: Option<impl FnOnce() -> I>, identity_v1: impl FnOnce() -> I,
) -> io::Result<()> { ) -> io::Result<()> {
use age_core::plugin::{IDENTITY_V1, RECIPIENT_V1}; use age_core::plugin::{IDENTITY_V1, RECIPIENT_V1};
match state_machine { match state_machine {
RECIPIENT_V1 => { RECIPIENT_V1 => recipient::run_v1(recipient_v1()),
if let Some(plugin) = recipient_v1 { IDENTITY_V1 => identity::run_v1(identity_v1()),
recipient::run_v1(plugin())
} else {
Err(io::Error::new(
io::ErrorKind::InvalidInput,
"plugin doesn't support recipient-v1 state machine",
))
}
}
IDENTITY_V1 => {
if let Some(plugin) = identity_v1 {
identity::run_v1(plugin())
} else {
Err(io::Error::new(
io::ErrorKind::InvalidInput,
"plugin doesn't support identity-v1 state machine",
))
}
}
_ => Err(io::Error::new( _ => Err(io::Error::new(
io::ErrorKind::InvalidInput, io::ErrorKind::InvalidInput,
"unknown plugin state machine", "unknown plugin state machine",