12 stable releases
3.0.0 | Sep 7, 2024 |
---|---|
2.0.1 | Aug 4, 2024 |
2.0.0 | Jul 30, 2024 |
1.7.2 | Jul 27, 2024 |
1.3.0 |
|
#119 in Procedural macros
86 downloads per month
76KB
1.5K
SLoC
WarcRwLock
Installation
To use the WarcRwLock crate, add the following dependency to your Cargo.toml
:
[dependencies]
warcrwlock = "3.0.0"
Description
Warcrwlock is an abstraction
that turns a simple data structure into an atomic self-reference, enabling simultaneous read and write control using Arc
and RwLock
. The potential for software designed or partially implemented in Rust is significant in terms of security and performance, comparable to C++
. Therefore, the primary motivation is to increase productivity in these applications by abstracting the ability to share data asynchronously
with safety
.
Warcrwock Structural Attribute
Capable of transforming a simple struct
into two structures. The "core" is the part that retains the original characteristics but is placed in a module called "core". The reason for this is to allow it to be used with derivatives without compromising the main structure. See the example below:
mod core{
#[derive(Debug)]
pub(super) struct MyStruct {
pub(super) value: usize,
}
}
Using the same identifier, another struct is created that will contain a single field, as shown in the example below:
struct MyStruct {
core : Arc<RwLock<core::MyStruct>>,
}
//impls...
Accessors
To facilitate implementation, it is necessary to use accessors. Accessors are methods that are automatically generated for each field of the original structure. Using the MyStruct
from the previous examples and adding a field, we would have 4 generated methods.
public_read_only
is an attribute that must be used on a field to make the mutable access method private. An important detail is that accessors are generated with the same visibility type as the field, as shown in the example below:
#[warcrwlock]
pub struct MyStruct {
pub value: usize,
#[public_read_only]
pub value_2 : usize,
value_3 : usize
}
Result...
impl MyStruct {
pub fn value(&self) -> MyStructRefLock<usize>{...}
pub fn value_mut(&mut self) -> MyStructMutLock<usize>{...}
pub fn value_2(&self) -> MyStructRefLock<usize>{...}
fn value_2_mut(&mut self) -> MyStructMutLock<usize>{...}
fn value_3(&self) -> MyStructRefLock<usize>{...}
fn value_3_mut(&mut self) -> MyStructMutLock<usize>{...}
}
Constructor
To facilitate the construction of the wrapper, a private builder
method is generated, which will receive all the values, allowing you the freedom to implement your own constructor methods as you wish.
To illustrate, it will be demonstrated following the context of the previous examples:
impl MyStruct {
fn builder(value : usize, value : usize) -> Self{...}
}
Limitations
- Field values are accessible only through methods.
- The structure cannot have associated
lifetime
.
Warcrwock Trait Attribute
To use the #[warcrwlock] macro on your traits, simply add the attribute before the trait declaration. Here is an example:
Example of a Trait without Mutable Methods:
#[warcrwlock]
pub trait MyTrait {
fn method_with_ret(&self) -> i32;
}
Uses
struct MyStructA(i32);
impl MyTrait for MyStructA {
fn method_with_ret(&self) -> i32 {
self.0
}
}
struct MyStructB(i32);
impl MyTrait for MyStructB {
fn method_with_ret(&self) -> i32 {
self.0
}
}
fn use_test() {
fn sum(a: MyTraitAbstract, b: MyTraitAbstract) -> i32 {
a.method_with_ret() + b.method_with_ret()
}
let sum = sum(MyStructA(3).into(), MyStructB(7).into());
assert_eq!(sum, 10);
}
Example of a Trait without Mutable Methods:
#[warcrwlock]
pub trait MyTrait {
fn method_with_ret(&self) -> i32;
fn method_with_ret_mut(&mut self) -> &mut i32;
}
struct MyStructA(i32);
impl MyTrait for MyStructA {
fn method_with_ret(&self) -> i32 {
self.0
}
fn method_with_ret_mut(&mut self) -> &mut i32 {
&mut self.0
}
}
struct MyStructB(i32);
impl MyTrait for MyStructB {
fn method_with_ret(&self) -> i32 {
self.0
}
fn method_with_ret_mut(&mut self) -> &mut i32 {
&mut self.0
}
}
fn use_test() {
let a = MyStructA(5);
let mut a: MyTraitAbstract = a.into();
let b = MyStructB(10);
let mut b: MyTraitAbstract = b.into();
assert_eq!(a.method_with_ret(), 5);
assert_eq!(b.method_with_ret(), 10);
*a.method_with_ret_mut() = 50;
*b.method_with_ret_mut() = 100;
assert_eq!(a.method_with_ret(), 50);
assert_eq!(b.method_with_ret(), 100);
}
Limitations
- Traits must be of type Object Safe.
Historic
1.1.0
: Methods with parameters of the same type as the presented structure can now be freely implemented.1.2.0
: an attribute calledwrapper_method
is added that goes into the wrapper "scope" of the framework.1.2.1
: Methods with conditional visibility or visibility other than public and private (like pub(crate)) are treated the same as public methods.1.3.0
: A new attribute, calledvisible_to_wrapper
is added to private methods so that they are accessible to wrapper methods.1.4.0
: The wrapper now implements PartialEq.1.4.1
: Fixed compatibility withderive
macros and other macros.1.4.2
: Fixed attribute and type recognition failure in the syntax tree.1.5.0
: Restructuring and bug fixes with removal of unnecessary attributes added from version1.2.0
.1.5.2
: Generic support fixed.1.6.0
: Added "public_read_only" attribute.1.6.1
: Fixed access guard return type.1.6.2
: Fixed guards' access methods.1.6.3
: Fixed guard access methods regarding common parameters.1.7.1
: Add trait support.1.7.2
: Fixed imports in wrapped traits.2.0.0
: Replaces the cloning implementation for abstract forms of traits with mutable methods with an unsafe cloning of its own implementation for security reasons.2.0.1
: Fixed unsafe cloning.3.0.0
: Improved cloning security by allowing type ownership to be passed. Downgrading/removing the ability to handle implementation blocks for more code safety.
Contribution
The WarcRwLock project is mainly maintained by a single developer known as PFP but welcomes contributions from the community. However, it's essential that contributions stay within the scope of the project's main function.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Dependencies
~0.8–1.7MB
~32K SLoC