2013-01-25 19:51:53 -06:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2013-01-15 19:11:16 -06:00
|
|
|
/*!
|
|
|
|
The Finally trait provides a method, `finally` on
|
|
|
|
stack closures that emulates Java-style try/finally blocks.
|
|
|
|
|
|
|
|
# Example
|
|
|
|
|
|
|
|
~~~
|
|
|
|
do || {
|
|
|
|
...
|
|
|
|
}.finally {
|
|
|
|
alway_run_this();
|
|
|
|
}
|
|
|
|
~~~
|
|
|
|
*/
|
|
|
|
|
|
|
|
use ops::Drop;
|
|
|
|
|
2013-02-28 10:57:33 -06:00
|
|
|
#[cfg(test)] use task::failing;
|
|
|
|
|
2013-01-31 19:12:29 -06:00
|
|
|
pub trait Finally<T> {
|
|
|
|
fn finally(&self, dtor: &fn()) -> T;
|
|
|
|
}
|
|
|
|
|
2013-03-14 13:22:51 -05:00
|
|
|
impl<T> Finally<T> for &'self fn() -> T {
|
2013-01-31 19:12:29 -06:00
|
|
|
fn finally(&self, dtor: &fn()) -> T {
|
|
|
|
let _d = Finallyalizer {
|
2013-01-15 19:11:16 -06:00
|
|
|
dtor: dtor
|
|
|
|
};
|
|
|
|
|
|
|
|
(*self)()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Finallyalizer {
|
2013-03-14 13:22:51 -05:00
|
|
|
dtor: &'self fn()
|
2013-01-15 19:11:16 -06:00
|
|
|
}
|
|
|
|
|
2013-02-26 13:34:00 -06:00
|
|
|
impl Drop for Finallyalizer/&self {
|
2013-01-15 19:11:16 -06:00
|
|
|
fn finalize(&self) {
|
|
|
|
(self.dtor)();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_success() {
|
|
|
|
let mut i = 0;
|
|
|
|
do (|| {
|
|
|
|
i = 10;
|
|
|
|
}).finally {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(!failing());
|
|
|
|
fail_unless!(i == 10);
|
2013-01-15 19:11:16 -06:00
|
|
|
i = 20;
|
|
|
|
}
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(i == 20);
|
2013-01-15 19:11:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore(cfg(windows))]
|
|
|
|
#[should_fail]
|
|
|
|
fn test_fail() {
|
|
|
|
let mut i = 0;
|
|
|
|
do (|| {
|
|
|
|
i = 10;
|
2013-02-11 21:26:38 -06:00
|
|
|
fail!();
|
2013-01-15 19:11:16 -06:00
|
|
|
}).finally {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(failing());
|
|
|
|
fail_unless!(i == 10);
|
2013-01-15 19:11:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_retval() {
|
2013-03-01 16:32:37 -06:00
|
|
|
let closure: &fn() -> int = || 10;
|
|
|
|
let i = do closure.finally { };
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(i == 10);
|
2013-01-15 19:11:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_compact() {
|
2013-01-31 21:34:46 -06:00
|
|
|
// FIXME #4727: Should be able to use a fn item instead
|
2013-01-15 19:11:16 -06:00
|
|
|
// of a closure for do_some_fallible_work,
|
|
|
|
// but it's a type error.
|
|
|
|
let do_some_fallible_work: &fn() = || { };
|
|
|
|
fn but_always_run_this_function() { }
|
|
|
|
do_some_fallible_work.finally(
|
|
|
|
but_always_run_this_function);
|
2013-01-31 20:24:09 -06:00
|
|
|
}
|