Skip to content

Commit b17d541

Browse files
authored
Unrolled build for rust-lang#135696
Rollup merge of rust-lang#135696 - joboet:move_pal_io, r=Noratrieb std: move `io` module out of `pal`, get rid of `sys_common::io` Part of rust-lang#117276. This does two related things: 1. It moves the platform-specific definitions for `IoSlice`, `IoSliceMut` and `is_terminal` out of `pal` and into `sys` and unifies some of them. 2. It gets rid of `sys_common::io`, moving the non-platform-specific test helpers into `std::test_helpers` and the buffer size definition to the new `sys::io` module.
2 parents 73bf794 + 7433ba6 commit b17d541

File tree

40 files changed

+165
-318
lines changed

40 files changed

+165
-318
lines changed

library/std/src/fs/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::os::unix::fs::symlink as junction_point;
1414
use crate::os::windows::fs::{OpenOptionsExt, junction_point, symlink_dir, symlink_file};
1515
use crate::path::Path;
1616
use crate::sync::Arc;
17-
use crate::sys_common::io::test::{TempDir, tmpdir};
17+
use crate::test_helpers::{TempDir, tmpdir};
1818
use crate::time::{Duration, Instant, SystemTime};
1919
use crate::{env, str, thread};
2020

library/std/src/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ pub mod prelude;
344344
mod stdio;
345345
mod util;
346346

347-
const DEFAULT_BUF_SIZE: usize = crate::sys_common::io::DEFAULT_BUF_SIZE;
347+
const DEFAULT_BUF_SIZE: usize = crate::sys::io::DEFAULT_BUF_SIZE;
348348

349349
pub(crate) use stdio::cleanup;
350350

library/std/src/lib.rs

