mediasoup 0.0.1

Cutting Edge WebRTC Video Conferencing
Documentation
use once_cell::sync::OnceCell;
use regex::Regex;

static SCALABILITY_MODE_REGEX: OnceCell<Regex> = OnceCell::new();

fn get_scalability_mode_regex_regex() -> &'static Regex {
    &SCALABILITY_MODE_REGEX
        .get_or_init(|| Regex::new(r"^[LS]([1-9]\\d?)T([1-9]\\d?)(_KEY)?").unwrap())
}

pub struct ScalabilityMode {
    pub spatial_layers: u8,
    pub temporal_layers: u8,
    pub ksvc: bool,
}

impl Default for ScalabilityMode {
    fn default() -> Self {
        Self {
            spatial_layers: 1,
            temporal_layers: 1,
            ksvc: false,
        }
    }
}

// TODO: No tests for this now, may not work properly
pub fn parse(scalability_mode: &str) -> ScalabilityMode {
    get_scalability_mode_regex_regex()
        .captures(scalability_mode)
        .map(|captures| ScalabilityMode {
            spatial_layers: captures.get(1).unwrap().as_str().parse().unwrap(),
            temporal_layers: captures.get(2).unwrap().as_str().parse().unwrap(),
            ksvc: captures.get(3).is_some(),
        })
        .unwrap_or_default()
}