// Copyright 2015, 2016 Ethcore (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . //! Universaly unique identifier. use std::str::FromStr; use std::fmt; use rustc_serialize::hex::{ToHex, FromHex}; use serde::{Deserialize, Serialize, Deserializer, Serializer, Error as SerdeError}; use serde::de::Visitor; use super::Error; /// Universaly unique identifier. #[derive(Debug, PartialEq)] pub struct UUID([u8; 16]); impl From<[u8; 16]> for UUID { fn from(uuid: [u8; 16]) -> Self { UUID(uuid) } } impl<'a> Into for &'a UUID { fn into(self) -> String { let d1 = &self.0[0..4]; let d2 = &self.0[4..6]; let d3 = &self.0[6..8]; let d4 = &self.0[8..10]; let d5 = &self.0[10..16]; [d1, d2, d3, d4, d5].into_iter().map(|d| d.to_hex()).collect::>().join("-") } } impl Into for UUID { fn into(self) -> String { Into::into(&self) } } impl Into<[u8; 16]> for UUID { fn into(self) -> [u8; 16] { self.0 } } impl fmt::Display for UUID { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { let s: String = (self as &UUID).into(); write!(f, "{}", s) } } fn copy_into(from: &str, into: &mut [u8]) -> Result<(), Error> { let from = try!(from.from_hex().map_err(|_| Error::InvalidUUID)); if from.len() != into.len() { return Err(Error::InvalidUUID); } into.copy_from_slice(&from); Ok(()) } impl FromStr for UUID { type Err = Error; fn from_str(s: &str) -> Result { let parts: Vec<&str> = s.split("-").collect(); if parts.len() != 5 { return Err(Error::InvalidUUID); } let mut uuid = [0u8; 16]; try!(copy_into(parts[0], &mut uuid[0..4])); try!(copy_into(parts[1], &mut uuid[4..6])); try!(copy_into(parts[2], &mut uuid[6..8])); try!(copy_into(parts[3], &mut uuid[8..10])); try!(copy_into(parts[4], &mut uuid[10..16])); Ok(UUID(uuid)) } } impl Serialize for UUID { fn serialize(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer { let s: String = self.into(); serializer.serialize_str(&s) } } impl Deserialize for UUID { fn deserialize(deserializer: &mut D) -> Result where D: Deserializer { deserializer.deserialize(UUIDVisitor) } } struct UUIDVisitor; impl Visitor for UUIDVisitor { type Value = UUID; fn visit_str(&mut self, value: &str) -> Result where E: SerdeError { UUID::from_str(value).map_err(SerdeError::custom) } fn visit_string(&mut self, value: String) -> Result where E: SerdeError { self.visit_str(value.as_ref()) } } #[cfg(test)] mod tests { use std::str::FromStr; use super::UUID; #[test] fn uuid_from_str() { let uuid = UUID::from_str("3198bc9c-6672-5ab3-d995-4942343ae5b6").unwrap(); assert_eq!(uuid, UUID::from([0x31, 0x98, 0xbc, 0x9c, 0x66, 0x72, 0x5a, 0xb3, 0xd9, 0x95, 0x49, 0x42, 0x34, 0x3a, 0xe5, 0xb6])); } #[test] fn uuid_from_and_to_str() { let from = "3198bc9c-6672-5ab3-d995-4942343ae5b6"; let uuid = UUID::from_str(from).unwrap(); let to: String = uuid.into(); assert_eq!(from, &to); } }