1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-01 07:08:07 +00:00
hls_m3u8/src/tags/master_playlist/session_data.rs

142 lines
4.6 KiB
Rust
Raw Normal View History

2019-09-06 10:55:00 +00:00
use crate::attribute::AttributePairs;
2019-09-08 09:30:52 +00:00
use crate::types::{ProtocolVersion, SessionData};
use crate::utils::{quote, unquote};
2019-09-06 10:55:00 +00:00
use crate::{Error, ErrorKind, Result};
use std::fmt;
use std::str::FromStr;
/// [4.3.4.4. EXT-X-SESSION-DATA]
///
/// [4.3.4.4. EXT-X-SESSION-DATA]: https://tools.ietf.org/html/rfc8216#section-4.3.4.4
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct ExtXSessionData {
2019-09-08 09:30:52 +00:00
data_id: String,
2019-09-06 10:55:00 +00:00
data: SessionData,
2019-09-08 09:30:52 +00:00
language: Option<String>,
2019-09-06 10:55:00 +00:00
}
impl ExtXSessionData {
pub(crate) const PREFIX: &'static str = "#EXT-X-SESSION-DATA:";
/// Makes a new `ExtXSessionData` tag.
2019-09-08 09:30:52 +00:00
pub fn new<T: ToString>(data_id: T, data: SessionData) -> Self {
2019-09-06 10:55:00 +00:00
ExtXSessionData {
2019-09-08 09:30:52 +00:00
data_id: data_id.to_string(),
2019-09-06 10:55:00 +00:00
data,
language: None,
}
}
/// Makes a new `ExtXSessionData` with the given language.
2019-09-08 09:30:52 +00:00
pub fn with_language<T: ToString>(data_id: T, data: SessionData, language: T) -> Self {
2019-09-06 10:55:00 +00:00
ExtXSessionData {
2019-09-08 09:30:52 +00:00
data_id: data_id.to_string(),
2019-09-06 10:55:00 +00:00
data,
2019-09-08 09:30:52 +00:00
language: Some(language.to_string()),
2019-09-06 10:55:00 +00:00
}
}
/// Returns the identifier of the data.
2019-09-08 10:23:33 +00:00
pub const fn data_id(&self) -> &String {
2019-09-06 10:55:00 +00:00
&self.data_id
}
/// Returns the session data.
2019-09-08 10:23:33 +00:00
pub const fn data(&self) -> &SessionData {
2019-09-06 10:55:00 +00:00
&self.data
}
/// Returns the language of the data.
2019-09-08 09:30:52 +00:00
pub fn language(&self) -> Option<&String> {
2019-09-06 10:55:00 +00:00
self.language.as_ref()
}
/// Returns the protocol compatibility version that this tag requires.
2019-09-08 10:23:33 +00:00
pub const fn requires_version(&self) -> ProtocolVersion {
2019-09-06 10:55:00 +00:00
ProtocolVersion::V1
}
}
impl fmt::Display for ExtXSessionData {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", Self::PREFIX)?;
2019-09-08 09:30:52 +00:00
write!(f, "DATA-ID={}", quote(&self.data_id))?;
2019-09-06 10:55:00 +00:00
match self.data {
2019-09-08 09:30:52 +00:00
SessionData::Value(ref x) => write!(f, ",VALUE={}", quote(x))?,
SessionData::Uri(ref x) => write!(f, ",URI={}", quote(x))?,
2019-09-06 10:55:00 +00:00
}
if let Some(ref x) = self.language {
2019-09-08 09:30:52 +00:00
write!(f, ",LANGUAGE={}", quote(x))?;
2019-09-06 10:55:00 +00:00
}
Ok(())
}
}
impl FromStr for ExtXSessionData {
type Err = Error;
2019-09-08 10:23:33 +00:00
2019-09-06 10:55:00 +00:00
fn from_str(s: &str) -> Result<Self> {
track_assert!(s.starts_with(Self::PREFIX), ErrorKind::InvalidInput);
let mut data_id = None;
let mut session_value = None;
let mut uri = None;
let mut language = None;
let attrs = AttributePairs::parse(s.split_at(Self::PREFIX.len()).1);
for attr in attrs {
let (key, value) = track!(attr)?;
match key {
2019-09-08 09:30:52 +00:00
"DATA-ID" => data_id = Some(unquote(value)),
"VALUE" => session_value = Some(unquote(value)),
"URI" => uri = Some(unquote(value)),
"LANGUAGE" => language = Some(unquote(value)),
2019-09-06 10:55:00 +00:00
_ => {
// [6.3.1. General Client Responsibilities]
// > ignore any attribute/value pair with an unrecognized AttributeName.
}
}
}
let data_id = track_assert_some!(data_id, ErrorKind::InvalidInput);
let data = if let Some(value) = session_value {
track_assert_eq!(uri, None, ErrorKind::InvalidInput);
SessionData::Value(value)
} else if let Some(uri) = uri {
SessionData::Uri(uri)
} else {
track_panic!(ErrorKind::InvalidInput);
};
Ok(ExtXSessionData {
data_id,
data,
language,
})
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn ext_x_session_data() {
2019-09-08 09:30:52 +00:00
let tag = ExtXSessionData::new("foo", SessionData::Value("bar".into()));
2019-09-06 10:55:00 +00:00
let text = r#"#EXT-X-SESSION-DATA:DATA-ID="foo",VALUE="bar""#;
assert_eq!(text.parse().ok(), Some(tag.clone()));
assert_eq!(tag.to_string(), text);
assert_eq!(tag.requires_version(), ProtocolVersion::V1);
2019-09-08 09:30:52 +00:00
let tag = ExtXSessionData::new("foo", SessionData::Uri("bar".into()));
2019-09-06 10:55:00 +00:00
let text = r#"#EXT-X-SESSION-DATA:DATA-ID="foo",URI="bar""#;
assert_eq!(text.parse().ok(), Some(tag.clone()));
assert_eq!(tag.to_string(), text);
assert_eq!(tag.requires_version(), ProtocolVersion::V1);
2019-09-08 09:30:52 +00:00
let tag = ExtXSessionData::with_language("foo", SessionData::Value("bar".into()), "baz");
2019-09-06 10:55:00 +00:00
let text = r#"#EXT-X-SESSION-DATA:DATA-ID="foo",VALUE="bar",LANGUAGE="baz""#;
assert_eq!(text.parse().ok(), Some(tag.clone()));
assert_eq!(tag.to_string(), text);
assert_eq!(tag.requires_version(), ProtocolVersion::V1);
}
}