1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-03 05:59:22 +00:00
hls_m3u8/src/tags/media_segment/map.rs

112 lines
3.1 KiB
Rust
Raw Normal View History

2019-09-06 10:55:00 +00:00
use std::fmt;
use std::str::FromStr;
2019-09-13 14:06:52 +00:00
use crate::attribute::AttributePairs;
use crate::types::{ByteRange, ProtocolVersion};
use crate::utils::{quote, tag, unquote};
use crate::Error;
2019-09-06 10:55:00 +00:00
/// [4.3.2.5. EXT-X-MAP]
///
/// [4.3.2.5. EXT-X-MAP]: https://tools.ietf.org/html/rfc8216#section-4.3.2.5
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct ExtXMap {
2019-09-08 09:30:52 +00:00
uri: String,
2019-09-06 10:55:00 +00:00
range: Option<ByteRange>,
}
impl ExtXMap {
pub(crate) const PREFIX: &'static str = "#EXT-X-MAP:";
/// Makes a new `ExtXMap` tag.
2019-09-08 09:30:52 +00:00
pub fn new<T: ToString>(uri: T) -> Self {
ExtXMap {
uri: uri.to_string(),
range: None,
}
2019-09-06 10:55:00 +00:00
}
/// Makes a new `ExtXMap` tag with the given range.
2019-09-08 09:30:52 +00:00
pub fn with_range<T: ToString>(uri: T, range: ByteRange) -> Self {
2019-09-06 10:55:00 +00:00
ExtXMap {
2019-09-08 09:30:52 +00:00
uri: uri.to_string(),
2019-09-06 10:55:00 +00:00
range: Some(range),
}
}
/// Returns the URI that identifies a resource that contains the media initialization section.
2019-09-08 10:23:33 +00:00
pub const fn uri(&self) -> &String {
2019-09-06 10:55:00 +00:00
&self.uri
}
/// Returns the range of the media initialization section.
2019-09-08 10:23:33 +00:00
pub const fn range(&self) -> Option<ByteRange> {
2019-09-06 10:55:00 +00:00
self.range
}
/// 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::V6
}
}
impl fmt::Display for ExtXMap {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", Self::PREFIX)?;
2019-09-08 09:30:52 +00:00
write!(f, "URI={}", quote(&self.uri))?;
2019-09-14 19:42:06 +00:00
if let Some(value) = &self.range {
write!(f, ",BYTERANGE={}", quote(value))?;
2019-09-06 10:55:00 +00:00
}
Ok(())
}
}
impl FromStr for ExtXMap {
type Err = Error;
2019-09-08 10:23:33 +00:00
2019-09-13 14:06:52 +00:00
fn from_str(input: &str) -> Result<Self, Self::Err> {
let input = tag(input, Self::PREFIX)?;
2019-09-06 10:55:00 +00:00
let mut uri = None;
let mut range = None;
2019-09-14 09:31:16 +00:00
for (key, value) in input.parse::<AttributePairs>()? {
match key.as_str() {
2019-09-08 09:30:52 +00:00
"URI" => uri = Some(unquote(value)),
2019-09-06 10:55:00 +00:00
"BYTERANGE" => {
2019-09-13 14:06:52 +00:00
range = Some((unquote(value).parse())?);
2019-09-06 10:55:00 +00:00
}
_ => {
// [6.3.1. General Client Responsibilities]
// > ignore any attribute/value pair with an unrecognized AttributeName.
}
}
}
2019-09-13 14:06:52 +00:00
let uri = uri.ok_or(Error::missing_value("EXT-X-URI"))?;
2019-09-06 10:55:00 +00:00
Ok(ExtXMap { uri, range })
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn ext_x_map() {
2019-09-08 09:30:52 +00:00
let tag = ExtXMap::new("foo");
2019-09-06 10:55:00 +00:00
let text = r#"#EXT-X-MAP:URI="foo""#;
assert_eq!(text.parse().ok(), Some(tag.clone()));
assert_eq!(tag.to_string(), text);
assert_eq!(tag.requires_version(), ProtocolVersion::V6);
2019-09-10 09:05:20 +00:00
let tag = ExtXMap::with_range("foo", ByteRange::new(9, Some(2)));
2019-09-06 10:55:00 +00:00
let text = r#"#EXT-X-MAP:URI="foo",BYTERANGE="9@2""#;
2019-09-13 14:06:52 +00:00
ExtXMap::from_str(text).unwrap();
2019-09-06 10:55:00 +00:00
assert_eq!(text.parse().ok(), Some(tag.clone()));
assert_eq!(tag.to_string(), text);
assert_eq!(tag.requires_version(), ProtocolVersion::V6);
}
}