xmpp-rs/src/lib.rs

140 lines
3.5 KiB
Rust
Raw Normal View History

2017-04-21 00:06:30 +00:00
//! A crate parsing common XMPP elements into Rust structures.
//!
2017-05-06 20:41:33 +00:00
//! Each module implements the `TryFrom<&minidom::Element>` trait, which takes
//! a minidom `Element` reference and returns a `Result`.
2017-04-21 00:06:30 +00:00
//!
2017-05-06 20:41:33 +00:00
//! Parsed structs can then be manipulated manually, and must be serialised
//! back before being sent over the wire.
2017-04-21 00:06:30 +00:00
2017-04-29 21:14:34 +00:00
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
// Copyright (c) 2017 Maxime “pep” Buquet <pep+code@bouah.net>
2017-04-29 21:14:34 +00:00
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#![feature(try_from)]
2017-04-18 19:44:36 +00:00
extern crate minidom;
extern crate jid;
extern crate base64;
2017-04-23 18:28:03 +00:00
extern crate digest;
extern crate sha_1;
extern crate sha2;
extern crate sha3;
extern crate blake2;
extern crate chrono;
2017-04-18 19:44:36 +00:00
macro_rules! get_attr {
($elem:ident, $attr:tt, $type:tt) => (
get_attr!($elem, $attr, $type, value, value.parse()?)
);
($elem:ident, $attr:tt, optional, $value:ident, $func:expr) => (
match $elem.attr($attr) {
Some($value) => Some($func),
None => None,
}
);
($elem:ident, $attr:tt, required, $value:ident, $func:expr) => (
match $elem.attr($attr) {
Some($value) => $func,
None => return Err(Error::ParseError(concat!("Required attribute '", $attr, "' missing."))),
}
);
($elem:ident, $attr:tt, default, $value:ident, $func:expr) => (
match $elem.attr($attr) {
Some($value) => $func,
None => Default::default(),
}
);
}
2017-04-21 00:06:30 +00:00
/// Error type returned by every parser on failure.
2017-04-18 19:44:36 +00:00
pub mod error;
2017-04-21 00:06:30 +00:00
/// XML namespace definitions used through XMPP.
2017-04-18 19:44:36 +00:00
pub mod ns;
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
pub mod message;
2017-04-21 00:06:30 +00:00
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
2017-04-23 16:30:23 +00:00
pub mod presence;
2017-04-23 19:38:13 +00:00
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
pub mod iq;
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
pub mod stanza_error;
2017-04-23 18:28:25 +00:00
2017-05-28 15:30:43 +00:00
/// RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence
pub mod roster;
2017-04-21 00:06:30 +00:00
/// XEP-0004: Data Forms
2017-04-18 19:44:36 +00:00
pub mod data_forms;
2017-04-21 00:06:30 +00:00
/// XEP-0030: Service Discovery
pub mod disco;
/// XEP-0045: Multi-User Chat
pub mod muc;
2017-04-21 00:06:30 +00:00
/// XEP-0047: In-Band Bytestreams
2017-04-19 20:52:14 +00:00
pub mod ibb;
2017-04-21 00:06:30 +00:00
2017-04-29 03:37:18 +00:00
/// XEP-0059: Result Set Management
pub mod rsm;
2017-04-21 00:06:30 +00:00
/// XEP-0085: Chat State Notifications
pub mod chatstates;
/// XEP-0115: Entity Capabilities
pub mod caps;
2017-04-21 00:06:30 +00:00
/// XEP-0166: Jingle
pub mod jingle;
/// XEP-0184: Message Delivery Receipts
2017-04-19 23:43:33 +00:00
pub mod receipts;
2017-04-21 00:06:30 +00:00
/// XEP-0199: XMPP Ping
pub mod ping;
2017-04-21 02:57:34 +00:00
/// XEP-0203: Delayed Delivery
pub mod delay;
2017-04-21 00:06:30 +00:00
/// XEP-0221: Data Forms Media Element
pub mod media_element;
2017-04-21 00:53:47 +00:00
/// XEP-0224: Attention
pub mod attention;
2017-04-22 16:39:21 +00:00
/// XEP-0234: Jingle File Transfer
pub mod jingle_ft;
/// XEP-0260: Jingle SOCKS5 Bytestreams Transport Method
pub mod jingle_s5b;
2017-04-22 18:15:48 +00:00
/// XEP-0261: Jingle In-Band Bytestreams Transport Method
pub mod jingle_ibb;
/// XEP-0297: Stanza Forwarding
pub mod forwarding;
2017-04-21 03:21:16 +00:00
/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
pub mod hashes;
2017-04-21 01:07:44 +00:00
/// XEP-0308: Last Message Correction
pub mod message_correct;
2017-04-29 05:07:00 +00:00
/// XEP-0313: Message Archive Management
pub mod mam;
2017-05-21 19:22:48 +00:00
/// XEP-0319: Last User Interaction in Presence
pub mod idle;
2017-04-29 02:23:50 +00:00
/// XEP-0359: Unique and Stable Stanza IDs
pub mod stanza_id;
/// XEP-0380: Explicit Message Encryption
pub mod eme;
2017-04-21 00:06:30 +00:00
/// XEP-0390: Entity Capabilities 2.0
pub mod ecaps2;