389 lines
10 KiB
Rust
389 lines
10 KiB
Rust
use std::io::Read;
|
|
|
|
use std::{fs, io, path, time};
|
|
|
|
use mp4::ReadBox;
|
|
|
|
use anyhow::Context;
|
|
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
|
|
use moq_transport::VarInt;
|
|
|
|
use super::MapSource;
|
|
use crate::model::{segment, track};
|
|
|
|
pub struct File {
|
|
// We read the file once, in order, and don't seek backwards.
|
|
reader: io::BufReader<fs::File>,
|
|
|
|
// The catalog for the broadcast, held just so it's closed only when the broadcast is over.
|
|
_catalog: track::Publisher,
|
|
|
|
// The tracks we're producing.
|
|
tracks: HashMap<String, Track>,
|
|
|
|
// A subscribable source.
|
|
source: Arc<MapSource>,
|
|
}
|
|
|
|
impl File {
|
|
pub fn new(path: path::PathBuf) -> anyhow::Result<Self> {
|
|
let f = fs::File::open(path)?;
|
|
let mut reader = io::BufReader::new(f);
|
|
|
|
let ftyp = read_atom(&mut reader)?;
|
|
anyhow::ensure!(&ftyp[4..8] == b"ftyp", "expected ftyp atom");
|
|
|
|
let moov = read_atom(&mut reader)?;
|
|
anyhow::ensure!(&moov[4..8] == b"moov", "expected moov atom");
|
|
|
|
let mut init = ftyp;
|
|
init.extend(&moov);
|
|
|
|
// We're going to parse the moov box.
|
|
// We have to read the moov box header to correctly advance the cursor for the mp4 crate.
|
|
let mut moov_reader = io::Cursor::new(&moov);
|
|
let moov_header = mp4::BoxHeader::read(&mut moov_reader)?;
|
|
|
|
// Parse the moov box so we can detect the timescales for each track.
|
|
let moov = mp4::MoovBox::read_box(&mut moov_reader, moov_header.size)?;
|
|
|
|
// Create a source that can be subscribed to.
|
|
let mut source = HashMap::default();
|
|
|
|
// Create the catalog track
|
|
let (_catalog, subscriber) = Self::create_catalog(init);
|
|
source.insert("0".to_string(), subscriber);
|
|
|
|
let mut tracks = HashMap::new();
|
|
|
|
for trak in &moov.traks {
|
|
let id = trak.tkhd.track_id;
|
|
let name = id.to_string();
|
|
|
|
let timescale = track_timescale(&moov, id);
|
|
|
|
// Store the track publisher in a map so we can update it later.
|
|
let track = Track::new(&name, timescale);
|
|
source.insert(name.to_string(), track.subscribe());
|
|
|
|
tracks.insert(name, track);
|
|
}
|
|
|
|
let source = Arc::new(MapSource(source));
|
|
|
|
Ok(Self {
|
|
reader,
|
|
_catalog,
|
|
tracks,
|
|
source,
|
|
})
|
|
}
|
|
|
|
fn create_catalog(raw: Vec<u8>) -> (track::Publisher, track::Subscriber) {
|
|
// Create a track with a single segment containing the init data.
|
|
let mut catalog = track::Publisher::new("0");
|
|
|
|
// Subscribe to the catalog before we push the segment.
|
|
let subscriber = catalog.subscribe();
|
|
|
|
let mut segment = segment::Publisher::new(segment::Info {
|
|
sequence: VarInt::from_u32(0), // first and only segment
|
|
send_order: VarInt::from_u32(0), // highest priority
|
|
expires: None, // never delete from the cache
|
|
});
|
|
|
|
// Add the segment and add the fragment.
|
|
catalog.push_segment(segment.subscribe());
|
|
segment.fragments.push(raw.into());
|
|
|
|
// Return the catalog
|
|
(catalog, subscriber)
|
|
}
|
|
|
|
pub async fn run(mut self) -> anyhow::Result<()> {
|
|
// The timestamp when the broadcast "started", so we can sleep to simulate a live stream.
|
|
let start = tokio::time::Instant::now();
|
|
|
|
// The current track name
|
|
let mut track_name = None;
|
|
|
|
loop {
|
|
let atom = read_atom(&mut self.reader)?;
|
|
|
|
let mut reader = io::Cursor::new(&atom);
|
|
let header = mp4::BoxHeader::read(&mut reader)?;
|
|
|
|
match header.name {
|
|
mp4::BoxType::MoofBox => {
|
|
let moof = mp4::MoofBox::read_box(&mut reader, header.size).context("failed to read MP4")?;
|
|
|
|
// Process the moof.
|
|
let fragment = Fragment::new(moof)?;
|
|
let name = fragment.track.to_string();
|
|
|
|
// Get the track for this moof.
|
|
let track = self.tracks.get_mut(&name).context("failed to find track")?;
|
|
|
|
// Sleep until we should publish this sample.
|
|
let timestamp = time::Duration::from_millis(1000 * fragment.timestamp / track.timescale);
|
|
tokio::time::sleep_until(start + timestamp).await;
|
|
|
|
// Save the track ID for the next iteration, which must be a mdat.
|
|
anyhow::ensure!(track_name.is_none(), "multiple moof atoms");
|
|
track_name.replace(name);
|
|
|
|
// Publish the moof header, creating a new segment if it's a keyframe.
|
|
track.header(atom, fragment).context("failed to publish moof")?;
|
|
}
|
|
mp4::BoxType::MdatBox => {
|
|
// Get the track ID from the previous moof.
|
|
let name = track_name.take().context("missing moof")?;
|
|
let track = self.tracks.get_mut(&name).context("failed to find track")?;
|
|
|
|
// Publish the mdat atom.
|
|
track.data(atom).context("failed to publish mdat")?;
|
|
}
|
|
_ => {
|
|
// Skip unknown atoms
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn source(&self) -> Arc<MapSource> {
|
|
self.source.clone()
|
|
}
|
|
}
|
|
|
|
struct Track {
|
|
// The track we're producing
|
|
track: track::Publisher,
|
|
|
|
// The current segment
|
|
segment: Option<segment::Publisher>,
|
|
|
|
// The number of units per second.
|
|
timescale: u64,
|
|
|
|
// The number of segments produced.
|
|
sequence: u64,
|
|
}
|
|
|
|
impl Track {
|
|
fn new(name: &str, timescale: u64) -> Self {
|
|
let track = track::Publisher::new(name);
|
|
|
|
Self {
|
|
track,
|
|
sequence: 0,
|
|
segment: None,
|
|
timescale,
|
|
}
|
|
}
|
|
|
|
pub fn header(&mut self, raw: Vec<u8>, fragment: Fragment) -> anyhow::Result<()> {
|
|
if let Some(segment) = self.segment.as_mut() {
|
|
if !fragment.keyframe {
|
|
// Use the existing segment
|
|
segment.fragments.push(raw.into());
|
|
return Ok(());
|
|
}
|
|
}
|
|
|
|
// Otherwise make a new segment
|
|
let now = time::Instant::now();
|
|
|
|
// Compute the timestamp in milliseconds.
|
|
// Overflows after 583 million years, so we're fine.
|
|
let timestamp = fragment
|
|
.timestamp(self.timescale)
|
|
.as_millis()
|
|
.try_into()
|
|
.context("timestamp too large")?;
|
|
|
|
// The send order is simple; newer timestamps are higher priority.
|
|
// TODO give audio a boost?
|
|
let send_order = VarInt::MAX
|
|
.into_inner()
|
|
.checked_sub(timestamp)
|
|
.context("timestamp too large")?
|
|
.try_into()
|
|
.unwrap();
|
|
|
|
// Delete segments after 10s.
|
|
let expires = Some(now + time::Duration::from_secs(2)); // TODO increase this once send order is implemented
|
|
let sequence = self.sequence.try_into().context("sequence too large")?;
|
|
|
|
self.sequence += 1;
|
|
|
|
// Create a new segment.
|
|
let segment = segment::Info {
|
|
sequence,
|
|
expires,
|
|
send_order,
|
|
};
|
|
|
|
let mut segment = segment::Publisher::new(segment);
|
|
self.track.push_segment(segment.subscribe());
|
|
|
|
// Insert the raw atom into the segment.
|
|
segment.fragments.push(raw.into());
|
|
|
|
// Save for the next iteration
|
|
self.segment = Some(segment);
|
|
|
|
// Remove any segments older than 10s.
|
|
// TODO This can only drain from the FRONT of the queue, so don't get clever with expirations.
|
|
self.track.drain_segments(now);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn data(&mut self, raw: Vec<u8>) -> anyhow::Result<()> {
|
|
let segment = self.segment.as_mut().context("missing segment")?;
|
|
segment.fragments.push(raw.into());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn subscribe(&self) -> track::Subscriber {
|
|
self.track.subscribe()
|
|
}
|
|
}
|
|
|
|
struct Fragment {
|
|
// The track for this fragment.
|
|
track: u32,
|
|
|
|
// The timestamp of the first sample in this fragment, in timescale units.
|
|
timestamp: u64,
|
|
|
|
// True if this fragment is a keyframe.
|
|
keyframe: bool,
|
|
}
|
|
|
|
impl Fragment {
|
|
fn new(moof: mp4::MoofBox) -> anyhow::Result<Self> {
|
|
// We can't split the mdat atom, so this is impossible to support
|
|
anyhow::ensure!(moof.trafs.len() == 1, "multiple tracks per moof atom");
|
|
let track = moof.trafs[0].tfhd.track_id;
|
|
|
|
// Parse the moof to get some timing information to sleep.
|
|
let timestamp = sample_timestamp(&moof).expect("couldn't find timestamp");
|
|
|
|
// Detect if we should start a new segment.
|
|
let keyframe = sample_keyframe(&moof);
|
|
|
|
Ok(Self {
|
|
track,
|
|
timestamp,
|
|
keyframe,
|
|
})
|
|
}
|
|
|
|
// Convert from timescale units to a duration.
|
|
fn timestamp(&self, timescale: u64) -> time::Duration {
|
|
time::Duration::from_millis(1000 * self.timestamp / timescale)
|
|
}
|
|
}
|
|
|
|
// Read a full MP4 atom into a vector.
|
|
fn read_atom<R: Read>(reader: &mut R) -> anyhow::Result<Vec<u8>> {
|
|
// Read the 8 bytes for the size + type
|
|
let mut buf = [0u8; 8];
|
|
reader.read_exact(&mut buf)?;
|
|
|
|
// Convert the first 4 bytes into the size.
|
|
let size = u32::from_be_bytes(buf[0..4].try_into()?) as u64;
|
|
//let typ = &buf[4..8].try_into().ok().unwrap();
|
|
|
|
let mut raw = buf.to_vec();
|
|
|
|
let mut limit = match size {
|
|
// Runs until the end of the file.
|
|
0 => reader.take(u64::MAX),
|
|
|
|
// The next 8 bytes are the extended size to be used instead.
|
|
1 => {
|
|
reader.read_exact(&mut buf)?;
|
|
let size_large = u64::from_be_bytes(buf);
|
|
anyhow::ensure!(size_large >= 16, "impossible extended box size: {}", size_large);
|
|
|
|
reader.take(size_large - 16)
|
|
}
|
|
|
|
2..=7 => {
|
|
anyhow::bail!("impossible box size: {}", size)
|
|
}
|
|
|
|
// Otherwise read based on the size.
|
|
size => reader.take(size - 8),
|
|
};
|
|
|
|
// Append to the vector and return it.
|
|
limit.read_to_end(&mut raw)?;
|
|
|
|
Ok(raw)
|
|
}
|
|
|
|
// Find the timescale for the given track.
|
|
fn track_timescale(moov: &mp4::MoovBox, track_id: u32) -> u64 {
|
|
let trak = moov
|
|
.traks
|
|
.iter()
|
|
.find(|trak| trak.tkhd.track_id == track_id)
|
|
.expect("failed to find trak");
|
|
|
|
trak.mdia.mdhd.timescale as u64
|
|
}
|
|
|
|
fn sample_keyframe(moof: &mp4::MoofBox) -> bool {
|
|
for traf in &moof.trafs {
|
|
// TODO trak default flags if this is None
|
|
let default_flags = traf.tfhd.default_sample_flags.unwrap_or_default();
|
|
let trun = match &traf.trun {
|
|
Some(t) => t,
|
|
None => return false,
|
|
};
|
|
|
|
for i in 0..trun.sample_count {
|
|
let mut flags = match trun.sample_flags.get(i as usize) {
|
|
Some(f) => *f,
|
|
None => default_flags,
|
|
};
|
|
|
|
if i == 0 && trun.first_sample_flags.is_some() {
|
|
flags = trun.first_sample_flags.unwrap();
|
|
}
|
|
|
|
// https://chromium.googlesource.com/chromium/src/media/+/master/formats/mp4/track_run_iterator.cc#177
|
|
let keyframe = (flags >> 24) & 0x3 == 0x2; // kSampleDependsOnNoOther
|
|
let non_sync = (flags >> 16) & 0x1 == 0x1; // kSampleIsNonSyncSample
|
|
|
|
if keyframe && !non_sync {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
false
|
|
}
|
|
|
|
fn sample_timestamp(moof: &mp4::MoofBox) -> Option<u64> {
|
|
Some(moof.trafs.first()?.tfdt.as_ref()?.base_media_decode_time)
|
|
}
|
|
|
|
/*
|
|
fn track_type(moov: &mp4::MoovBox, track_id: u32) -> mp4::TrackType {
|
|
let trak = moov
|
|
.traks
|
|
.iter()
|
|
.find(|trak| trak.tkhd.track_id == track_id)
|
|
.expect("failed to find trak");
|
|
|
|
mp4::TrackType::try_from(&trak.mdia.hdlr.handler_type).expect("unknown track type")
|
|
}
|
|
*/
|