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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
mod comms;
mod kiss;
use clap::{App, Arg};
use comms_service::{LinkPacket, PayloadType, SpacePacket};
use failure::{bail, Error};
use std::fs::File;
use std::io::Read;
use std::time::Duration;
type ClientResult<T> = Result<T, Error>;
fn main() -> ClientResult<()> {
let args = App::new("UART Comms Client")
.arg(
Arg::with_name("bus")
.help("Serial Device")
.short("b")
.takes_value(true)
.required(true),
)
.arg(
Arg::with_name("port")
.help("Destination port")
.short("p")
.takes_value(true)
.required(true),
)
.arg(
Arg::with_name("file")
.help("File containing data to send")
.short("f")
.takes_value(true)
.conflicts_with("listen"),
)
.arg(
Arg::with_name("data")
.help("Data to send")
.required_unless_one(&["file", "listen"])
.conflicts_with("file")
.conflicts_with("listen"),
)
.arg(
Arg::with_name("kiss")
.help("Enable KISS framing")
.short("k"),
)
.get_matches();
let bus = args.value_of("bus").unwrap();
let dest_port = args.value_of("port").unwrap().parse()?;
let query = if let Some(file) = args.value_of("file") {
let mut raw = String::new();
File::open(file).and_then(|mut f| f.read_to_string(&mut raw))?;
raw
} else {
args.value_of("data").unwrap().to_string()
};
let mut map = ::std::collections::HashMap::new();
map.insert("query", query);
let packet = SpacePacket::build(
0,
PayloadType::GraphQL,
dest_port,
&serde_json::to_vec(&map)?,
)
.and_then(|packet| packet.to_bytes())?;
let packet = if args.is_present("kiss") {
kiss::encode(&packet)
} else {
packet
};
let mut conn = comms::serial_init(bus)?;
comms::write(&mut conn, &packet)?;
let msg = comms::read(&mut conn)?;
let msg = if args.is_present("kiss") {
let (frame, _, _) = kiss::decode(&msg)?;
frame
} else {
msg
};
let response = String::from_utf8(SpacePacket::parse(&msg)?.payload())?;
println!("Response: {}", response);
Ok(())
}