Skip to content

(RFC) replace old_iter::repeat with the Times trait #6106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -1977,7 +1977,7 @@ struct TimeBomb {

impl Drop for TimeBomb {
fn finalize(&self) {
for old_iter::repeat(self.explosivity) {
for self.explosivity.times {
println("blam!");
}
}
Expand Down
20 changes: 0 additions & 20 deletions src/libcore/old_iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,26 +238,6 @@ pub fn position<A,IA:BaseIter<A>>(this: &IA, f: &fn(&A) -> bool)
// iter interface, such as would provide "reach" in addition to "each". As is,
// it would have to be implemented with foldr, which is too inefficient.

#[inline(always)]
#[cfg(stage0)]
pub fn repeat(times: uint, blk: &fn() -> bool) {
let mut i = 0;
while i < times {
if !blk() { break }
i += 1;
}
}
#[inline(always)]
#[cfg(not(stage0))]
pub fn repeat(times: uint, blk: &fn() -> bool) -> bool {
let mut i = 0;
while i < times {
if !blk() { return false; }
i += 1;
}
return true;
}

#[inline(always)]
pub fn min<A:Copy + Ord,IA:BaseIter<A>>(this: &IA) -> A {
match do foldl::<A,Option<A>,IA>(this, None) |a, b| {
Expand Down
19 changes: 9 additions & 10 deletions src/libcore/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ fn test_spawn_unlinked_unsup_no_fail_down() { // grandchild sends on a port
let ch = ch.clone();
do spawn_unlinked {
// Give middle task a chance to fail-but-not-kill-us.
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
ch.send(()); // If killed first, grandparent hangs.
}
fail!(); // Shouldn't kill either (grand)parent or (grand)child.
Expand All @@ -634,7 +634,7 @@ fn test_spawn_unlinked_unsup_no_fail_up() { // child unlinked fails
fn test_spawn_unlinked_sup_no_fail_up() { // child unlinked fails
do spawn_supervised { fail!(); }
// Give child a chance to fail-but-not-kill-us.
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
}
#[test] #[should_fail] #[ignore(cfg(windows))]
fn test_spawn_unlinked_sup_fail_down() {
Expand Down Expand Up @@ -709,7 +709,7 @@ fn test_spawn_failure_propagate_grandchild() {
loop { task::yield(); }
}
}
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
fail!();
}

Expand All @@ -721,7 +721,7 @@ fn test_spawn_failure_propagate_secondborn() {
loop { task::yield(); }
}
}
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
fail!();
}

Expand All @@ -733,7 +733,7 @@ fn test_spawn_failure_propagate_nephew_or_niece() {
loop { task::yield(); }
}
}
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
fail!();
}

Expand All @@ -745,7 +745,7 @@ fn test_spawn_linked_sup_propagate_sibling() {
loop { task::yield(); }
}
}
for old_iter::repeat(16) { task::yield(); }
for 16.times { task::yield(); }
fail!();
}

