diff options
Diffstat (limited to 'src/client.rs')
-rw-r--r-- | src/client.rs | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/src/client.rs b/src/client.rs new file mode 100644 index 0000000..a738262 --- /dev/null +++ b/src/client.rs @@ -0,0 +1,140 @@ +use std::io::{ + self, + Write, + Read, + BufRead, + BufReader, +}; + +use std::net::TcpStream; +use std::borrow::Cow; + +use message::Message; +use command::Command; +use ::{ DEBUG, Result, IrscError }; + +#[cfg(feature = "ssl")] +use openssl::ssl::{ SslContext, SslMethod, SslStream }; + +/// Yes, I don't like the name either, but it's private, so... +enum StreamKind { + Plain(TcpStream), + #[cfg(feature = "ssl")] + Ssl(SslStream) +} + +impl Write for StreamKind { + fn write(&mut self, buf: &[u8]) -> io::Result<usize> { + match *self { + StreamKind::Plain(ref mut s) => s.write(buf), + #[cfg(feature = "ssl")] + StreamKind::Ssl(ref mut s) => s.write(buf) + } + } + + fn flush(&mut self) -> io::Result<()> { + match *self { + StreamKind::Plain(ref mut s) => s.flush(), + #[cfg(feature = "ssl")] + StreamKind::Ssl(ref mut s) => s.flush() + } + } +} + +impl Read for StreamKind { + fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { + match *self { + StreamKind::Plain(ref mut s) => s.read(buf), + #[cfg(feature = "ssl")] + StreamKind::Ssl(ref mut s) => s.read(buf) + } + } +} + +pub struct Client { + stream: Option<StreamKind> +} + +impl Client { + pub fn new() -> Client { + Client { + stream: None + } + } + + fn handle_event(&mut self, msg: &Message) { + let _ = match Command::from_message(msg) { + Some(Command::PING(s1, s2)) => self.send(Command::PONG(s1, s2)), + _ => Ok(()) + }; + } + + pub fn connect(&mut self, host: String, port: u16) -> Result<()> { + let s = &mut self.stream; + match *s { Some(_) => return Err(IrscError::AlreadyConnected), _ => () }; + *s = match TcpStream::connect((host.as_ref(), port)) { + Ok(tcp) => Some(StreamKind::Plain(tcp)), + Err(e) => return Err(IrscError::Io(e)) + }; + + Ok(()) + } + + #[cfg(feature = "ssl")] + pub fn connect_ssl(&mut self, host: String, port: u16) -> Result<()> { + let mut s = self.stream.lock(); + match *s { Some(_) => return Err(IrscError::AlreadyConnected), _ => () }; + let tcp_stream = match TcpStream::connect((host.as_ref(), port)) { + Ok(tcp) => Some(tcp), + Err(e) => return Err(IrscError::Io(e)) + }; + + let ssl = SslContext::new(SslMethod::Tlsv1); + let ssl_stream = SslStream::new(&ssl, tcp_stream); + *s = ssl_stream; + + Ok(()) + } + + #[inline] + fn send_raw(&mut self, s: &str) -> Result<()> { + info!(">> {}", s); + if DEBUG && s.len() > 512 { + panic!("Message too long, kittens will die if this runs in release mode. Msg: {}", s) + } + + self.stream.as_mut() + .ok_or(IrscError::NotConnected) + .and_then(|mut stream| stream.write_all(s.as_bytes()) + .and_then(|_| stream.flush()) + .map_err(IrscError::Io)) + } + + pub fn send_message(&mut self, msg: Message) -> Result<()> { + self.send_raw(&msg.to_string()) + } + + pub fn send(&mut self, cmd: Command) -> Result<()> { + self.send_message(cmd.to_message()) + } + + pub fn listen<F>(&mut self, events: F) -> Result<()> + where F: Fn(&mut Client, &Message) { + let reader = BufReader::new(match self.stream { + Some(StreamKind::Plain(ref s)) => (*s).try_clone().unwrap(), + #[cfg(feature = "ssl")] + Some(StreamKind::Ssl(ref s)) => (*s).try_clone().unwrap(), + None => return Err(IrscError::NotConnected) + }); + + for line in reader.lines() { + let line = line.unwrap().parse(); + + if let Ok(msg) = line { + self.handle_event(&msg); + events(self, &msg); + } + } + Ok(()) + } +} |