mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-28 10:06:47 +00:00
1451 lines
58 KiB
Rust
1451 lines
58 KiB
Rust
//! Symphonia `SizedDecoder`, gapless trim, and `build_source` / `build_streaming_source`.
|
||
use std::io::{Cursor, Read, Seek};
|
||
use std::sync::atomic::{AtomicBool, AtomicU32, AtomicU64, Ordering};
|
||
use std::sync::Arc;
|
||
use std::time::Duration;
|
||
|
||
use rodio::source::UniformSourceIterator;
|
||
use rodio::Source;
|
||
use symphonia::core::{
|
||
audio::{AudioSpec, GenericAudioBufferRef},
|
||
codecs::audio::{AudioCodecParameters, AudioDecoder, AudioDecoderOptions},
|
||
formats::probe::Hint,
|
||
formats::{FormatOptions, FormatReader, SeekMode, SeekTo},
|
||
common::Limit,
|
||
io::{MediaSource, MediaSourceStream, MediaSourceStreamOptions},
|
||
meta::MetadataOptions,
|
||
units::{Time, Timestamp},
|
||
};
|
||
|
||
use super::codec::{psysonic_codec_registry, try_make_radio_decoder};
|
||
use super::playback_rate::{PlaybackRateAtomics, PlaybackRateSource};
|
||
use super::sources::*;
|
||
|
||
// ─── SizedCursorSource — correct byte_len for seekable in-memory sources ──────
|
||
//
|
||
// rodio's internal ReadSeekSource wraps Cursor<Vec<u8>> but hardcodes
|
||
// byte_len() → None. This tells symphonia "stream length unknown", which
|
||
// prevents the FLAC demuxer from seeking (it validates seek offsets against
|
||
// the total stream length from byte_len). MP3 is unaffected because its
|
||
// demuxer uses Xing/LAME headers instead.
|
||
//
|
||
// This wrapper provides the actual byte length, fixing seek for all formats.
|
||
|
||
pub(crate) struct SizedCursorSource {
|
||
inner: Cursor<Vec<u8>>,
|
||
len: u64,
|
||
}
|
||
|
||
impl Read for SizedCursorSource {
|
||
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
|
||
self.inner.read(buf)
|
||
}
|
||
}
|
||
|
||
impl Seek for SizedCursorSource {
|
||
fn seek(&mut self, pos: std::io::SeekFrom) -> std::io::Result<u64> {
|
||
self.inner.seek(pos)
|
||
}
|
||
}
|
||
|
||
impl MediaSource for SizedCursorSource {
|
||
fn is_seekable(&self) -> bool { true }
|
||
fn byte_len(&self) -> Option<u64> { Some(self.len) }
|
||
}
|
||
|
||
// ─── ProbeSeekGate — temporarily hide seekability during probing ──────────────
|
||
//
|
||
// Symphonia 0.6's `Probe::probe` scans for *trailing* metadata (ID3v1/APEv2/…)
|
||
// whenever the source reports `is_seekable() == true` and a known `byte_len()`.
|
||
// That scan seeks to the end of the stream. For a progressive ranged-HTTP source
|
||
// this forces a download all the way to EOF before the first sample can play
|
||
// (FLAC/MP3/OGG regressed to "won't start until fully downloaded").
|
||
//
|
||
// These formats are demuxed sequentially from the start, and their seek paths
|
||
// re-check `is_seekable()` dynamically, so we can advertise the source as
|
||
// non-seekable for the duration of the probe (skipping the trailing scan) and
|
||
// flip it back to seekable afterwards to preserve scrubbing. MP4/ISO-BMFF is
|
||
// excluded because its demuxer captures seekability at construction and relies
|
||
// on seeking to locate `moov` (its tail is prefetched separately instead).
|
||
struct ProbeSeekGate {
|
||
inner: Box<dyn MediaSource>,
|
||
seekable: Arc<AtomicBool>,
|
||
}
|
||
|
||
impl Read for ProbeSeekGate {
|
||
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
|
||
self.inner.read(buf)
|
||
}
|
||
}
|
||
|
||
impl Seek for ProbeSeekGate {
|
||
fn seek(&mut self, pos: std::io::SeekFrom) -> std::io::Result<u64> {
|
||
self.inner.seek(pos)
|
||
}
|
||
}
|
||
|
||
impl MediaSource for ProbeSeekGate {
|
||
fn is_seekable(&self) -> bool {
|
||
self.seekable.load(Ordering::Relaxed) && self.inner.is_seekable()
|
||
}
|
||
fn byte_len(&self) -> Option<u64> {
|
||
self.inner.byte_len()
|
||
}
|
||
}
|
||
|
||
// ─── SizedDecoder — symphonia decoder with correct byte_len ───────────────────
|
||
//
|
||
// Replaces rodio::Decoder::new() which wraps the source in ReadSeekSource
|
||
// (byte_len = None). This constructs the symphonia pipeline directly,
|
||
// providing the correct byte_len via SizedCursorSource.
|
||
//
|
||
// Implements Iterator<Item = i16> + Source — identical interface to
|
||
// rodio::Decoder, so the rest of the source chain is unchanged.
|
||
|
||
/// Resolved audio format of a decoded stream — the real codec/rate/depth the
|
||
/// engine is playing, which can differ from the server's stored file metadata
|
||
/// when the server transcodes on the fly.
|
||
#[derive(Clone, Debug)]
|
||
pub(crate) struct ResolvedCodecInfo {
|
||
/// Symphonia codec short name, e.g. `mp3`, `flac`, `aac`, `pcm_s16le`.
|
||
pub(crate) codec_name: &'static str,
|
||
pub(crate) sample_rate: Option<u32>,
|
||
pub(crate) bits_per_sample: Option<u32>,
|
||
pub(crate) channels: Option<u16>,
|
||
pub(crate) lossless: bool,
|
||
}
|
||
|
||
/// Extract the human/UI-facing format from symphonia codec parameters.
|
||
pub(crate) fn resolve_codec_info(params: &AudioCodecParameters) -> ResolvedCodecInfo {
|
||
// Resolve the codec name from the SAME registry the engine decodes with
|
||
// (`psysonic_codec_registry`), not `symphonia::default::get_codecs()`. The
|
||
// app registry adds decoders the stock one lacks (e.g. the libopus adapter);
|
||
// using the stock registry would render those as "?" even though playback
|
||
// works — which is exactly what a server Opus transcode would show.
|
||
let codec_name = psysonic_codec_registry()
|
||
.get_audio_decoder(params.codec)
|
||
.map(|d| d.codec.info.short_name)
|
||
.unwrap_or("?");
|
||
let lossless = codec_name.starts_with("pcm")
|
||
|| matches!(
|
||
codec_name,
|
||
"flac" | "alac" | "wavpack" | "monkeys-audio" | "tta" | "shorten"
|
||
);
|
||
ResolvedCodecInfo {
|
||
codec_name,
|
||
sample_rate: params.sample_rate,
|
||
bits_per_sample: params.bits_per_sample.or(params.bits_per_coded_sample),
|
||
channels: params.channels.as_ref().map(|c| c.count() as u16),
|
||
lossless,
|
||
}
|
||
}
|
||
|
||
/// `audio:format` event payload — the actually-decoded stream format, sent to
|
||
/// the frontend so now-playing badges can show real transmitted quality.
|
||
/// Hand-serialized (not tauri-specta) to match the `audio:*` event convention.
|
||
#[derive(Clone, serde::Serialize)]
|
||
#[serde(rename_all = "camelCase")]
|
||
pub(crate) struct AudioFormatEvent {
|
||
/// Track this format was resolved for — lets the frontend drop the event if
|
||
/// the user has since skipped. `None` on legacy/identity-less emits.
|
||
pub(crate) track_id: Option<String>,
|
||
/// Playback server index key — disambiguates duplicate ids across servers.
|
||
pub(crate) server_id: Option<String>,
|
||
/// Playback generation the stream belongs to (stale-event rejection).
|
||
pub(crate) generation: Option<u64>,
|
||
/// `maxBitRate` cap (kbps) the stream URL was opened with — latched per
|
||
/// stream, so a mid-playback settings change never relabels the current one.
|
||
pub(crate) stream_cap_kbps: Option<u32>,
|
||
pub(crate) codec: String,
|
||
pub(crate) sample_rate: Option<u32>,
|
||
pub(crate) bits_per_sample: Option<u32>,
|
||
pub(crate) channels: Option<u16>,
|
||
pub(crate) lossless: bool,
|
||
}
|
||
|
||
/// Identity a resolved-format event is stamped with (who/which stream).
|
||
#[derive(Clone, Default)]
|
||
pub(crate) struct AudioFormatIdentity {
|
||
pub(crate) track_id: Option<String>,
|
||
pub(crate) server_id: Option<String>,
|
||
pub(crate) generation: Option<u64>,
|
||
pub(crate) stream_cap_kbps: Option<u32>,
|
||
}
|
||
|
||
impl AudioFormatEvent {
|
||
pub(crate) fn from_info(info: &ResolvedCodecInfo, id: AudioFormatIdentity) -> Self {
|
||
Self {
|
||
track_id: id.track_id,
|
||
server_id: id.server_id,
|
||
generation: id.generation,
|
||
stream_cap_kbps: id.stream_cap_kbps,
|
||
codec: info.codec_name.to_string(),
|
||
// Bit depth is only meaningful for lossless output.
|
||
bits_per_sample: if info.lossless { info.bits_per_sample } else { None },
|
||
sample_rate: info.sample_rate,
|
||
channels: info.channels,
|
||
lossless: info.lossless,
|
||
}
|
||
}
|
||
}
|
||
|
||
/// Debug logging: codec parameters in human-readable form to verify whether
|
||
/// playback is genuinely lossless.
|
||
pub(crate) fn log_codec_resolution(
|
||
tag: &str,
|
||
params: &AudioCodecParameters,
|
||
container_hint: Option<&str>,
|
||
) {
|
||
let info = resolve_codec_info(params);
|
||
let rate = info.sample_rate.map(|r| format!("{} Hz", r)).unwrap_or_else(|| "? Hz".into());
|
||
let bits = info.bits_per_sample
|
||
.map(|b| format!("{}-bit", b))
|
||
.unwrap_or_else(|| "?-bit".into());
|
||
let ch = info.channels
|
||
.map(|c| format!("{}ch", c))
|
||
.unwrap_or_else(|| "?ch".into());
|
||
let kind = if info.lossless { "LOSSLESS" } else { "lossy" };
|
||
crate::app_deprintln!(
|
||
"[stream] {tag}: codec={} ({kind}) {bits} {rate} {ch} container={}",
|
||
info.codec_name,
|
||
container_hint.unwrap_or("?")
|
||
);
|
||
}
|
||
|
||
/// Max retries for IO/packet-read errors (fatal — network drop, truncated file).
|
||
const DECODE_MAX_RETRIES: usize = 3;
|
||
/// Max *consecutive* DecodeErrors before giving up on a file.
|
||
/// Non-fatal errors like "invalid main_data offset" are silently dropped up to
|
||
/// this limit so a handful of corrupt MP3 frames never aborts an otherwise
|
||
/// playable track (VLC-style frame dropping).
|
||
const MAX_CONSECUTIVE_DECODE_ERRORS: usize = 100;
|
||
/// Wall-clock cap for the streaming `probe()` call. A ranged-HTTP source whose
|
||
/// download stalls (e.g. right after a server switch) can otherwise block the
|
||
/// probe — and therefore playback start — indefinitely. On timeout we abort with
|
||
/// an error so the player can recover/retry instead of hanging until a restart.
|
||
const STREAM_PROBE_TIMEOUT: Duration = Duration::from_secs(20);
|
||
|
||
pub(crate) struct SizedDecoder {
|
||
decoder: Box<dyn AudioDecoder>,
|
||
current_frame_offset: usize,
|
||
format: Box<dyn FormatReader>,
|
||
total_duration: Option<Time>,
|
||
/// Interleaved f32 samples of the currently decoded packet.
|
||
buffer: Vec<f32>,
|
||
spec: AudioSpec,
|
||
/// Real decoded format (codec/rate/depth) for the now-playing UI badge.
|
||
codec_info: ResolvedCodecInfo,
|
||
/// Counts consecutive DecodeErrors in the hot-path. Reset to 0 on every
|
||
/// successfully decoded frame. Used to detect fully undecodable streams.
|
||
consecutive_decode_errors: usize,
|
||
}
|
||
|
||
impl SizedDecoder {
|
||
pub(crate) fn new(data: Vec<u8>, format_hint: Option<&str>, hi_res: bool) -> Result<Self, String> {
|
||
let data_len = data.len() as u64;
|
||
let source = SizedCursorSource {
|
||
inner: Cursor::new(data),
|
||
len: data_len,
|
||
};
|
||
// Symphonia 0.6 scans trailing metadata on seekable sources — hide
|
||
// seekability during probe (same as `new_streaming`) so preview does not
|
||
// read the entire in-memory file before the first sample.
|
||
//
|
||
// Exception: Ogg (Vorbis/Opus/…) must stay seekable through the probe,
|
||
// otherwise its demuxer never records `phys_byte_range_end` and the first
|
||
// seek panics (see `container_hint_is_ogg`). This source is fully
|
||
// in-memory, so the trailing-metadata scan it re-enables is free.
|
||
let gate_needed = !crate::stream::container_hint_is_mp4(format_hint)
|
||
&& !crate::stream::container_hint_is_ogg(format_hint);
|
||
let probe_seek_gate = gate_needed.then(|| Arc::new(AtomicBool::new(false)));
|
||
let media: Box<dyn MediaSource> = match &probe_seek_gate {
|
||
Some(gate) => Box::new(ProbeSeekGate {
|
||
inner: Box::new(source),
|
||
seekable: gate.clone(),
|
||
}),
|
||
None => Box::new(source),
|
||
};
|
||
// Hi-Res: 4 MB read-ahead so Symphonia demuxes fewer Read calls for
|
||
// high-bitrate files (88.2 kHz/24-bit FLAC ≈ 1800 kbps).
|
||
// Standard: 512 KB is plenty for MP3/AAC — larger buffers waste allocation
|
||
// and compete with the playback thread at track start.
|
||
let buf_len = if hi_res { 4 * 1024 * 1024 } else { 512 * 1024 };
|
||
let mss = MediaSourceStream::new(media, MediaSourceStreamOptions { buffer_len: buf_len });
|
||
|
||
let mut hint = Hint::new();
|
||
if let Some(ext) = format_hint {
|
||
hint.with_extension(ext);
|
||
}
|
||
let format_opts = FormatOptions::default();
|
||
|
||
// Cap embedded cover art at 8 MiB so oversized MJPEG images in
|
||
// iTunes M4A files don't choke the parser.
|
||
let meta_opts =
|
||
MetadataOptions::default().limit_visual_bytes(Limit::Maximum(8 * 1024 * 1024));
|
||
|
||
let mut format = symphonia::default::get_probe()
|
||
.probe(&hint, mss, format_opts, meta_opts)
|
||
.map_err(|e| {
|
||
let hint_str = format_hint.unwrap_or("unknown");
|
||
// Always print the raw Symphonia error to the terminal for diagnosis.
|
||
crate::app_eprintln!("[psysonic] probe failed (hint={hint_str}): {e}");
|
||
if e.to_string().to_lowercase().contains("unsupported") {
|
||
format!("unsupported format: .{hint_str} files cannot be played (no demuxer)")
|
||
} else {
|
||
format!("could not open audio stream (.{hint_str}): {e}")
|
||
}
|
||
})?;
|
||
|
||
if let Some(gate) = &probe_seek_gate {
|
||
gate.store(true, Ordering::Relaxed);
|
||
}
|
||
|
||
let track = format
|
||
.tracks()
|
||
.iter()
|
||
// Explicitly select only audio tracks: must have an audio codec and a
|
||
// sample_rate. This skips MJPEG cover-art streams that iTunes M4A
|
||
// files embed as a secondary video track.
|
||
.find(|t| {
|
||
t.codec_params
|
||
.as_ref()
|
||
.and_then(|c| c.audio())
|
||
.is_some_and(|a| a.sample_rate.is_some())
|
||
})
|
||
.ok_or_else(|| {
|
||
crate::app_eprintln!("[psysonic] no audio track found among {} tracks", format.tracks().len());
|
||
"no playable audio track found in file".to_string()
|
||
})?;
|
||
|
||
let track_id = track.id;
|
||
// Encoder-delay-aware total duration (timebase units → Time).
|
||
let total_duration = track
|
||
.time_base
|
||
.zip(track.num_frames)
|
||
.and_then(|(base, frames)| {
|
||
Timestamp::try_from(frames).ok().and_then(|ts| base.calc_time(ts))
|
||
});
|
||
|
||
let audio_params = track
|
||
.codec_params
|
||
.as_ref()
|
||
.and_then(|c| c.audio())
|
||
.ok_or_else(|| "selected track has no audio codec parameters".to_string())?
|
||
.clone();
|
||
|
||
log_codec_resolution("bytes", &audio_params, format_hint);
|
||
let codec_info = resolve_codec_info(&audio_params);
|
||
|
||
// Gapless trimming is performed by `build_source` (iTunSMPB), so disable
|
||
// the decoder's built-in trimming to avoid double-trimming.
|
||
let mut decoder = psysonic_codec_registry()
|
||
.make_audio_decoder(&audio_params, &AudioDecoderOptions::default().gapless(false))
|
||
.map_err(|e| {
|
||
crate::app_eprintln!("[psysonic] codec init failed: {e}");
|
||
if e.to_string().to_lowercase().contains("unsupported") {
|
||
"unsupported codec: no decoder available for this audio format".to_string()
|
||
} else {
|
||
format!("failed to initialise audio decoder: {e}")
|
||
}
|
||
})?;
|
||
|
||
// Decode the first packet to initialise spec + buffer.
|
||
// DecodeErrors (e.g. "invalid main_data offset") are non-fatal: drop the
|
||
// frame and try the next packet up to MAX_CONSECUTIVE_DECODE_ERRORS times.
|
||
let mut decode_errors: usize = 0;
|
||
let decoded = loop {
|
||
let packet = match format.next_packet() {
|
||
Ok(Some(p)) => p,
|
||
// Clean EOF before any decodable packet.
|
||
Ok(None) => break decoder.last_decoded(),
|
||
Err(symphonia::core::errors::Error::IoError(_)) => {
|
||
break decoder.last_decoded();
|
||
}
|
||
Err(e) => {
|
||
crate::app_eprintln!("[psysonic] next_packet error: {e}");
|
||
return Err(format!("could not read audio data: {e}"));
|
||
}
|
||
};
|
||
if packet.track_id != track_id {
|
||
crate::app_eprintln!("[psysonic] skipping packet for track {} (want {})", packet.track_id, track_id);
|
||
continue;
|
||
}
|
||
match decoder.decode(&packet) {
|
||
Ok(decoded) => break decoded,
|
||
Err(symphonia::core::errors::Error::DecodeError(ref msg)) => {
|
||
decode_errors += 1;
|
||
crate::app_eprintln!("[psysonic] init: dropped corrupt frame #{decode_errors}: {msg}");
|
||
if decode_errors >= MAX_CONSECUTIVE_DECODE_ERRORS {
|
||
return Err("too many consecutive decode errors during init — file may be corrupt".into());
|
||
}
|
||
}
|
||
Err(e) => {
|
||
crate::app_eprintln!("[psysonic] fatal decode error: {e}");
|
||
return Err(format!("audio decode error: {e}"));
|
||
}
|
||
}
|
||
};
|
||
|
||
let spec = decoded.spec().clone();
|
||
let buffer = Self::make_buffer(&decoded);
|
||
|
||
Ok(SizedDecoder {
|
||
decoder,
|
||
current_frame_offset: 0,
|
||
format,
|
||
total_duration,
|
||
buffer,
|
||
spec,
|
||
codec_info,
|
||
consecutive_decode_errors: 0,
|
||
})
|
||
}
|
||
|
||
/// Build a decoder from any `MediaSource` (e.g. track-stream or radio).
|
||
/// Uses `enable_gapless: false` — live streams are not seekable; gapless
|
||
/// trimming requires seeking to read the LAME/iTunSMPB end-padding info.
|
||
/// `source_random_access`: the underlying source can cheaply seek to EOF
|
||
/// (e.g. a local file), so the probe-time trailing-metadata / stream-end scan
|
||
/// is not a full download. Progressive sources (ranged HTTP) pass `false`.
|
||
pub(crate) fn new_streaming(
|
||
media: Box<dyn MediaSource>,
|
||
format_hint: Option<&str>,
|
||
source_tag: &str,
|
||
source_random_access: bool,
|
||
) -> Result<Self, String> {
|
||
// For non-MP4 progressive streams, hide seekability during the probe so
|
||
// Symphonia 0.6 skips its trailing-metadata scan (which would seek to EOF
|
||
// and block until the whole file is downloaded). Re-enabled right after.
|
||
// MP4 keeps seekability (its demuxer needs it to find `moov`; tail is
|
||
// prefetched separately).
|
||
//
|
||
// Ogg also keeps seekability through the probe, but only on random-access
|
||
// sources: its demuxer records `phys_byte_range_end` during the probe and
|
||
// panics on the first seek otherwise (see `container_hint_is_ogg`). On a
|
||
// local file the stream-end scan is cheap; on a progressive ranged stream
|
||
// it would force a full download, so there we keep the gate and accept
|
||
// that seeking is a no-op (the panic itself is contained in `try_seek`).
|
||
let stream_len = media.byte_len();
|
||
let ogg_needs_seekable_probe =
|
||
source_random_access && crate::stream::container_hint_is_ogg(format_hint);
|
||
let gate_needed = !crate::stream::container_hint_is_mp4(format_hint)
|
||
&& !ogg_needs_seekable_probe;
|
||
let probe_seek_gate = gate_needed.then(|| Arc::new(AtomicBool::new(false)));
|
||
let media: Box<dyn MediaSource> = match &probe_seek_gate {
|
||
Some(gate) => Box::new(ProbeSeekGate { inner: media, seekable: gate.clone() }),
|
||
None => media,
|
||
};
|
||
|
||
// Larger read-ahead buffer for the live streaming SPSC consumer — reduces
|
||
// read() call frequency into the ring buffer, easing I/O spikes.
|
||
let mss = MediaSourceStream::new(media, MediaSourceStreamOptions { buffer_len: 512 * 1024 });
|
||
let format_opts = FormatOptions::default();
|
||
let meta_opts = MetadataOptions::default();
|
||
|
||
crate::app_deprintln!(
|
||
"[stream] {source_tag}: probe start (hint={}, stream_len={})",
|
||
format_hint.unwrap_or("?"),
|
||
stream_len.map(|n| n.to_string()).unwrap_or_else(|| "?".into()),
|
||
);
|
||
let probe_start = std::time::Instant::now();
|
||
|
||
// Run the probe on a dedicated thread guarded by a timeout. If a ranged
|
||
// source stalls (download never reaches the bytes Symphonia needs), the
|
||
// probe blocks forever; without this guard playback start would hang until
|
||
// the user restarts the player. On timeout we abandon the worker thread
|
||
// (it unblocks once the underlying read errors/returns) and surface an
|
||
// error so the caller can retry.
|
||
let hint_ext = format_hint.map(|s| s.to_string());
|
||
let tag_owned = source_tag.to_string();
|
||
let (tx, rx) = std::sync::mpsc::channel();
|
||
std::thread::Builder::new()
|
||
.name("symphonia-probe".into())
|
||
.spawn(move || {
|
||
let mut hint = Hint::new();
|
||
if let Some(ext) = &hint_ext {
|
||
hint.with_extension(ext);
|
||
}
|
||
let result = symphonia::default::get_probe()
|
||
.probe(&hint, mss, format_opts, meta_opts)
|
||
.map_err(|e| format!("{tag_owned}: format probe failed: {e}"));
|
||
// Receiver is gone if we already timed out — ignore the send error.
|
||
let _ = tx.send(result);
|
||
})
|
||
.map_err(|e| format!("{source_tag}: failed to spawn probe thread: {e}"))?;
|
||
|
||
let mut format = match rx.recv_timeout(STREAM_PROBE_TIMEOUT) {
|
||
Ok(Ok(format)) => format,
|
||
Ok(Err(e)) => return Err(e),
|
||
Err(std::sync::mpsc::RecvTimeoutError::Timeout) => {
|
||
crate::app_eprintln!(
|
||
"[stream] {source_tag}: probe timed out after {STREAM_PROBE_TIMEOUT:?} \
|
||
(stream stalled?) — aborting so the player can retry"
|
||
);
|
||
return Err(format!(
|
||
"{source_tag}: format probe timed out after {STREAM_PROBE_TIMEOUT:?}"
|
||
));
|
||
}
|
||
Err(std::sync::mpsc::RecvTimeoutError::Disconnected) => {
|
||
return Err(format!("{source_tag}: probe thread ended unexpectedly"));
|
||
}
|
||
};
|
||
|
||
crate::app_deprintln!(
|
||
"[stream] {source_tag}: probe done in {} ms",
|
||
probe_start.elapsed().as_millis()
|
||
);
|
||
|
||
// Trailing-metadata scan is done; restore real seekability for scrubbing.
|
||
if let Some(gate) = &probe_seek_gate {
|
||
gate.store(true, Ordering::Relaxed);
|
||
}
|
||
|
||
let track = format.tracks().iter()
|
||
.find(|t| t.codec_params.as_ref().and_then(|c| c.audio()).is_some())
|
||
.ok_or_else(|| format!("{source_tag}: no audio track found"))?;
|
||
let track_id = track.id;
|
||
let audio_params = track
|
||
.codec_params
|
||
.as_ref()
|
||
.and_then(|c| c.audio())
|
||
.ok_or_else(|| format!("{source_tag}: track has no audio codec parameters"))?
|
||
.clone();
|
||
log_codec_resolution(source_tag, &audio_params, format_hint);
|
||
let codec_info = resolve_codec_info(&audio_params);
|
||
// Live streams have no known total frame count → total_duration = None.
|
||
let total_duration = None;
|
||
let mut decoder = try_make_radio_decoder(&audio_params, &AudioDecoderOptions::default().gapless(false))
|
||
.map_err(|e| format!("{source_tag}: codec init failed: {e}"))?;
|
||
|
||
let mut errors = 0usize;
|
||
let decoded = loop {
|
||
let packet = match format.next_packet() {
|
||
Ok(Some(p)) => p,
|
||
Ok(None) => break decoder.last_decoded(),
|
||
Err(_) => break decoder.last_decoded(),
|
||
};
|
||
if packet.track_id != track_id { continue; }
|
||
match decoder.decode(&packet) {
|
||
Ok(d) => break d,
|
||
Err(symphonia::core::errors::Error::DecodeError(ref msg)) => {
|
||
errors += 1;
|
||
crate::app_eprintln!("[psysonic] {source_tag} init: dropped corrupt frame #{errors}: {msg}");
|
||
if errors >= MAX_CONSECUTIVE_DECODE_ERRORS {
|
||
return Err(format!("{source_tag}: too many consecutive decode errors"));
|
||
}
|
||
}
|
||
Err(e) => return Err(format!("{source_tag}: decode error: {e}")),
|
||
}
|
||
};
|
||
let spec = decoded.spec().clone();
|
||
let buffer = Self::make_buffer(&decoded);
|
||
Ok(SizedDecoder { decoder, current_frame_offset: 0, format, total_duration, buffer, spec, codec_info, consecutive_decode_errors: 0 })
|
||
}
|
||
|
||
#[inline]
|
||
fn make_buffer(decoded: &GenericAudioBufferRef<'_>) -> Vec<f32> {
|
||
let mut buffer = Vec::new();
|
||
decoded.copy_to_vec_interleaved(&mut buffer);
|
||
buffer
|
||
}
|
||
|
||
/// Real decoded format (codec/rate/depth) for the now-playing UI badge.
|
||
#[inline]
|
||
pub(crate) fn codec_info(&self) -> &ResolvedCodecInfo {
|
||
&self.codec_info
|
||
}
|
||
|
||
/// Refine position after a coarse seek — decode packets until we reach the
|
||
/// exact requested timestamp.
|
||
fn refine_position(
|
||
&mut self,
|
||
seek_res: symphonia::core::formats::SeekedTo,
|
||
) -> Result<(), String> {
|
||
// Number of frames between where the demuxer landed and the requested ts.
|
||
let mut samples_to_pass: u64 = seek_res
|
||
.required_ts
|
||
.get()
|
||
.saturating_sub(seek_res.actual_ts.get())
|
||
.max(0) as u64;
|
||
let packet = loop {
|
||
let candidate = match self.format.next_packet()
|
||
.map_err(|e| format!("refine seek: {e}"))?
|
||
{
|
||
Some(p) => p,
|
||
// EOF while refining — nothing more to skip.
|
||
None => return Ok(()),
|
||
};
|
||
if candidate.dur.get() > samples_to_pass {
|
||
break candidate;
|
||
}
|
||
samples_to_pass -= candidate.dur.get();
|
||
};
|
||
|
||
let mut decoded = self.decoder.decode(&packet);
|
||
for _ in 0..DECODE_MAX_RETRIES {
|
||
if decoded.is_err() {
|
||
let p = match self.format.next_packet()
|
||
.map_err(|e| format!("refine retry: {e}"))?
|
||
{
|
||
Some(p) => p,
|
||
None => break,
|
||
};
|
||
decoded = self.decoder.decode(&p);
|
||
}
|
||
}
|
||
|
||
let decoded = decoded.map_err(|e| format!("refine decode: {e}"))?;
|
||
self.spec = decoded.spec().clone();
|
||
self.buffer = Self::make_buffer(&decoded);
|
||
self.current_frame_offset = samples_to_pass as usize * self.spec.channels().count();
|
||
Ok(())
|
||
}
|
||
}
|
||
|
||
impl Iterator for SizedDecoder {
|
||
type Item = f32;
|
||
|
||
#[inline]
|
||
fn next(&mut self) -> Option<f32> {
|
||
if self.current_frame_offset >= self.buffer.len() {
|
||
// Loop until a decodable packet is found or the stream ends.
|
||
// DecodeErrors (e.g. MP3 "invalid main_data offset") are non-fatal:
|
||
// drop the frame and advance to the next packet. IO errors and a
|
||
// clean end-of-stream both terminate the iterator normally.
|
||
loop {
|
||
let packet = self.format.next_packet().ok()??;
|
||
match self.decoder.decode(&packet) {
|
||
Ok(decoded) => {
|
||
self.consecutive_decode_errors = 0;
|
||
self.spec = decoded.spec().clone();
|
||
self.buffer = Self::make_buffer(&decoded);
|
||
self.current_frame_offset = 0;
|
||
break;
|
||
}
|
||
Err(symphonia::core::errors::Error::DecodeError(ref msg)) => {
|
||
#[cfg(not(debug_assertions))]
|
||
let _ = msg;
|
||
self.consecutive_decode_errors += 1;
|
||
// Log sparingly: first drop, then every 10th to avoid spam.
|
||
if self.consecutive_decode_errors == 1
|
||
|| self.consecutive_decode_errors.is_multiple_of(10)
|
||
{
|
||
crate::app_deprintln!(
|
||
"[psysonic] dropped corrupt frame #{}: {msg}",
|
||
self.consecutive_decode_errors
|
||
);
|
||
}
|
||
if self.consecutive_decode_errors >= MAX_CONSECUTIVE_DECODE_ERRORS {
|
||
crate::app_deprintln!(
|
||
"[psysonic] {MAX_CONSECUTIVE_DECODE_ERRORS} consecutive decode \
|
||
failures — stream appears unrecoverable, stopping"
|
||
);
|
||
return None;
|
||
}
|
||
// continue → fetch next packet
|
||
}
|
||
Err(_) => return None, // IO error or fatal codec error → end of stream
|
||
}
|
||
}
|
||
}
|
||
|
||
let sample = *self.buffer.get(self.current_frame_offset)?;
|
||
self.current_frame_offset += 1;
|
||
Some(sample)
|
||
}
|
||
}
|
||
|
||
impl Source for SizedDecoder {
|
||
#[inline]
|
||
fn current_span_len(&self) -> Option<usize> {
|
||
Some(self.buffer.len())
|
||
}
|
||
|
||
#[inline]
|
||
fn channels(&self) -> rodio::ChannelCount {
|
||
std::num::NonZeroU16::new(self.spec.channels().count() as u16)
|
||
.unwrap_or(std::num::NonZeroU16::MIN)
|
||
}
|
||
|
||
#[inline]
|
||
fn sample_rate(&self) -> rodio::SampleRate {
|
||
std::num::NonZeroU32::new(self.spec.rate()).unwrap_or(std::num::NonZeroU32::MIN)
|
||
}
|
||
|
||
#[inline]
|
||
fn total_duration(&self) -> Option<Duration> {
|
||
self.total_duration
|
||
.map(|t| Duration::from_secs_f64(t.as_secs_f64().max(0.0)))
|
||
}
|
||
|
||
fn try_seek(&mut self, pos: Duration) -> Result<(), rodio::source::SeekError> {
|
||
let seek_beyond_end = self
|
||
.total_duration()
|
||
.is_some_and(|dur| dur.saturating_sub(pos).as_millis() < 1);
|
||
|
||
let target_secs = if seek_beyond_end {
|
||
// Step back a tiny bit — some demuxers can't seek to the exact end.
|
||
let total = self
|
||
.total_duration
|
||
.map(|t| t.as_secs_f64())
|
||
.unwrap_or_else(|| pos.as_secs_f64());
|
||
(total - 0.0001).max(0.0)
|
||
} else {
|
||
pos.as_secs_f64()
|
||
};
|
||
|
||
let time = Time::try_from_secs_f64(target_secs).unwrap_or(Time::ZERO);
|
||
|
||
let to_skip = self.current_frame_offset % self.channels().get() as usize;
|
||
|
||
// symphonia 0.6's OGG demuxer can `panic!` (e.g. `Option::unwrap()` on
|
||
// `None` in `OggReader::do_seek`) on some streams instead of returning
|
||
// an `Err`. `try_seek` runs on rodio's cpal output thread, so an escaping
|
||
// panic poisons the engine mutexes and then aborts the whole process at
|
||
// the non-unwinding cpal FFI boundary (the "crash on Stop" is a downstream
|
||
// symptom of that poison). Contain the unwind here — including the packet
|
||
// reads in `refine_position`, which can hit the same broken demuxer state —
|
||
// and surface it as a recoverable `SeekError` so the engine stays alive
|
||
// (the seek becomes a no-op rather than killing playback).
|
||
let seek_outcome = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
|
||
let seek_res = self
|
||
.format
|
||
.seek(SeekMode::Accurate, SeekTo::Time { time, track_id: None })
|
||
.map_err(|e| e.to_string())?;
|
||
self.refine_position(seek_res)?;
|
||
Ok::<(), String>(())
|
||
}));
|
||
|
||
match seek_outcome {
|
||
Ok(Ok(())) => {
|
||
self.current_frame_offset += to_skip;
|
||
Ok(())
|
||
}
|
||
Ok(Err(e)) => Err(rodio::source::SeekError::Other(std::sync::Arc::new(
|
||
std::io::Error::other(e),
|
||
))),
|
||
Err(_panic) => Err(rodio::source::SeekError::Other(std::sync::Arc::new(
|
||
std::io::Error::other("seek panicked inside the demuxer (contained)"),
|
||
))),
|
||
}
|
||
}
|
||
}
|
||
|
||
// ─── Encoder-gap trimming (iTunSMPB) ─────────────────────────────────────────
|
||
//
|
||
// MP3/AAC encoders prepend an "encoder delay" (typically 576–2112 silent
|
||
// samples for LAME) and append end-padding to fill the final frame.
|
||
// iTunes embeds the exact counts in an ID3v2 COMM frame with description
|
||
// "iTunSMPB". Format: " 00000000 DELAY PADDING TOTAL ..." (space-separated hex)
|
||
//
|
||
// Parsing strategy: scan raw bytes for the ASCII marker, then extract the
|
||
// first whitespace-separated hex tokens after it.
|
||
|
||
#[derive(Default)]
|
||
pub(crate) struct GaplessInfo {
|
||
delay_samples: u64,
|
||
total_valid_samples: Option<u64>,
|
||
}
|
||
|
||
pub(crate) fn find_subsequence(data: &[u8], needle: &[u8]) -> Option<usize> {
|
||
data.windows(needle.len()).position(|w| w == needle)
|
||
}
|
||
|
||
pub(crate) fn parse_gapless_info(data: &[u8]) -> GaplessInfo {
|
||
let pos = match find_subsequence(data, b"iTunSMPB") {
|
||
Some(p) => p,
|
||
None => return GaplessInfo::default(),
|
||
};
|
||
|
||
// In M4A/iTunes files the key is followed by a binary 'data' atom header
|
||
// (16 bytes: size[4] + "data"[4] + type_flags[4] + locale[4]) before the
|
||
// actual value string. Search for the " 00000000 " sentinel that every
|
||
// iTunSMPB value starts with to locate the true start of the text.
|
||
let search_end = data.len().min(pos + 8 + 128);
|
||
let search_window = &data[pos + 8..search_end];
|
||
let value_start = find_subsequence(search_window, b" 00000000 ")
|
||
.map(|off| pos + 8 + off)
|
||
.unwrap_or(pos + 8);
|
||
|
||
let tail = &data[value_start..data.len().min(value_start + 256)];
|
||
let text: String = tail.iter()
|
||
.map(|&b| b as char)
|
||
.filter(|c| c.is_ascii_hexdigit() || *c == ' ')
|
||
.collect();
|
||
|
||
let parts: Vec<&str> = text.split_whitespace().collect();
|
||
// parts[0] = "00000000", parts[1] = delay, parts[2] = padding, parts[3] = total
|
||
if parts.len() < 3 {
|
||
return GaplessInfo::default();
|
||
}
|
||
let delay = u64::from_str_radix(parts.get(1).unwrap_or(&"0"), 16).unwrap_or(0);
|
||
let padding = u64::from_str_radix(parts.get(2).unwrap_or(&"0"), 16).unwrap_or(0);
|
||
let total_raw = parts.get(3).and_then(|s| u64::from_str_radix(s, 16).ok());
|
||
|
||
let total_valid = total_raw.filter(|&t| t > 0).or_else(|| {
|
||
// Derive from delay + padding if total not available:
|
||
// Not possible without knowing total encoded samples, so just use None.
|
||
let _ = padding;
|
||
None
|
||
});
|
||
|
||
GaplessInfo { delay_samples: delay, total_valid_samples: total_valid }
|
||
}
|
||
|
||
pub(crate) type BuiltSourceStack =
|
||
PriorityBoostSource<CountingSource<NotifyingSource<TriggeredFadeOut<EqualPowerFadeIn<EqSource<DynSource>>>>>>;
|
||
|
||
/// Result of build_source: the fully-wrapped source plus metadata and control Arcs.
|
||
pub(crate) struct BuiltSource {
|
||
pub(crate) source: BuiltSourceStack,
|
||
pub(crate) duration_secs: f64,
|
||
pub(crate) output_rate: u32,
|
||
pub(crate) output_channels: u16,
|
||
/// Real decoded stream format for the `audio:format` event. None only if the
|
||
/// source could not report codec params.
|
||
pub(crate) resolved_format: Option<ResolvedCodecInfo>,
|
||
/// Trigger for the sample-level crossfade fade-out.
|
||
pub(crate) fadeout_trigger: Arc<AtomicBool>,
|
||
/// Total samples for the fade-out (set before triggering).
|
||
pub(crate) fadeout_samples: Arc<AtomicU64>,
|
||
}
|
||
|
||
/// Build a fully-prepared playback source:
|
||
/// decode → trim → resample → EQ → fade-in → triggered-fade-out → notify → count
|
||
///
|
||
/// `fade_in_dur`:
|
||
/// • `Duration::ZERO` — unity gain; used for gapless chain (no click)
|
||
/// • `Duration::from_millis(5)` — micro-fade; used for hard cuts (anti-click)
|
||
/// • `Duration::from_secs_f32(cf)` — full equal-power fade-in for crossfade
|
||
///
|
||
/// `sample_counter`: atomic counter incremented per sample for drift-free position.
|
||
/// `target_rate`: canonical output sample rate for resampling (0 = no resampling).
|
||
/// `format_hint`: optional file extension (e.g. "flac", "mp3") to help symphonia probe.
|
||
#[allow(clippy::too_many_arguments)]
|
||
pub(crate) fn build_source(
|
||
data: Vec<u8>,
|
||
duration_hint: f64,
|
||
eq_gains: Arc<[AtomicU32; 10]>,
|
||
eq_enabled: Arc<AtomicBool>,
|
||
eq_pre_gain: Arc<AtomicU32>,
|
||
playback_rate: PlaybackRateAtomics,
|
||
done_flag: Arc<AtomicBool>,
|
||
fade_in_dur: Duration,
|
||
sample_counter: Arc<AtomicU64>,
|
||
target_rate: u32,
|
||
format_hint: Option<&str>,
|
||
hi_res: bool,
|
||
) -> Result<BuiltSource, String> {
|
||
let gapless = parse_gapless_info(&data);
|
||
|
||
let decoder = SizedDecoder::new(data, format_hint, hi_res)?;
|
||
let sample_rate = decoder.sample_rate();
|
||
let channels = decoder.channels();
|
||
let resolved_format = Some(decoder.codec_info().clone());
|
||
|
||
// Determine effective duration.
|
||
// Prefer hint from Subsonic API (reliable) over decoder (unreliable for VBR MP3).
|
||
let effective_dur = if duration_hint > 1.0 {
|
||
duration_hint
|
||
} else {
|
||
decoder.total_duration()
|
||
.map(|d| d.as_secs_f64())
|
||
.unwrap_or(duration_hint)
|
||
};
|
||
|
||
// Apply encoder-delay trim and optional end-padding trim,
|
||
// then resample to the canonical target rate if needed.
|
||
let dyn_src: DynSource = if gapless.delay_samples > 0 || gapless.total_valid_samples.is_some() {
|
||
let delay_dur = Duration::from_secs_f64(
|
||
gapless.delay_samples as f64 / sample_rate.get() as f64
|
||
);
|
||
let base = decoder.skip_duration(delay_dur);
|
||
|
||
if let Some(total) = gapless.total_valid_samples {
|
||
let valid_dur = Duration::from_secs_f64(total as f64 / sample_rate.get() as f64);
|
||
let trimmed = base.take_duration(valid_dur);
|
||
if target_rate > 0 && sample_rate.get() != target_rate {
|
||
DynSource::new(UniformSourceIterator::new(
|
||
trimmed,
|
||
channels,
|
||
std::num::NonZeroU32::new(target_rate).unwrap_or(std::num::NonZeroU32::MIN),
|
||
))
|
||
} else {
|
||
DynSource::new(trimmed)
|
||
}
|
||
} else if target_rate > 0 && sample_rate.get() != target_rate {
|
||
DynSource::new(UniformSourceIterator::new(
|
||
base,
|
||
channels,
|
||
std::num::NonZeroU32::new(target_rate).unwrap_or(std::num::NonZeroU32::MIN),
|
||
))
|
||
} else {
|
||
DynSource::new(base)
|
||
}
|
||
} else {
|
||
let converted = decoder;
|
||
if target_rate > 0 && sample_rate.get() != target_rate {
|
||
DynSource::new(UniformSourceIterator::new(
|
||
converted,
|
||
channels,
|
||
std::num::NonZeroU32::new(target_rate).unwrap_or(std::num::NonZeroU32::MIN),
|
||
))
|
||
} else {
|
||
DynSource::new(converted)
|
||
}
|
||
};
|
||
|
||
let output_rate = if target_rate > 0 && sample_rate.get() != target_rate { target_rate } else { sample_rate.get() };
|
||
|
||
let fadeout_trigger = Arc::new(AtomicBool::new(false));
|
||
let fadeout_samples = Arc::new(AtomicU64::new(0));
|
||
|
||
let rate_src = PlaybackRateSource::new(dyn_src, playback_rate.clone());
|
||
let rate_dyn = DynSource::new(rate_src);
|
||
let eq_src = EqSource::new(rate_dyn, eq_gains, eq_enabled, eq_pre_gain);
|
||
let fade_in = EqualPowerFadeIn::new(eq_src, fade_in_dur);
|
||
let fade_out = TriggeredFadeOut::new(fade_in, fadeout_trigger.clone(), fadeout_samples.clone());
|
||
let notifying = NotifyingSource::new(fade_out, done_flag);
|
||
let counting = CountingSource::new(notifying, sample_counter);
|
||
let boosted = PriorityBoostSource::new(counting);
|
||
|
||
Ok(BuiltSource {
|
||
source: boosted,
|
||
duration_secs: crate::playback_rate::effective_duration_secs(effective_dur, &playback_rate),
|
||
output_rate,
|
||
output_channels: channels.get(),
|
||
resolved_format,
|
||
fadeout_trigger,
|
||
fadeout_samples,
|
||
})
|
||
}
|
||
|
||
/// Streaming variant of `build_source`: uses a live `SizedDecoder` source
|
||
/// (non-seekable) and skips iTunSMPB parsing, but preserves the same EQ/fade/
|
||
/// counting wrappers and output metadata.
|
||
#[allow(clippy::too_many_arguments)]
|
||
pub(crate) fn build_streaming_source(
|
||
decoder: SizedDecoder,
|
||
duration_hint: f64,
|
||
eq_gains: Arc<[AtomicU32; 10]>,
|
||
eq_enabled: Arc<AtomicBool>,
|
||
eq_pre_gain: Arc<AtomicU32>,
|
||
playback_rate: PlaybackRateAtomics,
|
||
done_flag: Arc<AtomicBool>,
|
||
fade_in_dur: Duration,
|
||
sample_counter: Arc<AtomicU64>,
|
||
target_rate: u32,
|
||
count_gate: Option<Arc<AtomicBool>>,
|
||
) -> Result<BuiltSource, String> {
|
||
let sample_rate = decoder.sample_rate();
|
||
let channels = decoder.channels();
|
||
let resolved_format = Some(decoder.codec_info().clone());
|
||
|
||
// For streaming starts prefer server-provided duration when available.
|
||
let effective_dur = if duration_hint > 1.0 {
|
||
duration_hint
|
||
} else {
|
||
decoder
|
||
.total_duration()
|
||
.map(|d| d.as_secs_f64())
|
||
.unwrap_or(duration_hint)
|
||
};
|
||
|
||
let converted = decoder;
|
||
let dyn_src: DynSource = if target_rate > 0 && sample_rate.get() != target_rate {
|
||
DynSource::new(UniformSourceIterator::new(
|
||
converted,
|
||
channels,
|
||
std::num::NonZeroU32::new(target_rate).unwrap_or(std::num::NonZeroU32::MIN),
|
||
))
|
||
} else {
|
||
DynSource::new(converted)
|
||
};
|
||
|
||
let output_rate = if target_rate > 0 && sample_rate.get() != target_rate {
|
||
target_rate
|
||
} else {
|
||
sample_rate.get()
|
||
};
|
||
|
||
let fadeout_trigger = Arc::new(AtomicBool::new(false));
|
||
let fadeout_samples = Arc::new(AtomicU64::new(0));
|
||
|
||
let rate_src = PlaybackRateSource::new(dyn_src, playback_rate.clone());
|
||
let rate_dyn = DynSource::new(rate_src);
|
||
let eq_src = EqSource::new(rate_dyn, eq_gains, eq_enabled, eq_pre_gain);
|
||
let fade_in = EqualPowerFadeIn::new(eq_src, fade_in_dur);
|
||
let fade_out = TriggeredFadeOut::new(fade_in, fadeout_trigger.clone(), fadeout_samples.clone());
|
||
let notifying = NotifyingSource::new(fade_out, done_flag);
|
||
let counting = match count_gate {
|
||
Some(gate) => CountingSource::new_gated(notifying, sample_counter, gate),
|
||
None => CountingSource::new(notifying, sample_counter),
|
||
};
|
||
let boosted = PriorityBoostSource::new(counting);
|
||
|
||
Ok(BuiltSource {
|
||
source: boosted,
|
||
duration_secs: crate::playback_rate::effective_duration_secs(effective_dur, &playback_rate),
|
||
output_rate,
|
||
output_channels: channels.get(),
|
||
resolved_format,
|
||
fadeout_trigger,
|
||
fadeout_samples,
|
||
})
|
||
}
|
||
|
||
#[cfg(test)]
|
||
mod tests {
|
||
use super::*;
|
||
|
||
// ── find_subsequence ─────────────────────────────────────────────────────
|
||
|
||
#[test]
|
||
fn find_subsequence_locates_needle_at_start() {
|
||
assert_eq!(find_subsequence(b"abcdef", b"abc"), Some(0));
|
||
}
|
||
|
||
#[test]
|
||
fn find_subsequence_locates_needle_in_middle() {
|
||
assert_eq!(find_subsequence(b"abcdef", b"cd"), Some(2));
|
||
}
|
||
|
||
#[test]
|
||
fn find_subsequence_returns_none_when_absent() {
|
||
assert!(find_subsequence(b"abcdef", b"xyz").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn find_subsequence_returns_none_for_needle_longer_than_haystack() {
|
||
assert!(find_subsequence(b"ab", b"abcd").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn find_subsequence_finds_first_occurrence_of_repeated_pattern() {
|
||
assert_eq!(find_subsequence(b"abab", b"ab"), Some(0));
|
||
}
|
||
|
||
// ── parse_gapless_info ───────────────────────────────────────────────────
|
||
|
||
#[test]
|
||
fn parse_gapless_returns_default_when_itunsmpb_absent() {
|
||
let info = parse_gapless_info(b"no marker here");
|
||
assert_eq!(info.delay_samples, 0);
|
||
assert!(info.total_valid_samples.is_none());
|
||
}
|
||
|
||
fn synth_itunsmpb_blob(delay_hex: &str, padding_hex: &str, total_hex: &str) -> Vec<u8> {
|
||
let mut v = Vec::new();
|
||
v.extend_from_slice(b"random preamble bytes ");
|
||
v.extend_from_slice(b"iTunSMPB");
|
||
v.extend_from_slice(&[0u8; 16]);
|
||
v.push(b' ');
|
||
v.extend_from_slice(b"00000000");
|
||
v.push(b' ');
|
||
v.extend_from_slice(delay_hex.as_bytes());
|
||
v.push(b' ');
|
||
v.extend_from_slice(padding_hex.as_bytes());
|
||
v.push(b' ');
|
||
v.extend_from_slice(total_hex.as_bytes());
|
||
v.push(b' ');
|
||
v
|
||
}
|
||
|
||
#[test]
|
||
fn parse_gapless_extracts_delay_from_itunsmpb_blob() {
|
||
let blob = synth_itunsmpb_blob("00000840", "00000000", "00ABCDEF");
|
||
let info = parse_gapless_info(&blob);
|
||
assert_eq!(info.delay_samples, 0x840, "delay decoded as hex");
|
||
assert_eq!(info.total_valid_samples, Some(0x00AB_CDEF));
|
||
}
|
||
|
||
#[test]
|
||
fn parse_gapless_returns_none_total_when_total_field_is_zero() {
|
||
let blob = synth_itunsmpb_blob("00000840", "00000000", "00000000");
|
||
let info = parse_gapless_info(&blob);
|
||
assert_eq!(info.delay_samples, 0x840);
|
||
assert!(
|
||
info.total_valid_samples.is_none(),
|
||
"zero-total filters out per the implementation"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn parse_gapless_handles_itunsmpb_without_value_string() {
|
||
let mut v = b"iTunSMPB".to_vec();
|
||
v.extend_from_slice(&[0u8; 16]);
|
||
let info = parse_gapless_info(&v);
|
||
assert_eq!(info.delay_samples, 0);
|
||
assert!(info.total_valid_samples.is_none());
|
||
}
|
||
|
||
// ── SizedDecoder::new with a synthetic WAV ───────────────────────────────
|
||
|
||
fn build_mono_pcm16_wav(samples: &[i16], sample_rate: u32) -> Vec<u8> {
|
||
let num_channels: u16 = 1;
|
||
let bits_per_sample: u16 = 16;
|
||
let byte_rate = sample_rate * (bits_per_sample as u32 / 8) * num_channels as u32;
|
||
let block_align = num_channels * (bits_per_sample / 8);
|
||
let data_size = (samples.len() * 2) as u32;
|
||
let riff_size = 36 + data_size;
|
||
|
||
let mut out = Vec::with_capacity(44 + data_size as usize);
|
||
out.extend_from_slice(b"RIFF");
|
||
out.extend_from_slice(&riff_size.to_le_bytes());
|
||
out.extend_from_slice(b"WAVE");
|
||
out.extend_from_slice(b"fmt ");
|
||
out.extend_from_slice(&16u32.to_le_bytes());
|
||
out.extend_from_slice(&1u16.to_le_bytes());
|
||
out.extend_from_slice(&num_channels.to_le_bytes());
|
||
out.extend_from_slice(&sample_rate.to_le_bytes());
|
||
out.extend_from_slice(&byte_rate.to_le_bytes());
|
||
out.extend_from_slice(&block_align.to_le_bytes());
|
||
out.extend_from_slice(&bits_per_sample.to_le_bytes());
|
||
out.extend_from_slice(b"data");
|
||
out.extend_from_slice(&data_size.to_le_bytes());
|
||
for s in samples {
|
||
out.extend_from_slice(&s.to_le_bytes());
|
||
}
|
||
out
|
||
}
|
||
|
||
fn synthetic_wav_bytes(secs: f32) -> Vec<u8> {
|
||
let sample_rate = 44_100u32;
|
||
let n = (sample_rate as f32 * secs) as usize;
|
||
let amp: f32 = 0.5 * i16::MAX as f32;
|
||
let samples: Vec<i16> = (0..n)
|
||
.map(|i| {
|
||
let t = i as f32 / sample_rate as f32;
|
||
((2.0 * std::f32::consts::PI * 440.0 * t).sin() * amp) as i16
|
||
})
|
||
.collect();
|
||
build_mono_pcm16_wav(&samples, sample_rate)
|
||
}
|
||
|
||
#[test]
|
||
fn sized_decoder_constructs_from_synthetic_wav() {
|
||
let wav = synthetic_wav_bytes(0.5);
|
||
let decoder = SizedDecoder::new(wav, Some("wav"), false).expect("WAV decode setup");
|
||
assert_eq!(decoder.spec.rate(), 44_100);
|
||
assert_eq!(decoder.spec.channels().count(), 1);
|
||
}
|
||
|
||
#[test]
|
||
fn sized_decoder_returns_err_for_garbage_input() {
|
||
let result = SizedDecoder::new(vec![0x00u8; 64], None, false);
|
||
assert!(result.is_err());
|
||
}
|
||
|
||
#[test]
|
||
fn sized_decoder_uses_format_hint_when_provided() {
|
||
let wav = synthetic_wav_bytes(0.3);
|
||
let _decoder = SizedDecoder::new(wav, Some("wav"), true).expect("WAV decode with hi-res");
|
||
}
|
||
|
||
// ── new_streaming + ProbeSeekGate ────────────────────────────────────────
|
||
|
||
fn seekable_source(bytes: Vec<u8>) -> Box<dyn MediaSource> {
|
||
let len = bytes.len() as u64;
|
||
Box::new(SizedCursorSource { inner: Cursor::new(bytes), len })
|
||
}
|
||
|
||
#[test]
|
||
fn new_streaming_constructs_from_synthetic_wav() {
|
||
let wav = synthetic_wav_bytes(0.5);
|
||
let decoder =
|
||
SizedDecoder::new_streaming(seekable_source(wav), Some("wav"), "test-stream", true)
|
||
.expect("streaming WAV decode setup");
|
||
assert_eq!(decoder.spec.rate(), 44_100);
|
||
assert_eq!(decoder.spec.channels().count(), 1);
|
||
// Live streams report no total duration.
|
||
assert!(decoder.total_duration.is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn new_streaming_returns_err_for_garbage_input() {
|
||
let result = SizedDecoder::new_streaming(
|
||
seekable_source(vec![0x00u8; 64]),
|
||
None,
|
||
"test-stream",
|
||
true,
|
||
);
|
||
assert!(result.is_err());
|
||
}
|
||
|
||
#[test]
|
||
fn probe_seek_gate_toggles_seekability() {
|
||
let wav = synthetic_wav_bytes(0.1);
|
||
let len = wav.len() as u64;
|
||
let flag = Arc::new(AtomicBool::new(false));
|
||
let gate = ProbeSeekGate {
|
||
inner: seekable_source(wav),
|
||
seekable: flag.clone(),
|
||
};
|
||
// Hidden during probe …
|
||
assert!(!gate.is_seekable());
|
||
// … restored afterwards.
|
||
flag.store(true, Ordering::Relaxed);
|
||
assert!(gate.is_seekable());
|
||
// byte_len always passes through to the inner source.
|
||
assert_eq!(gate.byte_len(), Some(len));
|
||
}
|
||
|
||
#[test]
|
||
fn probe_seek_gate_read_and_seek_pass_through() {
|
||
let bytes = vec![1u8, 2, 3, 4, 5, 6, 7, 8];
|
||
let mut gate = ProbeSeekGate {
|
||
inner: seekable_source(bytes),
|
||
seekable: Arc::new(AtomicBool::new(true)),
|
||
};
|
||
let mut buf = [0u8; 4];
|
||
let n = gate.read(&mut buf).expect("read");
|
||
assert_eq!(n, 4);
|
||
assert_eq!(&buf, &[1, 2, 3, 4]);
|
||
let pos = gate.seek(std::io::SeekFrom::Start(6)).expect("seek");
|
||
assert_eq!(pos, 6);
|
||
let n = gate.read(&mut buf).expect("read after seek");
|
||
assert_eq!(&buf[..n], &[7, 8]);
|
||
}
|
||
|
||
// ── log_codec_resolution ─────────────────────────────────────────────────
|
||
|
||
#[test]
|
||
fn log_codec_resolution_does_not_panic_for_valid_params() {
|
||
let mut params = AudioCodecParameters::new();
|
||
params.codec = symphonia::core::codecs::audio::well_known::CODEC_ID_PCM_S16LE;
|
||
params.sample_rate = Some(44_100);
|
||
params.bits_per_sample = Some(16);
|
||
params.channels = Some(symphonia::core::audio::Channels::Discrete(1));
|
||
log_codec_resolution("test-tag", ¶ms, Some("wav"));
|
||
}
|
||
|
||
#[test]
|
||
fn log_codec_resolution_handles_unknown_codec_gracefully() {
|
||
let params = AudioCodecParameters::new();
|
||
log_codec_resolution("unknown", ¶ms, None);
|
||
}
|
||
|
||
// ── resolve_codec_info / AudioFormatEvent ────────────────────────────────
|
||
|
||
#[test]
|
||
fn resolve_codec_info_reports_pcm_as_lossless() {
|
||
let mut params = AudioCodecParameters::new();
|
||
params.codec = symphonia::core::codecs::audio::well_known::CODEC_ID_PCM_S16LE;
|
||
params.sample_rate = Some(44_100);
|
||
params.bits_per_sample = Some(16);
|
||
params.channels = Some(symphonia::core::audio::Channels::Discrete(1));
|
||
let info = resolve_codec_info(¶ms);
|
||
assert!(info.codec_name.starts_with("pcm"));
|
||
assert!(info.lossless);
|
||
assert_eq!(info.sample_rate, Some(44_100));
|
||
assert_eq!(info.bits_per_sample, Some(16));
|
||
assert_eq!(info.channels, Some(1));
|
||
}
|
||
|
||
#[test]
|
||
fn resolve_codec_info_reports_mp3_as_lossy() {
|
||
let mut params = AudioCodecParameters::new();
|
||
params.codec = symphonia::core::codecs::audio::well_known::CODEC_ID_MP3;
|
||
params.sample_rate = Some(44_100);
|
||
let info = resolve_codec_info(¶ms);
|
||
assert_eq!(info.codec_name, "mp3");
|
||
assert!(!info.lossless);
|
||
}
|
||
|
||
#[test]
|
||
fn audio_format_event_drops_bit_depth_for_lossy() {
|
||
let lossy = ResolvedCodecInfo {
|
||
codec_name: "mp3",
|
||
sample_rate: Some(44_100),
|
||
bits_per_sample: Some(16),
|
||
channels: Some(2),
|
||
lossless: false,
|
||
};
|
||
let ev = AudioFormatEvent::from_info(&lossy, AudioFormatIdentity {
|
||
track_id: Some("t1".into()),
|
||
server_id: Some("srv".into()),
|
||
generation: Some(7),
|
||
stream_cap_kbps: Some(128),
|
||
});
|
||
assert_eq!(ev.bits_per_sample, None);
|
||
let json = serde_json::to_value(&ev).unwrap();
|
||
assert_eq!(json["codec"], "mp3");
|
||
assert_eq!(json["sampleRate"], 44_100);
|
||
assert_eq!(json["lossless"], false);
|
||
assert!(json["bitsPerSample"].is_null());
|
||
assert_eq!(json["trackId"], "t1");
|
||
assert_eq!(json["serverId"], "srv");
|
||
assert_eq!(json["generation"], 7);
|
||
assert_eq!(json["streamCapKbps"], 128);
|
||
}
|
||
|
||
#[test]
|
||
fn audio_format_event_keeps_bit_depth_for_lossless() {
|
||
let lossless = ResolvedCodecInfo {
|
||
codec_name: "flac",
|
||
sample_rate: Some(96_000),
|
||
bits_per_sample: Some(24),
|
||
channels: Some(2),
|
||
lossless: true,
|
||
};
|
||
let ev = AudioFormatEvent::from_info(&lossless, AudioFormatIdentity::default());
|
||
assert_eq!(ev.bits_per_sample, Some(24));
|
||
}
|
||
}
|
||
|
||
#[cfg(test)]
|
||
mod build_source_tests {
|
||
use super::*;
|
||
|
||
fn build_mono_pcm16_wav_local(samples: &[i16], sample_rate: u32) -> Vec<u8> {
|
||
let num_channels: u16 = 1;
|
||
let bits_per_sample: u16 = 16;
|
||
let byte_rate = sample_rate * (bits_per_sample as u32 / 8) * num_channels as u32;
|
||
let block_align = num_channels * (bits_per_sample / 8);
|
||
let data_size = (samples.len() * 2) as u32;
|
||
let riff_size = 36 + data_size;
|
||
|
||
let mut out = Vec::with_capacity(44 + data_size as usize);
|
||
out.extend_from_slice(b"RIFF");
|
||
out.extend_from_slice(&riff_size.to_le_bytes());
|
||
out.extend_from_slice(b"WAVE");
|
||
out.extend_from_slice(b"fmt ");
|
||
out.extend_from_slice(&16u32.to_le_bytes());
|
||
out.extend_from_slice(&1u16.to_le_bytes());
|
||
out.extend_from_slice(&num_channels.to_le_bytes());
|
||
out.extend_from_slice(&sample_rate.to_le_bytes());
|
||
out.extend_from_slice(&byte_rate.to_le_bytes());
|
||
out.extend_from_slice(&block_align.to_le_bytes());
|
||
out.extend_from_slice(&bits_per_sample.to_le_bytes());
|
||
out.extend_from_slice(b"data");
|
||
out.extend_from_slice(&data_size.to_le_bytes());
|
||
for s in samples {
|
||
out.extend_from_slice(&s.to_le_bytes());
|
||
}
|
||
out
|
||
}
|
||
|
||
fn synthetic_wav_bytes_local(secs: f32) -> Vec<u8> {
|
||
let sample_rate = 44_100u32;
|
||
let n = (sample_rate as f32 * secs) as usize;
|
||
let amp: f32 = 0.5 * i16::MAX as f32;
|
||
let samples: Vec<i16> = (0..n)
|
||
.map(|i| {
|
||
let t = i as f32 / sample_rate as f32;
|
||
((2.0 * std::f32::consts::PI * 440.0 * t).sin() * amp) as i16
|
||
})
|
||
.collect();
|
||
build_mono_pcm16_wav_local(&samples, sample_rate)
|
||
}
|
||
|
||
type EqGains = Arc<[AtomicU32; 10]>;
|
||
type SourceArgs = (
|
||
EqGains,
|
||
Arc<AtomicBool>,
|
||
Arc<AtomicU32>,
|
||
PlaybackRateAtomics,
|
||
Arc<AtomicBool>,
|
||
Arc<AtomicU64>,
|
||
);
|
||
|
||
fn default_source_args() -> SourceArgs {
|
||
let eq_gains: Arc<[AtomicU32; 10]> =
|
||
Arc::new(std::array::from_fn(|_| AtomicU32::new(0f32.to_bits())));
|
||
let eq_enabled = Arc::new(AtomicBool::new(false));
|
||
let eq_pre_gain = Arc::new(AtomicU32::new(0f32.to_bits()));
|
||
let playback_rate = PlaybackRateAtomics::new();
|
||
let done_flag = Arc::new(AtomicBool::new(false));
|
||
let sample_counter = Arc::new(AtomicU64::new(0));
|
||
(eq_gains, eq_enabled, eq_pre_gain, playback_rate, done_flag, sample_counter)
|
||
}
|
||
|
||
#[test]
|
||
fn build_source_succeeds_for_synthetic_wav() {
|
||
let (eq_gains, eq_enabled, eq_pre_gain, playback_rate, done_flag, sample_counter) = default_source_args();
|
||
let wav = synthetic_wav_bytes_local(0.4);
|
||
let built = build_source(
|
||
wav,
|
||
0.4,
|
||
eq_gains,
|
||
eq_enabled,
|
||
eq_pre_gain,
|
||
playback_rate,
|
||
done_flag,
|
||
Duration::ZERO,
|
||
sample_counter,
|
||
0,
|
||
Some("wav"),
|
||
false,
|
||
)
|
||
.expect("build_source must succeed for a valid WAV");
|
||
assert_eq!(built.output_channels, 1);
|
||
assert!(built.duration_secs > 0.0);
|
||
assert!(built.output_rate > 0);
|
||
}
|
||
|
||
#[test]
|
||
fn build_source_returns_err_for_garbage_bytes() {
|
||
let (eq_gains, eq_enabled, eq_pre_gain, playback_rate, done_flag, sample_counter) = default_source_args();
|
||
let result = build_source(
|
||
vec![0u8; 32],
|
||
0.0,
|
||
eq_gains,
|
||
eq_enabled,
|
||
eq_pre_gain,
|
||
playback_rate,
|
||
done_flag,
|
||
Duration::ZERO,
|
||
sample_counter,
|
||
0,
|
||
None,
|
||
false,
|
||
);
|
||
assert!(result.is_err());
|
||
}
|
||
|
||
#[test]
|
||
fn build_streaming_source_succeeds_for_synthetic_wav() {
|
||
let (eq_gains, eq_enabled, eq_pre_gain, playback_rate, done_flag, sample_counter) = default_source_args();
|
||
let wav = synthetic_wav_bytes_local(0.4);
|
||
let decoder = SizedDecoder::new(wav, Some("wav"), false).unwrap();
|
||
let built = build_streaming_source(
|
||
decoder,
|
||
0.4,
|
||
eq_gains,
|
||
eq_enabled,
|
||
eq_pre_gain,
|
||
playback_rate,
|
||
done_flag,
|
||
Duration::ZERO,
|
||
sample_counter,
|
||
0,
|
||
None,
|
||
)
|
||
.expect("build_streaming_source must succeed for a valid WAV decoder");
|
||
assert_eq!(built.output_channels, 1);
|
||
assert!(built.output_rate > 0);
|
||
}
|
||
|
||
#[test]
|
||
fn build_source_with_target_rate_resamples() {
|
||
let (eq_gains, eq_enabled, eq_pre_gain, playback_rate, done_flag, sample_counter) = default_source_args();
|
||
let wav = synthetic_wav_bytes_local(0.3);
|
||
let built = build_source(
|
||
wav,
|
||
0.3,
|
||
eq_gains,
|
||
eq_enabled,
|
||
eq_pre_gain,
|
||
playback_rate,
|
||
done_flag,
|
||
Duration::from_millis(5),
|
||
sample_counter,
|
||
48_000,
|
||
Some("wav"),
|
||
false,
|
||
)
|
||
.expect("resampled build_source must succeed");
|
||
assert_eq!(built.output_rate, 48_000);
|
||
}
|
||
}
|