macros.rs 20.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
10 11 12 13 14 15 16

//! Standard library macros
//!
//! This modules contains a set of macros which are exported from the standard
//! library. Each macro is available for use when linking against the standard
//! library.

17
#![experimental]
18
#![macro_escape]
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
/// The entry point for panic of Rust tasks.
///
/// This macro is used to inject panic into a Rust task, causing the task to
/// unwind and panic entirely. Each task's panic can be reaped as the
/// `Box<Any>` type, and the single-argument form of the `panic!` macro will be
/// the value which is transmitted.
///
/// The multi-argument form of this macro panics with a string and has the
/// `format!` syntax for building a string.
///
/// # Example
///
/// ```should_fail
/// # #![allow(unreachable_code)]
/// panic!();
/// panic!("this is a terrible mistake!");
/// panic!(4i); // panic with the value of 4 to be collected elsewhere
/// panic!("this is a {} {message}", "fancy", message = "message");
/// ```
#[macro_export]
macro_rules! panic {
    () => ({
        panic!("explicit panic")
    });
    ($msg:expr) => ({
        // static requires less code at runtime, more constant data
        static _FILE_LINE: (&'static str, uint) = (file!(), line!());
        ::std::rt::begin_unwind($msg, &_FILE_LINE)
    });
    ($fmt:expr, $($arg:tt)*) => ({
        // The leading _'s are to avoid dead code warnings if this is
        // used inside a dead function. Just `#[allow(dead_code)]` is
        // insufficient, since the user may have
        // `#[forbid(dead_code)]` and which cannot be overridden.
        static _FILE_LINE: (&'static str, uint) = (file!(), line!());
        ::std::rt::begin_unwind_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)

    });
}

60 61
/// Ensure that a boolean expression is `true` at runtime.
///
S
Steve Klabnik 已提交
62
/// This will invoke the `panic!` macro if the provided expression cannot be
63 64 65 66 67
/// evaluated to `true` at runtime.
///
/// # Example
///
/// ```
S
Steve Klabnik 已提交
68
/// // the panic message for these assertions is the stringified value of the
69 70 71 72 73 74 75 76
/// // expression given.
/// assert!(true);
/// # fn some_computation() -> bool { true }
/// assert!(some_computation());
///
/// // assert with a custom message
/// # let x = true;
/// assert!(x, "x wasn't true!");
77
/// # let a = 3i; let b = 27i;
78 79
/// assert!(a + b == 30, "a = {}, b = {}", a, b);
/// ```
80
#[macro_export]
81
macro_rules! assert {
82
    ($cond:expr) => (
83
        if !$cond {
S
Steve Klabnik 已提交
84
            panic!(concat!("assertion failed: ", stringify!($cond)))
85
        }
86 87
    );
    ($cond:expr, $($arg:expr),+) => (
88
        if !$cond {
S
Steve Klabnik 已提交
89
            panic!($($arg),+)
90
        }
91
    );
92
}
93

94 95 96
/// Asserts that two expressions are equal to each other, testing equality in
/// both directions.
///
S
Steve Klabnik 已提交
97
/// On panic, this macro will print the values of the expressions.
98 99 100 101
///
/// # Example
///
/// ```
102 103
/// let a = 3i;
/// let b = 1i + 2i;
104 105
/// assert_eq!(a, b);
/// ```
106
#[macro_export]
107
macro_rules! assert_eq {
108 109 110
    ($left:expr , $right:expr) => ({
        match (&($left), &($right)) {
            (left_val, right_val) => {
111
                // check both directions of equality....
112 113
                if !((*left_val == *right_val) &&
                     (*right_val == *left_val)) {
S
Steve Klabnik 已提交
114
                    panic!("assertion failed: `(left == right) && (right == left)` \
115
                           (left: `{}`, right: `{}`)", *left_val, *right_val)
116 117
                }
            }
118
        }
119
    })
120
}
121

122 123
/// Ensure that a boolean expression is `true` at runtime.
///
S
Steve Klabnik 已提交
124
/// This will invoke the `panic!` macro if the provided expression cannot be
125 126 127 128 129 130 131 132 133 134
/// evaluated to `true` at runtime.
///
/// Unlike `assert!`, `debug_assert!` statements can be disabled by passing
/// `--cfg ndebug` to the compiler. This makes `debug_assert!` useful for
/// checks that are too expensive to be present in a release build but may be
/// helpful during development.
///
/// # Example
///
/// ```
S
Steve Klabnik 已提交
135
/// // the panic message for these assertions is the stringified value of the
136 137 138 139 140 141 142 143
/// // expression given.
/// debug_assert!(true);
/// # fn some_expensive_computation() -> bool { true }
/// debug_assert!(some_expensive_computation());
///
/// // assert with a custom message
/// # let x = true;
/// debug_assert!(x, "x wasn't true!");
144
/// # let a = 3i; let b = 27i;
145 146 147
/// debug_assert!(a + b == 30, "a = {}, b = {}", a, b);
/// ```
#[macro_export]
148
macro_rules! debug_assert {
149
    ($($arg:tt)*) => (if cfg!(not(ndebug)) { assert!($($arg)*); })
150
}
151 152 153 154

/// Asserts that two expressions are equal to each other, testing equality in
/// both directions.
///
S
Steve Klabnik 已提交
155
/// On panic, this macro will print the values of the expressions.
156 157 158 159 160 161 162 163 164
///
/// Unlike `assert_eq!`, `debug_assert_eq!` statements can be disabled by
/// passing `--cfg ndebug` to the compiler. This makes `debug_assert_eq!`
/// useful for checks that are too expensive to be present in a release build
/// but may be helpful during development.
///
/// # Example
///
/// ```
165 166
/// let a = 3i;
/// let b = 1i + 2i;
167 168 169
/// debug_assert_eq!(a, b);
/// ```
#[macro_export]
170
macro_rules! debug_assert_eq {
171
    ($($arg:tt)*) => (if cfg!(not(ndebug)) { assert_eq!($($arg)*); })
172
}
173

174
/// A utility macro for indicating unreachable code.
175
///
176 177 178 179 180 181 182 183 184 185 186 187 188 189
/// This is useful any time that the compiler can't determine that some code is unreachable. For
/// example:
///
/// * Match arms with guard conditions.
/// * Loops that dynamically terminate.
/// * Iterators that dynamically terminate.
///
/// # Panics
///
/// This will always panic.
///
/// # Examples
///
/// Match arms:
190
///
191 192
/// ```rust
/// fn foo(x: Option<int>) {
A
Alex Crichton 已提交
193 194 195 196 197 198
///     match x {
///         Some(n) if n >= 0 => println!("Some(Non-negative)"),
///         Some(n) if n <  0 => println!("Some(Negative)"),
///         Some(_)           => unreachable!(), // compile error if commented out
///         None              => println!("None")
///     }
199 200 201 202 203 204
/// }
/// ```
///
/// Iterators:
///
/// ```rust
O
olivren 已提交
205 206 207 208
/// fn divide_by_three(x: u32) -> u32 { // one of the poorest implementations of x/3
///     for i in std::iter::count(0_u32, 1) {
///         if 3*i < i { panic!("u32 overflow"); }
///         if x < 3*i { return i-1; }
209 210 211
///     }
///     unreachable!();
/// }
J
Jonas Hietala 已提交
212
/// ```
213
#[macro_export]
214
macro_rules! unreachable {
215 216 217 218 219 220 221 222 223
    () => ({
        panic!("internal error: entered unreachable code")
    });
    ($msg:expr) => ({
        unreachable!("{}", $msg)
    });
    ($fmt:expr, $($arg:tt)*) => ({
        panic!(concat!("internal error: entered unreachable code: ", $fmt), $($arg)*)
    });
224
}
225

S
Steve Klabnik 已提交
226
/// A standardised placeholder for marking unfinished code. It panics with the
B
Brendan Zabarauskas 已提交
227 228
/// message `"not yet implemented"` when executed.
#[macro_export]
229
macro_rules! unimplemented {
S
Steve Klabnik 已提交
230
    () => (panic!("not yet implemented"))
231
}
B
Brendan Zabarauskas 已提交
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
/// Use the syntax described in `std::fmt` to create a value of type `String`.
/// See `std::fmt` for more information.
///
/// # Example
///
/// ```
/// format!("test");
/// format!("hello {}", "world!");
/// format!("x = {}, y = {y}", 10i, y = 30i);
/// ```
#[macro_export]
#[stable]
macro_rules! format {
    ($($arg:tt)*) => (::std::fmt::format(format_args!($($arg)*)))
}

/// Use the `format!` syntax to write data into a buffer of type `&mut Writer`.
/// See `std::fmt` for more information.
///
/// # Example
///
/// ```
/// # #![allow(unused_must_use)]
///
/// let mut w = Vec::new();
/// write!(&mut w, "test");
/// write!(&mut w, "formatted {}", "arguments");
/// ```
#[macro_export]
#[stable]
macro_rules! write {
    ($dst:expr, $($arg:tt)*) => ((&mut *$dst).write_fmt(format_args!($($arg)*)))
}

267 268
/// Equivalent to the `write!` macro, except that a newline is appended after
/// the message is written.
269
#[macro_export]
A
Alex Crichton 已提交
270
#[stable]
271
macro_rules! writeln {
A
Alex Crichton 已提交
272 273 274
    ($dst:expr, $fmt:expr $($arg:tt)*) => (
        write!($dst, concat!($fmt, "\n") $($arg)*)
    )
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
/// Equivalent to the `println!` macro except that a newline is not printed at
/// the end of the message.
#[macro_export]
#[stable]
macro_rules! print {
    ($($arg:tt)*) => (::std::io::stdio::print_args(format_args!($($arg)*)))
}

/// Macro for printing to a task's stdout handle.
///
/// Each task can override its stdout handle via `std::io::stdio::set_stdout`.
/// The syntax of this macro is the same as that used for `format!`. For more
/// information, see `std::fmt` and `std::io::stdio`.
///
/// # Example
///
/// ```
/// println!("hello there!");
/// println!("format {} arguments", "some");
/// ```
#[macro_export]
#[stable]
macro_rules! println {
    ($($arg:tt)*) => (::std::io::stdio::println_args(format_args!($($arg)*)))
}

303 304 305
/// Helper macro for unwrapping `Result` values while returning early with an
/// error if the value of the expression is `Err`. For more information, see
/// `std::io`.
A
Alex Crichton 已提交
306
#[macro_export]
307
macro_rules! try {
308 309 310 311 312 313
    ($expr:expr) => ({
        match $expr {
            Ok(val) => val,
            Err(err) => return Err(::std::error::FromError::from_error(err))
        }
    })
314
}
315

D
Daniel Micay 已提交
316
/// Create a `std::vec::Vec` containing the arguments.
317
#[macro_export]
318
macro_rules! vec {
319 320
    ($($x:expr),*) => ({
        let xs: ::std::boxed::Box<[_]> = box [$($x),*];
321
        ::std::slice::SliceExt::into_vec(xs)
322
    });
323
    ($($x:expr,)*) => (vec![$($x),*])
324
}
A
Alex Crichton 已提交
325

326
/// A macro to select an event from a number of receivers.
A
Alex Crichton 已提交
327 328
///
/// This macro is used to wait for the first event to occur on a number of
329 330
/// receivers. It places no restrictions on the types of receivers given to
/// this macro, this can be viewed as a heterogeneous select.
A
Alex Crichton 已提交
331 332 333 334
///
/// # Example
///
/// ```
335
/// use std::thread::Thread;
336
/// use std::sync::mpsc::channel;
337
///
338 339
/// let (tx1, rx1) = channel();
/// let (tx2, rx2) = channel();
A
Alex Crichton 已提交
340
/// # fn long_running_task() {}
341
/// # fn calculate_the_answer() -> int { 42i }
A
Alex Crichton 已提交
342
///
343 344
/// Thread::spawn(move|| { long_running_task(); tx1.send(()) }).detach();
/// Thread::spawn(move|| { tx2.send(calculate_the_answer()) }).detach();
A
Alex Crichton 已提交
345 346
///
/// select! (
347
///     _ = rx1.recv() => println!("the long running task finished first"),
348
///     answer = rx2.recv() => {
349
///         println!("the answer was: {}", answer.unwrap());
A
Alex Crichton 已提交
350 351 352 353
///     }
/// )
/// ```
///
354
/// For more information about select, see the `std::sync::mpsc::Select` structure.
A
Alex Crichton 已提交
355 356 357 358
#[macro_export]
#[experimental]
macro_rules! select {
    (
359
        $($name:pat = $rx:ident.$meth:ident() => $code:expr),+
A
Alex Crichton 已提交
360
    ) => ({
361
        use std::sync::mpsc::Select;
A
Alex Crichton 已提交
362
        let sel = Select::new();
363
        $( let mut $rx = sel.handle(&$rx); )+
A
Alex Crichton 已提交
364
        unsafe {
365
            $( $rx.add(); )+
A
Alex Crichton 已提交
366 367
        }
        let ret = sel.wait();
368
        $( if ret == $rx.id() { let $name = $rx.$meth(); $code } else )+
A
Alex Crichton 已提交
369 370 371
        { unreachable!() }
    })
}
372 373 374 375 376 377 378

// When testing the standard library, we link to the liblog crate to get the
// logging macros. In doing so, the liblog crate was linked against the real
// version of libstd, and uses a different std::fmt module than the test crate
// uses. To get around this difference, we redefine the log!() macro here to be
// just a dumb version of what it should be.
#[cfg(test)]
379
macro_rules! log {
380 381 382
    ($lvl:expr, $($args:tt)*) => (
        if log_enabled!($lvl) { println!($($args)*) }
    )
383
}
384 385 386 387 388 389 390 391 392 393

/// Built-in macros to the compiler itself.
///
/// These macros do not have any corresponding definition with a `macro_rules!`
/// macro, but are documented here. Their implementations can be found hardcoded
/// into libsyntax itself.
#[cfg(dox)]
pub mod builtin {
    /// The core macro for formatted string creation & output.
    ///
394 395 396 397
    /// This macro produces a value of type `fmt::Arguments`. This value can be
    /// passed to the functions in `std::fmt` for performing useful functions.
    /// All other formatting macros (`format!`, `write!`, `println!`, etc) are
    /// proxied through this one.
398 399 400 401 402 403 404 405
    ///
    /// For more information, see the documentation in `std::fmt`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::fmt;
    ///
406
    /// let s = fmt::format(format_args!("hello {}", "world"));
407 408 409 410
    /// assert_eq!(s, format!("hello {}", "world"));
    ///
    /// ```
    #[macro_export]
411
    macro_rules! format_args { ($fmt:expr $($args:tt)*) => ({
412
        /* compiler built-in */
413
    }) }
414 415 416 417 418 419 420 421 422 423 424 425 426

    /// Inspect an environment variable at compile time.
    ///
    /// This macro will expand to the value of the named environment variable at
    /// compile time, yielding an expression of type `&'static str`.
    ///
    /// If the environment variable is not defined, then a compilation error
    /// will be emitted.  To not emit a compile error, use the `option_env!`
    /// macro instead.
    ///
    /// # Example
    ///
    /// ```rust
427 428
    /// let path: &'static str = env!("PATH");
    /// println!("the $PATH variable at the time of compiling was: {}", path);
429 430
    /// ```
    #[macro_export]
431
    macro_rules! env { ($name:expr) => ({ /* compiler built-in */ }) }
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449

    /// Optionally inspect an environment variable at compile time.
    ///
    /// If the named environment variable is present at compile time, this will
    /// expand into an expression of type `Option<&'static str>` whose value is
    /// `Some` of the value of the environment variable. If the environment
    /// variable is not present, then this will expand to `None`.
    ///
    /// A compile time error is never emitted when using this macro regardless
    /// of whether the environment variable is present or not.
    ///
    /// # Example
    ///
    /// ```rust
    /// let key: Option<&'static str> = option_env!("SECRET_KEY");
    /// println!("the secret key might be: {}", key);
    /// ```
    #[macro_export]
450
    macro_rules! option_env { ($name:expr) => ({ /* compiler built-in */ }) }
451 452 453 454 455 456 457 458 459 460 461 462 463 464

    /// Concatenate literals into a static byte slice.
    ///
    /// This macro takes any number of comma-separated literal expressions,
    /// yielding an expression of type `&'static [u8]` which is the
    /// concatenation (left to right) of all the literals in their byte format.
    ///
    /// This extension currently only supports string literals, character
    /// literals, and integers less than 256. The byte slice returned is the
    /// utf8-encoding of strings and characters.
    ///
    /// # Example
    ///
    /// ```
465
    /// let rust = bytes!("r", 'u', "st", 255);
N
nham 已提交
466
    /// assert_eq!(rust[1], b'u');
A
Alex Crichton 已提交
467
    /// assert_eq!(rust[4], 255);
468 469
    /// ```
    #[macro_export]
470
    macro_rules! bytes { ($($e:expr),*) => ({ /* compiler built-in */ }) }
471 472 473 474 475 476 477 478 479 480 481 482 483

    /// Concatenate identifiers into one identifier.
    ///
    /// This macro takes any number of comma-separated identifiers, and
    /// concatenates them all into one, yielding an expression which is a new
    /// identifier. Note that hygiene makes it such that this macro cannot
    /// capture local variables, and macros are only allowed in item,
    /// statement or expression position, meaning this macro may be difficult to
    /// use in some situations.
    ///
    /// # Example
    ///
    /// ```
A
Alex Crichton 已提交
484 485 486
    /// #![feature(concat_idents)]
    ///
    /// # fn main() {
487 488 489 490
    /// fn foobar() -> int { 23 }
    ///
    /// let f = concat_idents!(foo, bar);
    /// println!("{}", f());
A
Alex Crichton 已提交
491
    /// # }
492 493
    /// ```
    #[macro_export]
494 495 496
    macro_rules! concat_idents {
        ($($e:ident),*) => ({ /* compiler built-in */ })
    }
497 498 499 500 501 502 503 504 505 506 507 508 509

    /// Concatenates literals into a static string slice.
    ///
    /// This macro takes any number of comma-separated literals, yielding an
    /// expression of type `&'static str` which represents all of the literals
    /// concatenated left-to-right.
    ///
    /// Integer and floating point literals are stringified in order to be
    /// concatenated.
    ///
    /// # Example
    ///
    /// ```
510
    /// let s = concat!("test", 10i, 'b', true);
511 512 513
    /// assert_eq!(s, "test10btrue");
    /// ```
    #[macro_export]
514
    macro_rules! concat { ($($e:expr),*) => ({ /* compiler built-in */ }) }
515 516 517 518 519 520 521 522 523 524 525 526 527 528

    /// A macro which expands to the line number on which it was invoked.
    ///
    /// The expanded expression has type `uint`, and the returned line is not
    /// the invocation of the `line!()` macro itself, but rather the first macro
    /// invocation leading up to the invocation of the `line!()` macro.
    ///
    /// # Example
    ///
    /// ```
    /// let current_line = line!();
    /// println!("defined on line: {}", current_line);
    /// ```
    #[macro_export]
529
    macro_rules! line { () => ({ /* compiler built-in */ }) }
530 531 532 533

    /// A macro which expands to the column number on which it was invoked.
    ///
    /// The expanded expression has type `uint`, and the returned column is not
H
Huon Wilson 已提交
534 535
    /// the invocation of the `column!()` macro itself, but rather the first macro
    /// invocation leading up to the invocation of the `column!()` macro.
536 537 538 539
    ///
    /// # Example
    ///
    /// ```
H
Huon Wilson 已提交
540
    /// let current_col = column!();
541 542 543
    /// println!("defined on column: {}", current_col);
    /// ```
    #[macro_export]
544
    macro_rules! column { () => ({ /* compiler built-in */ }) }
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559

    /// A macro which expands to the file name from which it was invoked.
    ///
    /// The expanded expression has type `&'static str`, and the returned file
    /// is not the invocation of the `file!()` macro itself, but rather the
    /// first macro invocation leading up to the invocation of the `file!()`
    /// macro.
    ///
    /// # Example
    ///
    /// ```
    /// let this_file = file!();
    /// println!("defined in file: {}", this_file);
    /// ```
    #[macro_export]
560
    macro_rules! file { () => ({ /* compiler built-in */ }) }
561 562 563 564 565 566 567 568 569 570 571 572 573 574

    /// A macro which stringifies its argument.
    ///
    /// This macro will yield an expression of type `&'static str` which is the
    /// stringification of all the tokens passed to the macro. No restrictions
    /// are placed on the syntax of the macro invocation itself.
    ///
    /// # Example
    ///
    /// ```
    /// let one_plus_one = stringify!(1 + 1);
    /// assert_eq!(one_plus_one, "1 + 1");
    /// ```
    #[macro_export]
575
    macro_rules! stringify { ($t:tt) => ({ /* compiler built-in */ }) }
576 577 578 579 580 581 582 583 584 585 586 587 588

    /// Includes a utf8-encoded file as a string.
    ///
    /// This macro will yield an expression of type `&'static str` which is the
    /// contents of the filename specified. The file is located relative to the
    /// current file (similarly to how modules are found),
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let secret_key = include_str!("secret-key.ascii");
    /// ```
    #[macro_export]
589
    macro_rules! include_str { ($file:expr) => ({ /* compiler built-in */ }) }
590 591 592 593 594 595 596 597 598 599

    /// Includes a file as a byte slice.
    ///
    /// This macro will yield an expression of type `&'static [u8]` which is
    /// the contents of the filename specified. The file is located relative to
    /// the current file (similarly to how modules are found),
    ///
    /// # Example
    ///
    /// ```rust,ignore
C
Chris Wong 已提交
600
    /// let secret_key = include_bytes!("secret-key.bin");
601 602
    /// ```
    #[macro_export]
C
Chris Wong 已提交
603 604 605 606 607
    macro_rules! include_bytes { ($file:expr) => ({ /* compiler built-in */ }) }

    /// Deprecated alias for `include_bytes!()`.
    #[macro_export]
    macro_rules! include_bin { ($file:expr) => ({ /* compiler built-in */}) }
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626

    /// Expands to a string that represents the current module path.
    ///
    /// The current module path can be thought of as the hierarchy of modules
    /// leading back up to the crate root. The first component of the path
    /// returned is the name of the crate currently being compiled.
    ///
    /// # Example
    ///
    /// ```rust
    /// mod test {
    ///     pub fn foo() {
    ///         assert!(module_path!().ends_with("test"));
    ///     }
    /// }
    ///
    /// test::foo();
    /// ```
    #[macro_export]
627
    macro_rules! module_path { () => ({ /* compiler built-in */ }) }
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647

    /// Boolean evaluation of configuration flags.
    ///
    /// In addition to the `#[cfg]` attribute, this macro is provided to allow
    /// boolean expression evaluation of configuration flags. This frequently
    /// leads to less duplicated code.
    ///
    /// The syntax given to this macro is the same syntax as the `cfg`
    /// attribute.
    ///
    /// # Example
    ///
    /// ```rust
    /// let my_directory = if cfg!(windows) {
    ///     "windows-specific-directory"
    /// } else {
    ///     "unix-directory"
    /// };
    /// ```
    #[macro_export]
648
    macro_rules! cfg { ($cfg:tt) => ({ /* compiler built-in */ }) }
649
}