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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
//! Defines traits and implementations for constructing places in memory
//! with specified arguments.
use core::{alloc::Allocator, fmt, ops::Deref, pin::Pin};
use crate::{
init::{IntoInit, IntoInitPin},
place::Place,
};
/// A place in memory that can be created with specified arguments.
///
/// This trait is rarely used directly. Instead, use one of the more specific
/// place construction traits such as [`PlaceNew`], [`PlaceNewIn`],
/// or [`PlaceSlice`]. See the trait list in the module documentation for more
/// details.
///
/// # Arguments
///
/// `Args` is a bunch of arguments required to create the place itself,
/// unrelated to initialization of the place's content. Defaults to `()`.
pub trait PlaceConstruct<Args = ()>: Sized + Deref {
/// The uninitialized place type that can be constructed into `Self`.
type Uninit: Place<Self::Target, Init = Self>;
/// The error type that can occur during construction.
type Error;
/// Tries to create a new uninitialized place with specified arguments.
///
/// # Errors
///
/// If the creation fails, this method returns an error.
fn try_new_uninit_in(args: Args) -> Result<Self::Uninit, Self::Error>;
/// Creates a new uninitialized place with specified arguments.
///
/// # Panics
///
/// This method will panic if the creation fails.
fn new_uninit_in(args: Args) -> Self::Uninit
where
Self::Error: fmt::Debug,
{
Self::try_new_uninit_in(args).expect("failed to allocate a new uninitialized place")
}
}
macro_rules! place_construct {
(@TARGET) => [Self::Target];
(@TARGET $target:ty) => [$target];
{$(
$(#[$ty_meta:meta])*
$v:vis trait $ty:ident $([$($g:tt)*] $(where [$($w:tt)*])?)? = {
$(args: { $($arg_name:ident: $arg_ty:ty),* $(,)? },)?
$(items: { $($(#[$item_meta:meta])* $item_name:ident: [$($item_bounds:tt)*]),* $(,)? },)?
$(target: $target:ty as $target_g:ty,)?
funcs: [
$(#[$try_new_meta:meta])*
$try_new:ident,
$(#[$new_meta:meta])*
$new:ident,
$(#[$try_pin_meta:meta])*
$try_pin:ident,
$(#[$pin_meta:meta])*
$pin:ident $(,)?
]
};
)*} => {$(
$(#[$ty_meta])*
#[allow(unused_parens, clippy::double_parens)]
$v trait $ty$(<$($g)*>)?: PlaceConstruct<($($($arg_ty),*)?) $(, Target = $target)?>
$($(where $($w)*)?)?
{
$($(
$(#[$item_meta])*
type $item_name: $($item_bounds)*;
)*)?
$(#[$try_new_meta])*
fn $try_new<M, I>($($($arg_name: $arg_ty,)*)? init: I) -> Result<Self, I::Error>
where
I: IntoInit<
place_construct![@TARGET $($target)?],
M,
>,
I::Error: From<Self::Error>,
{
let place = Self::try_new_uninit_in(($($($arg_name),*)?))?;
place.try_init(init).map_err(|(e, _)| e)
}
$(#[$new_meta])*
fn $new<M, I>($($($arg_name: $arg_ty,)*)? init: I) -> Self
where
Self::Error: fmt::Debug,
I: IntoInit<
place_construct![@TARGET $($target)?],
M,
Error: fmt::Debug
>,
{
Self::new_uninit_in(($($($arg_name),*)?)).init(init)
}
$(#[$try_pin_meta])*
fn $try_pin<M, I>($($($arg_name: $arg_ty,)*)? init: I) -> Result<Pin<Self>, I::Error>
where
Self: Deref,
I: IntoInitPin<place_construct![@TARGET $($target)?], M>,
I::Error: From<Self::Error>,
{
let place = Self::try_new_uninit_in(($($($arg_name),*)?))?;
place.try_init_pin(init).map_err(|(e, _)| e)
}
$(#[$pin_meta])*
fn $pin<M, I>($($($arg_name: $arg_ty,)*)? init: I) -> Pin<Self>
where
Self: Deref,
Self::Error: fmt::Debug,
I: IntoInitPin<place_construct![@TARGET $($target)?], M, Error: fmt::Debug>,
{
Self::new_uninit_in(($($($arg_name),*)?)).init_pin(init)
}
}
#[allow(unused_parens, clippy::double_parens)]
impl<
$($($item_name: $($item_bounds)*,)*)?
P: PlaceConstruct<($($($arg_ty),*)?) $(, Target = $target_g)?>,
$($($($w)*)?)?
> $ty $(<$($g)*>)? for P {
$($(
type $item_name = $item_name;
)*)?
}
)*};
}
place_construct! {
/// A place that can be constructed by default methods.
pub trait PlaceNew = {
funcs: [
/// Tries to create a new place by initializing it with the
/// given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::with(|| 42).adapt_err::<AllocError>();
/// let b = Box::try_new_with(init).unwrap();
/// assert_eq!(*b, 42);
/// ```
try_new_with,
/// Creates a new place by initializing it with the given
/// initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let b = Box::new_with(init::with(|| 42));
/// assert_eq!(*b, 42);
/// ```
new_with,
/// Tries to create a new pinned place by initializing it with
/// the given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::with(|| 42).adapt_err::<AllocError>();
/// let b = Box::try_pin_with(init).unwrap();
/// assert_eq!(*b, 42);
/// ```
try_pin_with,
/// Creates a new pinned place by initializing it with the given
/// initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let b = Box::pin_with(init::with(|| 42));
/// assert_eq!(*b, 42);
/// ```
pin_with,
]
};
/// A place that can be constructed with a specified argument.
pub trait PlaceNewIn[A] where [A:] = {
args: { arg: A },
funcs: [
/// Tries to create a new place by initializing it with the
/// given initializer and argument.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::{AllocError, Global};
///
/// let init = init::with(|| 42).adapt_err::<AllocError>();
/// let b = Box::try_new_within(Global, init).unwrap();
/// assert_eq!(*b, 42);
/// ```
try_new_within,
/// Creates a new place by initializing it with the given
/// initializer and argument.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::Global;
///
/// let b = Box::new_within(Global, init::with(|| 42));
/// assert_eq!(*b, 42);
/// ```
new_within,
/// Tries to create a new pinned place by initializing it with the
/// given initializer and argument.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::{AllocError, Global};
///
/// let init = init::with(|| 42).adapt_err::<AllocError>();
/// let b = Box::try_pin_within(Global, init).unwrap();
/// assert_eq!(*b, 42);
/// ```
try_pin_within,
/// Creates a new pinned place by initializing it with the given
/// initializer and argument.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::Global;
///
/// let b = Box::pin_within(Global, init::with(|| 42));
/// assert_eq!(*b, 42);
/// ```
pin_within,
]
};
/// A place that can be constructed as a slice with a specified length.
pub trait PlaceSlice = {
args: { len: usize },
items: {
/// The element type of the slice.
Item: [],
},
target: [Self::Item] as [Item],
funcs: [
/// Tries to create a new slice place by initializing it with the
/// given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::repeat(42).adapt_err::<AllocError>();
/// let slice = Box::try_new_slice(3, init).unwrap();
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
try_new_slice,
/// Creates a new slice place by initializing it with the given
/// initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let slice = Box::new_slice(3, init::repeat(42));
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
new_slice,
/// Tries to create a new pinned slice place by initializing it with
/// the given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::repeat(42).adapt_err::<AllocError>();
/// let slice = Box::try_pin_slice(3, init).unwrap();
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
try_pin_slice,
/// Creates a new pinned slice place by initializing it with the
/// given initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let slice = Box::pin_slice(3, init::repeat(42));
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
pin_slice,
]
};
/// A place that can be constructed as a slice with a specified length
/// and allocator.
pub trait PlaceSliceIn[A] where [A: Allocator] = {
args: { len: usize, alloc: A },
items: {
/// The element type of the slice.
Item: [],
},
target: [Self::Item] as [Item],
funcs: [
/// Tries to create a new slice place by initializing it with the
/// given initializer and allocator.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let a = std::alloc::Global;
/// let init = init::repeat(42).adapt_err::<AllocError>();
/// let slice = Box::try_new_slice_in(3, a, init).unwrap();
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
try_new_slice_in,
/// Creates a new slice place by initializing it with the given
/// initializer and allocator.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
///
/// let a = std::alloc::Global;
/// let slice = Box::new_slice_in(3, a, init::repeat(42));
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
new_slice_in,
/// Tries to create a new pinned slice place by initializing it with
/// the given initializer and allocator.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let a = std::alloc::Global;
/// let init = init::repeat(42).adapt_err::<AllocError>();
/// let slice = Box::try_pin_slice_in(3, a, init).unwrap();
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
try_pin_slice_in,
/// Creates a new pinned slice place by initializing it with the
/// given initializer and allocator.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
///
/// let a = std::alloc::Global;
/// let slice = Box::pin_slice_in(3, a, init::repeat(42));
/// assert_eq!(&*slice, &[42, 42, 42]);
/// ```
pin_slice_in,
]
};
/// A place that can be constructed as a string with a specified length.
pub trait PlaceStr = {
args: { len: usize },
target: str as str,
funcs: [
/// Tries to create a new string place by initializing it with the
/// given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::str("hello").map_err(|_| AllocError);
/// let s = Box::try_new_str(5, init).unwrap();
/// assert_eq!(&*s, "hello");
/// ```
try_new_str,
/// Creates a new string place by initializing it with the given
/// initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let s = Box::new_str(5, "hello");
/// assert_eq!(&*s, "hello");
/// ```
new_str,
/// Tries to create a new pinned string place by initializing it with
/// the given initializer.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let init = init::str("hello").map_err(|_| AllocError);
/// let s = Box::try_pin_str(5, init).unwrap();
/// assert_eq!(&*s, "hello");
/// ```
try_pin_str,
/// Creates a new pinned string place by initializing it with the
/// given initializer.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// use placid::prelude::*;
/// let s = Box::pin_str(5, "hello");
/// assert_eq!(&*s, "hello");
/// ```
pin_str,
]
};
/// A place that can be constructed as a string with a specified length
/// and allocator.
pub trait PlaceStrIn[A] where [A: Allocator] = {
args: { len: usize, alloc: A },
target: str as str,
funcs: [
/// Tries to create a new string place by initializing it with the
/// given initializer and allocator.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let a = std::alloc::Global;
/// let init = init::str("hello").map_err(|_| AllocError);
/// let s = Box::try_new_str_in(5, a, init).unwrap();
/// assert_eq!(&*s, "hello");
/// ```
try_new_str_in,
/// Creates a new string place by initializing it with the given
/// initializer and allocator.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
///
/// let a = std::alloc::Global;
/// let s = Box::new_str_in(5, a, "hello");
/// assert_eq!(&*s, "hello");
/// ```
new_str_in,
/// Tries to create a new pinned string place by initializing it with
/// the given initializer and allocator.
///
/// # Errors
///
/// If place creation or the initialization fails, this method
/// returns an error.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
/// use std::alloc::AllocError;
///
/// let a = std::alloc::Global;
/// let init = init::str("hello").map_err(|_| AllocError);
/// let s = Box::try_pin_str_in(5, a, init).unwrap();
/// assert_eq!(&*s, "hello");
/// ```
try_pin_str_in,
/// Creates a new pinned string place by initializing it with the
/// given initializer and allocator.
///
/// # Panics
///
/// This method will panic if place creation or the initialization
/// fails.
///
/// # Examples
///
/// ```rust
/// #![feature(allocator_api)]
/// use placid::prelude::*;
///
/// let a = std::alloc::Global;
/// let s = Box::pin_str_in(5, a, "hello");
/// assert_eq!(&*s, "hello");
/// ```
pin_str_in,
]
};
}