xmpp-rs/src/xmpp_stream.rs

72 lines
2 KiB
Rust
Raw Normal View History

2017-07-18 20:54:10 +00:00
use futures::{Poll, Stream, Sink, StartSend};
use futures::sink::Send;
use tokio_io::{AsyncRead, AsyncWrite};
2018-07-31 21:34:04 +00:00
use tokio_codec::Framed;
use minidom::Element;
2017-06-13 23:55:56 +00:00
use jid::Jid;
use xmpp_codec::{XMPPCodec, Packet};
2017-07-18 20:54:10 +00:00
use stream_start::StreamStart;
pub const NS_XMPP_STREAM: &str = "http://etherx.jabber.org/streams";
pub struct XMPPStream<S> {
2017-06-13 23:55:56 +00:00
pub jid: Jid,
pub stream: Framed<S, XMPPCodec>,
pub stream_features: Element,
2017-07-18 23:02:45 +00:00
pub ns: String,
}
impl<S: AsyncRead + AsyncWrite> XMPPStream<S> {
2017-06-13 23:55:56 +00:00
pub fn new(jid: Jid,
stream: Framed<S, XMPPCodec>,
2017-07-18 23:02:45 +00:00
ns: String,
stream_features: Element) -> Self {
2017-07-18 23:02:45 +00:00
XMPPStream { jid, stream, stream_features, ns }
2017-06-13 23:55:56 +00:00
}
2017-07-18 23:02:45 +00:00
pub fn start(stream: S, jid: Jid, ns: String) -> StreamStart<S> {
2018-07-31 21:34:04 +00:00
let xmpp_stream = Framed::new(stream, XMPPCodec::new());
2017-07-18 23:02:45 +00:00
StreamStart::from_stream(xmpp_stream, jid, ns)
}
pub fn into_inner(self) -> S {
self.stream.into_inner()
}
2017-06-05 23:38:48 +00:00
pub fn restart(self) -> StreamStart<S> {
2017-07-18 23:02:45 +00:00
Self::start(self.stream.into_inner(), self.jid, self.ns)
2017-06-05 23:38:48 +00:00
}
}
impl<S: AsyncWrite> XMPPStream<S> {
/// Convenience method
pub fn send_stanza<E: Into<Element>>(self, e: E) -> Send<Self> {
self.send(Packet::Stanza(e.into()))
}
}
2017-06-05 23:29:20 +00:00
/// Proxy to self.stream
impl<S: AsyncWrite> Sink for XMPPStream<S> {
type SinkItem = <Framed<S, XMPPCodec> as Sink>::SinkItem;
type SinkError = <Framed<S, XMPPCodec> as Sink>::SinkError;
fn start_send(&mut self, item: Self::SinkItem) -> StartSend<Self::SinkItem, Self::SinkError> {
self.stream.start_send(item)
}
fn poll_complete(&mut self) -> Poll<(), Self::SinkError> {
self.stream.poll_complete()
}
}
2017-06-05 23:29:20 +00:00
/// Proxy to self.stream
impl<S: AsyncRead> Stream for XMPPStream<S> {
type Item = <Framed<S, XMPPCodec> as Stream>::Item;
type Error = <Framed<S, XMPPCodec> as Stream>::Error;
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
self.stream.poll()
}
}