1 // tattlekey: A one-key UDP keyboard
2 // Copyright (C) 2023 Scott Worley <scottworley@scottworley.com>
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <https://www.gnu.org/licenses/>.
18 use std::collections::HashMap;
19 use std::net::UdpSocket;
20 use std::time::{Duration, SystemTime};
22 const MESSAGE_SIZE: usize = 12;
23 const LOGFILENAME: &str = "log.csv";
25 #[derive(Eq, Debug, Hash, PartialEq, Serialize)]
38 impl From<&[u8; MESSAGE_SIZE]> for Message {
39 fn from(value: &[u8; MESSAGE_SIZE]) -> Self {
40 let ago = u32::from_be_bytes(value[8..=11].try_into().expect("I can't count"));
43 epoch: u32::from_be_bytes(value[0..=3].try_into().expect("I can't count")),
44 device: u16::from_be_bytes(value[4..=5].try_into().expect("I can't count")),
45 seq: u16::from_be_bytes(value[6..=7].try_into().expect("I can't count")),
47 t: SystemTime::now() - Duration::new(ago.into(), 0),
51 impl TryFrom<&[u8]> for Message {
52 type Error = std::array::TryFromSliceError;
53 fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
54 match <[u8; MESSAGE_SIZE]>::try_from(value) {
55 Ok(correct_size) => Ok(Message::from(&correct_size)),
67 fn new(t: &SystemTime) -> Self {
68 Self { start: *t, end: *t }
70 fn contains(&self, t: &SystemTime) -> bool {
71 t > &self.start && t < &self.end
73 fn extend(&mut self, t: &SystemTime) {
84 let log_file_exists = std::path::Path::new(LOGFILENAME).exists();
85 let logfile = std::fs::OpenOptions::new()
86 .create_new(!log_file_exists)
89 .expect("Coudln't open log file");
90 let mut log = csv::WriterBuilder::new()
91 .has_headers(!log_file_exists)
92 .from_writer(logfile);
93 let mut presses = HashMap::<MessageKey, Range>::new();
94 let socket = UdpSocket::bind("0.0.0.0:29803").expect("couldn't bind to address");
96 let mut buf = [0; MESSAGE_SIZE];
97 match socket.recv_from(&mut buf) {
98 Err(e) => eprintln!("Didn't receive data: {e}"),
99 Ok((number_of_bytes, src_addr)) => {
100 let filled_buf = &buf[..number_of_bytes];
101 if number_of_bytes != MESSAGE_SIZE {
102 eprintln!("Ignoring short message ({number_of_bytes}) from {src_addr}");
105 let message = Message::try_from(filled_buf).expect("I can't count");
106 log.serialize((&message.key, message.t))
107 .expect("Couldn't write log");
108 log.flush().expect("Couldn't flush log");
109 if let Some(r) = presses.get_mut(&message.key) {
110 if !r.contains(&message.t) {
111 r.extend(&message.t);
114 presses.insert(message.key, Range::new(&message.t));