Some servers don't send to in initial presence
[?]
Dec 31, 2018, 3:29 PM
PVCRPP3BXTLRRT2VK2BCKFCRJXUOX3AEF2A6UCPOSZYEKQEMBWDQCDependencies
- [2]
4LRBIGVTShow info about xmpp errors - [3]
HOAZX2PBReorganize roster processing. Output roster - [4]
TDOR5XQUAccept destination - [5]
X6L47BHQUse different structure for established xmpp connection - [6]
ZI4GJ72VAdd message to xmpp command - [7]
PBRUH4BJRename optional XmppConnection to MaybeXmppConnection - [8]
AGIW6YR3Use shared future for signal everywhere - [9]
FVVPKFTLInitial commit - [10]
VS6AHRWIMove XMPP to separate dir - [11]
3GEU7TC7Welcome to 2018! - [12]
QYY3KRGLUse failure instead Box<dyn Error> - [13]
BTOZT4JPUse failure - [14]
HU3NZX5ZProcess self-presence via new processing code - [15]
OGMBXBKPMove online to XmppConnection - [16]
EOHEZXX3Move request processing to structure - [17]
PFC7OJQFQuery roster - [18]
QWE26TMVupdate deps - [19]
5OBTKGDLUpdate deps - [20]
L77O4T7MFormatting and fixes - [21]
5A5UVGNMMove receiver closing logic out of xmpp processing - [22]
FV6BJ5K6Send self-presence and store account info in Rc so it willbe used in some future in parallel - [23]
IK3YDPTYUpdate deps - [24]
XGP44R5HRework stopping xmpp connection - [25]
NDDQQP2PUpdate deps
Change contents
- replacement in src/xmpp/mod.rs at line 38
/// Error shoud be !fn connect<E: 'static>(self) -> impl Future<Item = XmppConnection, Error = E> {/// don't connect if stop_future resolvedfn connect<F>(self,stop_future: F,) -> impl Future<Item = XmppConnection, Error = failure::Error>whereF: future::Future + Clone + 'static,<F as hyper::rt::Future>::Error: Into<failure::Error> + Send,{ - replacement in src/xmpp/mod.rs at line 52
as Box<Future<Item = _, Error = E>>as Box<Future<Item = _, Error = _>> - replacement in src/xmpp/mod.rs at line 54
Box::new(future::loop_fn(account, |account| {info!("xmpp initialization...");let mut res_client = Client::new(&account.jid, &account.password);while let Err(e) = res_client {error!("Cann't init xmpp client: {}", e);res_client = Client::new(&account.jid, &account.password);}let client = res_client.expect("Cann't init xmpp client");info!("xmpp initialized");Box::new(stop_future.clone().select2(future::loop_fn(account, move |account| {info!("xmpp initialization...");let res_client = Client::new(&account.jid, &account.password);match res_client {Err(_e) => Box::new(future::ok(future::Loop::Continue(account)))as Box<Future<Item = _, Error = _>>,Ok(client) => {info!("xmpp initialized");let stop_future2 = stop_future.clone(); - replacement in src/xmpp/mod.rs at line 69
// future to wait for onlineXmppConnection {inner: client,account,}.online().and_then(XmppConnection::self_presence).then(|r| match r {Ok(conn) => future::ok(future::Loop::Break(conn)),Err(acc) => future::ok(future::Loop::Continue(acc)),})}))// future to wait for onlineBox::new(XmppConnection {inner: client,account,}.processing(XmppConnection::online, stop_future.clone()).map(|(conn, _)| conn).map_err(|(acc, _)| acc).and_then(|conn| conn.self_presence(stop_future2)).then(|r| match r {Ok(conn) => future::ok(future::Loop::Break(conn)),Err(acc) => future::ok(future::Loop::Continue(acc)),},),)}}}).map_err(|_: ()| ()),).then(|r| match r {Ok(Either::A((_x, _b))) => future::err(format_err!("Stop XMMP connection")),Ok(Either::B((x, _a))) => future::ok(x),Err(Either::A((e, _b))) => future::err(e.into()),Err(Either::B((_, _a))) => {future::err(format_err!("Cann't initiate XMPP connection"))}}),) - replacement in src/xmpp/mod.rs at line 106
fn xmpp_processing(&mut self, event: &Event) {}fn xmpp_processing(&mut self, event: &Event) {info!("Incoming xmpp event: {:?}", event);} - replacement in src/xmpp/mod.rs at line 118
Item = (Self, Result<Either<F, T>, E>),Error = (std::rc::Rc<config::Account>, Result<Either<F, T>, E>),Item = (Self, Result<Either<F, T>, failure::Error>),Error = (std::rc::Rc<config::Account>,Result<Either<F, T>, failure::Error>,), - replacement in src/xmpp/mod.rs at line 126
S: FnMut(&mut Self, &Event) -> bool,E: Into<failure::Error>,S: FnMut(&mut Self, &Event) -> Result<bool, failure::Error>, - replacement in src/xmpp/mod.rs at line 141
if stop_condition(&mut xmpp, &event) {future::ok(future::Loop::Break((xmpp, Ok(Either::A(b)))))} else {future::ok(future::Loop::Continue((xmpp, b, stop_condition)))match stop_condition(&mut xmpp, &event) {Ok(true) => {future::ok(future::Loop::Break((xmpp, Ok(Either::A(b)))))}Ok(false) => {future::ok(future::Loop::Continue((xmpp, b, stop_condition)))}Err(e) => future::err((xmpp.account, Err(e))), - replacement in src/xmpp/mod.rs at line 164
Err(Either::A((e, b))) => {warn!("XMPP error: {}", e.0);future::err((account, Ok(Either::A(b))))}Err(Either::A((_e, b))) => future::err((account, Ok(Either::A(b)))), - replacement in src/xmpp/mod.rs at line 169
Err(e),Err(e.into()), - replacement in src/xmpp/mod.rs at line 172
future::err((account, Err(e)))future::err((account, Err(e.into()))) - replacement in src/xmpp/mod.rs at line 182[3.6432]→[2.1939:2924](∅→∅),[2.2924]→[3.1664:1690](∅→∅),[3.1664]→[3.1664:1690](∅→∅),[3.1690]→[2.2925:3091](∅→∅),[2.3091]→[3.1784:1806](∅→∅),[3.1784]→[3.1784:1806](∅→∅),[3.1806]→[2.3092:3137](∅→∅)
fn online(self) -> impl Future<Item = XmppConnection, Error = std::rc::Rc<config::Account>> {Box::new(future::loop_fn((self.inner, self.account),|(client, account)| {client.into_future().then(|r| match r {Ok((event, client)) => match event {Some(Event::Online) => {info!("Online");future::ok(future::Loop::Break(XmppConnection {account,inner: client,}))}Some(Event::Stanza(s)) => {info!("xmpp stanza: {:?}", s);future::ok(future::Loop::Continue((client, account)))}_ => {warn!("Disconnected");future::err(account)}},Err((e, _)) => {error!("xmpp receive error: {}", e);future::err(account)}})},))fn online(&mut self, event: &Event) -> Result<bool, failure::Error> {match event {Event::Online => {info!("Online!");Ok(true)}Event::Stanza(s) => {warn!("Stanza before online: {:?}", s);Ok(false)}_ => {error!("Disconnected while online");Err(format_err!("Disconnected while online"))}} - replacement in src/xmpp/mod.rs at line 199
fn self_presence(self) -> impl Future<Item = Self, Error = std::rc::Rc<config::Account>> {fn self_presence<F, E>(self,stop_future: F,) -> impl Future<Item = Self, Error = std::rc::Rc<config::Account>>whereF: Future<Error = E>,E: Into<failure::Error>,{ - replacement in src/xmpp/mod.rs at line 214
Box::new(client.send(presence).map_err(|e| {error!("Error on send self-presence: {}", e);"Cann't send self-presence".to_owned()}).and_then(move |client| {future::loop_fn((account2.clone(), client), |(account, client)| {client.into_future().map_err(|(e, _)| {error!("Error on reading self-presence: {}", e);"Cann't read self-presence".to_owned()}).and_then(|(event, client)| match event {Some(event) => {if let tokio_xmpp::Event::Stanza(e) = event {info!("Get stanza: {:?}", e);if e.name() == "presence"&& e.attr("from").map_or(false, |f| f == account.jid)&& e.attr("to").map_or(false, |f| f == account.jid){info!("Self presence");future::ok(future::Loop::Break(client))} else {future::ok(future::Loop::Continue((account, client)))}} else {future::err("Got wrong event".to_owned())}}None => future::err("Got closed stream".to_owned()),})}).map_err(|e| format!("waiting self-presence: {}", e))}).then(|r| match r {Err(e) => {error!("Self-presence waiting error: {}", e);future::err(account)}Ok(inner) => future::ok(XmppConnection { account, inner }),}),)client.send(presence).map_err(|e| {error!("Error on send self-presence: {}", e);(account2, Err(failure::SyncFailure::new(e).into()))}).and_then(move |client| {XmppConnection {inner: client,account,}.processing(move |conn, event| {if let Event::Stanza(s) = event {if s.name() == "presence"&& s.attr("from").map_or(false, |f| f == conn.account.jid){Ok(true)} else {Ok(false)}} else {Err(format_err!("Wrong event while waiting self-presence"))}},stop_future,)}).then(|r| match r {Err((account, e)) => {error!("Cann't wait self-presence");future::err(account)}Ok((conn, _)) => future::ok(conn),}) - replacement in src/xmpp/mod.rs at line 277
F: future::Future<Item = ()> + 'static,F: future::Future + Clone + 'static,<F as hyper::rt::Future>::Error: std::fmt::Display + Into<failure::Error> + Send, - edit in src/xmpp/mod.rs at line 281
let signal = signal.map_err(|_| format_err!("Wrong shutdown signal")); - replacement in src/xmpp/mod.rs at line 289
signal.select2(conn.connect().and_then(|conn| {conn.connect(signal.clone()).and_then(|conn| { - replacement in src/xmpp/mod.rs at line 298
.map(|f| (f, conn))})).map(|(cmd, cmd_recv)| (cmd, cmd_recv, conn))}) - replacement in src/xmpp/mod.rs at line 302
Ok(Either::A((_x, b))) => {info!("Got signal");// got signal, breaksBox::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1.into()))))as Box<Future<Item = _, Error = _>>Ok((cmd, cmd_recv, conn)) => {if let Some(_cmd) = cmd {info!("Got cmd");// got cmd, continuefuture::ok(future::Loop::Continue(XmppState::new(cmd_recv,signal,conn.into(),)))} else {future::ok(future::Loop::Break((None, conn.into())))} - replacement in src/xmpp/mod.rs at line 315[2.6261]→[2.6261:6986](∅→∅),[2.6986]→[3.7045:7067](∅→∅),[3.9763]→[3.7045:7067](∅→∅),[3.7045]→[3.7045:7067](∅→∅),[3.7067]→[2.6987:7036](∅→∅)
Ok(Either::B((x, a))) => {info!("Got cmd");// got cmd, continueBox::new(future::ok(future::Loop::Continue(XmppState::new((x.0).1,a,x.1.into(),)))) as Box<Future<Item = _, Error = _>>}Err(Either::A((e, b))) => {// got signal error, breakserror!("Signal error: {}", e);Box::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1.into()))))as Box<Future<Item = _, Error = _>>}Err(Either::B((e, _a))) => {Err(e) => { - replacement in src/xmpp/mod.rs at line 318
Box::new(future::err(format_err!("Cmd error")))as Box<Future<Item = _, Error = _>>future::err(format_err!("Cmd error")) - replacement in src/xmpp/mod.rs at line 333
Box::new(future::err(format_err!("cmd receiver gone")))Box::new(future::ok(())) - replacement in src/main.rs at line 63
.map_err(|e| error!("Cann't get CTRL+C signal: {}", e.0)).map_err(|e| {error!("Cann't get CTRL+C signal: {}", e.0);e.0}) - replacement in src/main.rs at line 100
let result = ctrt.block_on(xmpp_process(ctrl_c.clone().map(|_| ()),recv,config.account,));let result = ctrt.block_on(xmpp_process(ctrl_c.clone(), recv, config.account));