age-plugin: Make arguments to run_state_machine optional

Closes str4d/rage#387.
This commit is contained in:
Jack Grigg 2023-08-06 16:37:46 +00:00
parent 56edd888c1
commit 480c621a40
3 changed files with 31 additions and 7 deletions

View file

@ -11,6 +11,8 @@ to 1.0.0 are beta releases.
## [Unreleased] ## [Unreleased]
### Changed ### Changed
- MSRV is now 1.65.0. - MSRV is now 1.65.0.
- `age_plugin::run_state_machine` now takes optional arguments, to enable the
creation of recipient-only or identity-only plugins.
## [0.4.0] - 2022-10-27 ## [0.4.0] - 2022-10-27
### Changed ### Changed

View file

@ -152,7 +152,11 @@ fn main() -> io::Result<()> {
let opts = PluginOptions::parse_args_default_or_exit(); let opts = PluginOptions::parse_args_default_or_exit();
if let Some(state_machine) = opts.age_plugin { if let Some(state_machine) = opts.age_plugin {
run_state_machine(&state_machine, || RecipientPlugin, || IdentityPlugin) run_state_machine(
&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

@ -147,8 +147,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,
//! || RecipientPlugin, //! Some(|| RecipientPlugin),
//! || IdentityPlugin, //! Some(|| IdentityPlugin),
//! )?; //! )?;
//! return Ok(()); //! return Ok(());
//! } //! }
@ -213,14 +213,32 @@ 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: impl FnOnce() -> R, recipient_v1: Option<impl FnOnce() -> R>,
identity_v1: impl FnOnce() -> I, identity_v1: Option<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::run_v1(recipient_v1()), RECIPIENT_V1 => {
IDENTITY_V1 => identity::run_v1(identity_v1()), if let Some(plugin) = recipient_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",