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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
use std::cmp::min;
use std::ptr::{slice_from_raw_parts, slice_from_raw_parts_mut};
use imgref::Img;
use crate::{slice_ptr_len, slice_ptr_len_mut};
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub struct IterPtr<T>(*const [T], usize);
unsafe impl<T: Sync> Send for IterPtr<T> {}
unsafe impl<T> Sync for IterPtr<T> {}
impl IterPtr<()> {
/// This crate's iterators are double-ended, so there must be an element on
/// both sides of the slice.
///
/// Even if they weren't, trailing stride is not even guaranteed, meaning
/// that relying on it would be a mistake. Offsetting into it would be UB.
/// Instead we just rely on elements from first to last existing, and
/// everything around them is forbidden territory.
#[doc(hidden)]
#[inline(always)]
pub(crate) fn is_slice_perfect(len: usize, stride: usize) -> bool {
len == 0 || stride == 1 || len % stride == 1
}
/// It's possible to construct `Img`s with any dimensions over any slice,
/// which means the slice might not have enough elements, even if the `Img`
/// says it does.
///
/// If the slice has enough elements, does nothing. Else, panics with a
/// descriptive message.
#[doc(hidden)]
#[inline(always)]
pub(crate) fn assert_slice_enough<T>(img: Img<*const [T]>) {
let (width, height, stride) = (img.width(), img.height(), img.stride());
let needed = stride * (height - 1) + width;
let got = unsafe { slice_ptr_len(*img.buf()) };
if got < needed {
panic!("image (with width {width}, height {height} and stride {stride}) backing buffer too short; needed {needed} elements, but only got {got}");
} else if width > stride {
panic!("image (with width {width}, height {height} and stride {stride}) width is greater than stride")
}
}
}
impl<T> IterPtr<T> {
/// Creates a new [`IterPtr`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new(slice: *const [T], stride: usize) -> Self {
assert!(IterPtr::is_slice_perfect(slice_ptr_len(slice), stride));
Self::new_unchecked(slice, stride)
}
/// Creates a new [`IterPtr`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// UB if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_unchecked(slice: *const [T], stride: usize) -> Self {
Self(slice, stride)
}
/// Creates a new [`IterPtr`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_slice(slice: &[T], stride: usize) -> Self {
Self::new(slice as *const [T], stride)
}
/// Creates a new [`IterPtr`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// UB if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_slice_unchecked(slice: &[T], stride: usize) -> Self {
Self::new_unchecked(slice as *const [T], stride)
}
/// Creates a new [`IterPtr`] over the specified buffer row.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the given row is out of bounds.
#[inline]
pub unsafe fn row<S: AsRef<[T]>>(buf: &Img<S>, row: usize) -> Self {
let (width, height, stride) = (buf.width(), buf.height(), buf.stride());
let buf = buf.buf().as_ref() as *const [T];
Self::row_ptr(Img::new_stride(buf, width, height, stride), row)
}
/// Creates a new [`IterPtr`] over the specified buffer row.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the provided buffer has a width and height too large to fit in
/// its backing store.
///
/// Panics if the given row is out of bounds.
#[inline]
pub unsafe fn row_ptr(buf: Img<*const [T]>, row: usize) -> Self {
IterPtr::assert_slice_enough(buf);
assert!(row < buf.height());
Self::row_ptr_unchecked(buf, row)
}
/// Creates a new [`IterPtr`] over the specified buffer row.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// The given row must not be out of bounds.
#[inline]
pub unsafe fn row_ptr_unchecked(buf: Img<*const [T]>, row: usize) -> Self {
let slice = {
let data = buf.buf().cast::<T>().add(row * buf.stride());
let len = buf.width();
slice_from_raw_parts(data, len)
};
Self::new_unchecked(slice, 1)
}
/// Creates a new [`IterPtr`] over the specified buffer col.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the given col is out of bounds.
#[inline]
pub unsafe fn col<S: AsRef<[T]>>(buf: &Img<S>, col: usize) -> Self {
let (width, height, stride) = (buf.width(), buf.height(), buf.stride());
let buf = buf.buf().as_ref() as *const [T];
Self::col_ptr(Img::new_stride(buf, width, height, stride), col)
}
/// Creates a new [`IterPtr`] over the specified buffer col.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// # Panics
///
/// Panics if the provided buffer has a width and height too large to fit in
/// its backing store.
///
/// Panics if the given col is out of bounds.
#[inline]
pub unsafe fn col_ptr(buf: Img<*const [T]>, col: usize) -> Self {
IterPtr::assert_slice_enough(buf);
assert!(col < buf.width());
Self::col_ptr_unchecked(buf, col)
}
/// Creates a new [`IterPtr`] over the specified buffer col.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtr`].
///
/// The given col must not be out of bounds.
#[inline]
pub unsafe fn col_ptr_unchecked(buf: Img<*const [T]>, col: usize) -> Self {
let slice = {
let data = buf.buf().cast::<T>().add(col);
let len = buf.stride() * (buf.height() - 1) + 1;
slice_from_raw_parts(data, len)
};
Self::new_unchecked(slice, buf.stride())
}
}
impl<T> Iterator for IterPtr<T> {
type Item = *const T;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
let len = unsafe { slice_ptr_len(self.0) };
if len > 0 {
let first = self.0.cast::<T>();
self.0 = unsafe {
let data = first.add(min(self.1, len));
let len = len.saturating_sub(self.1);
slice_from_raw_parts(data, len)
};
Some(first)
} else {
None
}
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
let len = self.len();
(len, Some(len))
}
}
impl<T> DoubleEndedIterator for IterPtr<T> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
let len = unsafe { slice_ptr_len(self.0) };
if len > 0 {
let first = self.0.cast::<T>();
self.0 = {
let data = first;
let len = len.saturating_sub(self.1);
slice_from_raw_parts(data, len)
};
Some(unsafe { first.add(len - 1) })
} else {
None
}
}
}
impl<T> ExactSizeIterator for IterPtr<T> {
#[inline]
fn len(&self) -> usize {
let len = unsafe { slice_ptr_len(self.0) };
(len + (self.1 - 1)) / self.1
}
}
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub struct IterPtrMut<T>(*mut [T], usize);
unsafe impl<T: Send> Send for IterPtrMut<T> {}
unsafe impl<T> Sync for IterPtrMut<T> {}
impl IterPtrMut<()> {
#[doc(hidden)]
#[inline(always)]
pub(crate) fn assert_slice_enough<T>(img: Img<*mut [T]>) {
use crate::traits::ImgAsPtr;
IterPtr::assert_slice_enough(img.as_ptr())
}
}
impl<T> IterPtrMut<T> {
/// Creates a new [`IterPtrMut`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new(slice: *mut [T], stride: usize) -> Self {
assert!(IterPtr::is_slice_perfect(slice_ptr_len_mut(slice), stride));
Self::new_unchecked(slice, stride)
}
/// Creates a new [`IterPtrMut`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// UB if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_unchecked(slice: *mut [T], stride: usize) -> Self {
Self(slice, stride)
}
/// Creates a new [`IterPtrMut`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_slice(slice: &mut [T], stride: usize) -> Self {
Self::new(slice as *mut [T], stride)
}
/// Creates a new [`IterPtrMut`] over the specified slice and stride.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// UB if the given slice does not start and end at an element. That is,
/// both the first and last elements of the slice must be elements that
/// would be returned by this iterator. Do not include trailing stride.
#[inline]
pub unsafe fn new_slice_unchecked(slice: &mut [T], stride: usize) -> Self {
Self::new_unchecked(slice as *mut [T], stride)
}
/// Creates a new [`IterPtrMut`] over the specified buffer row.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the given row is out of bounds.
#[inline]
pub unsafe fn row<S: AsMut<[T]>>(buf: &mut Img<S>, row: usize) -> Self {
let (width, height, stride) = (buf.width(), buf.height(), buf.stride());
let buf = buf.buf_mut().as_mut() as *mut [T];
Self::row_ptr(Img::new_stride(buf, width, height, stride), row)
}
/// Creates a new [`IterPtrMut`] over the specified buffer row.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the provided buffer has a width and height too large to fit in
/// its backing store.
///
/// Panics if the given row is out of bounds.
#[inline]
pub unsafe fn row_ptr(buf: Img<*mut [T]>, row: usize) -> Self {
IterPtrMut::assert_slice_enough(buf);
assert!(row < buf.height());
Self::row_ptr_unchecked(buf, row)
}
/// Creates a new [`IterPtrMut`] over the specified buffer row.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// The given row must not be out of bounds.
#[inline]
pub unsafe fn row_ptr_unchecked(buf: Img<*mut [T]>, row: usize) -> Self {
let slice = {
let data = buf.buf().cast::<T>().add(row * buf.stride());
let len = buf.width();
slice_from_raw_parts_mut(data, len)
};
Self::new_unchecked(slice, 1)
}
/// Creates a new [`IterPtrMut`] over the specified buffer col.
///
/// # Safety
///
/// The given buffer must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the given col is out of bounds.
#[inline]
pub unsafe fn col<S: AsMut<[T]>>(buf: &mut Img<S>, col: usize) -> Self {
let (width, height, stride) = (buf.width(), buf.height(), buf.stride());
let buf = buf.buf_mut().as_mut() as *mut [T];
Self::col_ptr(Img::new_stride(buf, width, height, stride), col)
}
/// Creates a new [`IterPtrMut`] over the specified buffer col.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// # Panics
///
/// Panics if the provided buffer has a width and height too large to fit in
/// its backing store.
///
/// Panics if the given col is out of bounds.
#[inline]
pub unsafe fn col_ptr(buf: Img<*mut [T]>, col: usize) -> Self {
IterPtrMut::assert_slice_enough(buf);
assert!(col < buf.width());
Self::col_ptr_unchecked(buf, col)
}
/// Creates a new [`IterPtrMut`] over the specified buffer col.
///
/// # Safety
///
/// The given slice must outlive this [`IterPtrMut`].
///
/// The given col must not be out of bounds.
#[inline]
pub unsafe fn col_ptr_unchecked(buf: Img<*mut [T]>, col: usize) -> Self {
let slice = {
let data = buf.buf().cast::<T>().add(col);
let len = buf.stride() * (buf.height() - 1) + 1;
slice_from_raw_parts_mut(data, len)
};
Self::new_unchecked(slice, buf.stride())
}
}
impl<T> Iterator for IterPtrMut<T> {
type Item = *mut T;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
let len = unsafe { slice_ptr_len_mut(self.0) };
if len > 0 {
let first = self.0.cast::<T>();
self.0 = unsafe {
let data = first.add(min(self.1, len));
let len = len.saturating_sub(self.1);
slice_from_raw_parts_mut(data, len)
};
Some(first)
} else {
None
}
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
let len = self.len();
(len, Some(len))
}
}
impl<T> DoubleEndedIterator for IterPtrMut<T> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
let len = unsafe { slice_ptr_len_mut(self.0) };
if len > 0 {
let first = self.0.cast::<T>();
self.0 = {
let data = first;
let len = len.saturating_sub(self.1);
slice_from_raw_parts_mut(data, len)
};
Some(unsafe { first.add(len - 1) })
} else {
None
}
}
}
impl<T> ExactSizeIterator for IterPtrMut<T> {
#[inline]
fn len(&self) -> usize {
let len = unsafe { slice_ptr_len_mut(self.0) };
(len + (self.1 - 1)) / self.1
}
}