1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//! # box_raw_ptr
//!
//! `box_raw_ptr` is a Rust library providing safe wrappers for working with raw pointers,
//! specifically `*const T` and `*mut T`. These wrappers ensure memory safety by encapsulating
//! the raw pointers in safe abstractions and providing safe methods for working with them.
//!
//! ## Features
//!
//! - **ConstRawPtr**: A wrapper for `*const T` providing methods for safely working with constant raw pointers.
//! - **MutRawPtr**: A wrapper for `*mut T` providing methods for safely working with mutable raw pointers.
//!
//! ## Example
//!
//! ```rust
//! use box_raw_ptr::const_raw_ptr::ConstRawPtr;
//!
//! fn main() {
//!     let ptr = Box::new(42);
//!     let raw_ptr = ConstRawPtr::new_const_ptr(&*ptr);
//!
//!     // Print the memory address of the raw pointer
//!     raw_ptr.print_const_ptr(true);
//!
//!     // Print the value pointed to by the raw pointer
//!     raw_ptr.print_const_ptr(false);
//! }
//! ```
//!
//! ## Usage
//!
//! Add this to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! box_raw_ptr = "0.1.8"
//! ```
//!
//! ## License
//!
//! This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.
//!
//! ## Contributions
//!
//! Contributions are welcome! Please feel free to submit a pull request or open an issue
//! on the [GitHub repository](https://github.com/Rocco-Jenson/box_raw_ptr).
//!
//! ```
//!
//! extern crate box_raw_ptr;
//!
//! use box_raw_ptr::const_raw_ptr::ConstRawPtr;
//!
//! fn main() {
//!     let ptr = Box::new(42);
//!     let raw_ptr = ConstRawPtr::new_const_ptr(&*ptr);
//!
//!     // Print the memory address of the raw pointer
//!     raw_ptr.print_const_ptr(true);
//!
//!     // Print the value pointed to by the raw pointer
//!     raw_ptr.print_const_ptr(false);
//! }
//! ```



pub mod const_raw_ptr {
    /// A wrapper for `*const T` providing methods for safely working with constant raw pointers.
    pub struct ConstRawPtr<T> 
    where T: std::fmt::Debug, T: std::marker::Send, T: std::marker::Sync, T: core::marker::Copy
    {
        const_ptr: Box<*const T>,
    }

    impl<T: std::fmt::Debug + std::marker::Send + std::marker::Sync + core::marker::Copy> ConstRawPtr<T> {
        /// Constructs a new `ConstRawPtr<T>` instance with the given constant raw pointer.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        /// ```
        pub fn new_const_ptr(ptr: *const T) -> Self {
            Self { const_ptr: Box::new(ptr) }
        }
        
        /// Constructs a new `ConstRawPtr<T>` instance with a null constant raw pointer.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let null_ptr = ConstRawPtr::const_null_ptr();
        /// ```
        pub fn const_null_ptr() -> Self {
            Self { const_ptr: Box::new(std::ptr::null()) }
        }
        
        /// Returns the raw pointer if it is not null, wrapped in an `Option`. Returns `None` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        ///
        /// assert_eq!(const_ptr.unbox_const(), Some(&ptr_value as *const i32));
        /// ```
        pub fn unbox_const(&self) -> Option<*const T> {
            if !self.const_ptr.is_null() {
                Some(*self.const_ptr)
            } else {
                None
            }
        }

        /// Returns the underlying value if it is not null, wrapped in an `Option`. Returns `None` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        ///
        /// assert_eq!(const_ptr.unwrap_const(), Some(ptr_value));
        /// ```
        pub fn unwrap_const(self) -> Option<T> {
            if !self.const_ptr.is_null() {
                Some( unsafe { **self.const_ptr } )
            } else {
                None
            }
        }

        /// Returns a reference to the value pointed to by the constant raw pointer, wrapped in an `Option`.
        /// Returns `None` if the pointer is null.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        ///
        /// assert_eq!(const_ptr.ref_const(), Some(&ptr_value));
        /// ```
        pub fn ref_const(&self) -> Option<&T> {
            if !self.const_ptr.is_null() {
                Some( unsafe { & **self.const_ptr } )
            } else {
                None
            }
        }

        /// Returns `true` if the constant raw pointer is null, `false` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let null_ptr = ConstRawPtr::<i32>::const_null_ptr();
        /// assert!(null_ptr.is_null());
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        /// assert!(!const_ptr.is_null());
        /// ```
        pub fn is_null(&self) -> bool {
            if !self.const_ptr.is_null() {
                true
            } else {
                false
            }
        }

        /// Prints the memory address of the constant raw pointer if `fmt` is true.
        /// Otherwise, prints the value pointed to by the constant raw pointer if it's not null.
        /// Returns a cloned instance of `ConstRawPtr<T>`.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
        ///
        /// let ptr_value: i32 = 42;
        /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
        /// const_ptr.print_const_ptr(true); // prints the memory address
        /// const_ptr.print_const_ptr(false); // prints the value pointed to by the pointer
        /// ```
        pub fn print_const_ptr(&self, fmt: bool) -> Self {
            if !self.const_ptr.is_null() {
                if fmt {
                    println!("{:?}", *self.const_ptr);
                } else {
                    unsafe { println!("{:?}", **self.const_ptr); }
                }
            }

            Self { const_ptr: Box::new(*self.const_ptr.clone()) }
        }
    }

