polonius_the_crab/macros.rs
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 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
#[allow(unused)]
use super::{
exit_polonius,
polonius,
polonius_break,
polonius_break_dependent,
polonius_continue,
polonius_loop,
polonius_return,
polonius_try,
};
/// Convenient entry-point to this crate's logic.
///
/// - See the [top-level docs][crate] for more info.
///
/// ## Usage
///
/** - ```rust
use ::polonius_the_crab::prelude::*;
# fn foo (arg: &mut ()) -> &mut () {
let mut a_mut_binding: &mut _ = // …
# arg;
# type SomeRetType<'__> = &'__ mut ();
# let some_cond = || true;
# let some_other_cond = || true;
# use ::core::convert::identity as stuff;
// the lifetime placeholder has to be
// named `'polonius` !!
// vvvvvvvvv
let x = polonius!(|a_mut_binding| -> SomeRetType<'polonius> {
let some_dependent_type = stuff(a_mut_binding);
if some_cond() {
polonius_return!(some_dependent_type);
}
if some_other_cond() {
exit_polonius!(42);
unreachable!();
}
42
});
assert_eq!(x, 42);
stuff(a_mut_binding) // macro gave it back
// …
# }
``` */
///
/// ### Generic parameters
///
/// They Just Work™.
///
/** - ```rust
use ::polonius_the_crab::prelude::*;
fn get_or_insert<'map, 'v, K, V : ?Sized> (
mut map: &'map mut ::std::collections::HashMap<K, &'v V>,
key: &'_ K,
fallback_value: &'v V,
) -> &'map &'v V
where
K : ::core::hash::Hash + Eq + Clone,
V : ::core::fmt::Debug,
{
polonius!(|map| -> &'polonius &'v V {
if let Some(v) = map.get(key) {
dbg!(v);
polonius_return!(v);
}
});
map.insert(key.clone(), fallback_value);
&map[key]
}
``` */
#[macro_export]
macro_rules! polonius {(
|$var:ident $(,)?| -> $Ret:ty
$body:block
$(,)?
) => (
match
$crate::polonius::<
_,
_,
$crate::ForLt!(<'polonius> = $crate::ඞ::Dependent<$Ret>),
>(
$var,
|mut $var: &mut _| {
// silence the unused `mut` warning.
#[allow(clippy::self_assignment)] {
$var = $var;
}
$crate::PoloniusResult::Owned(
if true
$body
else {
// avoid a dead-code warning
$crate::ඞ::None.unwrap()
}
)
},
)
{
| $crate::PoloniusResult::Borrowing(ret) => return ret.return_no_break(),
| $crate::PoloniusResult::Owned { value, input_borrow, .. } => {
$var = input_borrow;
value
},
}
)}
impl<T> ඞ::Dependent<T> {
pub
fn return_no_break (self)
-> T
{
match self {
| Self::Return(it) => it,
| Self::Break(unreachable) => match unreachable {},
}
}
}
/// See [`polonius!`] for more info.
#[macro_export]
macro_rules! polonius_return {( $e:expr $(,)? ) => (
return $crate::PoloniusResult::Borrowing($crate::ඞ::Dependent::Return($e))
)}
/// See [`polonius!`] for more info.
#[macro_export]
macro_rules! exit_polonius {( $($e:expr $(,)?)? ) => (
return $crate::PoloniusResult::Owned(
($($e ,)? (),).0
)
)}
/// Perform the `?` operation inside a [`polonius!`] or [`polonius_loop!`] block.
///
/// - Only [`Result`] and [`Option`] are supported (_e.g._, no `ControlFlow`).
///
/// See [`polonius!`] for more info.
///
/// ## Example
///
/** - ```rust
use {
::polonius_the_crab::prelude::*,
::std::collections::HashMap,
};
enum Error { /* … */ }
fn fallible_operation (value: &'_ i32)
-> Result<(), Error>
{
// …
# Ok(())
}
fn get_or_insert (
mut map: &'_ mut HashMap<i32, i32>,
) -> Result<&'_ i32, Error>
{
polonius!(|map| -> Result<&'polonius i32, Error> {
if let Some(value) = map.get(&22) {
// fallible_operation(value)?;
polonius_try!(fallible_operation(value));
polonius_return!(Ok(value));
}
});
map.insert(22, 42);
Ok(&map[&22])
}
``` */
#[macro_export]
macro_rules! polonius_try {( $e:expr $(,)? ) => (
match $crate::ඞ::Try::branch($e) {
| $crate::ඞ::Ok(it) => it,
| $crate::ඞ::Err(residual) => {
$crate::polonius_return!(
$crate::ඞ::Residual::with_output(residual)
)
},
}
)}
/// Convenience support for the `loop { … polonius!(…) }` pattern.
///
/// ### Example
///
/** - ```rust
#![forbid(unsafe_code)]
use {
::polonius_the_crab::{
prelude::*,
},
::std::{
collections::HashMap,
},
};
enum Value {
Alive(i32),
Daed,
}
// Notice how this example, *despite its usage of the fancy `.entry()` API
// of `HashMap`s*, still needs `polonius_the_crab` to work!
fn get_first_alive_from_base_or_insert (
mut map: &'_ mut HashMap<usize, Value>,
base: usize,
default_value: i32,
) -> &'_ i32
{
let mut idx = base;
// (loop {
polonius_loop!(|map| -> &'polonius i32 {
use ::std::collections::hash_map::*;
// return(
polonius_return!(
match map.entry(idx) {
| Entry::Occupied(entry) => match entry.into_mut() {
// Found a value!
| &mut Value::Alive(ref val) => val,
// "tombstone", keep searching
| &mut Value::Daed => {
idx += 1;
// continue;
polonius_continue!();
},
},
| Entry::Vacant(slot) => match slot.insert(Value::Alive(default_value)) {
| &mut Value::Alive(ref val) => val,
| &mut Value::Daed => unreachable!(),
},
}
);
});
unreachable!();
}
``` */
///
/// <details class="custom"><summary>Error message without <code>::polonius_the_crab</code></summary>
///
/** - ```rust ,compile_fail
# compile_error!("compiler error message"); /*
error[E0499]: cannot borrow `*map` as mutable more than once at a time
--> src/lib.rs:222:18
|
22 | mut map: &'_ mut HashMap<usize, Value>,
| - let's call the lifetime of this reference `'1`
...
33 | match map.entry(idx) {
| ^^^ `*map` was mutably borrowed here in the previous iteration of the loop
...
45 | | &mut Value::Alive(ref val) => val,
| --- returning this value requires that `*map` be borrowed for `'1`
# */
``` */
///
/// ___
///
/// </details>
///
/// ## `break`s
///
/// Whilst `return` and `continue`s inside a [`polonius_loop!`] invocation are
/// quite straight-forward, `break` is actually more subtle and difficult
/// to use.
///
/// <details class="custom"><summary><span class="summary-box"><span>Click to show</span></span></summary>
///
/// Indeed, compare the `break` semantics of the following two snippets:
///
/** - ```rust ,ignore
let mut i = 0;
let found = loop {
match collection.get_mut(&i) {
Some(entry) => if entry.is_empty() {
break entry; // 👈
} else {
// …
},
None => i += 1,
}
};
``` */
///
/// _vs._
///
/** - ```rust ,ignore
let mut i = 0;
let position = loop {
match collection.get_mut(&i) {
Some(entry) => if entry.is_empty() {
break i; // 👈
} else {
// this requires polonius{,_the_crab} btw
return entry;
},
None => i += 1,
}
};
``` */
///
/// With the former, we have a **dependent** / borrowing-from-`collection`
/// `entry` value, which is the one we want to `break`:
///
/// - this requires `polonius{,_the_crab}` (independently of the presence of
/// return-of-dependent-value statements);
///
/// Whereas with the latter, we are `break`ing `i`, an integer/index, that is,
/// a **non-dependent** value.
///
/// - this wouldn't require `polonius{,_the_crab}` if it weren't for the
/// `return entry` statement which does return a dependent item.
///
/// So, with the former, we can't use `collection` while `entry` is alive[^1] ,
/// whereas with the latter we perfectly can.
///
/// All these differences, which are type-system-based, represent information
/// which is unaccessible for the `polonius…!` family of macros, so a
/// single/unified `polonius_break!` macro for both things, for instance, would
/// be unable to make such a difference: unnecessary compile errors would then
/// ensue!
///
/// The solution is then to feature not one but _two_ `break`-ing macros,
/// depending on whether the value which we want to break **depends on/borrows**
/// the `&'polonius mut`-borrowed state.
///
/// - If yes, use [`polonius_break_dependent!`];
///
/// - this, in turn, **requires an additional `'polonius`-infected
/// `break` type annotation** for the proper lifetimes to come into play:
///
/// <code>[polonius_loop!]\(|var| -\> … <span style="color: green; font-weight: bolder;">, break: … {</span></code>
///
/// - Else, use [`polonius_break!`] \(in which case the `break` type annotation
/// should not be used\).
///
/// ### Examples
///
/** - ```rust
use {
::polonius_the_crab::{
prelude::*,
},
::std::{
collections::HashMap,
},
};
fn break_entry (mut coll: &'_ mut HashMap<i32, String>)
-> &'_ mut String
{
let mut i = 0;
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
let found = polonius_loop!(|coll| -> _, break: &'polonius mut String {
match coll.get_mut(&i) {
Some(entry) => if entry.is_empty() {
polonius_break_dependent!(entry); // 👈
} else {
// …
},
None => i += 1,
}
});
found.push('!');
found
}
``` */
///
/// _vs._
///
/** - ```rust
use {
::polonius_the_crab::{
prelude::*,
},
::std::{
collections::HashMap,
},
};
fn break_index (mut coll: &'_ mut HashMap<i32, String>)
-> &'_ mut String
{
let mut i = 0;
let position = polonius_loop!(|coll| -> &'polonius mut String {
match coll.get_mut(&i) {
Some(entry) => if entry.is_empty() {
polonius_break!(i); // 👈
} else {
polonius_return!(entry);
},
None => i += 1,
}
});
// Re-using `coll` is fine if not using the `dependent` flavor of break.
coll.get_mut(&i).unwrap()
}
``` */
///
/// </details>
///
/// [^1]: In practice, with `polonius_break_dependent!` we won't be able to
/// reuse `coll` anymore in the function. If this is a problem for you, you'll
/// have no other choice but to refactor your loop into a smaller helper
/// function so as to replace that `break` with a `return`.
#[macro_export]
macro_rules! polonius_loop {(
| $var:ident $(,)? | -> $Ret:ty $(, break: $Break:ty)?
$body:block
$(,)?
) => (
loop {
match
$crate::polonius::<
_,
_,
$crate::ForLt!(<'polonius>
= $crate::ඞ::Dependent< $Ret $(, $Break)? >
),
>(
&mut *$var,
|mut $var: &mut _| {
// silence the unused `mut` warning.
#[allow(clippy::self_assignment)] {
$var = $var;
}
let () =
if true
$body
else {
// avoid a dead-code warning
$crate::ඞ::core::option::Option::None.unwrap()
}
;
$crate::polonius_continue!();
},
)
{
| $crate::PoloniusResult::Borrowing(dependent) => match dependent {
| $crate::ඞ::Dependent::Return(return_value) => return return_value,
| $crate::ඞ::Dependent::Break(break_value) => $crate::ඞ::first! {
$((
break if false { loop {} } else { break_value }
) (if $Break type else))? ({
let _: $crate::ඞ::dependent_break_without_break_ty_annotation = break_value;
match break_value {}
})
},
},
| $crate::PoloniusResult::Owned { value, input_borrow, .. } => {
$var = input_borrow;
match value {
| $crate::ඞ::core::ops::ControlFlow::Break(value) => {
break if false { loop {} } else { value };
},
| $crate::ඞ::core::ops::ControlFlow::Continue(()) => continue,
}
},
}
}
)}
/// `break` a **non-dependent value** out of a [`polonius_loop!`].
///
/// - When the value to `break` with is **a dependent value** / a value that
/// is _borrowing_ from the input, consider using
/// [`polonius_break_dependent!`] instead.
///
/// ## Example
///
/** - ```rust
use {
::std::{
collections::HashMap,
},
::polonius_the_crab::{
*,
},
};
fn example (mut map: &'_ mut HashMap<u8, i32>)
-> Option<&'_ mut i32>
{
let mut i = 0;
let x = polonius_loop!(|map| -> Option<&'polonius mut i32> {
if let Some(entry) = map.get_mut(&i) {
polonius_return!(Some(entry));
}
i += 1;
if i == 42 {
polonius_break!(i);
}
});
assert_eq!(x, i);
// Access to the "captured" `map` is still possible if using `polonius_break!`
// (and thus no `break: …` annotation on the "closure")
map.clear();
None
}
``` */
///
#[macro_export]
macro_rules! polonius_break {( $($e:expr $(,)?)? ) => (
return $crate::PoloniusResult::Owned(
$crate::ඞ::core::ops::ControlFlow::Break(
($($e ,)? () ,).0
)
)
)}
/// `break` a **dependent value** out of a [`polonius_loop!`].
///
/// To be used in conjunction with a
/// <code>[polonius_loop!]\(|var| -\> …<span style="color: green; font-weight: bolder;">, break: …</span> {</code> invocation.
///
/// - If the `, break: …` type annotation is forgotten, then invocations to
/// `polonius_break_dependent!` will fail with an error message complaining
/// about `cannot_use__polonius_break_dependentǃ__without_a_break_type_annotation_on__polonius_loopǃ`
///
/// ## Example
///
/** - ```rust
use {
::std::{
collections::HashMap,
},
::polonius_the_crab::{
*,
},
};
fn example (mut map: &'_ mut HashMap<u8, i32>)
{
let mut i = 0;
// needed for `polonius_break_dependent!` to work.
// vvvvvvvvvvvvvvvvvvvvvvvvvvv
let entry = polonius_loop!(|map| -> _, break: &'polonius mut i32 {
// ^^^^^^^^^
// don't forget the special annotation PoloniusResult.
if let Some(entry) = map.get_mut(&i) {
polonius_break_dependent!(entry);
}
i += 1;
});
// `map` was consumed by the loop, and is thus unusable.
// But the `break_dependent!`-yielded items is allowed to still be
// borrowing it.
*entry = 0;
}
``` */
///
/// Now let's compare it to what happens when [`polonius_break!`] is
/// (incorrectly) used in its stead:
///
/// #### Incorrect usage
///
/// The following **fails to compile**:
///
/** - ```rust ,compile_fail
use {
::std::{
collections::HashMap,
},
::polonius_the_crab::{
*,
},
};
fn example (mut map: &'_ mut HashMap<u8, i32>)
{
let mut i = 0;
let entry = polonius_loop!(|map| -> _ {
if let Some(entry) = map.get_mut(&i) {
polonius_break!(entry);
}
i += 1;
});
*entry = 0;
}
``` */
///
/// with the following error message:
///
/** ```rust, compile_fail
# compile_error!("compiler error message"); /*
error: lifetime may not live long enough
--> src/lib.rs:467:13
|
16 | let entry = polonius_loop!(|map| -> _ {
| _________________-
17 | | if let Some(entry) = map.get_mut(&i) {
18 | | polonius_break!(entry);
| | ^^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'2`
19 | | }
20 | | i += 1;
21 | | });
| | -
| | |
| |______let's call the lifetime of this reference `'1`
| return type of closure is Result<Dependent<()>, ControlFlow<&'2 mut i32>>
# */
``` */
///
/// Using `RUSTC_BOOTSTRAP=1 cargo rustc --profile-check -- -Zmacro-backtrace`
/// to "improve" the error message, we can get:
///
/** ```rust ,compile_fail
# compile_error!("compiler error message"); /*
error: lifetime may not live long enough
--> polonius-the-crab/src/lib.rs:442:12
|
351 | |mut $var: &mut _| {
| - - return type of closure is Result<Dependent<()>, ControlFlow<&'2 mut i32>>
| |
| let's call the lifetime of this reference `'1`
...
441 | / macro_rules! polonius_break {( $($e:expr $(,)?)? ) => (
442 | | return $crate::ඞ::core::result::Result::Err(
| |____________^
443 | || $crate::ඞ::core::ops::ControlFlow::Break(
444 | || ($($e ,)? () ,).0
445 | || )
446 | || )
| ||_____^ returning this value requires that `'1` must outlive `'2`
447 | | )}
| |__- in this expansion of `polonius_break!`
|
::: src/lib.rs:552:13
|
18 | polonius_break!(entry);
| ----------------------- in this macro invocation
# */
``` */
///
/// Which may be a bit better at hinting that we have a borrowing problem with
/// `polonius_break!`, whereby the returned value cannot reach some borrowing /
/// lifetime requirements (those stemming from an actually-dependent break
/// value).
#[macro_export]
macro_rules! polonius_break_dependent {( $e:expr $(,)? ) => (
return $crate::PoloniusResult::Borrowing(
$crate::ඞ::Dependent::Break($e)
)
)}
/// `continue` to the next iteration of a [`polonius_loop!`].
#[macro_export]
macro_rules! polonius_continue {() => (
return $crate::PoloniusResult::Owned(
$crate::ඞ::core::ops::ControlFlow::<_>::Continue(())
)
)}
// macro internals
#[doc(hidden)] /** Not part of the public API */ pub
mod ඞ {
#![allow(nonstandard_style)]
pub use ::core::{self, prelude::v1::*};
pub use crate::r#try::{Try, Residual};
pub
enum cannot_use__polonius_break_dependentǃ__without_a_break_type_annotation_on__polonius_loopǃ
{}
pub
enum Dependent<Return, Break = Never> {
Return(Return),
Break(Break),
}
use {
cannot_use__polonius_break_dependentǃ__without_a_break_type_annotation_on__polonius_loopǃ
as
Never,
};
pub
type dependent_break_without_break_ty_annotation =
cannot_use__polonius_break_dependentǃ__without_a_break_type_annotation_on__polonius_loopǃ
;
#[doc(hidden)] /** Not part of the public API */ #[macro_export]
macro_rules! ඞ_first {(
( $($tt:tt)* )
$($rest:tt)*
) => (
$($tt)*
)} pub use ඞ_first as first;
}