Cache audio files to disk.

This commit is contained in:
Paul Lietar 2015-07-07 22:40:31 +01:00
parent 9ae452e22d
commit e452abce43
11 changed files with 293 additions and 164 deletions

22
Cargo.lock generated
View file

@ -2,7 +2,7 @@
name = "librespot" name = "librespot"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
"librespot-protocol 0.1.0", "librespot-protocol 0.1.0",
"mod_path 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "mod_path 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -15,6 +15,7 @@ dependencies = [
"rust-crypto 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", "rust-crypto 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
"rust-gmp 0.2.0 (git+https://github.com/plietar/rust-gmp.git)", "rust-gmp 0.2.0 (git+https://github.com/plietar/rust-gmp.git)",
"shannon 0.1.0 (git+https://github.com/plietar/rust-shannon.git)", "shannon 0.1.0 (git+https://github.com/plietar/rust-shannon.git)",
"tempfile 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
"vergen 0.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 0.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
"vorbis 0.0.11 (git+https://github.com/plietar/vorbis-rs)", "vorbis 0.0.11 (git+https://github.com/plietar/vorbis-rs)",
@ -27,12 +28,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "bitflags" name = "bitflags"
version = "0.3.0" version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "byteorder" name = "byteorder"
version = "0.3.10" version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
@ -168,7 +169,7 @@ name = "shannon"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/plietar/rust-shannon.git#c6be8a879a523a77d81c50df46faa891b76fea25" source = "git+https://github.com/plietar/rust-shannon.git#c6be8a879a523a77d81c50df46faa891b76fea25"
dependencies = [ dependencies = [
"byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
"readall 0.1.0 (git+https://github.com/plietar/rust-readall.git)", "readall 0.1.0 (git+https://github.com/plietar/rust-readall.git)",
"shannon-sys 0.1.0 (git+https://github.com/plietar/rust-shannon.git)", "shannon-sys 0.1.0 (git+https://github.com/plietar/rust-shannon.git)",
] ]
@ -181,6 +182,17 @@ dependencies = [
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "tempfile"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"kernel32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "time" name = "time"
version = "0.1.30" version = "0.1.30"
@ -196,7 +208,7 @@ name = "vergen"
version = "0.0.13" version = "0.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ dependencies = [
"bitflags 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
] ]

View file

@ -15,6 +15,7 @@ rand = "*"
lazy_static = "0.1.*" lazy_static = "0.1.*"
rust-crypto = "*" rust-crypto = "*"
time = "*" time = "*"
tempfile = "*"
[dependencies.protobuf] [dependencies.protobuf]
git = "https://github.com/plietar/rust-protobuf.git" git = "https://github.com/plietar/rust-protobuf.git"

View file

