mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
jingle, jingle_ft: Use the new generate_id! macro to simplify Sid/Cid generation.
This commit is contained in:
parent
95a19b4bb4
commit
a219501fed
2 changed files with 5 additions and 48 deletions
|
@ -245,29 +245,14 @@ impl IntoElements for ReasonElement {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct Sid(String);
|
||||
|
||||
impl FromStr for Sid {
|
||||
type Err = Error;
|
||||
fn from_str(s: &str) -> Result<Sid, Error> {
|
||||
// TODO: implement the NMTOKEN restrictions: https://www.w3.org/TR/2000/WD-xml-2e-20000814#NT-Nmtoken
|
||||
Ok(Sid(String::from(s)))
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoAttributeValue for Sid {
|
||||
fn into_attribute_value(self) -> Option<String> {
|
||||
return Some(self.0);
|
||||
}
|
||||
}
|
||||
generate_id!(SessionId);
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Jingle {
|
||||
pub action: Action,
|
||||
pub initiator: Option<Jid>,
|
||||
pub responder: Option<Jid>,
|
||||
pub sid: Sid,
|
||||
pub sid: SessionId,
|
||||
pub contents: Vec<Content>,
|
||||
pub reason: Option<ReasonElement>,
|
||||
pub other: Vec<Element>,
|
||||
|
@ -333,7 +318,7 @@ mod tests {
|
|||
let elem: Element = "<jingle xmlns='urn:xmpp:jingle:1' action='session-initiate' sid='coucou'/>".parse().unwrap();
|
||||
let jingle = Jingle::try_from(elem).unwrap();
|
||||
assert_eq!(jingle.action, Action::SessionInitiate);
|
||||
assert_eq!(jingle.sid, Sid(String::from("coucou")));
|
||||
assert_eq!(jingle.sid, SessionId(String::from("coucou")));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -25,37 +25,9 @@ generate_attribute!(Mode, "mode", {
|
|||
Udp => "udp",
|
||||
}, Default = Tcp);
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct CandidateId(String);
|
||||
generate_id!(CandidateId);
|
||||
|
||||
impl FromStr for CandidateId {
|
||||
type Err = Error;
|
||||
fn from_str(s: &str) -> Result<CandidateId, Error> {
|
||||
Ok(CandidateId(String::from(s)))
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoAttributeValue for CandidateId {
|
||||
fn into_attribute_value(self) -> Option<String> {
|
||||
return Some(self.0);
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct StreamId(String);
|
||||
|
||||
impl FromStr for StreamId {
|
||||
type Err = Error;
|
||||
fn from_str(s: &str) -> Result<StreamId, Error> {
|
||||
Ok(StreamId(String::from(s)))
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoAttributeValue for StreamId {
|
||||
fn into_attribute_value(self) -> Option<String> {
|
||||
return Some(self.0);
|
||||
}
|
||||
}
|
||||
generate_id!(StreamId);
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Candidate {
|
||||
|
|
Loading…
Reference in a new issue