// This file is part of the NRGrip project. // // Copyright (c) 2016 Matteo Cypriani // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. //! Miscellaneous functions to read fixed-size data from a file. use std::fs::File; use std::io::Read; use std::mem; use ::error::NrgError; /// Reads a String of size `size` from `fd`. pub fn read_sized_string(fd: &File, size: u64) -> Result { let mut handle = fd.take(size); let mut string = String::new(); try!(handle.read_to_string(&mut string)); Ok(string) } /// Reads a 64-bit unsigned integer from `fd`. pub fn read_u64(fd: &mut File) -> Result { let mut buf = [0u8; 8]; try!(fd.read_exact(&mut buf)); let i: u64; unsafe { i = mem::transmute(buf); } Ok(u64::from_be(i)) } /// Reads a 32-bit unsigned integer from `fd`. pub fn read_u32(fd: &mut File) -> Result { let mut buf = [0u8; 4]; try!(fd.read_exact(&mut buf)); let i: u32; unsafe { i = mem::transmute(buf); } Ok(u32::from_be(i)) } /// Reads a 16-bit unsigned integer from `fd`. pub fn read_u16(fd: &mut File) -> Result { let mut buf = [0u8; 2]; try!(fd.read_exact(&mut buf)); let i: u16; unsafe { i = mem::transmute(buf); } Ok(u16::from_be(i)) } /// Reads an unsigned byte from `fd`. pub fn read_u8(fd: &mut File) -> Result { let mut buf = [0u8; 1]; try!(fd.read_exact(&mut buf)); Ok(buf[0]) }