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
//
// This file defines trait `DecastMem`
//
use crate::{Cast, Endian, Flip, include_doc};
use core::{mem, ptr};
#[cfg(doc)]
use crate::BE;
#[doc = include_doc!("trait_decast_mem.md")]
pub trait DecastMem {
///
/// Decasts a value of type `T` in `value` as a byte representation
/// of type `T`.
///
/// If successful, the resulting bytes are saved to the head of
/// `self` and the number of the bytes is returned in
/// [`Some`]`(usize)`. On failure, [`None`] is returned.
///
/// The endianness of the resulting bytes is the same as the
/// endianness of the value in `value`. In typical cases, both
/// are the native endianness.
///
fn decast<T: Cast>(&mut self, value: &T) -> Option<usize>;
///
/// Decasts a value of type `T` in `value` as a byte representation
/// of type `T`.
///
/// If successful, the resulting bytes are saved to the head of
/// `self` and the number of the bytes is returned in
/// [`Some`]`(usize)`. On failure, [`None`] is returned.
///
/// The resulting bytes are in `endian` on the assumption that the
/// value in `value` is in native-endian.
///
fn decastf<T: Cast + Flip>(
&mut self,
value: &T,
endian: Endian,
) -> Option<usize>;
///
/// Decasts values of type `T` in `slice` as byte representations
/// of type `T`.
///
/// If successful, the resulting bytes are saved to the head of
/// `self` and the number of the bytes is returned in
/// [`Some`]`(usize)`. On failure, [`None`] is returned.
///
/// The endianness of the resulting bytes is the same as the
/// endianness of the values in `slice`. In typical cases, both
/// are the native endianness.
///
fn decasts<T: Cast>(&mut self, slice: &[T]) -> Option<usize>;
///
/// Decasts values of type `T` in `slice` as byte representations
/// of type `T`.
///
/// If successful, the resulting bytes are saved to the head of
/// `self` and the number of the bytes is returned in
/// [`Some`]`(usize)`. On failure, [`None`] is returned.
///
/// The resulting bytes are in `endian` on the assumption that the
/// value in `value` is in native-endian.
///
fn decastsf<T: Cast + Flip>(
&mut self,
slice: &[T],
endian: Endian,
) -> Option<usize>;
///
/// Is equivalent to [`DecastMem::decasts`].
///
/// This method will be deprecated in a future release.
///
#[cfg(feature = "alloc")]
fn decastv<T: Cast>(&mut self, slice: &[T]) -> Option<usize>;
///
/// Is equivalent to [`DecastMem::decastsf`].
///
/// This method will be deprecated in a future release.
///
#[cfg(feature = "alloc")]
fn decastvf<T: Cast + Flip>(
&mut self,
slice: &[T],
endian: Endian,
) -> Option<usize>;
}
impl DecastMem for [u8] {
#[inline]
fn decast<T: Cast>(&mut self, value: &T) -> Option<usize> {
let nbytes = mem::size_of_val(value);
if self.len() >= nbytes {
unsafe {
// SAFETY: The following function call to
// `ptr::copy_nonoverlapping` is safe because those types that
// implement trait Cast can be duplicated simply by copying
// bits by the definition of trait Cast.
ptr::copy_nonoverlapping::<u8>(
value as *const T as *const u8,
self.as_mut_ptr(),
nbytes,
);
}
Some(nbytes)
} else {
None
}
}
#[inline]
fn decastf<T: Cast + Flip>(
&mut self,
value: &T,
endian: Endian,
) -> Option<usize> {
if !endian.need_swap() {
// The endianness must not be reversed.
self.decast::<T>(value)
} else {
// The endianness must be reversed.
self.decast::<T>(&value.flip_val_swapped())
}
}
#[inline]
fn decasts<T: Cast>(&mut self, slice: &[T]) -> Option<usize> {
let nbytes = mem::size_of_val(slice);
if self.len() >= nbytes {
unsafe {
// SAFETY: The following function call to
// `ptr::copy_nonoverlapping` is safe because those types that
// implement trait Cast can be duplicated simply by copying
// bits by the definition of trait Cast.
ptr::copy_nonoverlapping::<u8>(
slice.as_ptr() as *const u8,
self.as_mut_ptr(),
nbytes,
);
}
Some(nbytes)
} else {
None
}
}
#[inline]
fn decastsf<T: Cast + Flip>(
&mut self,
slice: &[T],
endian: Endian,
) -> Option<usize> {
if !endian.need_swap() {
// The endianness must not be reversed.
self.decasts::<T>(slice)
} else {
// The endianness must be reversed.
self.decastsf_swapped(slice)
}
}
#[cfg(feature = "alloc")]
#[inline]
fn decastv<T: Cast>(&mut self, slice: &[T]) -> Option<usize> {
// `decastv` is equivalent to `decasts`.
self.decasts::<T>(slice)
}
#[cfg(feature = "alloc")]
#[inline]
fn decastvf<T: Cast + Flip>(
&mut self,
slice: &[T],
endian: Endian,
) -> Option<usize> {
// `decastvf` is equivalent to `decastsf`.
self.decastsf::<T>(slice, endian)
}
}
///
/// Provides internal methods for trait `DecastMem`.
///
trait DecastMemInternal {
///
/// Decasts values in `slice` as their byte representations.
///
/// If successful, the resulting bytes are saved to the head of
/// `self` and the number of the bytes is returned in
/// [`Some`]`(usize)`. On failure, [`None`] is returned.
///
/// The endianness of the resulting bytes is the swapped
/// endianness of the values in `self`.
///
fn decastsf_swapped<T: Cast + Flip>(
&mut self,
slice: &[T],
) -> Option<usize>;
}
impl DecastMemInternal for [u8] {
fn decastsf_swapped<T: Cast + Flip>(
&mut self,
slice: &[T],
) -> Option<usize> {
if self.len() >= mem::size_of_val(slice) {
let mut off = 0;
for elem in slice {
// Read values from `elem` in `slice`, reverse
// their endiannesses, then save the resulting
// byte representations to `self`.
self[off ..].decast::<T>(&elem.flip_val_swapped())?;
off += mem::size_of_val(elem);
}
Some(off)
} else {
None
}
}
}