Auto merge of #77090 - rust-lang:revert-76110-convert-openoptions-cint, r=dtolnay

Revert "Function to convert OpenOptions to c_int"

Reverts rust-lang/rust#76110. This broke Rust's stability guarantees.

Closes https://github.com/rust-lang/rust/issues/77089.

r? `@joshtriplett`
This commit is contained in:
bors 2020-09-23 13:19:18 +00:00
commit a6008fac97
2 changed files with 0 additions and 35 deletions

View File

@ -348,31 +348,6 @@ pub trait OpenOptionsExt {
/// ```
#[stable(feature = "open_options_ext", since = "1.10.0")]
fn custom_flags(&mut self, flags: i32) -> &mut Self;
/// Get the flags as [`libc::c_int`].
///
/// This method allows the reuse of the OpenOptions as flags argument for [`libc::open`].
///
/// [`libc::c_int`]: https://docs.rs/libc/*/libc/type.c_int.html
/// [`libc::open`]: https://docs.rs/libc/*/libc/fn.open.html
///
/// # Examples
///
/// ```no_run
/// # #![feature(rustc_private)]
/// #![feature(open_options_ext_as_flags)]
/// extern crate libc;
/// use std::ffi::CString;
/// use std::fs::OpenOptions;
/// use std::os::unix::fs::OpenOptionsExt;
///
/// let mut options = OpenOptions::new();
/// options.write(true).read(true);
/// let file_name = CString::new("foo.txt").unwrap();
/// let file = unsafe { libc::open(file_name.as_c_str().as_ptr(), options.as_flags().unwrap()) };
/// ```
#[unstable(feature = "open_options_ext_as_flags", issue = "76801")]
fn as_flags(&self) -> io::Result<libc::c_int>;
}
#[stable(feature = "fs_ext", since = "1.1.0")]
@ -386,10 +361,6 @@ impl OpenOptionsExt for OpenOptions {
self.as_inner_mut().custom_flags(flags);
self
}
fn as_flags(&self) -> io::Result<libc::c_int> {
self.as_inner().as_flags()
}
}
/// Unix-specific extensions to [`fs::Metadata`].

View File

@ -656,12 +656,6 @@ impl OpenOptions {
self.mode = mode as mode_t;
}
pub fn as_flags(&self) -> io::Result<c_int> {
let access_mode = self.get_access_mode()?;
let creation_mode = self.get_creation_mode()?;
Ok(creation_mode | access_mode | self.custom_flags)
}
fn get_access_mode(&self) -> io::Result<c_int> {
match (self.read, self.write, self.append) {
(true, false, false) => Ok(libc::O_RDONLY),