123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- use byteorder::{BigEndian, ByteOrder};
- use extprim::u128::u128;
- use std;
- use std::fmt;
- #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
- pub struct SpotifyId(u128);
- #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
- pub struct SpotifyIdError;
- const BASE62_DIGITS: &'static [u8] = b"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
- const BASE16_DIGITS: &'static [u8] = b"0123456789abcdef";
- impl SpotifyId {
- pub fn from_base16(id: &str) -> Result<SpotifyId, SpotifyIdError> {
- let data = id.as_bytes();
- let mut n: u128 = u128::zero();
- for c in data {
- let d = match BASE16_DIGITS.iter().position(|e| e == c) {
- None => return Err(SpotifyIdError),
- Some(x) => x as u64,
- };
- n = n * u128::new(16);
- n = n + u128::new(d);
- }
- Ok(SpotifyId(n))
- }
- pub fn from_base62(id: &str) -> Result<SpotifyId, SpotifyIdError> {
- let data = id.as_bytes();
- let mut n: u128 = u128::zero();
- for c in data {
- let d = match BASE62_DIGITS.iter().position(|e| e == c) {
- None => return Err(SpotifyIdError),
- Some(x) => x as u64,
- };
- n = n * u128::new(62);
- n = n + u128::new(d);
- }
- Ok(SpotifyId(n))
- }
- pub fn from_raw(data: &[u8]) -> Result<SpotifyId, SpotifyIdError> {
- if data.len() != 16 {
- return Err(SpotifyIdError);
- };
- let high = BigEndian::read_u64(&data[0..8]);
- let low = BigEndian::read_u64(&data[8..16]);
- Ok(SpotifyId(u128::from_parts(high, low)))
- }
- pub fn to_base16(&self) -> String {
- let &SpotifyId(ref n) = self;
- let mut data = [0u8; 32];
- for i in 0..32 {
- data[31 - i] = BASE16_DIGITS[(n.wrapping_shr(4 * i as u32).low64() & 0xF) as usize];
- }
- std::str::from_utf8(&data).unwrap().to_owned()
- }
- pub fn to_base62(&self) -> String {
- let &SpotifyId(mut n) = self;
- let mut data = [0u8; 22];
- let sixty_two = u128::new(62);
- for i in 0..22 {
- data[21 - i] = BASE62_DIGITS[(n % sixty_two).low64() as usize];
- n /= sixty_two;
- }
- std::str::from_utf8(&data).unwrap().to_owned()
- }
- pub fn to_raw(&self) -> [u8; 16] {
- let &SpotifyId(ref n) = self;
- let mut data = [0u8; 16];
- BigEndian::write_u64(&mut data[0..8], n.high64());
- BigEndian::write_u64(&mut data[8..16], n.low64());
- data
- }
- }
- #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
- pub struct FileId(pub [u8; 20]);
- impl FileId {
- pub fn to_base16(&self) -> String {
- self.0
- .iter()
- .map(|b| format!("{:02x}", b))
- .collect::<Vec<String>>()
- .concat()
- }
- }
- impl fmt::Debug for FileId {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- f.debug_tuple("FileId").field(&self.to_base16()).finish()
- }
- }
- impl fmt::Display for FileId {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- f.write_str(&self.to_base16())
- }
- }
|