memu 0.1.3

Implementations of memory units and working with them
Documentation
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
macro_rules! data_impl {
    (
        Self = $self:ty,
        Unit = $unit:literal,
        Factor = $factor:ident $(,)?
    ) => {
        impl $self {
            /// Maps any function to the internally held [`u64`].
            pub fn map<F, T>(&mut self, f: F) -> T
            where
                F: FnOnce(u64) -> T,
            {
                f(self.0)
            }

            /// Returns the unit suffix of this unit of data.
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("assert_eq!(", stringify!($self), "::UNIT, ", stringify!($unit), ");")]
            /// ```
            #[cfg(feature = "units")]
            pub const fn get_unit() -> &'static str {
                Self::UNIT
            }

            /// Creates this unit from a [`u8`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_u8(1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_u8(value: u8) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from a [`u16`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_u16(1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_u16(value: u16) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from a [`u32`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_u32(1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_u32(value: u32) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from a [`u64`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_u64(1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_u64(value: u64) -> Self {
                <$self>::new(value * Self::FACTOR)
            }

            /// Creates this unit from a [`u128`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_u128(1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_u128(value: u128) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`i8`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_i8(-1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_i8(value: i8) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`i16`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_i16(-1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_i16(value: i16) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`i32`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_i32(-1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_i32(value: i32) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`i64`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_i64(-1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_i64(value: i64) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`i128`].
            ///
            /// # Examples
            /// ```
            #[doc = concat!("# use memu::units::", stringify!($self), ";")]
            #[doc = concat!("# use memu::constants::", stringify!($factor), ";")]
            #[doc = concat!("let unit = ", stringify!($self), "::from_i128(-1);")]
            ///
            #[doc = concat!("assert_eq!(unit, ",stringify!($self),"::new(", stringify!($factor), "));")]
            /// ```
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or the equivalent [`From`] trait")]
            pub const fn from_i128(value: i128) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }

            /// Creates this unit from the absoloute value of a [`f32`].
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or an equivalent From trait.")]
            pub fn from_f32(value: f32) -> Self {
                let value = if value.is_sign_negative() {
                    -value
                } else {
                    value
                };
                <$self>::new((value * Self::FACTOR as f32) as u64)
            }

            /// Creates this unit from the absoloute value of a [f64].
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or an equivalent From trait.")]
            pub fn from_f64(value: f64) -> Self {
                let value = if value.is_sign_negative() {
                    -value
                } else {
                    value
                };
                <$self>::new((value * Self::FACTOR as f64) as u64)
            }

            /// Returns this unit as a `f32`.
            pub fn as_f32(&self) -> f32 {
                self.0 as f32 / Self::FACTOR as f32
            }

            /// Returns this unit as a `f64`.
            pub fn as_f64(&self) -> f64 {
                self.0 as f64 / Self::FACTOR as f64
            }

            /// Returns this unit as a `u8`.
            pub const fn as_u8(&self) -> u8 {
                (self.0 / Self::FACTOR) as u8
            }

            /// Returns this unit as a `u16`.
            pub const fn as_u16(&self) -> u16 {
                (self.0 / Self::FACTOR) as u16
            }

            /// Returns this unit as a `u32`.
            pub const fn as_u32(&self) -> u32 {
                (self.0 / Self::FACTOR) as u32
            }

            /// Returns this unit as a `u64`.
            pub const fn as_u64(&self) -> u64 {
                (self.0 / Self::FACTOR) as u64
            }

            /// Returns a string containing`self.as_u64()` and `Self::UNIT`.
            #[cfg(feature = "units")]
            pub fn as_string_with_unit(&self) -> String {
                format!("{:.}{}", self.as_f64(), Self::UNIT)
            }

            /// Returns a string contaning `self.as_f64()` with the given precision and `Self::UNIT`.
            #[cfg(feature = "units")]
            pub fn as_string_with_unit_and_precision(&self, precision: usize) -> String {
                format!("{:.precision$}{}", self.as_f64(), Self::UNIT, precision = precision)
            }

        }

        impl std::ops::AddAssign for $self {
            fn add_assign(&mut self, rhs: Self) {
                self.0 += rhs.0;
            }
        }

        impl std::ops::Add for $self {
            type Output = Self;
            fn add(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 + rhs.0)
            }
        }

        impl std::ops::BitAnd for $self {
            type Output = Self;
            fn bitand(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 & rhs.0)
            }
        }

        impl std::ops::BitAndAssign for $self {
            fn bitand_assign(&mut self, rhs: Self) {
                self.0 &= rhs.0
            }
        }

        impl std::ops::BitOr for $self {
            type Output = Self;
            fn bitor(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 | rhs.0)
            }
        }

        impl std::ops::BitOrAssign for $self {
            fn bitor_assign(&mut self, rhs: Self) {
                self.0 |= rhs.0
            }
        }

        impl std::ops::BitXor for $self {
            type Output = Self;
            fn bitxor(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 ^ rhs.0)
            }
        }

        impl std::ops::BitXorAssign for $self {
            fn bitxor_assign(&mut self, rhs: Self) {
                self.0 ^= rhs.0
            }
        }

        impl std::ops::Mul for $self {
            type Output = Self;
            fn mul(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 * rhs.0)
            }
        }

        impl std::ops::MulAssign for $self {
            fn mul_assign(&mut self, rhs: Self) {
                self.0 *= rhs.0
            }
        }

        impl std::ops::RemAssign for $self {
            fn rem_assign(&mut self, rhs: Self) {
                self.0 %= rhs.0
            }
        }

        impl std::ops::Sub for $self {
            type Output = Self;
            fn sub(self, rhs: Self) -> Self::Output {
                <$self>::from(self.0 - rhs.0)
            }
        }

        impl std::ops::SubAssign for $self {
            fn sub_assign(&mut self, rhs: Self) {
                self.0 -= rhs.0
            }
        }

        impl From<u8> for $self {
            fn from(value: u8) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<u16> for $self {
            fn from(value: u16) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<u32> for $self {
            fn from(value: u32) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<u64> for $self {
            fn from(value: u64) -> Self {
                <$self>::new(value * Self::FACTOR)
            }
        }

        impl From<u128> for $self {
            fn from(value: u128) -> Self {
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<i8> for $self {
            fn from(value: i8) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<i16> for $self {
            fn from(value: i16) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<i32> for $self {
            fn from(value: i32) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<i64> for $self {
            fn from(value: i64) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64 * Self::FACTOR)
            }
        }

        impl From<i128> for $self {
            fn from(value: i128) -> Self {
                let value = if value.is_negative() { -value } else { value };
                <$self>::new(value as u64)
            }
        }

        impl From<f32> for $self {
            /// Creates this unit from the absoloute value of a [f64].
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or an equivalent From trait.")]
            fn from(value: f32) -> Self {
                let value = if value.is_sign_negative() {
                    -value
                } else {
                    value
                };
                <$self>::new((value * Self::FACTOR as f32) as u64)
            }
        }

        impl From<f64> for $self {
            /// Creates this unit from the absoloute value of a [f64].
            ///
            #[doc = concat!("Note: this function takes in a direct amount of the unit, if you want to create ", stringify!($self), " from bytes use [`", stringify!($self), "::new`] or an equivalent From trait.")]
            fn from(value: f64) -> Self {
                let value = if value.is_sign_negative() {
                    -value
                } else {
                    value
                };
                <$self>::new((value * Self::FACTOR as f64) as u64)
            }
        }

        impl std::fmt::Debug for $self {
            fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                write!(f, "{}({})", stringify!($self), self.0)
            }
        }

        impl std::fmt::Display for $self {
            /// This displays the amout of bytes. If you want to display the unit directly use
            #[doc= concat!("[`", stringify!($self), "::as_f64()`] or a similar casting method.")]
            fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                write!(f, "{}", self.0)
            }
        }

        impl std::ops::Deref for $self {
            type Target = u64;

            fn deref(&self) -> &Self::Target {
                &self.0
            }
        }

        impl std::ops::DerefMut for $self {
            fn deref_mut(&mut self) -> &mut Self::Target {
                &mut self.0
            }
        }


        impl $crate::MemoryUnit for $self {
            fn as_bits(&self) -> u128 {
                self.0 as u128 * $crate::constants::BYTE as u128
            }

            fn as_byte(&self) -> Byte {
                $crate::units::Byte::new(self.0)
            }

            fn as_kilo_byte(&self) -> $crate::units::KiloByte {
                $crate::units::KiloByte::new(self.0)
            }

            fn as_mega_byte(&self) -> $crate::units::MegaByte {
                $crate::units::MegaByte::new(self.0)
            }

            fn as_giga_byte(&self) -> $crate::units::GigaByte {
                $crate::units::GigaByte::new(self.0)
            }

            fn as_tera_byte(&self) -> $crate::units::TeraByte {
                $crate::units::TeraByte::new(self.0)
            }

            fn as_peta_byte(&self) -> $crate::units::PetaByte {
                $crate::units::PetaByte::new(self.0)
            }
        }
    };
}

pub(crate) use data_impl;