2013-03-13 22:02:48 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-09-17 01:10:03 -05:00
|
|
|
/*! Synchronous File I/O
|
|
|
|
|
|
|
|
This module provides a set of functions and traits for working
|
|
|
|
with regular files & directories on a filesystem.
|
|
|
|
|
2013-10-25 19:04:37 -05:00
|
|
|
At the top-level of the module are a set of freestanding functions, associated
|
|
|
|
with various filesystem operations. They all operate on a `Path` object.
|
2013-09-17 01:10:03 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
All operations in this module, including those as part of `File` et al
|
2013-11-11 00:46:32 -06:00
|
|
|
block the task during execution. Most will raise `std::io::io_error`
|
2013-09-17 01:10:03 -05:00
|
|
|
conditions in the event of failure.
|
|
|
|
|
2013-10-25 19:04:37 -05:00
|
|
|
Also included in this module is an implementation block on the `Path` object
|
|
|
|
defined in `std::path::Path`. The impl adds useful methods about inspecting the
|
|
|
|
metadata of a file. This includes getting the `stat` information, reading off
|
|
|
|
particular bits of it, etc.
|
|
|
|
|
2013-10-31 17:15:30 -05:00
|
|
|
# Example
|
|
|
|
|
2013-11-11 00:46:32 -06:00
|
|
|
use std::io::{File, fs};
|
2013-10-31 17:15:30 -05:00
|
|
|
|
2013-12-03 21:15:12 -06:00
|
|
|
let path = Path::new("foo.txt");
|
2013-10-31 17:15:30 -05:00
|
|
|
|
|
|
|
// create the file, whether it exists or not
|
|
|
|
let mut file = File::create(&path);
|
|
|
|
file.write(bytes!("foobar"));
|
|
|
|
|
|
|
|
// open the file in read-only mode
|
|
|
|
let mut file = File::open(&path);
|
|
|
|
file.read_to_end();
|
|
|
|
|
|
|
|
println!("{}", path.stat().size);
|
2013-12-03 21:15:12 -06:00
|
|
|
fs::symlink(&path, &Path::new("bar.txt"));
|
2013-10-31 17:15:30 -05:00
|
|
|
fs::unlink(&path);
|
|
|
|
|
2013-09-17 01:10:03 -05:00
|
|
|
*/
|
|
|
|
|
2013-10-16 18:48:30 -05:00
|
|
|
use c_str::ToCStr;
|
2013-11-11 00:46:32 -06:00
|
|
|
use clone::Clone;
|
2013-10-30 01:31:07 -05:00
|
|
|
use iter::Iterator;
|
2013-09-17 01:36:39 -05:00
|
|
|
use super::{Reader, Writer, Seek};
|
2013-10-30 01:31:07 -05:00
|
|
|
use super::{SeekStyle, Read, Write, Open, IoError, Truncate,
|
2013-10-25 19:04:37 -05:00
|
|
|
FileMode, FileAccess, FileStat, io_error, FilePermission};
|
2013-12-05 19:25:48 -06:00
|
|
|
use rt::rtio::{RtioFileStream, IoFactory, LocalIo};
|
2013-11-11 00:46:32 -06:00
|
|
|
use io;
|
2013-10-25 19:04:37 -05:00
|
|
|
use option::{Some, None, Option};
|
2013-12-12 19:30:41 -06:00
|
|
|
use result::{Ok, Err};
|
2013-10-25 19:04:37 -05:00
|
|
|
use path;
|
|
|
|
use path::{Path, GenericPath};
|
2013-11-11 00:46:32 -06:00
|
|
|
use vec::{OwnedVector, ImmutableVector};
|
2013-09-17 01:10:03 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
/// Unconstrained file access type that exposes read and write operations
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-31 17:15:30 -05:00
|
|
|
/// Can be constructed via `File::open()`, `File::create()`, and
|
|
|
|
/// `File::open_mode()`.
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-09-17 01:36:39 -05:00
|
|
|
/// # Errors
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-30 01:31:07 -05:00
|
|
|
/// This type will raise an io_error condition if operations are attempted against
|
|
|
|
/// it for which its underlying file descriptor was not configured at creation
|
2013-10-31 17:15:30 -05:00
|
|
|
/// time, via the `FileAccess` parameter to `File::open_mode()`.
|
2013-10-30 01:31:07 -05:00
|
|
|
pub struct File {
|
|
|
|
priv fd: ~RtioFileStream,
|
|
|
|
priv path: Path,
|
|
|
|
priv last_nread: int,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl File {
|
|
|
|
/// Open a file at `path` in the mode specified by the `mode` and `access`
|
|
|
|
/// arguments
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::{File, io_error, Open, ReadWrite};
|
2013-10-30 01:31:07 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let p = Path::new("/some/file/path.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
///
|
2013-11-20 16:17:12 -06:00
|
|
|
/// io_error::cond.trap(|_| {
|
2013-10-30 01:31:07 -05:00
|
|
|
/// // hoo-boy...
|
2013-11-20 16:17:12 -06:00
|
|
|
/// }).inside(|| {
|
2013-10-30 01:31:07 -05:00
|
|
|
/// let file = match File::open_mode(&p, Open, ReadWrite) {
|
|
|
|
/// Some(s) => s,
|
|
|
|
/// None => fail!("whoops! I'm sure this raised, anyways..")
|
|
|
|
/// };
|
|
|
|
/// // do some stuff with that file
|
|
|
|
///
|
|
|
|
/// // the file will be closed at the end of this block
|
2013-11-20 16:17:12 -06:00
|
|
|
/// })
|
2013-10-30 01:31:07 -05:00
|
|
|
/// // ..
|
|
|
|
///
|
|
|
|
/// `FileMode` and `FileAccess` provide information about the permissions
|
|
|
|
/// context in which a given stream is created. More information about them
|
2013-11-11 00:46:32 -06:00
|
|
|
/// can be found in `std::io`'s docs. If a file is opened with `Write`
|
2013-10-30 01:31:07 -05:00
|
|
|
/// or `ReadWrite` access, then it will be created it it does not already
|
|
|
|
/// exist.
|
|
|
|
///
|
|
|
|
/// Note that, with this function, a `File` is returned regardless of the
|
|
|
|
/// access-limitations indicated by `FileAccess` (e.g. calling `write` on a
|
|
|
|
/// `File` opened as `Read` will raise an `io_error` condition at runtime).
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise an `io_error` condition under a number of
|
|
|
|
/// different circumstances, to include but not limited to:
|
|
|
|
///
|
|
|
|
/// * Opening a file that does not exist with `Read` access.
|
|
|
|
/// * Attempting to open a file with a `FileAccess` that the user lacks
|
|
|
|
/// permissions for
|
|
|
|
/// * Filesystem-level errors (full disk, etc)
|
|
|
|
pub fn open_mode(path: &Path,
|
|
|
|
mode: FileMode,
|
|
|
|
access: FileAccess) -> Option<File> {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
io.fs_open(&path.to_c_str(), mode, access).map(|fd| {
|
|
|
|
File {
|
|
|
|
path: path.clone(),
|
|
|
|
fd: fd,
|
|
|
|
last_nread: -1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
/// Attempts to open a file in read-only mode. This function is equivalent to
|
|
|
|
/// `File::open_mode(path, Open, Read)`, and will raise all of the same
|
|
|
|
/// errors that `File::open_mode` does.
|
|
|
|
///
|
|
|
|
/// For more information, see the `File::open_mode` function.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::File;
|
2013-10-30 01:31:07 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let contents = File::open(&Path::new("foo.txt")).read_to_end();
|
2013-10-30 01:31:07 -05:00
|
|
|
pub fn open(path: &Path) -> Option<File> {
|
|
|
|
File::open_mode(path, Open, Read)
|
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
/// Attempts to create a file in write-only mode. This function is
|
|
|
|
/// equivalent to `File::open_mode(path, Truncate, Write)`, and will
|
|
|
|
/// raise all of the same errors that `File::open_mode` does.
|
|
|
|
///
|
|
|
|
/// For more information, see the `File::open_mode` function.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::File;
|
2013-10-30 01:31:07 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let mut f = File::create(&Path::new("foo.txt"));
|
2013-10-31 17:15:30 -05:00
|
|
|
/// f.write(bytes!("This is a sample file"));
|
2013-10-30 01:31:07 -05:00
|
|
|
pub fn create(path: &Path) -> Option<File> {
|
|
|
|
File::open_mode(path, Truncate, Write)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the original path which was used to open this file.
|
|
|
|
pub fn path<'a>(&'a self) -> &'a Path {
|
|
|
|
&self.path
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Synchronizes all modifications to this file to its permanent storage
|
|
|
|
/// device. This will flush any internal buffers necessary to perform this
|
|
|
|
/// operation.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition on failure.
|
|
|
|
pub fn fsync(&mut self) {
|
2014-01-23 11:53:05 -06:00
|
|
|
let _ = self.fd.fsync().map_err(|e| io_error::cond.raise(e));
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This function is similar to `fsync`, except that it may not synchronize
|
|
|
|
/// file metadata to the filesystem. This is intended for use case which
|
|
|
|
/// must synchronize content, but don't need the metadata on disk. The goal
|
|
|
|
/// of this method is to reduce disk operations.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition on failure.
|
|
|
|
pub fn datasync(&mut self) {
|
2014-01-23 11:53:05 -06:00
|
|
|
let _ = self.fd.datasync().map_err(|e| io_error::cond.raise(e));
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
|
2013-11-13 16:48:45 -06:00
|
|
|
/// Either truncates or extends the underlying file, updating the size of
|
|
|
|
/// this file to become `size`. This is equivalent to unix's `truncate`
|
2013-10-30 01:31:07 -05:00
|
|
|
/// function.
|
|
|
|
///
|
2013-11-13 16:48:45 -06:00
|
|
|
/// If the `size` is less than the current file's size, then the file will
|
|
|
|
/// be shrunk. If it is greater than the current file's size, then the file
|
|
|
|
/// will be extended to `size` and have all of the intermediate data filled
|
|
|
|
/// in with 0s.
|
2013-10-30 01:31:07 -05:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// On error, this function will raise on the `io_error` condition.
|
2013-11-13 16:48:45 -06:00
|
|
|
pub fn truncate(&mut self, size: i64) {
|
2014-01-23 11:53:05 -06:00
|
|
|
let _ = self.fd.truncate(size).map_err(|e| io_error::cond.raise(e));
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2014-01-07 11:47:53 -06:00
|
|
|
|
|
|
|
/// Tests whether this stream has reached EOF.
|
|
|
|
///
|
|
|
|
/// If true, then this file will no longer continue to return data via
|
|
|
|
/// `read`.
|
|
|
|
pub fn eof(&self) -> bool {
|
|
|
|
self.last_nread == 0
|
|
|
|
}
|
2013-04-17 19:55:21 -05:00
|
|
|
}
|
2013-03-13 22:02:48 -05:00
|
|
|
|
2013-10-31 17:15:30 -05:00
|
|
|
/// Unlink a file from the underlying filesystem.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let p = Path::new("/some/file/path.txt");
|
2013-10-31 17:15:30 -05:00
|
|
|
/// fs::unlink(&p);
|
|
|
|
/// // if we made it here without failing, then the
|
|
|
|
/// // unlink operation was successful
|
|
|
|
///
|
|
|
|
/// Note that, just because an unlink call was successful, it is not
|
|
|
|
/// guaranteed that a file is immediately deleted (e.g. depending on
|
|
|
|
/// platform, other open file descriptors may prevent immediate removal)
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise an `io_error` condition if the path points to a
|
|
|
|
/// directory, the user lacks permissions to remove the file, or if some
|
|
|
|
/// other filesystem-level error occurs.
|
|
|
|
pub fn unlink(path: &Path) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_unlink(&path.to_c_str()));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a path, query the file system to get information about a file,
|
|
|
|
/// directory, etc. This function will traverse symlinks to query
|
|
|
|
/// information about the destination file.
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
/// Returns a fully-filled out stat structure on success, and on failure it
|
2013-10-31 17:15:30 -05:00
|
|
|
/// will return a dummy stat structure (it is expected that the condition
|
|
|
|
/// raised is handled as well).
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io;
|
|
|
|
/// use std::io::fs;
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let p = Path::new("/some/file/path.txt");
|
2013-10-31 17:15:30 -05:00
|
|
|
/// match io::result(|| fs::stat(&p)) {
|
|
|
|
/// Ok(stat) => { /* ... */ }
|
|
|
|
/// Err(e) => { /* handle error */ }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This call will raise an `io_error` condition if the user lacks the
|
|
|
|
/// requisite permissions to perform a `stat` call on the given path or if
|
|
|
|
/// there is no entry in the filesystem at the provided path.
|
|
|
|
pub fn stat(path: &Path) -> FileStat {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
io.fs_stat(&path.to_c_str())
|
|
|
|
}).unwrap_or_else(dummystat)
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn dummystat() -> FileStat {
|
|
|
|
FileStat {
|
2013-12-03 21:15:12 -06:00
|
|
|
path: Path::new(""),
|
2013-10-31 17:15:30 -05:00
|
|
|
size: 0,
|
|
|
|
kind: io::TypeFile,
|
|
|
|
perm: 0,
|
|
|
|
created: 0,
|
|
|
|
modified: 0,
|
|
|
|
accessed: 0,
|
|
|
|
unstable: io::UnstableFileStat {
|
|
|
|
device: 0,
|
|
|
|
inode: 0,
|
|
|
|
rdev: 0,
|
|
|
|
nlink: 0,
|
|
|
|
uid: 0,
|
|
|
|
gid: 0,
|
|
|
|
blksize: 0,
|
|
|
|
blocks: 0,
|
|
|
|
flags: 0,
|
|
|
|
gen: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform the same operation as the `stat` function, except that this
|
|
|
|
/// function does not traverse through symlinks. This will return
|
|
|
|
/// information about the symlink file instead of the file that it points
|
|
|
|
/// to.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// See `stat`
|
|
|
|
pub fn lstat(path: &Path) -> FileStat {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
io.fs_lstat(&path.to_c_str())
|
|
|
|
}).unwrap_or_else(dummystat)
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Rename a file or directory to a new name.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// fs::rename(&Path::new("foo"), &Path::new("bar"));
|
2013-10-31 17:15:30 -05:00
|
|
|
/// // Oh boy, nothing was raised!
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will raise an `io_error` condition if the provided `path` doesn't exist,
|
|
|
|
/// the process lacks permissions to view the contents, or if some other
|
|
|
|
/// intermittent I/O error occurs.
|
|
|
|
pub fn rename(from: &Path, to: &Path) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_rename(&from.to_c_str(), &to.to_c_str()));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Copies the contents of one file to another. This function will also
|
|
|
|
/// copy the permission bits of the original file to the destination file.
|
|
|
|
///
|
|
|
|
/// Note that if `from` and `to` both point to the same file, then the file
|
|
|
|
/// will likely get truncated by this operation.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// fs::copy(&Path::new("foo.txt"), &Path::new("bar.txt"));
|
2013-10-31 17:15:30 -05:00
|
|
|
/// // Oh boy, nothing was raised!
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
/// Will raise an `io_error` condition is the following situations, but is
|
2013-10-31 17:15:30 -05:00
|
|
|
/// not limited to just these cases:
|
|
|
|
///
|
|
|
|
/// * The `from` path is not a file
|
|
|
|
/// * The `from` file does not exist
|
|
|
|
/// * The current process does not have the permission rights to access
|
|
|
|
/// `from` or write `to`
|
|
|
|
///
|
|
|
|
/// Note that this copy is not atomic in that once the destination is
|
|
|
|
/// ensured to not exist, there is nothing preventing the destination from
|
|
|
|
/// being created and then destroyed by this operation.
|
|
|
|
pub fn copy(from: &Path, to: &Path) {
|
|
|
|
if !from.is_file() {
|
|
|
|
return io_error::cond.raise(IoError {
|
|
|
|
kind: io::MismatchedFileTypeForOperation,
|
|
|
|
desc: "the source path is not an existing file",
|
|
|
|
detail: None,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut reader = match File::open(from) { Some(f) => f, None => return };
|
|
|
|
let mut writer = match File::create(to) { Some(f) => f, None => return };
|
|
|
|
let mut buf = [0, ..io::DEFAULT_BUF_SIZE];
|
|
|
|
|
|
|
|
loop {
|
|
|
|
match reader.read(buf) {
|
|
|
|
Some(amt) => writer.write(buf.slice_to(amt)),
|
|
|
|
None => break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
chmod(to, from.stat().perm)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Changes the permission mode bits found on a file or a directory. This
|
|
|
|
/// function takes a mask from the `io` module
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io;
|
|
|
|
/// use std::io::fs;
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// fs::chmod(&Path::new("file.txt"), io::UserFile);
|
|
|
|
/// fs::chmod(&Path::new("file.txt"), io::UserRead | io::UserWrite);
|
|
|
|
/// fs::chmod(&Path::new("dir"), io::UserDir);
|
|
|
|
/// fs::chmod(&Path::new("file.exe"), io::UserExec);
|
2013-10-31 17:15:30 -05:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
/// If this function encounters an I/O error, it will raise on the `io_error`
|
2013-10-31 17:15:30 -05:00
|
|
|
/// condition. Some possible error situations are not having the permission to
|
|
|
|
/// change the attributes of a file or the file not existing.
|
|
|
|
pub fn chmod(path: &Path, mode: io::FilePermission) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_chmod(&path.to_c_str(), mode));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Change the user and group owners of a file at the specified path.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
/// This function will raise on the `io_error` condition on failure.
|
2013-10-31 17:15:30 -05:00
|
|
|
pub fn chown(path: &Path, uid: int, gid: int) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_chown(&path.to_c_str(), uid, gid));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new hard link on the filesystem. The `dst` path will be a
|
|
|
|
/// link pointing to the `src` path. Note that systems often require these
|
|
|
|
/// two paths to both be located on the same filesystem.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition on failure.
|
|
|
|
pub fn link(src: &Path, dst: &Path) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_link(&src.to_c_str(), &dst.to_c_str()));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new symbolic link on the filesystem. The `dst` path will be a
|
|
|
|
/// symlink pointing to the `src` path.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition on failure.
|
|
|
|
pub fn symlink(src: &Path, dst: &Path) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_symlink(&src.to_c_str(), &dst.to_c_str()));
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Reads a symlink, returning the file that the symlink points to.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition on failure. Failure
|
|
|
|
/// conditions include reading a file that does not exist or reading a file
|
|
|
|
/// which is not a symlink.
|
|
|
|
pub fn readlink(path: &Path) -> Option<Path> {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_readlink(&path.to_c_str()))
|
2013-10-31 17:15:30 -05:00
|
|
|
}
|
|
|
|
|
2013-09-17 01:36:39 -05:00
|
|
|
/// Create a new, empty directory at the provided path
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-09-17 01:36:39 -05:00
|
|
|
/// # Example
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-25 19:04:37 -05:00
|
|
|
/// use std::libc::S_IRWXU;
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let p = Path::new("/some/dir");
|
2013-10-31 17:15:30 -05:00
|
|
|
/// fs::mkdir(&p, S_IRWXU as int);
|
2013-12-14 23:26:09 -06:00
|
|
|
/// // If we got here, our directory exists! Hooray!
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-09-17 01:36:39 -05:00
|
|
|
/// # Errors
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-25 19:04:37 -05:00
|
|
|
/// This call will raise an `io_error` condition if the user lacks permissions
|
|
|
|
/// to make a new directory at the provided path, or if the directory already
|
|
|
|
/// exists.
|
|
|
|
pub fn mkdir(path: &Path, mode: FilePermission) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_mkdir(&path.to_c_str(), mode));
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
2013-09-17 01:10:03 -05:00
|
|
|
|
2013-09-17 01:36:39 -05:00
|
|
|
/// Remove an existing, empty directory
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-09-17 01:36:39 -05:00
|
|
|
/// # Example
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-12-03 21:15:12 -06:00
|
|
|
/// let p = Path::new("/some/dir");
|
2013-10-31 17:15:30 -05:00
|
|
|
/// fs::rmdir(&p);
|
2013-09-17 01:36:39 -05:00
|
|
|
/// // good riddance, you mean ol' directory
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-09-17 01:36:39 -05:00
|
|
|
/// # Errors
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-25 19:04:37 -05:00
|
|
|
/// This call will raise an `io_error` condition if the user lacks permissions
|
|
|
|
/// to remove the directory at the provided path, or if the directory isn't
|
|
|
|
/// empty.
|
|
|
|
pub fn rmdir(path: &Path) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_rmdir(&path.to_c_str()));
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
|
|
|
|
2013-09-17 01:36:39 -05:00
|
|
|
/// Retrieve a vector containing all entries within a provided directory
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-11-11 00:46:32 -06:00
|
|
|
/// use std::io::fs;
|
2013-09-17 01:36:39 -05:00
|
|
|
///
|
2013-10-31 17:15:30 -05:00
|
|
|
/// // one possible implementation of fs::walk_dir only visiting files
|
2013-11-18 23:15:42 -06:00
|
|
|
/// fn visit_dirs(dir: &Path, cb: |&Path|) {
|
2013-09-17 01:36:39 -05:00
|
|
|
/// if dir.is_dir() {
|
2013-10-31 17:15:30 -05:00
|
|
|
/// let contents = fs::readdir(dir).unwrap();
|
2013-09-17 01:36:39 -05:00
|
|
|
/// for entry in contents.iter() {
|
|
|
|
/// if entry.is_dir() { visit_dirs(entry, cb); }
|
|
|
|
/// else { cb(entry); }
|
|
|
|
/// }
|
|
|
|
/// }
|
2013-10-21 15:08:31 -05:00
|
|
|
/// else { fail!("nope"); }
|
2013-09-17 01:36:39 -05:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
2013-10-25 19:04:37 -05:00
|
|
|
/// Will raise an `io_error` condition if the provided `from` doesn't exist,
|
2013-09-17 01:36:39 -05:00
|
|
|
/// the process lacks permissions to view the contents or if the `path` points
|
|
|
|
/// at a non-directory file
|
2013-10-25 19:04:37 -05:00
|
|
|
pub fn readdir(path: &Path) -> ~[Path] {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
io.fs_readdir(&path.to_c_str(), 0)
|
|
|
|
}).unwrap_or_else(|| ~[])
|
2013-09-16 15:25:10 -05:00
|
|
|
}
|
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
/// Returns an iterator which will recursively walk the directory structure
|
|
|
|
/// rooted at `path`. The path given will not be iterated over, and this will
|
|
|
|
/// perform iteration in a top-down order.
|
2014-01-14 21:32:24 -06:00
|
|
|
pub fn walk_dir(path: &Path) -> Directories {
|
|
|
|
Directories { stack: readdir(path) }
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
2013-09-14 11:33:53 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
/// An iterator which walks over a directory
|
2014-01-14 21:32:24 -06:00
|
|
|
pub struct Directories {
|
2013-10-30 01:31:07 -05:00
|
|
|
priv stack: ~[Path],
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
impl Iterator<Path> for Directories {
|
2013-10-30 01:31:07 -05:00
|
|
|
fn next(&mut self) -> Option<Path> {
|
2013-12-23 09:40:42 -06:00
|
|
|
match self.stack.shift() {
|
2013-10-30 01:31:07 -05:00
|
|
|
Some(path) => {
|
|
|
|
if path.is_dir() {
|
|
|
|
self.stack.push_all_move(readdir(&path));
|
|
|
|
}
|
|
|
|
Some(path)
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
None => None
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Recursively create a directory and all of its parent components if they
|
|
|
|
/// are missing.
|
|
|
|
///
|
2013-10-30 01:31:07 -05:00
|
|
|
/// # Errors
|
2013-10-25 19:04:37 -05:00
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition if an error
|
2013-10-31 17:15:30 -05:00
|
|
|
/// happens, see `fs::mkdir` for more information about error conditions
|
2013-10-25 19:04:37 -05:00
|
|
|
/// and performance.
|
|
|
|
pub fn mkdir_recursive(path: &Path, mode: FilePermission) {
|
|
|
|
// tjc: if directory exists but with different permissions,
|
|
|
|
// should we return false?
|
|
|
|
if path.is_dir() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if path.filename().is_some() {
|
|
|
|
mkdir_recursive(&path.dir_path(), mode);
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
mkdir(path, mode)
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
|
|
|
|
2013-10-25 19:04:37 -05:00
|
|
|
/// Removes a directory at this path, after removing all its contents. Use
|
|
|
|
/// carefully!
|
2013-09-17 12:14:15 -05:00
|
|
|
///
|
2013-10-30 01:31:07 -05:00
|
|
|
/// # Errors
|
2013-10-25 19:04:37 -05:00
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition if an error
|
2013-10-31 17:15:30 -05:00
|
|
|
/// happens. See `file::unlink` and `fs::readdir` for possible error
|
2013-10-25 19:04:37 -05:00
|
|
|
/// conditions.
|
|
|
|
pub fn rmdir_recursive(path: &Path) {
|
2013-10-30 01:31:07 -05:00
|
|
|
let children = readdir(path);
|
|
|
|
for child in children.iter() {
|
|
|
|
if child.is_dir() {
|
|
|
|
rmdir_recursive(child);
|
2013-10-25 19:04:37 -05:00
|
|
|
} else {
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(child);
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
// Directory should now be empty
|
|
|
|
rmdir(path);
|
|
|
|
}
|
|
|
|
|
2013-11-05 17:48:27 -06:00
|
|
|
/// Changes the timestamps for a file's last modification and access time.
|
|
|
|
/// The file at the path specified will have its last access time set to
|
2013-11-06 01:29:11 -06:00
|
|
|
/// `atime` and its modification time set to `mtime`. The times specified should
|
|
|
|
/// be in milliseconds.
|
2013-11-05 17:48:27 -06:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will raise on the `io_error` condition if an error
|
|
|
|
/// happens.
|
|
|
|
// FIXME(#10301) these arguments should not be u64
|
|
|
|
pub fn change_file_times(path: &Path, atime: u64, mtime: u64) {
|
2013-12-12 19:30:41 -06:00
|
|
|
LocalIo::maybe_raise(|io| io.fs_utime(&path.to_c_str(), atime, mtime));
|
2013-11-05 17:48:27 -06:00
|
|
|
}
|
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
impl Reader for File {
|
2013-08-19 23:57:47 -05:00
|
|
|
fn read(&mut self, buf: &mut [u8]) -> Option<uint> {
|
2013-08-20 17:38:41 -05:00
|
|
|
match self.fd.read(buf) {
|
2013-08-19 23:57:47 -05:00
|
|
|
Ok(read) => {
|
|
|
|
self.last_nread = read;
|
|
|
|
match read {
|
|
|
|
0 => None,
|
|
|
|
_ => Some(read as uint)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(ioerr) => {
|
|
|
|
// EOF is indicated by returning None
|
2013-10-25 19:04:37 -05:00
|
|
|
if ioerr.kind != io::EndOfFile {
|
2013-10-18 13:52:23 -05:00
|
|
|
io_error::cond.raise(ioerr);
|
2013-08-19 23:57:47 -05:00
|
|
|
}
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
2013-03-13 22:02:48 -05:00
|
|
|
}
|
2013-04-17 19:55:21 -05:00
|
|
|
}
|
2013-03-13 22:02:48 -05:00
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
impl Writer for File {
|
2013-08-19 23:57:47 -05:00
|
|
|
fn write(&mut self, buf: &[u8]) {
|
2013-08-20 17:38:41 -05:00
|
|
|
match self.fd.write(buf) {
|
2013-10-30 01:31:07 -05:00
|
|
|
Ok(()) => (),
|
2013-08-19 23:57:47 -05:00
|
|
|
Err(ioerr) => {
|
|
|
|
io_error::cond.raise(ioerr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-17 19:55:21 -05:00
|
|
|
}
|
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
impl Seek for File {
|
2013-08-20 17:38:41 -05:00
|
|
|
fn tell(&self) -> u64 {
|
|
|
|
let res = self.fd.tell();
|
|
|
|
match res {
|
|
|
|
Ok(cursor) => cursor,
|
|
|
|
Err(ioerr) => {
|
2013-10-18 13:52:23 -05:00
|
|
|
io_error::cond.raise(ioerr);
|
2013-08-20 17:38:41 -05:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-17 19:55:21 -05:00
|
|
|
|
2013-08-20 17:38:41 -05:00
|
|
|
fn seek(&mut self, pos: i64, style: SeekStyle) {
|
2013-08-22 17:03:28 -05:00
|
|
|
match self.fd.seek(pos, style) {
|
2013-08-20 17:38:41 -05:00
|
|
|
Ok(_) => {
|
2013-08-22 17:03:28 -05:00
|
|
|
// successful seek resets EOF indicator
|
2013-08-20 17:38:41 -05:00
|
|
|
self.last_nread = -1;
|
|
|
|
()
|
|
|
|
},
|
|
|
|
Err(ioerr) => {
|
2013-10-18 13:52:23 -05:00
|
|
|
io_error::cond.raise(ioerr);
|
2013-08-20 17:38:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-17 19:55:21 -05:00
|
|
|
}
|
|
|
|
|
2013-10-25 19:04:37 -05:00
|
|
|
impl path::Path {
|
|
|
|
/// Get information on the file, directory, etc at this path.
|
2013-09-17 01:36:39 -05:00
|
|
|
///
|
|
|
|
/// Consult the `file::stat` documentation for more info.
|
|
|
|
///
|
2013-10-25 19:04:37 -05:00
|
|
|
/// This call preserves identical runtime/error semantics with `file::stat`.
|
2013-10-31 17:15:30 -05:00
|
|
|
pub fn stat(&self) -> FileStat { stat(self) }
|
2013-09-14 11:33:53 -05:00
|
|
|
|
2013-10-25 19:04:37 -05:00
|
|
|
/// Boolean value indicator whether the underlying file exists on the local
|
|
|
|
/// filesystem. This will return true if the path points to either a
|
|
|
|
/// directory or a file.
|
2013-09-17 01:10:03 -05:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will not raise a condition
|
2013-10-25 19:04:37 -05:00
|
|
|
pub fn exists(&self) -> bool {
|
|
|
|
io::result(|| self.stat()).is_ok()
|
2013-08-26 09:24:10 -05:00
|
|
|
}
|
2013-09-14 11:33:53 -05:00
|
|
|
|
2013-12-14 23:26:09 -06:00
|
|
|
/// Whether the underlying implementation (be it a file path, or something
|
2013-10-25 19:04:37 -05:00
|
|
|
/// else) points at a "regular file" on the FS. Will return false for paths
|
|
|
|
/// to non-existent locations or directories or other non-regular files
|
|
|
|
/// (named pipes, etc).
|
2013-09-17 01:36:39 -05:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will not raise a condition
|
2013-10-25 19:04:37 -05:00
|
|
|
pub fn is_file(&self) -> bool {
|
|
|
|
match io::result(|| self.stat()) {
|
2013-10-30 01:31:07 -05:00
|
|
|
Ok(s) => s.kind == io::TypeFile,
|
2013-11-28 14:22:53 -06:00
|
|
|
Err(..) => false
|
2013-09-14 11:33:53 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-17 01:10:03 -05:00
|
|
|
|
2013-12-14 23:26:09 -06:00
|
|
|
/// Whether the underlying implementation (be it a file path,
|
2013-09-17 01:10:03 -05:00
|
|
|
/// or something else) is pointing at a directory in the underlying FS.
|
|
|
|
/// Will return false for paths to non-existent locations or if the item is
|
2013-09-15 14:23:53 -05:00
|
|
|
/// not a directory (eg files, named pipes, links, etc)
|
2013-09-17 01:36:39 -05:00
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will not raise a condition
|
2013-10-25 19:04:37 -05:00
|
|
|
pub fn is_dir(&self) -> bool {
|
|
|
|
match io::result(|| self.stat()) {
|
2013-10-30 01:31:07 -05:00
|
|
|
Ok(s) => s.kind == io::TypeDirectory,
|
2013-11-28 14:22:53 -06:00
|
|
|
Err(..) => false
|
2013-09-15 14:23:53 -05:00
|
|
|
}
|
2013-08-26 09:24:10 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-15 14:23:53 -05:00
|
|
|
|
2013-09-21 16:15:26 -05:00
|
|
|
#[cfg(test)]
|
2013-11-13 16:48:45 -06:00
|
|
|
#[allow(unused_imports)]
|
2013-09-21 16:15:26 -05:00
|
|
|
mod test {
|
2013-10-30 01:31:07 -05:00
|
|
|
use prelude::*;
|
2013-11-13 16:48:45 -06:00
|
|
|
use io::{SeekSet, SeekCur, SeekEnd, io_error, Read, Open,
|
|
|
|
ReadWrite};
|
2013-11-11 00:46:32 -06:00
|
|
|
use io;
|
2013-10-30 01:31:07 -05:00
|
|
|
use str;
|
2013-11-13 16:48:45 -06:00
|
|
|
use io::fs::{File, rmdir, mkdir, readdir, rmdir_recursive,
|
|
|
|
mkdir_recursive, copy, unlink, stat, symlink, link,
|
|
|
|
readlink, chmod, lstat, change_file_times};
|
|
|
|
use util;
|
|
|
|
use path::Path;
|
|
|
|
use io;
|
|
|
|
use ops::Drop;
|
|
|
|
|
|
|
|
struct TempDir(Path);
|
|
|
|
|
2013-11-01 20:06:31 -05:00
|
|
|
impl TempDir {
|
|
|
|
fn join(&self, path: &str) -> Path {
|
|
|
|
let TempDir(ref p) = *self;
|
|
|
|
p.join(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn path<'a>(&'a self) -> &'a Path {
|
|
|
|
let TempDir(ref p) = *self;
|
|
|
|
p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-13 16:48:45 -06:00
|
|
|
impl Drop for TempDir {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
// Gee, seeing how we're testing the fs module I sure hope that we
|
|
|
|
// at least implement this correctly!
|
2013-11-01 20:06:31 -05:00
|
|
|
let TempDir(ref p) = *self;
|
|
|
|
io::fs::rmdir_recursive(p);
|
2013-11-13 16:48:45 -06:00
|
|
|
}
|
|
|
|
}
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
pub fn tmpdir() -> TempDir {
|
2013-10-25 19:04:37 -05:00
|
|
|
use os;
|
|
|
|
use rand;
|
|
|
|
let ret = os::tmpdir().join(format!("rust-{}", rand::random::<u32>()));
|
2013-11-13 16:48:45 -06:00
|
|
|
io::fs::mkdir(&ret, io::UserRWX);
|
|
|
|
TempDir(ret)
|
2013-10-25 19:04:37 -05:00
|
|
|
}
|
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_io_smoke_test() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let message = "it's alright. have a good time";
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_rt_io_file_test.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut write_stream = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
write_stream.write(message.as_bytes());
|
2013-08-19 23:57:47 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut read_stream = File::open_mode(filename, Open, Read);
|
|
|
|
let mut read_buf = [0, .. 1028];
|
|
|
|
let read_str = match read_stream.read(read_buf).unwrap() {
|
|
|
|
-1|0 => fail!("shouldn't happen"),
|
2013-12-23 10:45:01 -06:00
|
|
|
n => str::from_utf8_owned(read_buf.slice_to(n).to_owned()).unwrap()
|
2013-10-30 01:31:07 -05:00
|
|
|
};
|
2013-11-28 06:52:11 -06:00
|
|
|
assert_eq!(read_str, message.to_owned());
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-19 23:57:47 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn invalid_path_raises() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_that_does_not_exist.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
let mut called = false;
|
2013-11-20 16:17:12 -06:00
|
|
|
io_error::cond.trap(|_| {
|
2013-10-30 01:31:07 -05:00
|
|
|
called = true;
|
2013-11-20 16:17:12 -06:00
|
|
|
}).inside(|| {
|
2013-10-30 01:31:07 -05:00
|
|
|
let result = File::open_mode(filename, Open, Read);
|
|
|
|
assert!(result.is_none());
|
2013-11-20 16:17:12 -06:00
|
|
|
});
|
2013-10-30 01:31:07 -05:00
|
|
|
assert!(called);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-20 02:34:50 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_iounlinking_invalid_path_should_raise_condition() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_another_file_that_does_not_exist.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
let mut called = false;
|
2013-11-20 16:17:12 -06:00
|
|
|
io_error::cond.trap(|_| {
|
2013-10-30 01:31:07 -05:00
|
|
|
called = true;
|
2013-11-20 16:17:12 -06:00
|
|
|
}).inside(|| unlink(filename));
|
2013-10-30 01:31:07 -05:00
|
|
|
assert!(called);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-20 17:38:41 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_io_non_positional_read() {
|
2013-11-28 06:52:11 -06:00
|
|
|
let message: &str = "ten-four";
|
2013-10-30 01:31:07 -05:00
|
|
|
let mut read_mem = [0, .. 8];
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_rt_io_file_test_positional.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut rw_stream = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
rw_stream.write(message.as_bytes());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut read_stream = File::open_mode(filename, Open, Read);
|
2013-08-20 17:38:41 -05:00
|
|
|
{
|
2013-10-30 01:31:07 -05:00
|
|
|
let read_buf = read_mem.mut_slice(0, 4);
|
|
|
|
read_stream.read(read_buf);
|
2013-08-20 17:38:41 -05:00
|
|
|
}
|
|
|
|
{
|
2013-10-30 01:31:07 -05:00
|
|
|
let read_buf = read_mem.mut_slice(4, 8);
|
|
|
|
read_stream.read(read_buf);
|
2013-08-20 17:38:41 -05:00
|
|
|
}
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-12-23 10:30:49 -06:00
|
|
|
let read_str = str::from_utf8(read_mem).unwrap();
|
2013-11-28 06:52:11 -06:00
|
|
|
assert_eq!(read_str, message);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-09-15 09:10:56 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_io_seek_and_tell_smoke_test() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let message = "ten-four";
|
|
|
|
let mut read_mem = [0, .. 4];
|
|
|
|
let set_cursor = 4 as u64;
|
|
|
|
let mut tell_pos_pre_read;
|
|
|
|
let mut tell_pos_post_read;
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_rt_io_file_test_seeking.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut rw_stream = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
rw_stream.write(message.as_bytes());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut read_stream = File::open_mode(filename, Open, Read);
|
|
|
|
read_stream.seek(set_cursor as i64, SeekSet);
|
|
|
|
tell_pos_pre_read = read_stream.tell();
|
|
|
|
read_stream.read(read_mem);
|
|
|
|
tell_pos_post_read = read_stream.tell();
|
2013-09-21 16:15:26 -05:00
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-12-23 10:30:49 -06:00
|
|
|
let read_str = str::from_utf8(read_mem).unwrap();
|
2013-11-28 06:52:11 -06:00
|
|
|
assert_eq!(read_str, message.slice(4, 8));
|
|
|
|
assert_eq!(tell_pos_pre_read, set_cursor);
|
|
|
|
assert_eq!(tell_pos_post_read, message.len() as u64);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-21 23:22:53 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_io_seek_and_write() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let initial_msg = "food-is-yummy";
|
|
|
|
let overwrite_msg = "-the-bar!!";
|
|
|
|
let final_msg = "foo-the-bar!!";
|
|
|
|
let seek_idx = 3;
|
|
|
|
let mut read_mem = [0, .. 13];
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_rt_io_file_test_seek_and_write.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut rw_stream = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
rw_stream.write(initial_msg.as_bytes());
|
|
|
|
rw_stream.seek(seek_idx as i64, SeekSet);
|
|
|
|
rw_stream.write(overwrite_msg.as_bytes());
|
2013-09-21 16:15:26 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut read_stream = File::open_mode(filename, Open, Read);
|
|
|
|
read_stream.read(read_mem);
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-12-23 10:30:49 -06:00
|
|
|
let read_str = str::from_utf8(read_mem).unwrap();
|
2013-10-30 01:31:07 -05:00
|
|
|
assert!(read_str == final_msg.to_owned());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-21 23:22:53 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_io_seek_shakedown() {
|
2013-10-30 01:31:07 -05:00
|
|
|
use std::str; // 01234567890123
|
|
|
|
let initial_msg = "qwer-asdf-zxcv";
|
2013-11-28 06:52:11 -06:00
|
|
|
let chunk_one: &str = "qwer";
|
|
|
|
let chunk_two: &str = "asdf";
|
|
|
|
let chunk_three: &str = "zxcv";
|
2013-10-30 01:31:07 -05:00
|
|
|
let mut read_mem = [0, .. 4];
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_rt_io_file_test_seek_shakedown.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut rw_stream = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
rw_stream.write(initial_msg.as_bytes());
|
2013-08-21 23:22:53 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut read_stream = File::open_mode(filename, Open, Read);
|
|
|
|
|
|
|
|
read_stream.seek(-4, SeekEnd);
|
|
|
|
read_stream.read(read_mem);
|
2013-12-23 10:30:49 -06:00
|
|
|
assert_eq!(str::from_utf8(read_mem).unwrap(), chunk_three);
|
2013-10-30 01:31:07 -05:00
|
|
|
|
|
|
|
read_stream.seek(-9, SeekCur);
|
|
|
|
read_stream.read(read_mem);
|
2013-12-23 10:30:49 -06:00
|
|
|
assert_eq!(str::from_utf8(read_mem).unwrap(), chunk_two);
|
2013-10-30 01:31:07 -05:00
|
|
|
|
|
|
|
read_stream.seek(0, SeekSet);
|
|
|
|
read_stream.read(read_mem);
|
2013-12-23 10:30:49 -06:00
|
|
|
assert_eq!(str::from_utf8(read_mem).unwrap(), chunk_one);
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-09-15 09:10:56 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_stat_is_correct_on_is_file() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_stat_correct_on_is_file.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut fs = File::open_mode(filename, Open, ReadWrite);
|
|
|
|
let msg = "hw";
|
|
|
|
fs.write(msg.as_bytes());
|
2013-09-21 16:15:26 -05:00
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
let stat_res = stat(filename);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(stat_res.kind, io::TypeFile);
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(filename);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-26 09:24:10 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_stat_is_correct_on_is_dir() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let filename = &tmpdir.join("file_stat_correct_on_is_dir");
|
2013-10-30 01:31:07 -05:00
|
|
|
mkdir(filename, io::UserRWX);
|
|
|
|
let stat_res = filename.stat();
|
|
|
|
assert!(stat_res.kind == io::TypeDirectory);
|
|
|
|
rmdir(filename);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-26 09:24:10 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_fileinfo_false_when_checking_is_file_on_a_directory() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let dir = &tmpdir.join("fileinfo_false_on_dir");
|
2013-10-30 01:31:07 -05:00
|
|
|
mkdir(dir, io::UserRWX);
|
|
|
|
assert!(dir.is_file() == false);
|
|
|
|
rmdir(dir);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-08-26 09:24:10 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_fileinfo_check_exists_before_and_after_file_creation() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let file = &tmpdir.join("fileinfo_check_exists_b_and_a.txt");
|
2013-10-30 01:31:07 -05:00
|
|
|
File::create(file).write(bytes!("foo"));
|
|
|
|
assert!(file.exists());
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(file);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert!(!file.exists());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-09-15 14:23:53 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_directoryinfo_check_exists_before_and_after_mkdir() {
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let dir = &tmpdir.join("before_and_after_dir");
|
2013-10-30 01:31:07 -05:00
|
|
|
assert!(!dir.exists());
|
|
|
|
mkdir(dir, io::UserRWX);
|
|
|
|
assert!(dir.exists());
|
|
|
|
assert!(dir.is_dir());
|
|
|
|
rmdir(dir);
|
|
|
|
assert!(!dir.exists());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-09-16 15:25:10 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn file_test_directoryinfo_readdir() {
|
2013-10-30 01:31:07 -05:00
|
|
|
use std::str;
|
2013-11-13 16:48:45 -06:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let dir = &tmpdir.join("di_readdir");
|
2013-10-30 01:31:07 -05:00
|
|
|
mkdir(dir, io::UserRWX);
|
|
|
|
let prefix = "foo";
|
|
|
|
for n in range(0,3) {
|
|
|
|
let f = dir.join(format!("{}.txt", n));
|
|
|
|
let mut w = File::create(&f);
|
|
|
|
let msg_str = (prefix + n.to_str().to_owned()).to_owned();
|
|
|
|
let msg = msg_str.as_bytes();
|
|
|
|
w.write(msg);
|
|
|
|
}
|
|
|
|
let files = readdir(dir);
|
|
|
|
let mut mem = [0u8, .. 4];
|
|
|
|
for f in files.iter() {
|
|
|
|
{
|
|
|
|
let n = f.filestem_str();
|
|
|
|
File::open(f).read(mem);
|
2013-12-23 10:30:49 -06:00
|
|
|
let read_str = str::from_utf8(mem).unwrap();
|
2013-10-30 01:31:07 -05:00
|
|
|
let expected = match n {
|
|
|
|
None|Some("") => fail!("really shouldn't happen.."),
|
|
|
|
Some(n) => prefix+n
|
|
|
|
};
|
2013-11-28 06:52:11 -06:00
|
|
|
assert_eq!(expected.as_slice(), read_str);
|
2013-09-21 16:15:26 -05:00
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
unlink(f);
|
2013-09-16 15:25:10 -05:00
|
|
|
}
|
2013-10-30 01:31:07 -05:00
|
|
|
rmdir(dir);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn recursive_mkdir_slash() {
|
2013-12-03 21:15:12 -06:00
|
|
|
mkdir_recursive(&Path::new("/"), io::UserRWX);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn unicode_path_is_dir() {
|
2013-12-03 21:15:12 -06:00
|
|
|
assert!(Path::new(".").is_dir());
|
|
|
|
assert!(!Path::new("test/stdtest/fs.rs").is_dir());
|
2013-10-25 19:04:37 -05:00
|
|
|
|
|
|
|
let tmpdir = tmpdir();
|
|
|
|
|
2013-11-01 20:06:31 -05:00
|
|
|
let mut dirpath = tmpdir.path().clone();
|
2013-10-25 19:04:37 -05:00
|
|
|
dirpath.push(format!("test-가一ー你好"));
|
|
|
|
mkdir(&dirpath, io::UserRWX);
|
|
|
|
assert!(dirpath.is_dir());
|
|
|
|
|
|
|
|
let mut filepath = dirpath;
|
|
|
|
filepath.push("unicode-file-\uac00\u4e00\u30fc\u4f60\u597d.rs");
|
2013-10-30 01:31:07 -05:00
|
|
|
File::create(&filepath); // ignore return; touch only
|
2013-10-25 19:04:37 -05:00
|
|
|
assert!(!filepath.is_dir());
|
|
|
|
assert!(filepath.exists());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn unicode_path_exists() {
|
2013-12-03 21:15:12 -06:00
|
|
|
assert!(Path::new(".").exists());
|
|
|
|
assert!(!Path::new("test/nonexistent-bogus-path").exists());
|
2013-10-25 19:04:37 -05:00
|
|
|
|
|
|
|
let tmpdir = tmpdir();
|
2013-11-01 20:06:31 -05:00
|
|
|
let unicode = tmpdir.path();
|
2013-10-25 19:04:37 -05:00
|
|
|
let unicode = unicode.join(format!("test-각丁ー再见"));
|
|
|
|
mkdir(&unicode, io::UserRWX);
|
|
|
|
assert!(unicode.exists());
|
2013-12-03 21:15:12 -06:00
|
|
|
assert!(!Path::new("test/unicode-bogus-path-각丁ー再见").exists());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_does_not_exist() {
|
2013-12-03 21:15:12 -06:00
|
|
|
let from = Path::new("test/nonexistent-bogus-path");
|
|
|
|
let to = Path::new("test/other-bogus-path");
|
2013-10-31 17:15:30 -05:00
|
|
|
match io::result(|| copy(&from, &to)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(),
|
|
|
|
Err(..) => {
|
2013-10-25 19:04:37 -05:00
|
|
|
assert!(!from.exists());
|
|
|
|
assert!(!to.exists());
|
|
|
|
}
|
|
|
|
}
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-25 19:04:37 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_ok() {
|
2013-10-25 19:04:37 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let input = tmpdir.join("in.txt");
|
|
|
|
let out = tmpdir.join("out.txt");
|
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
File::create(&input).write(bytes!("hello"));
|
2013-10-31 17:15:30 -05:00
|
|
|
copy(&input, &out);
|
2013-10-30 01:31:07 -05:00
|
|
|
let contents = File::open(&out).read_to_end();
|
2013-10-25 19:04:37 -05:00
|
|
|
assert_eq!(contents.as_slice(), bytes!("hello"));
|
|
|
|
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(input.stat().perm, out.stat().perm);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_dst_dir() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let out = tmpdir.join("out");
|
|
|
|
|
|
|
|
File::create(&out);
|
2013-11-01 20:06:31 -05:00
|
|
|
match io::result(|| copy(&out, tmpdir.path())) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(), Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_dst_exists() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let input = tmpdir.join("in");
|
|
|
|
let output = tmpdir.join("out");
|
|
|
|
|
|
|
|
File::create(&input).write("foo".as_bytes());
|
|
|
|
File::create(&output).write("bar".as_bytes());
|
2013-10-31 17:15:30 -05:00
|
|
|
copy(&input, &output);
|
2013-10-30 01:31:07 -05:00
|
|
|
|
|
|
|
assert_eq!(File::open(&output).read_to_end(),
|
|
|
|
(bytes!("foo")).to_owned());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_src_dir() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let out = tmpdir.join("out");
|
|
|
|
|
2013-11-01 20:06:31 -05:00
|
|
|
match io::result(|| copy(tmpdir.path(), &out)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(), Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
assert!(!out.exists());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn copy_file_preserves_perm_bits() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let input = tmpdir.join("in.txt");
|
|
|
|
let out = tmpdir.join("out.txt");
|
|
|
|
|
|
|
|
File::create(&input);
|
2013-10-31 17:15:30 -05:00
|
|
|
chmod(&input, io::UserRead);
|
|
|
|
copy(&input, &out);
|
|
|
|
assert!(out.stat().perm & io::UserWrite == 0);
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-10-31 17:15:30 -05:00
|
|
|
chmod(&input, io::UserFile);
|
|
|
|
chmod(&out, io::UserFile);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-11-13 16:48:45 -06:00
|
|
|
#[cfg(not(windows))] // FIXME(#10264) operation not permitted?
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn symlinks_work() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let input = tmpdir.join("in.txt");
|
|
|
|
let out = tmpdir.join("out.txt");
|
|
|
|
|
|
|
|
File::create(&input).write("foobar".as_bytes());
|
2013-10-31 17:15:30 -05:00
|
|
|
symlink(&input, &out);
|
2013-11-13 16:48:45 -06:00
|
|
|
if cfg!(not(windows)) {
|
|
|
|
assert_eq!(lstat(&out).kind, io::TypeSymlink);
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&out).size, stat(&input).size);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(File::open(&out).read_to_end(), (bytes!("foobar")).to_owned());
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-11-13 16:48:45 -06:00
|
|
|
#[cfg(not(windows))] // apparently windows doesn't like symlinks
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn symlink_noexist() {
|
2013-10-31 17:15:30 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
// symlinks can point to things that don't exist
|
|
|
|
symlink(&tmpdir.join("foo"), &tmpdir.join("bar"));
|
|
|
|
assert!(readlink(&tmpdir.join("bar")).unwrap() == tmpdir.join("foo"));
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn readlink_not_symlink() {
|
2013-10-31 17:15:30 -05:00
|
|
|
let tmpdir = tmpdir();
|
2013-11-01 20:06:31 -05:00
|
|
|
match io::result(|| readlink(tmpdir.path())) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!("wanted a failure"),
|
|
|
|
Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn links_work() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let input = tmpdir.join("in.txt");
|
|
|
|
let out = tmpdir.join("out.txt");
|
|
|
|
|
|
|
|
File::create(&input).write("foobar".as_bytes());
|
2013-10-31 17:15:30 -05:00
|
|
|
link(&input, &out);
|
2013-11-13 16:48:45 -06:00
|
|
|
if cfg!(not(windows)) {
|
|
|
|
assert_eq!(lstat(&out).kind, io::TypeFile);
|
|
|
|
assert_eq!(stat(&out).unstable.nlink, 2);
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&out).size, stat(&input).size);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(File::open(&out).read_to_end(), (bytes!("foobar")).to_owned());
|
|
|
|
|
|
|
|
// can't link to yourself
|
2013-10-31 17:15:30 -05:00
|
|
|
match io::result(|| link(&input, &input)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!("wanted a failure"),
|
|
|
|
Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
// can't link to something that doesn't exist
|
2013-10-31 17:15:30 -05:00
|
|
|
match io::result(|| link(&tmpdir.join("foo"), &tmpdir.join("bar"))) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!("wanted a failure"),
|
|
|
|
Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn chmod_works() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let file = tmpdir.join("in.txt");
|
|
|
|
|
|
|
|
File::create(&file);
|
2013-10-31 17:15:30 -05:00
|
|
|
assert!(stat(&file).perm & io::UserWrite == io::UserWrite);
|
|
|
|
chmod(&file, io::UserRead);
|
|
|
|
assert!(stat(&file).perm & io::UserWrite == 0);
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-10-31 17:15:30 -05:00
|
|
|
match io::result(|| chmod(&tmpdir.join("foo"), io::UserRWX)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!("wanted a failure"),
|
|
|
|
Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:15:30 -05:00
|
|
|
chmod(&file, io::UserFile);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn sync_doesnt_kill_anything() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let path = tmpdir.join("in.txt");
|
|
|
|
|
|
|
|
let mut file = File::open_mode(&path, io::Open, io::ReadWrite).unwrap();
|
|
|
|
file.fsync();
|
|
|
|
file.datasync();
|
|
|
|
file.write(bytes!("foo"));
|
|
|
|
file.fsync();
|
|
|
|
file.datasync();
|
2013-12-03 00:37:26 -06:00
|
|
|
drop(file);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn truncate_works() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let path = tmpdir.join("in.txt");
|
|
|
|
|
|
|
|
let mut file = File::open_mode(&path, io::Open, io::ReadWrite).unwrap();
|
|
|
|
file.write(bytes!("foo"));
|
2013-11-13 16:48:45 -06:00
|
|
|
file.fsync();
|
2013-10-30 01:31:07 -05:00
|
|
|
|
|
|
|
// Do some simple things with truncation
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&path).size, 3);
|
2013-10-30 01:31:07 -05:00
|
|
|
file.truncate(10);
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&path).size, 10);
|
2013-10-30 01:31:07 -05:00
|
|
|
file.write(bytes!("bar"));
|
2013-11-13 16:48:45 -06:00
|
|
|
file.fsync();
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&path).size, 10);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(File::open(&path).read_to_end(),
|
|
|
|
(bytes!("foobar", 0, 0, 0, 0)).to_owned());
|
|
|
|
|
|
|
|
// Truncate to a smaller length, don't seek, and then write something.
|
|
|
|
// Ensure that the intermediate zeroes are all filled in (we're seeked
|
|
|
|
// past the end of the file).
|
|
|
|
file.truncate(2);
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&path).size, 2);
|
2013-10-30 01:31:07 -05:00
|
|
|
file.write(bytes!("wut"));
|
2013-11-13 16:48:45 -06:00
|
|
|
file.fsync();
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&path).size, 9);
|
2013-10-30 01:31:07 -05:00
|
|
|
assert_eq!(File::open(&path).read_to_end(),
|
|
|
|
(bytes!("fo", 0, 0, 0, 0, "wut")).to_owned());
|
2013-12-03 00:37:26 -06:00
|
|
|
drop(file);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-10-30 01:31:07 -05:00
|
|
|
|
2013-12-12 23:38:57 -06:00
|
|
|
iotest!(fn open_flavors() {
|
2013-10-30 01:31:07 -05:00
|
|
|
let tmpdir = tmpdir();
|
|
|
|
|
|
|
|
match io::result(|| File::open_mode(&tmpdir.join("a"), io::Open,
|
|
|
|
io::Read)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(), Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
File::open_mode(&tmpdir.join("b"), io::Open, io::Write).unwrap();
|
|
|
|
File::open_mode(&tmpdir.join("c"), io::Open, io::ReadWrite).unwrap();
|
|
|
|
File::open_mode(&tmpdir.join("d"), io::Append, io::Write).unwrap();
|
|
|
|
File::open_mode(&tmpdir.join("e"), io::Append, io::ReadWrite).unwrap();
|
|
|
|
File::open_mode(&tmpdir.join("f"), io::Truncate, io::Write).unwrap();
|
|
|
|
File::open_mode(&tmpdir.join("g"), io::Truncate, io::ReadWrite).unwrap();
|
|
|
|
|
|
|
|
File::create(&tmpdir.join("h")).write("foo".as_bytes());
|
|
|
|
File::open_mode(&tmpdir.join("h"), io::Open, io::Read).unwrap();
|
|
|
|
{
|
|
|
|
let mut f = File::open_mode(&tmpdir.join("h"), io::Open,
|
|
|
|
io::Read).unwrap();
|
|
|
|
match io::result(|| f.write("wut".as_bytes())) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(), Err(..) => {}
|
2013-10-30 01:31:07 -05:00
|
|
|
}
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&tmpdir.join("h")).size, 3);
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut f = File::open_mode(&tmpdir.join("h"), io::Append,
|
|
|
|
io::Write).unwrap();
|
|
|
|
f.write("bar".as_bytes());
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&tmpdir.join("h")).size, 6);
|
2013-10-30 01:31:07 -05:00
|
|
|
{
|
|
|
|
let mut f = File::open_mode(&tmpdir.join("h"), io::Truncate,
|
|
|
|
io::Write).unwrap();
|
|
|
|
f.write("bar".as_bytes());
|
|
|
|
}
|
2013-10-31 17:15:30 -05:00
|
|
|
assert_eq!(stat(&tmpdir.join("h")).size, 3);
|
2013-11-13 16:48:45 -06:00
|
|
|
})
|
2013-11-05 17:48:27 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn utime() {
|
|
|
|
let tmpdir = tmpdir();
|
|
|
|
let path = tmpdir.join("a");
|
|
|
|
File::create(&path);
|
|
|
|
|
2013-11-06 01:29:11 -06:00
|
|
|
change_file_times(&path, 1000, 2000);
|
|
|
|
assert_eq!(path.stat().accessed, 1000);
|
|
|
|
assert_eq!(path.stat().modified, 2000);
|
2013-11-05 17:48:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn utime_noexist() {
|
|
|
|
let tmpdir = tmpdir();
|
|
|
|
|
|
|
|
match io::result(|| change_file_times(&tmpdir.join("a"), 100, 200)) {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => fail!(),
|
|
|
|
Err(..) => {}
|
2013-11-05 17:48:27 -06:00
|
|
|
}
|
|
|
|
}
|
2013-09-23 19:20:36 -05:00
|
|
|
}
|