@ -1,21 +1,31 @@
use byteorder::{ByteOrder, BigEndian}; use byteorder::{ByteOrder, BigEndian};
use std::cmp::min; use std::cmp::min;
use std::collections::{BitSet, HashMap}; use std::collections::BitSet;
use std::io::{self, SeekFrom};
use std::slice::bytes::copy_memory;
use std::sync::{Arc, Condvar, Mutex}; use std::sync::{Arc, Condvar, Mutex};
use std::sync::mpsc::{self, TryRecvError}; use std::sync::mpsc::{self, TryRecvError};
use std::thread; use std::thread;
use std::fs;
use std::io::{self, Read, Write, Seek, SeekFrom};
use std::path::PathBuf;
use tempfile::TempFile;
use stream::StreamEvent; use stream::StreamEvent;
use util::FileId; use util::{FileId, IgnoreExt, ZeroFile, mkdir_existing};
use session::Session; use session::Session;
const CHUNK_SIZE : usize = 0x10000; const CHUNK_SIZE : usize = 0x20000;
pub struct AudioFile<'s> { pub enum AudioFile<'s> {
position: usize, Direct(fs::File),
Loading(AudioFileLoading<'s>)
}
struct AudioFileLoading<'s> {
read_file: TempFile,
position: u64,
seek: mpsc::Sender<u64>, seek: mpsc::Sender<u64>,
shared: Arc<AudioFileShared>, shared: Arc<AudioFileShared>,
#[allow(dead_code)] #[allow(dead_code)]
@ -25,123 +35,17 @@ pub struct AudioFile<'s> {
struct AudioFileShared { struct AudioFileShared {
file_id: FileId, file_id: FileId,
size: usize, size: usize,
data: Mutex<AudioFileData>, chunk_count: usize,
cond: Condvar cond: Condvar,
bitmap: Mutex<BitSet>,
} }
struct AudioFileData { impl <'s> AudioFileLoading<'s> {
buffer: Vec<u8>, fn new(session: &Session, file_id: FileId) -> AudioFileLoading {
bitmap: BitSet, let mut files_iter = TempFile::shared(2).unwrap().into_iter();
} let read_file = files_iter.next().unwrap();
let mut write_file = files_iter.next().unwrap();
impl <'s> AudioFile <'s> {
fn new(session: &Session, shared: Arc<AudioFileShared>) -> AudioFile {
let shared_ = shared.clone();
let (seek_tx, seek_rx) = mpsc::channel();
let file = AudioFile {
thread: thread::scoped( move || { AudioFile::fetch(session, shared_, seek_rx); }),
position: 0,
seek: seek_tx,
shared: shared,
};
file
}
fn fetch_chunk(session: &Session, shared: &Arc<AudioFileShared>, index: usize) {
let rx = session.stream(shared.file_id,
(index * CHUNK_SIZE / 4) as u32,
(CHUNK_SIZE / 4) as u32);
let mut offset = 0usize;
for event in rx.iter() {
match event {
StreamEvent::Header(_,_) => (),
StreamEvent::Data(data) => {
let mut handle = shared.data.lock().unwrap();
copy_memory(&data, &mut handle.buffer[index * CHUNK_SIZE + offset ..]);
offset += data.len();
if offset >= CHUNK_SIZE {
break
}
}
}
}
{
let mut handle = shared.data.lock().unwrap();
handle.bitmap.insert(index as usize);
shared.cond.notify_all();
}
}
fn fetch(session: &Session, shared: Arc<AudioFileShared>, seek: mpsc::Receiver<u64>) {
let mut index = 0;
loop {
index = if index * CHUNK_SIZE < shared.size {
match seek.try_recv() {
Ok(position) => position as usize / CHUNK_SIZE,
Err(TryRecvError::Empty) => index,
Err(TryRecvError::Disconnected) => break
}
} else {
match seek.recv() {
Ok(position) => position as usize / CHUNK_SIZE,
Err(_) => break
}
};
{
let handle = shared.data.lock().unwrap();
while handle.bitmap.contains(&index) && index * CHUNK_SIZE < shared.size {
index += 1;
}
}
if index * CHUNK_SIZE < shared.size {
AudioFile::fetch_chunk(session, &shared, index)
}
}
}
}
impl <'s> io::Read for AudioFile <'s> {
fn read(&mut self, output: &mut [u8]) -> io::Result<usize> {
let index = self.position / CHUNK_SIZE;
let offset = self.position % CHUNK_SIZE;
let len = min(output.len(), CHUNK_SIZE-offset);
let mut handle = self.shared.data.lock().unwrap();
while !handle.bitmap.contains(&index) {
handle = self.shared.cond.wait(handle).unwrap();
}
copy_memory(&handle.buffer[self.position..self.position+len], output);
self.position += len;
Ok(len)
}
}
impl <'s> io::Seek for AudioFile <'s> {
fn seek(&mut self, pos: io::SeekFrom) -> io::Result<u64> {
let newpos = match pos {
SeekFrom::Start(offset) => offset as i64,
SeekFrom::End(offset) => self.shared.size as i64 + offset,
SeekFrom::Current(offset) => self.position as i64 + offset,
};
self.position = min(newpos as usize, self.shared.size);
self.seek.send(self.position as u64).unwrap();
Ok(self.position as u64)
}
}
impl AudioFileShared {
fn new(session: &Session, file_id: FileId) -> Arc<AudioFileShared> {
let size = session.stream(file_id, 0, 1).into_iter() let size = session.stream(file_id, 0, 1).into_iter()
.filter_map(|event| { .filter_map(|event| {
match event { match event {
@ -152,42 +56,178 @@ impl AudioFileShared {
} }
}).next().unwrap(); }).next().unwrap();
let bufsize = size + (CHUNK_SIZE - size % CHUNK_SIZE); let chunk_count = (size + CHUNK_SIZE / 2) / CHUNK_SIZE;
Arc::new(AudioFileShared { let shared = Arc::new(AudioFileShared {
file_id: file_id, file_id: file_id,
size: size, size: size,
data: Mutex::new(AudioFileData { chunk_count: chunk_count,
buffer: vec![0u8; bufsize],
bitmap: BitSet::with_capacity(bufsize / CHUNK_SIZE as usize)
}),
cond: Condvar::new(), cond: Condvar::new(),
bitmap: Mutex::new(BitSet::with_capacity(chunk_count)),
});
io::copy(&mut ZeroFile::new(size as u64), &mut write_file).unwrap();
let (seek_tx, seek_rx) = mpsc::channel();
AudioFileLoading {
read_file: read_file,
position: 0,
seek: seek_tx,
shared: shared.clone(),
thread: thread::scoped(move || {
AudioFileLoading::fetch(session, shared, write_file, seek_rx)
}) })
} }
}
fn fetch(session: &Session, shared: Arc<AudioFileShared>,
mut write_file: TempFile, seek_rx: mpsc::Receiver<u64>) {
let mut index = 0;
loop {
match seek_rx.try_recv() {
Ok(position) => {
index = position as usize / CHUNK_SIZE;
}
Err(TryRecvError::Disconnected) => break,
Err(TryRecvError::Empty) => (),
}
let bitmap = shared.bitmap.lock().unwrap();
if bitmap.len() >= shared.chunk_count {
drop(bitmap);
AudioFileLoading::store(session, &shared, &mut write_file);
break;
}
while bitmap.contains(&index) {
index = (index + 1) % shared.chunk_count;
}
drop(bitmap);
AudioFileLoading::fetch_chunk(session, &shared, &mut write_file, index);
}
}
fn fetch_chunk(session: &Session, shared: &Arc<AudioFileShared>,
write_file: &mut TempFile, index: usize) {
let rx = session.stream(shared.file_id,
(index * CHUNK_SIZE / 4) as u32,
(CHUNK_SIZE / 4) as u32);
println!("Chunk {}", index);
write_file.seek(SeekFrom::Start((index * CHUNK_SIZE) as u64)).unwrap();
let mut size = 0usize;
for event in rx.iter() {
match event {
StreamEvent::Header(..) => (),
StreamEvent::Data(data) => {
write_file.write_all(&data).unwrap();
size += data.len();
if size >= CHUNK_SIZE {
break
}
}
}
}
let mut bitmap = shared.bitmap.lock().unwrap();
bitmap.insert(index as usize);
shared.cond.notify_all();
}
fn store(session: &Session, shared: &AudioFileShared, write_file: &mut TempFile) {
write_file.seek(SeekFrom::Start(0)).unwrap();
mkdir_existing(&AudioFileManager::cache_dir(session, shared.file_id)).unwrap();
let mut f = fs::File::create(AudioFileManager::cache_path(session, shared.file_id)).unwrap();
io::copy(write_file, &mut f).unwrap();
}
} }
pub struct AudioFileManager { impl <'s> Read for AudioFileLoading<'s> {
cache: HashMap<FileId, Arc<AudioFileShared>> fn read(&mut self, output: &mut [u8]) -> io::Result<usize> {
let index = self.position as usize / CHUNK_SIZE;
let offset = self.position as usize % CHUNK_SIZE;
let len = min(output.len(), CHUNK_SIZE-offset);
let mut bitmap = self.shared.bitmap.lock().unwrap();
while !bitmap.contains(&index) {
bitmap = self.shared.cond.wait(bitmap).unwrap();
}
drop(bitmap);
let len = try!(self.read_file.read(&mut output[..len]));
self.position += len as u64;
Ok(len)
}
} }
impl <'s> Seek for AudioFileLoading<'s> {
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
self.position = try!(self.read_file.seek(pos));
/*
* Notify the fetch thread to get the correct block
* This can fail if fetch thread has completed, in which case the
* block is ready. Just ignore the error.
*/
self.seek.send(self.position).ignore();
Ok(self.position as u64)
}
}
impl <'s> Read for AudioFile<'s> {
fn read(&mut self, output: &mut [u8]) -> io::Result<usize> {
match *self {
AudioFile::Direct(ref mut file) => file.read(output),
AudioFile::Loading(ref mut loading) => loading.read(output),
}
}
}
impl <'s> Seek for AudioFile<'s> {
fn seek(&mut self, pos: io::SeekFrom) -> io::Result<u64> {
match *self {
AudioFile::Direct(ref mut file) => file.seek(pos),
AudioFile::Loading(ref mut loading) => loading.seek(pos),
}
}
}
pub struct AudioFileManager;
impl AudioFileManager { impl AudioFileManager {
pub fn new() -> AudioFileManager { pub fn new() -> AudioFileManager {
AudioFileManager { AudioFileManager
cache: HashMap::new()
} }
pub fn cache_dir(session: &Session, file_id: FileId) -> PathBuf {
let name = file_id.to_base16();
session.config.cache_location.join(&name[0..2])
}
pub fn cache_path(session: &Session, file_id: FileId) -> PathBuf {
let name = file_id.to_base16();
AudioFileManager::cache_dir(session, file_id).join(&name[2..])
} }
pub fn request<'a> (&mut self, session: &'a Session, file_id: FileId) -> AudioFile<'a> { pub fn request<'a> (&mut self, session: &'a Session, file_id: FileId) -> AudioFile<'a> {
let shared = self.cache match fs::File::open(AudioFileManager::cache_path(session, file_id)) {
.get(&file_id) Ok(f) => AudioFile::Direct(f),
.cloned() Err(..) => AudioFile::Loading(AudioFileLoading::new(session, file_id))
.unwrap_or_else(|| { }
println!("Cache miss");
let shared = AudioFileShared::new(session, file_id.clone());
self.cache.insert(file_id, shared.clone());
shared
});
AudioFile::new(session, shared)
} }
} }