Expand Down Expand Up @@ -904,8 +904,7 @@ fn test_spawn_sched_blocking() {

// Testing that a task in one scheduler can block in foreign code
// without affecting other schedulers
for old_iter::repeat(20u) {

for 20u.times {
let (start_po, start_ch) = stream();
let (fin_po, fin_ch) = stream();

Expand Down Expand Up @@ -1024,7 +1023,7 @@ fn test_unkillable() {

// We want to do this after failing
do spawn_unlinked {
for old_iter::repeat(10) { yield() }
for 10.times { yield() }
ch.send(());
}

Expand Down Expand Up @@ -1059,7 +1058,7 @@ fn test_unkillable_nested() {

// We want to do this after failing
do spawn_unlinked || {
for old_iter::repeat(10) { yield() }
for 10.times { yield() }
ch.send(());
}

Expand Down
4 changes: 2 additions & 2 deletions src/librustdoc/markdown_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ mod test {
let doc = (page_pass::mk_pass(config::DocPerMod).f)(srv, doc);
write_markdown(doc, writer_factory);
// We expect two pages to have been written
for old_iter::repeat(2) {
for 2.times {
po.recv();
}
}
Expand All @@ -641,7 +641,7 @@ mod test {
~"#[link(name = \"core\")]; mod a { }");
let doc = (page_pass::mk_pass(config::DocPerMod).f)(srv, doc);
write_markdown(doc, writer_factory);
for old_iter::repeat(2) {
for 2.times {
let (page, markdown) = po.recv();
match page {
doc::CratePage(_) => {
Expand Down
6 changes: 1 addition & 5 deletions src/libstd/base64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

//! Base64 binary-to-text encoding

use core::old_iter;
use core::str;
use core::vec;

pub trait ToBase64 {
fn to_base64(&self) -> ~str;
}
Expand Down Expand Up @@ -152,7 +148,7 @@ impl FromBase64 for ~[u8] {
while i < len {
let mut n = 0u;

for old_iter::repeat(4u) {
for 4u.times {
let ch = self[i] as char;
n <<= 6u;

Expand Down
13 changes: 6 additions & 7 deletions src/libstd/timer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ mod test {
#[test]
fn test_gl_timer_sleep_stress1() {
let hl_loop = &uv::global_loop::get();
for old_iter::repeat(50u) {
for 50u.times {
sleep(hl_loop, 1u);
}
}
Expand All @@ -208,8 +208,7 @@ mod test {

};

for old_iter::repeat(repeat) {

for repeat.times {
let ch = ch.clone();
for spec.each |spec| {
let (times, maxms) = *spec;
Expand All @@ -218,15 +217,15 @@ mod test {
do task::spawn {
use core::rand::*;
let mut rng = rng();
for old_iter::repeat(times) {
for times.times {
sleep(&hl_loop_clone, rng.next() as uint % maxms);
}
ch.send(());
}
}
}

for old_iter::repeat(repeat * spec.len()) {
for (repeat * spec.len()).times {
po.recv()
}
}
Expand All @@ -244,7 +243,7 @@ mod test {
let mut failures = 0;
let hl_loop = uv::global_loop::get();

for old_iter::repeat(times as uint) {
for (times as uint).times {
task::yield();

let expected = rand::rng().gen_str(16u);
Expand Down Expand Up @@ -273,7 +272,7 @@ mod test {
let mut failures = 0;
let hl_loop = uv::global_loop::get();

for old_iter::repeat(times as uint) {
for (times as uint).times {
let mut rng = rand::rng();
let expected = Cell(rng.gen_str(16u));
let (test_po, test_ch) = stream::<~str>();
Expand Down
4 changes: 2 additions & 2 deletions src/libstd/uv_global_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,15 +215,15 @@ mod test {
let (exit_po, exit_ch) = stream::<()>();
let exit_ch = SharedChan::new(exit_ch);
let cycles = 5000u;
for old_iter::repeat(cycles) {
for cycles.times {
let exit_ch_clone = exit_ch.clone();
task::spawn_sched(task::ManualThreads(1u), || {
let hl_loop = &get_gl();
impl_uv_hl_simple_timer(hl_loop);
exit_ch_clone.send(());
});
};
for old_iter::repeat(cycles) {
for cycles.times {
exit_po.recv();
};
debug!(~"test_stress_gl_uv_global_loop_high_level_global_timer"+
Expand Down
4 changes: 2 additions & 2 deletions src/libstd/uv_iotask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ fn test_uv_iotask_async() {
// impl_uv_hl_async() runs have been called, at least.
let (work_exit_po, work_exit_ch) = stream::<()>();
let work_exit_ch = SharedChan::new(work_exit_ch);
for old_iter::repeat(7u) {
for 7u.times {
let iotask_clone = iotask.clone();
let work_exit_ch_clone = work_exit_ch.clone();
do task::spawn_sched(task::ManualThreads(1u)) {
Expand All @@ -294,7 +294,7 @@ fn test_uv_iotask_async() {
work_exit_ch_clone.send(());
};
};
for old_iter::repeat(7u) {
for 7u.times {
debug!("waiting");
work_exit_po.recv();
};
Expand Down
2 changes: 1 addition & 1 deletion src/test/bench/task-perf-alloc-unwind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn main() {
}

fn run(repeat: int, depth: int) {
for old_iter::repeat(repeat as uint) {
for (repeat as uint).times {
debug!("starting %.4f", precise_time_s());
do task::try {
recurse_or_fail(depth, None)
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-fail/extern-fail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn count(n: uint) -> uint {
}

fn main() {
for old_iter::repeat(10u) {
for 10u.times {
do task::spawn {
let result = count(5u);
debug!("result = %?", result);
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/bitv-perf-test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ fn bitv_test() -> bool {
}

pub fn main() {
do old_iter::repeat(10000) || {bitv_test()};
do 10000.times || {bitv_test()};
}
2 changes: 1 addition & 1 deletion src/test/run-pass/extern-stress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn count(n: uint) -> uint {
}

pub fn main() {
for old_iter::repeat(100u) {
for 100u.times {
do task::spawn {
assert!(count(5u) == 16u);
};
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/extern-yield.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn count(n: uint) -> uint {
}

pub fn main() {
for old_iter::repeat(10u) {
for 10u.times {
do task::spawn {
let result = count(5u);
debug!("result = %?", result);
Expand Down