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