+1-24
Original file line numberDiff line numberDiff line change
@@ -739,27 +739,4 @@ mod sealed {
739739

740740
#[cfg(test)]
741741
#[allow(dead_code)] // Not used in all configurations.
742-
pub(crate) mod test_helpers {
743-
/// Test-only replacement for `rand::thread_rng()`, which is unusable for
744-
/// us, as we want to allow running stdlib tests on tier-3 targets which may
745-
/// not have `getrandom` support.
746-
///
747-
/// Does a bit of a song and dance to ensure that the seed is different on
748-
/// each call (as some tests sadly rely on this), but doesn't try that hard.
749-
///
750-
/// This is duplicated in the `core`, `alloc` test suites (as well as
751-
/// `std`'s integration tests), but figuring out a mechanism to share these
752-
/// seems far more painful than copy-pasting a 7 line function a couple
753-
/// times, given that even under a perma-unstable feature, I don't think we
754-
/// want to expose types from `rand` from `std`.
755-
#[track_caller]
756-
pub(crate) fn test_rng() -> rand_xorshift::XorShiftRng {
757-
use core::hash::{BuildHasher, Hash, Hasher};
758-
let mut hasher = crate::hash::RandomState::new().build_hasher();
759-
core::panic::Location::caller().hash(&mut hasher);
760-
let hc64 = hasher.finish();
761-
let seed_vec = hc64.to_le_bytes().into_iter().chain(0u8..8).collect::<Vec<u8>>();
762-
let seed: [u8; 16] = seed_vec.as_slice().try_into().unwrap();
763-
rand::SeedableRng::from_seed(seed)
764-
}
765-
}
742+
pub(crate) mod test_helpers;

library/std/src/os/unix/fs/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use super::*;
33
#[test]
44
fn read_vectored_at() {
55
let msg = b"preadv is working!";
6-
let dir = crate::sys_common::io::test::tmpdir();
6+
let dir = crate::test_helpers::tmpdir();
77

88
let filename = dir.join("preadv.txt");
99
{
@@ -31,7 +31,7 @@ fn read_vectored_at() {
3131
#[test]
3232
fn write_vectored_at() {
3333
let msg = b"pwritev is not working!";
34-
let dir = crate::sys_common::io::test::tmpdir();
34+
let dir = crate::test_helpers::tmpdir();
3535

3636
let filename = dir.join("preadv.txt");
3737
{

library/std/src/os/unix/net/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::os::android::net::{SocketAddrExt, UnixSocketExt};
77
use crate::os::linux::net::{SocketAddrExt, UnixSocketExt};
88
#[cfg(any(target_os = "android", target_os = "linux"))]
99
use crate::os::unix::io::AsRawFd;
10-
use crate::sys_common::io::test::tmpdir;
10+
use crate::test_helpers::tmpdir;
1111
use crate::thread;
1212
use crate::time::Duration;
1313

library/std/src/process/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ fn debug_print() {
549549
#[test]
550550
#[cfg(windows)]
551551
fn run_bat_script() {
552-
let tempdir = crate::sys_common::io::test::tmpdir();
552+
let tempdir = crate::test_helpers::tmpdir();
553553
let script_path = tempdir.join("hello.cmd");
554554

555555
crate::fs::write(&script_path, "@echo Hello, %~1!").unwrap();
@@ -568,7 +568,7 @@ fn run_bat_script() {
568568
#[test]
569569
#[cfg(windows)]
570570
fn run_canonical_bat_script() {
571-
let tempdir = crate::sys_common::io::test::tmpdir();
571+
let tempdir = crate::test_helpers::tmpdir();
572572
let script_path = tempdir.join("hello.cmd");
573573

574574
crate::fs::write(&script_path, "@echo Hello, %~1!").unwrap();

library/std/src/sys/pal/hermit/io.rs library/std/src/sys/io/io_slice/iovec.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
use hermit_abi::{c_void, iovec};
1+
#[cfg(target_os = "hermit")]
2+
use hermit_abi::iovec;
3+
#[cfg(target_family = "unix")]
4+
use libc::iovec;
25

6+
use crate::ffi::c_void;
37
use crate::marker::PhantomData;
4-
use crate::os::hermit::io::{AsFd, AsRawFd};
58
use crate::slice;
9+
#[cfg(target_os = "solid_asp3")]
10+
use crate::sys::pal::abi::sockets::iovec;
611

712
#[derive(Copy, Clone)]
813
#[repr(transparent)]
@@ -80,8 +85,3 @@ impl<'a> IoSliceMut<'a> {
8085
unsafe { slice::from_raw_parts_mut(self.vec.iov_base as *mut u8, self.vec.iov_len) }
8186
}
8287
}
83-
84-
pub fn is_terminal(fd: &impl AsFd) -> bool {
85-
let fd = fd.as_fd();
86-
hermit_abi::isatty(fd.as_raw_fd())
87-
}

library/std/src/sys/pal/unsupported/io.rs library/std/src/sys/io/io_slice/unsupported.rs

-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,3 @@ impl<'a> IoSliceMut<'a> {
5050
self.0
5151
}
5252
}
53-
54-
pub fn is_terminal<T>(_: &T) -> bool {
55-
false
56-
}

library/std/src/sys/pal/wasi/io.rs library/std/src/sys/io/io_slice/wasi.rs

-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
#![forbid(unsafe_op_in_unsafe_fn)]
2-
31
use crate::marker::PhantomData;
4-
use crate::os::fd::{AsFd, AsRawFd};
52
use crate::slice;
63

74
#[derive(Copy, Clone)]
@@ -77,8 +74,3 @@ impl<'a> IoSliceMut<'a> {
7774
unsafe { slice::from_raw_parts_mut(self.vec.buf as *mut u8, self.vec.buf_len) }
7875
}
7976
}
80-
81-
pub fn is_terminal(fd: &impl AsFd) -> bool {
82-
let fd = fd.as_fd();
83-
unsafe { libc::isatty(fd.as_raw_fd()) != 0 }
84-
}
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,82 @@
1-
use libc::c_void;
2-
3-
use super::abi::sockets::iovec;
41
use crate::marker::PhantomData;
52
use crate::slice;
3+
use crate::sys::c;
64

75
#[derive(Copy, Clone)]
86
#[repr(transparent)]
97
pub struct IoSlice<'a> {
10-
vec: iovec,
8+
vec: c::WSABUF,
119
_p: PhantomData<&'a [u8]>,
1210
}
1311

1412
impl<'a> IoSlice<'a> {
1513
#[inline]
1614
pub fn new(buf: &'a [u8]) -> IoSlice<'a> {
15+
assert!(buf.len() <= u32::MAX as usize);
1716
IoSlice {
18-
vec: iovec { iov_base: buf.as_ptr() as *mut u8 as *mut c_void, iov_len: buf.len() },
17+
vec: c::WSABUF { len: buf.len() as u32, buf: buf.as_ptr() as *mut u8 },
1918
_p: PhantomData,
2019
}
2120
}
2221

2322
#[inline]
2423
pub fn advance(&mut self, n: usize) {
25-
if self.vec.iov_len < n {
24+
if (self.vec.len as usize) < n {
2625
panic!("advancing IoSlice beyond its length");
2726
}
2827

2928
unsafe {
30-
self.vec.iov_len -= n;
31-
self.vec.iov_base = self.vec.iov_base.add(n);
29+
self.vec.len -= n as u32;
30+
self.vec.buf = self.vec.buf.add(n);
3231
}
3332
}
3433

3534
#[inline]
3635
pub const fn as_slice(&self) -> &'a [u8] {
37-
unsafe { slice::from_raw_parts(self.vec.iov_base as *mut u8, self.vec.iov_len) }
36+
unsafe { slice::from_raw_parts(self.vec.buf, self.vec.len as usize) }
3837
}
3938
}
4039

4140
#[repr(transparent)]
4241
pub struct IoSliceMut<'a> {
43-
vec: iovec,
42+
vec: c::WSABUF,
4443
_p: PhantomData<&'a mut [u8]>,
4544
}
4645

4746
impl<'a> IoSliceMut<'a> {
4847
#[inline]
4948
pub fn new(buf: &'a mut [u8]) -> IoSliceMut<'a> {
49+
assert!(buf.len() <= u32::MAX as usize);
5050
IoSliceMut {
51-
vec: iovec { iov_base: buf.as_mut_ptr() as *mut c_void, iov_len: buf.len() },
51+
vec: c::WSABUF { len: buf.len() as u32, buf: buf.as_mut_ptr() },
5252
_p: PhantomData,
5353
}
5454
}
5555

5656
#[inline]
5757
pub fn advance(&mut self, n: usize) {
58-
if self.vec.iov_len < n {
58+
if (self.vec.len as usize) < n {
5959
panic!("advancing IoSliceMut beyond its length");
6060
}
6161

6262
unsafe {
63-
self.vec.iov_len -= n;
64-
self.vec.iov_base = self.vec.iov_base.add(n);
63+
self.vec.len -= n as u32;
64+
self.vec.buf = self.vec.buf.add(n);
6565
}
6666
}
6767

6868
#[inline]
6969
pub fn as_slice(&self) -> &[u8] {
70-
unsafe { slice::from_raw_parts(self.vec.iov_base as *mut u8, self.vec.iov_len) }
70+
unsafe { slice::from_raw_parts(self.vec.buf, self.vec.len as usize) }
7171
}
7272

7373
#[inline]
7474
pub const fn into_slice(self) -> &'a mut [u8] {
75-
unsafe { slice::from_raw_parts_mut(self.vec.iov_base as *mut u8, self.vec.iov_len) }
75+
unsafe { slice::from_raw_parts_mut(self.vec.buf, self.vec.len as usize) }
7676
}
7777

7878
#[inline]
7979
pub fn as_mut_slice(&mut self) -> &mut [u8] {
80-
unsafe { slice::from_raw_parts_mut(self.vec.iov_base as *mut u8, self.vec.iov_len) }
80+
unsafe { slice::from_raw_parts_mut(self.vec.buf, self.vec.len as usize) }
8181
}
8282
}
83-
84-
pub fn is_terminal<T>(_: &T) -> bool {
85-
false
86-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
use crate::os::fd::{AsFd, AsRawFd};
2+
3+
pub fn is_terminal(fd: &impl AsFd) -> bool {
4+
let fd = fd.as_fd();
5+
hermit_abi::isatty(fd.as_raw_fd())
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
use crate::os::fd::{AsFd, AsRawFd};
2+
3+
pub fn is_terminal(fd: &impl AsFd) -> bool {
4+
let fd = fd.as_fd();
5+
unsafe { libc::isatty(fd.as_raw_fd()) != 0 }
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pub fn is_terminal<T>(_: &T) -> bool {
2+
false
3+
}

library/std/src/sys/pal/windows/io.rs library/std/src/sys/io/is_terminal/windows.rs

+1-83
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,8 @@
1-
use core::ffi::c_void;
2-
3-
use crate::marker::PhantomData;
1+
use crate::ffi::c_void;
42
use crate::mem::size_of;
53
use crate::os::windows::io::{AsHandle, AsRawHandle, BorrowedHandle};
6-
use crate::slice;
74
use crate::sys::c;
85

9-
#[derive(Copy, Clone)]
10-
#[repr(transparent)]
11-
pub struct IoSlice<'a> {
12-
vec: c::WSABUF,
13-
_p: PhantomData<&'a [u8]>,
14-
}
15-
16-
impl<'a> IoSlice<'a> {
17-
#[inline]
18-
pub fn new(buf: &'a [u8]) -> IoSlice<'a> {
19-
assert!(buf.len() <= u32::MAX as usize);
20-
IoSlice {
21-
vec: c::WSABUF { len: buf.len() as u32, buf: buf.as_ptr() as *mut u8 },
22-
_p: PhantomData,
23-
}
24-
}
25-
26-
#[inline]
27-
pub fn advance(&mut self, n: usize) {
28-
if (self.vec.len as usize) < n {
29-
panic!("advancing IoSlice beyond its length");
30-
}
31-
32-
unsafe {
33-
self.vec.len -= n as u32;
34-
self.vec.buf = self.vec.buf.add(n);
35-
}
36-
}
37-
38-
#[inline]
39-
pub const fn as_slice(&self) -> &'a [u8] {
40-
unsafe { slice::from_raw_parts(self.vec.buf, self.vec.len as usize) }
41-
}
42-
}
43-
44-
#[repr(transparent)]
45-
pub struct IoSliceMut<'a> {
46-
vec: c::WSABUF,
47-
_p: PhantomData<&'a mut [u8]>,
48-
}
49-
50-
impl<'a> IoSliceMut<'a> {
51-
#[inline]
52-
pub fn new(buf: &'a mut [u8]) -> IoSliceMut<'a> {
53-
assert!(buf.len() <= u32::MAX as usize);
54-
IoSliceMut {
55-
vec: c::WSABUF { len: buf.len() as u32, buf: buf.as_mut_ptr() },
56-
_p: PhantomData,
57-
}
58-
}
59-
60-
#[inline]
61-
pub fn advance(&mut self, n: usize) {
62-
if (self.vec.len as usize) < n {
63-
panic!("advancing IoSliceMut beyond its length");
64-
}
65-
66-
unsafe {
67-
self.vec.len -= n as u32;
68-
self.vec.buf = self.vec.buf.add(n);
69-
}
70-
}
71-
72-
#[inline]
73-
pub fn as_slice(&self) -> &[u8] {
74-
unsafe { slice::from_raw_parts(self.vec.buf, self.vec.len as usize) }
75-
}
76-
77-
#[inline]
78-
pub const fn into_slice(self) -> &'a mut [u8] {
79-
unsafe { slice::from_raw_parts_mut(self.vec.buf, self.vec.len as usize) }
80-
}
81-
82-
#[inline]
83-
pub fn as_mut_slice(&mut self) -> &mut [u8] {
84-
unsafe { slice::from_raw_parts_mut(self.vec.buf, self.vec.len as usize) }
85-
}
86-
}
87-
886
pub fn is_terminal(h: &impl AsHandle) -> bool {
897
handle_is_console(h.as_handle())
908
}

0 commit comments

Comments
 (0)