-
Notifications
You must be signed in to change notification settings - Fork 20
/
receive.rs
75 lines (64 loc) · 2.2 KB
/
receive.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
use coremidi::{Client, EventList, Protocol, Source, Sources};
use std::env;
fn main() {
let source_index = get_source_index();
println!("Source index: {}", source_index);
let source = Source::from_index(source_index).unwrap();
let source_id = source.unique_id().unwrap_or(0);
println!("Source display name: {}", source.display_name().unwrap());
println!("Source unique id: {:08x}", source_id);
let client = Client::new("Example Client").unwrap();
let callback = |event_list: &EventList, context: &mut u32| {
print!("{:08x}: {:?}", *context, event_list);
};
let mut input_port = client
.input_port_with_protocol("Example Port", Protocol::Midi10, callback)
.unwrap();
input_port.connect_source(&source, source_id).unwrap();
let mut input_line = String::new();
println!("Press Enter to Finish");
std::io::stdin()
.read_line(&mut input_line)
.expect("Failed to read line");
input_port.disconnect_source(&source).unwrap();
}
fn get_source_index() -> usize {
let mut args_iter = env::args();
let tool_name = args_iter
.next()
.and_then(|path| {
path.split(std::path::MAIN_SEPARATOR)
.last()
.map(|v| v.to_string())
})
.unwrap_or_else(|| "receive".to_string());
match args_iter.next() {
Some(arg) => match arg.parse::<usize>() {
Ok(index) => {
if index >= Sources::count() {
println!("Source index out of range: {}", index);
std::process::exit(-1);
}
index
}
Err(_) => {
println!("Wrong source index: {}", arg);
std::process::exit(-1);
}
},
None => {
println!("Usage: {} <source-index>", tool_name);
println!();
println!("Available Sources:");
print_sources();
std::process::exit(-1);
}
}
}
fn print_sources() {
for (i, source) in Sources.into_iter().enumerate() {
if let Some(display_name) = source.display_name() {
println!("[{}] {}", i, display_name)
}
}
}