    // Clone implementation for ConstRawPtr<T>
    /// Implements the `Clone` trait for `ConstRawPtr<T>`.
    ///
    /// # Example
    ///
    /// ```
    /// use box_raw_ptr::const_raw_ptr::ConstRawPtr;
    ///
    /// let ptr_value: i32 = 42;
    /// let const_ptr = ConstRawPtr::new_const_ptr(&ptr_value as *const i32);
    /// let cloned_ptr = const_ptr.clone();
    /// ```
    impl<T: std::fmt::Debug + std::marker::Send + std::marker::Sync + core::marker::Copy> Clone for ConstRawPtr<T> {
        fn clone(&self) -> Self {
            Self {
                const_ptr: self.const_ptr.clone(),
            }
        }
    }
}

pub mod mut_raw_ptr {
    /// A wrapper for `*mut T` providing methods for safely working with mutable raw pointers.
    pub struct MutRawPtr<T>
    where T: std::fmt::Debug, T: std::marker::Send, T: std::marker::Sync, T: core::marker::Copy
    {
        mut_ptr: Box<*mut T>,
    }

    impl<T: std::fmt::Debug + std::marker::Send + std::marker::Sync + core::marker::Copy> MutRawPtr<T> {
        /// Constructs a new `MutRawPtr<T>` instance with the given mutable raw pointer.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        /// ```
        pub fn new_mut_ptr(ptr: *mut T) -> Self {
            Self { mut_ptr: Box::new(ptr) }
        }
    
        /// Constructs a new `MutRawPtr<T>` instance with a null mutable raw pointer.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let null_ptr = MutRawPtr::mut_null_ptr();
        /// ```
        pub fn mut_null_ptr() -> Self {
            Self { mut_ptr: (Box::new(std::ptr::null_mut())) }
        }
    
        /// Returns the raw pointer if it is not null, wrapped in an `Option`. Returns `None` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        ///
        /// assert_eq!(mut_ptr.unbox_mut(), Some(&mut value as *mut i32));
        /// ```
        pub fn unbox_mut(self) -> Option<*mut T> {
            if !self.mut_ptr.is_null() {
                Some(*self.mut_ptr)
            } else {
                None
            }
        }

        /// Returns the underlying value if it is not null, wrapped in an `Option`. Returns `None` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        ///
        /// assert_eq!(mut_ptr.unwrap_mut(), Some(value));
        /// ```
        pub fn unwrap_mut(self) -> Option<T> {
            if !self.mut_ptr.is_null() {
                Some( unsafe { **self.mut_ptr } )
            } else {
                None
            }
        }

        /// Returns the underlying value if it is not null, wrapped in an `Option`. Returns `None` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        ///
        /// assert_eq!(mut_ptr.unwrap_mut(), Some(value));
        /// ```
        pub fn ref_mut(&self) -> Option<&T> {
            if !self.mut_ptr.is_null() {
                Some( unsafe { & **self.mut_ptr } )
            } else {
                None
            }
        }

        /// Returns a mutable reference to the value pointed to by the mutable raw pointer, wrapped in an `Option`.
        /// Returns `None` if the pointer is null.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        ///
        /// assert_eq!(mut_ptr.mutref_mut(), Some(&mut value));
        /// ```
        pub fn mutref_mut(&self) -> Option<&mut T> {
            if !self.mut_ptr.is_null() {
                Some( unsafe { &mut **self.mut_ptr } )
            } else {
                None
            }
        }

        /// Returns `true` if the mutable raw pointer is null, `false` otherwise.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let null_ptr = MutRawPtr::<i32>::mut_null_ptr();
        /// assert!(null_ptr.is_null());
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        /// assert!(!mut_ptr.is_null());
        /// ```
        pub fn is_null(&self) -> bool {
            if !self.mut_ptr.is_null() {
                true
            } else {
                false
            }
        }

        /// Prints the memory address of the mutable raw pointer if `fmt` is true.
        /// Otherwise, prints the value pointed to by the mutable raw pointer if it's not null.
        /// Returns a cloned instance of `MutRawPtr<T>`.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        /// mut_ptr.print_mut_ptr(true); // prints the memory address
        /// mut_ptr.print_mut_ptr(false); // prints the value pointed to by the pointer
        /// ```
        pub fn print_mut_ptr(&self, fmt: bool) -> Self {
            if !self.mut_ptr.is_null() {
                if fmt {
                    println!("{:?}", *self.mut_ptr);
                } else {
                    unsafe { println!("{:?}", **self.mut_ptr); }
                }
            }

            Self { mut_ptr: Box::new(*self.mut_ptr.clone()) }
        }

        /// Writes the value `src` to the memory location pointed to by the mutable raw pointer.
        /// Returns a new instance of `MutRawPtr<*mut T>` with the same raw pointer after the write operation.
        ///
        /// # Example
        ///
        /// ```
        /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
        ///
        /// let mut value: i32 = 42;
        /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
        /// mut_ptr.write_mut_ptr(24); // writes 24 to the memory location
        /// ```
        pub fn write_mut_ptr(&mut self, src: T) -> Option<Self> {
            if !self.mut_ptr.is_null() {
                unsafe {
                    std::ptr::write(*self.mut_ptr, src);
                    Some( Self { mut_ptr: Box::new(*self.mut_ptr) } )
                }
            } else {
                None
            }
        }
    }

    /// Clone implementation for MutRawPtr<T>
    /// Implements the `Clone` trait for `MutRawPtr<T>`.
    ///
    /// # Example
    ///
    /// ```
    /// use box_raw_ptr::mut_raw_ptr::MutRawPtr;
    ///
    /// let mut value: i32 = 42;
    /// let mut_ptr = MutRawPtr::new_mut_ptr(&mut value as *mut i32);
    /// let cloned_ptr = mut_ptr.clone();
    /// ```
    impl<T: std::fmt::Debug + std::marker::Send + std::marker::Sync + core::marker::Copy> Clone for MutRawPtr<T> {
        fn clone(&self) -> Self {
            Self {
                mut_ptr: self.mut_ptr.clone(),
            }
        }
    }
}