mirror of
https://github.com/librespot-org/librespot.git
synced 2025-01-07 17:24:04 +00:00
4fd0b37e2b
Supports basic play/pause. Only a single track for now.
75 lines
1.4 KiB
Rust
75 lines
1.4 KiB
Rust
use rand::{Rng,Rand};
|
|
use time;
|
|
|
|
mod int128;
|
|
mod spotify_id;
|
|
mod arcvec;
|
|
mod subfile;
|
|
|
|
pub use util::int128::u128;
|
|
pub use util::spotify_id::{SpotifyId, FileId};
|
|
pub use util::arcvec::ArcVec;
|
|
pub use util::subfile::Subfile;
|
|
|
|
#[macro_export]
|
|
macro_rules! eprintln(
|
|
($($arg:tt)*) => (
|
|
{
|
|
use std::io::Write;
|
|
writeln!(&mut ::std::io::stderr(), $($arg)* ).unwrap()
|
|
}
|
|
)
|
|
);
|
|
#[macro_export]
|
|
macro_rules! eprint(
|
|
($($arg:tt)*) => (
|
|
{
|
|
use std::io::Write;
|
|
write!(&mut ::std::io::stderr(), $($arg)* ).unwrap()
|
|
}
|
|
)
|
|
);
|
|
|
|
pub fn rand_vec<G: Rng, R: Rand>(rng: &mut G, size: usize) -> Vec<R> {
|
|
let mut vec = Vec::with_capacity(size);
|
|
|
|
for _ in 0..size {
|
|
vec.push(R::rand(rng));
|
|
}
|
|
|
|
return vec
|
|
}
|
|
|
|
pub mod version {
|
|
include!(concat!(env!("OUT_DIR"), "/version.rs"));
|
|
|
|
pub fn version_string() -> String {
|
|
format!("librespot-{}", short_sha())
|
|
}
|
|
}
|
|
|
|
pub fn hexdump(data: &[u8]) {
|
|
for b in data.iter() {
|
|
eprint!("{:02X} ", b);
|
|
}
|
|
eprintln!("");
|
|
}
|
|
|
|
pub trait IgnoreExt {
|
|
fn ignore(self);
|
|
}
|
|
|
|
impl <T, E> IgnoreExt for Result<T, E> {
|
|
fn ignore(self) {
|
|
match self {
|
|
Ok(_) => (),
|
|
Err(_) => (),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn now_ms() -> i64 {
|
|
let ts = time::now_utc().to_timespec();
|
|
ts.sec * 1000 + ts.nsec as i64 / 1000000
|
|
}
|
|
|