-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(HookExt): Add extended hook functionality with custom deny lists
- Added `HookExt` trait to provide extended hook functionality. - Implemented `HookExt` for functions, tuples, and `ShadowHook` struct. - Each implementation provides methods to return the default deny list and the inner hook function. This change allows more flexible handling of hooks and deny lists, enabling better customization and control over the hook behavior.
- Loading branch information
Showing
2 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
use crate::{default_deny, SdResult, ShadowConst}; | ||
use std::collections::BTreeSet; | ||
use std::fs::File; | ||
|
||
/// A trait that extends the functionality of hooks. | ||
/// It provides methods to get the default deny list and the inner hook function. | ||
pub trait HookExt { | ||
/// Returns the default deny list. | ||
fn default_deny(&self) -> BTreeSet<ShadowConst>; | ||
|
||
/// Returns a reference to the inner hook function. | ||
fn hook_inner(&self) -> &dyn Fn(&File) -> SdResult<()>; | ||
} | ||
|
||
/// Implement the `HookExt` trait for any function that takes a `&File` and returns a `SdResult<()>`. | ||
impl<F> HookExt for F | ||
where | ||
F: Fn(&File) -> SdResult<()>, | ||
{ | ||
/// Returns the default deny list using the `default_deny` function from the crate. | ||
fn default_deny(&self) -> BTreeSet<ShadowConst> { | ||
default_deny() | ||
} | ||
|
||
/// Returns a reference to the function itself. | ||
fn hook_inner(&self) -> &dyn Fn(&File) -> SdResult<()> { | ||
self | ||
} | ||
} | ||
|
||
/// Implement the `HookExt` trait for a tuple containing a function and a deny list. | ||
impl<F> HookExt for (F, BTreeSet<ShadowConst>) | ||
where | ||
F: Fn(&File) -> SdResult<()>, | ||
{ | ||
/// Returns the deny list stored in the second element of the tuple. | ||
fn default_deny(&self) -> BTreeSet<ShadowConst> { | ||
self.1.clone() | ||
} | ||
|
||
/// Returns a reference to the function stored in the first element of the tuple. | ||
fn hook_inner(&self) -> &dyn Fn(&File) -> SdResult<()> { | ||
&self.0 | ||
} | ||
} | ||
|
||
/// A struct representing a shadow hook with an inner function and a deny list. | ||
pub struct ShadowHook<F> { | ||
/// The inner function that will be used as the hook. | ||
pub hook: F, | ||
|
||
/// The deny list associated with this hook. | ||
pub deny: BTreeSet<ShadowConst>, | ||
} | ||
|
||
/// Implement the `HookExt` trait for the `ShadowHook` struct. | ||
impl<F> HookExt for ShadowHook<F> | ||
where | ||
F: Fn(&File) -> SdResult<()>, | ||
{ | ||
/// Returns the deny list associated with this `ShadowHook`. | ||
fn default_deny(&self) -> BTreeSet<ShadowConst> { | ||
self.deny.clone() | ||
} | ||
|
||
/// Returns a reference to the inner function of this `ShadowHook`. | ||
fn hook_inner(&self) -> &dyn Fn(&File) -> SdResult<()> { | ||
&self.hook | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters