pub struct CdReader {}Expand description
Helper struct to interact with the audio CD. While it doesn’t hold any internal data
directly, it implements Drop trait, so that the CD drive handle is properly closed.
Please note that you should not read multiple CDs at the same time, and preferably do not use it in multiple threads. CD drives are a physical thing and they really want to have exclusive access, because of that currently only sequential access is supported.
This is especially true on macOS, where releasing exclusive lock on the audio CD will cause it to remount, and the default application (very likely Apple Music) will get the exclusive access and it will be challenging to implement a reliable waiting strategy.
Implementations§
Source§impl CdReader
impl CdReader
Sourcepub fn list_drives() -> Result<Vec<DriveInfo>, CdReaderError>
pub fn list_drives() -> Result<Vec<DriveInfo>, CdReaderError>
Enumerate candidate optical drives and probe whether they currently have an audio CD.
On Windows, we try to read type of every drive from A to Z. On Linux, we read /sys/class/block directory and check every entry starting with “sr”
Sourcepub fn open_default() -> Result<Self, CdReaderError>
pub fn open_default() -> Result<Self, CdReaderError>
Open the first discovered drive that currently has an audio CD.
On Windows and Linux, we get the first device from the list and try to open it, returning an error if it fails.
Source§impl CdReader
impl CdReader
Sourcepub fn open_track_stream<'a>(
&'a self,
toc: &Toc,
track_no: u8,
cfg: TrackStreamConfig,
) -> Result<TrackStream<'a>, CdReaderError>
pub fn open_track_stream<'a>( &'a self, toc: &Toc, track_no: u8, cfg: TrackStreamConfig, ) -> Result<TrackStream<'a>, CdReaderError>
Open a streaming reader for a specific track in the provided TOC. It is important to create track streams through this method so the lifetime for the drive exclusive access is managed through a single CDReader instance.
Use TrackStream::next_chunk to pull sector-aligned PCM chunks.
Examples found in repository?
23fn read_cd(path: &str) -> Result<(), Box<dyn std::error::Error>> {
24 let reader = CdReader::open(path)?;
25 let toc = reader.read_toc()?;
26 println!("{toc:#?}");
27
28 let last_audio_track = toc
29 .tracks
30 .iter()
31 .rev()
32 .find(|track| track.is_audio)
33 .ok_or_else(|| std::io::Error::other("no audio tracks in TOC"))?;
34
35 println!("Reading track {}", last_audio_track.number);
36 let stream_cfg = TrackStreamConfig {
37 sectors_per_chunk: 27,
38 retry: RetryConfig {
39 max_attempts: 5,
40 initial_backoff_ms: 30,
41 max_backoff_ms: 500,
42 reduce_chunk_on_retry: true,
43 min_sectors_per_read: 1,
44 },
45 };
46 let mut stream = reader.open_track_stream(&toc, last_audio_track.number, stream_cfg)?;
47
48 let mut pcm = Vec::new();
49 while let Some(chunk) = stream.next_chunk()? {
50 pcm.extend_from_slice(&chunk);
51 }
52 let wav = CdReader::create_wav(pcm);
53 std::fs::write("myfile.wav", wav)?;
54
55 Ok(())
56}Source§impl CdReader
impl CdReader
Sourcepub fn open(path: &str) -> Result<Self>
pub fn open(path: &str) -> Result<Self>
Opens a CD drive at the specified path in order to read data.
It is crucial to call this function and not to create the Reader by yourself, as each OS needs its own way of handling the drive access.
You don’t need to close the drive, it will be handled automatically
when the CdReader is dropped. On macOS, that will cause the CD drive
to be remounted, and the default application (like Apple Music) will
be called.
§Arguments
path- The device path (e.g., “/dev/sr0” on Linux, “disk6” on macOS, and r“\.\E:“ on Windows)
§Errors
Returns an error if the drive cannot be opened
Examples found in repository?
23fn read_cd(path: &str) -> Result<(), Box<dyn std::error::Error>> {
24 let reader = CdReader::open(path)?;
25 let toc = reader.read_toc()?;
26 println!("{toc:#?}");
27
28 let last_audio_track = toc
29 .tracks
30 .iter()
31 .rev()
32 .find(|track| track.is_audio)
33 .ok_or_else(|| std::io::Error::other("no audio tracks in TOC"))?;
34
35 println!("Reading track {}", last_audio_track.number);
36 let stream_cfg = TrackStreamConfig {
37 sectors_per_chunk: 27,
38 retry: RetryConfig {
39 max_attempts: 5,
40 initial_backoff_ms: 30,
41 max_backoff_ms: 500,
42 reduce_chunk_on_retry: true,
43 min_sectors_per_read: 1,
44 },
45 };
46 let mut stream = reader.open_track_stream(&toc, last_audio_track.number, stream_cfg)?;
47
48 let mut pcm = Vec::new();
49 while let Some(chunk) = stream.next_chunk()? {
50 pcm.extend_from_slice(&chunk);
51 }
52 let wav = CdReader::create_wav(pcm);
53 std::fs::write("myfile.wav", wav)?;
54
55 Ok(())
56}Sourcepub fn create_wav(data: Vec<u8>) -> Vec<u8> ⓘ
pub fn create_wav(data: Vec<u8>) -> Vec<u8> ⓘ
While this is a low-level library and does not include any codecs to compress the audio, it includes a helper function to convert raw PCM data into a wav file, which is done by prepending a 44 RIFF bytes header
§Arguments
data- vector of bytes received fromread_trackfunction
Examples found in repository?
23fn read_cd(path: &str) -> Result<(), Box<dyn std::error::Error>> {
24 let reader = CdReader::open(path)?;
25 let toc = reader.read_toc()?;
26 println!("{toc:#?}");
27
28 let last_audio_track = toc
29 .tracks
30 .iter()
31 .rev()
32 .find(|track| track.is_audio)
33 .ok_or_else(|| std::io::Error::other("no audio tracks in TOC"))?;
34
35 println!("Reading track {}", last_audio_track.number);
36 let stream_cfg = TrackStreamConfig {
37 sectors_per_chunk: 27,
38 retry: RetryConfig {
39 max_attempts: 5,
40 initial_backoff_ms: 30,
41 max_backoff_ms: 500,
42 reduce_chunk_on_retry: true,
43 min_sectors_per_read: 1,
44 },
45 };
46 let mut stream = reader.open_track_stream(&toc, last_audio_track.number, stream_cfg)?;
47
48 let mut pcm = Vec::new();
49 while let Some(chunk) = stream.next_chunk()? {
50 pcm.extend_from_slice(&chunk);
51 }
52 let wav = CdReader::create_wav(pcm);
53 std::fs::write("myfile.wav", wav)?;
54
55 Ok(())
56}Sourcepub fn read_toc(&self) -> Result<Toc, CdReaderError>
pub fn read_toc(&self) -> Result<Toc, CdReaderError>
Read Table of Contents for the opened drive. You’ll likely only need to access
tracks from the returned value in order to iterate and read each track’s raw data.
Please note that each track in the vector has number property, which you should use
when calling read_track, as it doesn’t start with 0. It is important to do so,
because in the future it might include 0 for the hidden track.
Examples found in repository?
23fn read_cd(path: &str) -> Result<(), Box<dyn std::error::Error>> {
24 let reader = CdReader::open(path)?;
25 let toc = reader.read_toc()?;
26 println!("{toc:#?}");
27
28 let last_audio_track = toc
29 .tracks
30 .iter()
31 .rev()
32 .find(|track| track.is_audio)
33 .ok_or_else(|| std::io::Error::other("no audio tracks in TOC"))?;
34
35 println!("Reading track {}", last_audio_track.number);
36 let stream_cfg = TrackStreamConfig {
37 sectors_per_chunk: 27,
38 retry: RetryConfig {
39 max_attempts: 5,
40 initial_backoff_ms: 30,
41 max_backoff_ms: 500,
42 reduce_chunk_on_retry: true,
43 min_sectors_per_read: 1,
44 },
45 };
46 let mut stream = reader.open_track_stream(&toc, last_audio_track.number, stream_cfg)?;
47
48 let mut pcm = Vec::new();
49 while let Some(chunk) = stream.next_chunk()? {
50 pcm.extend_from_slice(&chunk);
51 }
52 let wav = CdReader::create_wav(pcm);
53 std::fs::write("myfile.wav", wav)?;
54
55 Ok(())
56}Sourcepub fn read_track(
&self,
toc: &Toc,
track_no: u8,
) -> Result<Vec<u8>, CdReaderError>
pub fn read_track( &self, toc: &Toc, track_no: u8, ) -> Result<Vec<u8>, CdReaderError>
Read raw data for the specified track number from the TOC.
It returns raw PCM data, but if you want to save it directly and make it playable,
wrap the result with create_wav function, that will prepend a RIFF header and
make it a proper music file.
Sourcepub fn read_track_with_retry(
&self,
toc: &Toc,
track_no: u8,
cfg: &RetryConfig,
) -> Result<Vec<u8>, CdReaderError>
pub fn read_track_with_retry( &self, toc: &Toc, track_no: u8, cfg: &RetryConfig, ) -> Result<Vec<u8>, CdReaderError>
Read raw data for the specified track number from the TOC using explicit retry config.