2014-02-05 16:33:10 -06:00
|
|
|
// 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.
|
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
2015-03-05 20:33:58 -06:00
|
|
|
#![feature(std_misc)]
|
2015-01-07 19:25:56 -06:00
|
|
|
|
2015-01-02 01:53:35 -06:00
|
|
|
use std::thread::Thread;
|
2014-12-23 13:53:35 -06:00
|
|
|
use std::sync::mpsc::Sender;
|
2014-11-26 07:12:18 -06:00
|
|
|
use std::thunk::Invoke;
|
2013-01-03 16:55:46 -06:00
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
type RingBuffer = Vec<f64> ;
|
2014-11-26 07:12:18 -06:00
|
|
|
type SamplesFn = Box<FnMut(&RingBuffer) + Send>;
|
2013-01-03 16:55:46 -06:00
|
|
|
|
|
|
|
enum Msg
|
|
|
|
{
|
2014-05-22 18:57:53 -05:00
|
|
|
GetSamples(String, SamplesFn), // sample set name, callback which receives samples
|
2013-01-03 16:55:46 -06:00
|
|
|
}
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo(name: String, samples_chan: Sender<Msg>) {
|
2015-01-02 01:53:35 -06:00
|
|
|
let _t = Thread::spawn(move|| {
|
2013-12-05 20:19:06 -06:00
|
|
|
let mut samples_chan = samples_chan;
|
2014-11-26 07:12:18 -06:00
|
|
|
|
2015-02-15 02:52:21 -06:00
|
|
|
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
|
|
|
|
let callback: SamplesFn = Box::new(move |buffer| {
|
2015-03-03 02:42:26 -06:00
|
|
|
for i in 0..buffer.len() {
|
2014-10-15 01:05:01 -05:00
|
|
|
println!("{}: {}", i, buffer[i])
|
2013-11-22 01:36:52 -06:00
|
|
|
}
|
2014-11-26 07:12:18 -06:00
|
|
|
});
|
|
|
|
|
2014-11-06 02:05:53 -06:00
|
|
|
samples_chan.send(Msg::GetSamples(name.clone(), callback));
|
2014-01-27 17:29:50 -06:00
|
|
|
});
|
2013-01-03 16:55:46 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {}
|