View file

@ -52,7 +52,7 @@ impl AudioKeyManager {
self.next_seq += 1; self.next_seq += 1;
let mut data : Vec<u8> = Vec::new(); let mut data : Vec<u8> = Vec::new();
data.write(&file).unwrap(); data.write(&file.0).unwrap();
data.write(&track.to_raw()).unwrap(); data.write(&track.to_raw()).unwrap();
data.write_u32::<BigEndian>(seq).unwrap(); data.write_u32::<BigEndian>(seq).unwrap();
data.write_u16::<BigEndian>(0x0000).unwrap(); data.write_u16::<BigEndian>(0x0000).unwrap();
@ -84,7 +84,7 @@ impl PacketHandler for AudioKeyManager {
if let AudioKeyStatus::Loading(cbs) = status { if let AudioKeyStatus::Loading(cbs) = status {
for cb in cbs { for cb in cbs {
cb.send(key).unwrap(); cb.send(key).ignore();
} }
} }
} }

View file

@ -2,7 +2,7 @@
#![feature(plugin,scoped,zero_one,iter_arith,slice_position_elem,slice_bytes,bitset,arc_weak,append,future)] #![feature(plugin,scoped,zero_one,iter_arith,slice_position_elem,slice_bytes,bitset,arc_weak,append,future)]
#![allow(deprecated)] #![allow(deprecated)]
#![allow(unused_imports,dead_code)] //#![allow(unused_imports,dead_code)]
#![plugin(protobuf_macros)] #![plugin(protobuf_macros)]
#[macro_use] extern crate lazy_static; #[macro_use] extern crate lazy_static;
@ -19,6 +19,7 @@ extern crate rand;
extern crate readall; extern crate readall;
extern crate vorbis; extern crate vorbis;
extern crate time; extern crate time;
extern crate tempfile;
extern crate librespot_protocol; extern crate librespot_protocol;
@ -41,6 +42,7 @@ use std::io::{Read, Write};
use std::path::Path; use std::path::Path;
use protobuf::core::Message; use protobuf::core::Message;
use std::thread; use std::thread;
use std::path::PathBuf;
use metadata::{AlbumRef, ArtistRef, TrackRef}; use metadata::{AlbumRef, ArtistRef, TrackRef};
use session::{Config, Session}; use session::{Config, Session};
@ -56,6 +58,7 @@ fn main() {
let mut appkey_file = File::open(Path::new(&args.next().unwrap())).unwrap(); let mut appkey_file = File::open(Path::new(&args.next().unwrap())).unwrap();
let username = args.next().unwrap(); let username = args.next().unwrap();
let password = args.next().unwrap(); let password = args.next().unwrap();
let cache_location = args.next().unwrap();
let name = args.next().unwrap(); let name = args.next().unwrap();
let mut appkey = Vec::new(); let mut appkey = Vec::new();
@ -64,7 +67,8 @@ fn main() {
let config = Config { let config = Config {
application_key: appkey, application_key: appkey,
user_agent: version_string(), user_agent: version_string(),
device_id: name.to_string() device_id: name.clone(),
cache_location: PathBuf::from(cache_location)
}; };
let session = Session::new(config); let session = Session::new(config);
session.login(username.clone(), password); session.login(username.clone(), password);
@ -86,7 +90,7 @@ fn main() {
state_update_id: 0, state_update_id: 0,
seq_nr: 0, seq_nr: 0,
name: name.clone(), name: name,
ident: session.config.device_id.clone(), ident: session.config.device_id.clone(),
device_type: 5, device_type: 5,
can_play: true, can_play: true,

View file

@ -35,7 +35,7 @@ impl MetadataTrait for Track {
.map(|file| { .map(|file| {
let mut dst = [0u8; 20]; let mut dst = [0u8; 20];
copy_memory(&file.get_file_id(), &mut dst); copy_memory(&file.get_file_id(), &mut dst);
dst FileId(dst)
}) })
.collect(), .collect(),
} }
@ -67,7 +67,7 @@ impl MetadataTrait for Album {
.map(|image| { .map(|image| {
let mut dst = [0u8; 20]; let mut dst = [0u8; 20];
copy_memory(&image.get_file_id(), &mut dst); copy_memory(&image.get_file_id(), &mut dst);
dst FileId(dst)
}) })
.collect(), .collect(),
} }

View file

@ -3,11 +3,12 @@ use crypto::sha1::Sha1;
use protobuf::{self, Message}; use protobuf::{self, Message};
use rand::thread_rng; use rand::thread_rng;
use std::sync::{Mutex, Arc, Future, mpsc}; use std::sync::{Mutex, Arc, Future, mpsc};
use std::path::PathBuf;
use connection::{self, PlainConnection, CipherConnection}; use connection::{self, PlainConnection, CipherConnection};
use keys::PrivateKeys; use keys::PrivateKeys;
use librespot_protocol as protocol; use librespot_protocol as protocol;
use util::{SpotifyId, FileId}; use util::{SpotifyId, FileId, mkdir_existing};
use mercury::{MercuryManager, MercuryRequest, MercuryResponse}; use mercury::{MercuryManager, MercuryRequest, MercuryResponse};
use metadata::{MetadataManager, MetadataRef, MetadataTrait}; use metadata::{MetadataManager, MetadataRef, MetadataTrait};
@ -22,6 +23,7 @@ pub struct Config {
pub application_key: Vec<u8>, pub application_key: Vec<u8>,
pub user_agent: String, pub user_agent: String,
pub device_id: String, pub device_id: String,
pub cache_location: PathBuf,
} }
pub struct Session { pub struct Session {
@ -46,6 +48,8 @@ impl Session {
h.result_str() h.result_str()
}; };
mkdir_existing(&config.cache_location).unwrap();
let keys = PrivateKeys::new(); let keys = PrivateKeys::new();
let mut connection = PlainConnection::connect().unwrap(); let mut connection = PlainConnection::connect().unwrap();

View file

@ -55,7 +55,7 @@ impl StreamManager {
data.write_u32::<BigEndian>(0x00000000).unwrap(); data.write_u32::<BigEndian>(0x00000000).unwrap();
data.write_u32::<BigEndian>(0x00009C40).unwrap(); data.write_u32::<BigEndian>(0x00009C40).unwrap();
data.write_u32::<BigEndian>(0x00020000).unwrap(); data.write_u32::<BigEndian>(0x00020000).unwrap();
data.write(&file).unwrap(); data.write(&file.0).unwrap();
data.write_u32::<BigEndian>(offset).unwrap(); data.write_u32::<BigEndian>(offset).unwrap();
data.write_u32::<BigEndian>(offset + size).unwrap(); data.write_u32::<BigEndian>(offset + size).unwrap();

View file

@ -1,15 +1,20 @@
use rand::{Rng,Rand}; use rand::{Rng,Rand};
use time; use time;
use std::io;
use std::fs;
use std::path::Path;
mod int128; mod int128;
mod spotify_id; mod spotify_id;
mod arcvec; mod arcvec;
mod subfile; mod subfile;
mod zerofile;
pub use util::int128::u128; pub use util::int128::u128;
pub use util::spotify_id::{SpotifyId, FileId}; pub use util::spotify_id::{SpotifyId, FileId};
pub use util::arcvec::ArcVec; pub use util::arcvec::ArcVec;
pub use util::subfile::Subfile; pub use util::subfile::Subfile;
pub use util::zerofile::ZeroFile;
#[macro_export] #[macro_export]
macro_rules! eprintln( macro_rules! eprintln(
@ -73,3 +78,12 @@ pub fn now_ms() -> i64 {
ts.sec * 1000 + ts.nsec as i64 / 1000000 ts.sec * 1000 + ts.nsec as i64 / 1000000
} }
pub fn mkdir_existing(path: &Path) -> io::Result<()> {
fs::create_dir(path)
.or_else(|err| if err.kind() == io::ErrorKind::AlreadyExists {
Ok(())
} else {
Err(err)
})
}

View file

@ -3,11 +3,12 @@ use util::u128;
use byteorder::{BigEndian,ByteOrder}; use byteorder::{BigEndian,ByteOrder};
use std::ascii::AsciiExt; use std::ascii::AsciiExt;
pub type FileId = [u8; 20];
#[derive(Debug,Copy,Clone,PartialEq,Eq,Hash)] #[derive(Debug,Copy,Clone,PartialEq,Eq,Hash)]
pub struct SpotifyId(u128); pub struct SpotifyId(u128);
#[derive(Debug,Copy,Clone,PartialEq,Eq,Hash)]
pub struct FileId(pub [u8; 20]);
const BASE62_DIGITS: &'static [u8] = b"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; const BASE62_DIGITS: &'static [u8] = b"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
const BASE16_DIGITS: &'static [u8] = b"0123456789abcdef"; const BASE16_DIGITS: &'static [u8] = b"0123456789abcdef";
@ -77,3 +78,12 @@ impl SpotifyId {
} }
} }
impl FileId {
pub fn to_base16(&self) -> String {
self.0.iter()
.map(|b| format!("{:02x}", b))
.collect::<Vec<String>>()
.concat()
}
}

44
src/util/zerofile.rs Normal file
View file

@ -0,0 +1,44 @@
use std::io;
use std::cmp::{min, max};
pub struct ZeroFile {
position: u64,
size: u64
}
impl ZeroFile {
pub fn new(size: u64) -> ZeroFile {
ZeroFile {
position: 0,
size: size
}
}
}
impl io::Seek for ZeroFile {
fn seek(&mut self, pos: io::SeekFrom) -> io::Result<u64> {
let newpos = match pos {
io::SeekFrom::Start(offset) => offset as i64,
io::SeekFrom::End(offset) => self.size as i64 + offset,
io::SeekFrom::Current(offset) => self.position as i64 + offset,
};
self.position = max(min(newpos, self.size as i64), 0) as u64;
Ok(self.position)
}
}
impl io::Read for ZeroFile {
// TODO optimize with memset or similar
fn read(&mut self, output: &mut [u8]) -> io::Result<usize> {
let len = min(output.len(), (self.size - self.position) as usize);
for i in 0..len {
output[i] = 0;
}
self.position += len as u64;
Ok(len)
}
}