implement modem on a Read/Write structure (rx, tx)

This commit is contained in:
Vladan Popovic 2022-06-12 12:02:59 +02:00
parent fbe132295e
commit e3c3aa7391
2 changed files with 81 additions and 21 deletions

View file

@ -1,29 +1,64 @@
use std;
use std::io::{Read, Write};
pub struct Modem {
pub struct Modem<R: Read, W: Write> {
is_connected: bool,
rx: R,
tx: W,
}
#[derive(Debug, Clone)]
pub struct ModemConnectionError;
pub enum ModemError {
GprsAPConnectionError(String),
ATCommandError(String),
CommandError(String),
}
impl std::fmt::Display for ModemConnectionError {
impl std::fmt::Display for ModemError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "gprs connection error")
}
}
type ModemConnection = Result<Modem, ModemConnectionError>;
impl Modem {
pub fn new() -> Self {
Self {
is_connected: false,
match self {
Self::GprsAPConnectionError(msg) => write!(f, "gprs connection error {}", msg),
Self::ATCommandError(msg) => write!(f, "AT command error {}", msg),
Self::CommandError(msg) => write!(f, "Modem command error {}", msg),
}
}
pub fn connect_to_gprs_ap(mut self, apn: &str, username: &str, password: &str)-> ModemConnection {
// TODO: set AT command for connecting to gprs
self.is_connected = true;
Ok(self)
}
pub type Result<T> = std::result::Result<T, ModemError>;
impl<R: Read, W: Write> Modem<R, W> {
pub fn new(rx: R, tx: W) -> Self {
Self {
is_connected: false,
rx,
tx,
}
}
fn at_command(&mut self, cmd: &str) -> Result<String> {
let mut msg = "AT+".to_owned();
msg.push_str(cmd);
self.send_command(msg.to_owned())
.map_err(|err| ModemError::ATCommandError(format!("{}", err)))
}
fn send_command(&mut self, cmd: String) -> Result<String> {
self.tx.write(cmd.as_bytes())
.map_err(|err| ModemError::CommandError(format!("{}", err)))?;
let mut response = String::new();
self.rx.read_to_string(&mut response)
.map_err(|err| ModemError::CommandError(format!("{}", err)))?;
if cfg!(debug_assertions) {
println!("{} = {}", cmd, response);
}
Ok(response)
}
pub fn connect_to_gprs_ap(&mut self, apn: &str, username: &str, password: &str)-> Result<()> {
self.at_command("CGATTCGATT=1")
.map(|_| {
println!("connecting to {} with {}:{}", apn, username, password);
self.is_connected = true;
})
.map_err(|err| ModemError::GprsAPConnectionError(format!("{}", err)))
}
}